xref: /PHP-5.5/ext/phar/tests/013.phpt (revision 16b4d8e0)
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 = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.php';
10$pname = 'phar://' . $fname;
11$file = "<?php __HALT_COMPILER(); ?>";
12// filesize should be 1, and is 2
13
14$files = array();
15$files['a'] = array('cont'=>'a', 'ulen'=>2, 'clen'=>2);
16include 'files/phar_test.inc';
17
18echo file_get_contents($pname.'/a');
19?>
20--CLEAN--
21<?php unlink(dirname(__FILE__) . '/' . 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" (%s file "a") in %s on line %d
24