xref: /PHP-7.4/ext/phar/tests/014.phpt (revision 26dfce7f)
1--TEST--
2Phar::mapPhar filesize mismatch
3--SKIPIF--
4<?php if (!extension_loaded("phar")) die("skip");?>
5--INI--
6phar.require_hash=0
7--FILE--
8<?php
9$fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php';
10$pname = 'phar://' . $fname;
11$file = "<?php __HALT_COMPILER(); ?>";
12// wrong crc32
13
14$files = array();
15$files['a'] = array('cont'=>'a', 'crc32'=>crc32('aX'));
16include 'files/phar_test.inc';
17
18echo file_get_contents($pname.'/a');
19?>
20--CLEAN--
21<?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?>
22--EXPECTF--
23Warning: file_get_contents(phar://%s/a): failed to open stream: phar error: internal corruption of phar "%s" (crc32 mismatch on file "a") in %s on line %d
24