mirror of
https://github.com/php/php-src.git
synced 2025-01-18 17:54:05 +08:00
29 lines
676 B
PHP
29 lines
676 B
PHP
--TEST--
|
|
zip_open() error conditions
|
|
--CREDITS--
|
|
Birgitte Kvarme <bitta@redpill-linpro.com>
|
|
#PHPTestFest2009 Norway 2009-06-09 \o/
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo "Test case 1:";
|
|
$zip = zip_open("");
|
|
|
|
echo "Test case 2:";
|
|
$zip = zip_open("i_dont_care_about_this_parameter", "this_is_one_to_many");
|
|
|
|
echo "Test case 3:\n";
|
|
$zip = zip_open("/non_exisitng_directory/test_procedural.zip");
|
|
echo is_resource($zip) ? "OK" : "Failure";
|
|
?>
|
|
--EXPECTF--
|
|
Test case 1:
|
|
Warning: zip_open(): Empty string as source in %s on line %d
|
|
Test case 2:
|
|
Warning: zip_open() expects exactly 1 parameter, 2 given in %s on line %d
|
|
Test case 3:
|
|
Failure
|