ru_php/ext/phar/tests/bug77432.phpt

45 lines
1.1 KiB
PHP

--TEST--
Bug #77432 (Segmentation fault on including phar file)
--EXTENSIONS--
phar
--INI--
opcache.enable=0
error_reporting=-1
phar.readonly=0
--FILE--
<?php
$filename = __DIR__ . '/bug77432.phar';
$phar = new Phar($filename);
$phar->startBuffering();
$phar->addFromString('test.txt', 'text');
$phar->setStub('<?php echo "hello world\n"; __HALT_COMPILER(); ?>');
$phar->stopBuffering();
unset($phar);
echo "--- Include 1 ---\n";
include("phar://" . $filename);
echo "--- Include 2 ---\n";
include("phar://" . $filename);
echo "--- After unlink ---\n";
unlink($filename);
// This will just fail, as it should, but it is here to test the reopen error-handling path.
include("phar://" . $filename);
?>
--CLEAN--
<?php
@unlink(__DIR__ . '/bug77432.phar');
?>
--EXPECTF--
--- Include 1 ---
hello world
--- Include 2 ---
hello world
--- After unlink ---
Warning: include(%sbug77432.phar): Failed to open stream: phar error: could not reopen phar "%sbug77432.phar" in %s on line %d
Warning: include(): Failed opening '%sbug77432.phar' for inclusion (include_path=%s) in %s on line %d