php-src/ext/phar/tests/002.phpt
Greg Beaver c7a5d062f5 throw exceptions from Phar object, and errors from stream wrapper
# we need to account for uncaught exceptions in shutdown, 2 tests leak because of this
2007-01-29 06:02:19 +00:00

24 lines
662 B
PHP

--TEST--
Phar::mapPhar truncated manifest/improper params
--SKIPIF--
<?php if (!extension_loaded("phar")) print "skip"; ?>
--FILE--
<?php
try {
Phar::mapPhar(5, 5);
Phar::mapPhar(5, 'hio');
Phar::mapPhar(5, 'hio', 'hi');
Phar::mapPhar();
Phar::mapPhar(5);
} catch (Exception $e) {
echo $e->getMessage();
}
__HALT_COMPILER(); ?>
--EXPECTF--
Warning: Phar::mapPhar() expects at most 1 parameter, 2 given in %s002.php on line %d
Warning: Phar::mapPhar() expects at most 1 parameter, 2 given in %s002.php on line %d
Warning: Phar::mapPhar() expects at most 1 parameter, 3 given in %s002.php on line %d
internal corruption of phar "%s002.php" (truncated manifest)