summaryrefslogtreecommitdiff
path: root/ext/phar/tests/phar_dir_iterate.phpt
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2008-04-14 17:18:58 +0000
committerGreg Beaver <cellog@php.net>2008-04-14 17:18:58 +0000
commitf3f9f52af9a8d2ee7e94892b65020d9c6a1ccd18 (patch)
treeb78eccc977adaf65ea8793a393eff0bca1fe644f /ext/phar/tests/phar_dir_iterate.phpt
parent31596d1b4571f5235d3a5bedce22954d7c4a4ba9 (diff)
downloadphp-git-f3f9f52af9a8d2ee7e94892b65020d9c6a1ccd18.tar.gz
minor re-factoring of phar_open_url to remove one nested brackets, put fopen edge cases in its own test, tweak test phar file names
Diffstat (limited to 'ext/phar/tests/phar_dir_iterate.phpt')
-rw-r--r--ext/phar/tests/phar_dir_iterate.phpt13
1 files changed, 7 insertions, 6 deletions
diff --git a/ext/phar/tests/phar_dir_iterate.phpt b/ext/phar/tests/phar_dir_iterate.phpt
index 1ca8639eae..2ee2cb5529 100644
--- a/ext/phar/tests/phar_dir_iterate.phpt
+++ b/ext/phar/tests/phar_dir_iterate.phpt
@@ -8,12 +8,13 @@ phar.readonly=0
phar.require_hash=0
--FILE--
<?php
+$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.php';
-$phar = new Phar(dirname(__FILE__) . '/test.phar');
+$phar = new Phar($fname);
$phar['top.txt'] = 'hi';
$phar['sub/top.txt'] = 'there';
$phar['another.file.txt'] = 'wowee';
-$newphar = new Phar(dirname(__FILE__) . '/test.phar');
+$newphar = new Phar($fname);
foreach (new RecursiveIteratorIterator($newphar) as $path => $obj) {
var_dump($obj->getPathName());
}
@@ -21,11 +22,11 @@ foreach (new RecursiveIteratorIterator($newphar) as $path => $obj) {
===DONE===
--CLEAN--
<?php
-unlink(dirname(__FILE__) . '/test.phar');
+unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.php');
__halt_compiler();
?>
--EXPECTF--
-string(%d) "phar://%stest.phar%canother.file.txt"
-string(%d) "phar://%stest.phar%csub%ctop.txt"
-string(%d) "phar://%stest.phar%ctop.txt"
+string(%d) "phar://%sphar_dir_iterate.phar.php%canother.file.txt"
+string(%d) "phar://%sphar_dir_iterate.phar.php%csub%ctop.txt"
+string(%d) "phar://%sphar_dir_iterate.phar.php%ctop.txt"
===DONE===