xref: /PHP-5.5/ext/phar/tests/tar/delete_in_phar.phpt (revision e9641141)
1--TEST--
2Phar: delete a file within a tar-based .phar
3--SKIPIF--
4<?php if (!extension_loaded("phar")) die("skip"); ?>
5--INI--
6phar.readonly=0
7phar.require_hash=0
8--FILE--
9<?php
10
11$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.tar';
12$alias = 'phar://' . $fname;
13
14$phar = new Phar($fname);
15$phar['a.php'] = '<?php echo "This is a\n"; ?>';
16$phar['b.php'] = '<?php echo "This is b\n"; ?>';
17$phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
18$phar->setStub('<?php __HALT_COMPILER(); ?>');
19$phar->stopBuffering();
20
21if (function_exists("opcache_get_status")) {
22	$status = opcache_get_status();
23	if ($status["opcache_enabled"]) {
24		ini_set("opcache.revalidate_freq", "0");
25		sleep(2);
26	}
27}
28
29include $alias . '/a.php';
30include $alias . '/b.php';
31include $alias . '/b/c.php';
32unlink($alias . '/b/c.php');
33
34?>
35===AFTER===
36<?php
37include $alias . '/a.php';
38include $alias . '/b.php';
39include $alias . '/b/c.php';
40?>
41
42===DONE===
43--CLEAN--
44<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.tar'); ?>
45--EXPECTF--
46This is a
47This is b
48This is b/c
49===AFTER===
50This is a
51This is b
52
53Warning: include(%sdelete_in_phar.phar.tar/b/c.php): failed to open stream: phar error: "b/c.php" is not a file in phar "%sdelete_in_phar.phar.tar" in %sdelete_in_phar.php on line %d
54
55Warning: include(): Failed opening 'phar://%sdelete_in_phar.phar.tar/b/c.php' for inclusion (include_path='%s') in %sdelete_in_phar.php on line %d
56
57===DONE===
58