summaryrefslogtreecommitdiff
path: root/ext/phar/tests/021.phpt
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-03-14 05:42:27 +0000
committer <>2013-04-03 16:25:08 +0000
commitc4dd7a1a684490673e25aaf4fabec5df138854c4 (patch)
tree4d57c44caae4480efff02b90b9be86f44bf25409 /ext/phar/tests/021.phpt
downloadphp2-master.tar.gz
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/phar/tests/021.phpt')
-rw-r--r--ext/phar/tests/021.phpt85
1 files changed, 85 insertions, 0 deletions
diff --git a/ext/phar/tests/021.phpt b/ext/phar/tests/021.phpt
new file mode 100644
index 0000000..bfd6576
--- /dev/null
+++ b/ext/phar/tests/021.phpt
@@ -0,0 +1,85 @@
+--TEST--
+Phar: stream stat
+--SKIPIF--
+<?php if (!extension_loaded("phar")) die("skip"); ?>
+--INI--
+phar.require_hash=0
+--FILE--
+<?php
+$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.php';
+$pname = 'phar://' . $fname;
+$file = b"<?php
+Phar::mapPhar('hio');
+__HALT_COMPILER(); ?>";
+
+$files = array();
+$files['a'] = 'a';
+$files['b/a'] = 'b';
+$files['b/c/d'] = 'c';
+$files['bad/c'] = 'd';
+
+include 'files/phar_test.inc';
+
+include $fname;
+
+$fp = fopen('phar://hio/a', 'r');
+var_dump(fstat($fp));
+fclose($fp);
+?>
+--CLEAN--
+<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?>
+--EXPECTF--
+array(26) {
+ [0]=>
+ int(12)
+ [1]=>
+ int(%d)
+ [2]=>
+ int(33060)
+ [3]=>
+ int(1)
+ [4]=>
+ int(0)
+ [5]=>
+ int(0)
+ [6]=>
+ int(-1)
+ [7]=>
+ int(1)
+ [8]=>
+ int(%d)
+ [9]=>
+ int(%d)
+ [10]=>
+ int(%d)
+ [11]=>
+ int(-1)
+ [12]=>
+ int(-1)
+ [%sdev"]=>
+ int(12)
+ [%sino"]=>
+ int(%d)
+ [%smode"]=>
+ int(33060)
+ [%snlink"]=>
+ int(1)
+ [%suid"]=>
+ int(0)
+ [%sgid"]=>
+ int(0)
+ [%srdev"]=>
+ int(-1)
+ [%ssize"]=>
+ int(1)
+ [%satime"]=>
+ int(%d)
+ [%smtime"]=>
+ int(%d)
+ [%sctime"]=>
+ int(%d)
+ [%sblksize"]=>
+ int(-1)
+ [%sblocks"]=>
+ int(-1)
+} \ No newline at end of file