]> granicus.if.org Git - php/commitdiff
split the glob() test to test different basedir
authorAnatol Belski <ab@php.net>
Tue, 20 Aug 2013 11:39:30 +0000 (13:39 +0200)
committerAnatol Belski <ab@php.net>
Tue, 20 Aug 2013 11:40:19 +0000 (13:40 +0200)
ext/standard/tests/file/glob_variation3.phpt
ext/standard/tests/file/glob_variation4.phpt [new file with mode: 0644]
ext/standard/tests/file/glob_variation5.phpt [new file with mode: 0644]
ext/standard/tests/file/glob_variation6.phpt [new file with mode: 0644]

index 9c57ada3be23dd85185959b1a65262669e0b47d6..c50f8a81b801a5dbae9db9086ddb46e79a7adf25 100644 (file)
@@ -5,22 +5,7 @@ Test glob() function: ensure no platform difference
 $path = dirname(__FILE__);
 
 ini_set('open_basedir', NULL);
-var_dump(glob("$path/*.none"));
-var_dump(glob("$path/?.none"));
-var_dump(glob("$path/*{hello,world}.none"));
-var_dump(glob("$path/*/nothere"));
-var_dump(glob("$path/[aoeu]*.none"));
-var_dump(glob("$path/directly_not_exists"));
 
-ini_set('open_basedir', $path);
-var_dump(glob("$path/*.none"));
-var_dump(glob("$path/?.none"));
-var_dump(glob("$path/*{hello,world}.none"));
-var_dump(glob("$path/*/nothere"));
-var_dump(glob("$path/[aoeu]*.none"));
-var_dump(glob("$path/directly_not_exists"));
-
-ini_set('open_basedir', '/tmp');
 var_dump(glob("$path/*.none"));
 var_dump(glob("$path/?.none"));
 var_dump(glob("$path/*{hello,world}.none"));
@@ -28,6 +13,7 @@ var_dump(glob("$path/*/nothere"));
 var_dump(glob("$path/[aoeu]*.none"));
 var_dump(glob("$path/directly_not_exists"));
 
+var_dump(empty(ini_get('open_basedir')));
 ?>
 ==DONE==
 --EXPECT--
@@ -43,28 +29,5 @@ array(0) {
 }
 array(0) {
 }
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
-array(0) {
-}
+bool(true)
 ==DONE==
diff --git a/ext/standard/tests/file/glob_variation4.phpt b/ext/standard/tests/file/glob_variation4.phpt
new file mode 100644 (file)
index 0000000..00d8f64
--- /dev/null
@@ -0,0 +1,33 @@
+--TEST--
+Test glob() function: ensure no platform difference, variation 2
+--FILE--
+<?php
+$path = dirname(__FILE__);
+
+ini_set('open_basedir', $path);
+
+var_dump(glob("$path/*.none"));
+var_dump(glob("$path/?.none"));
+var_dump(glob("$path/*{hello,world}.none"));
+var_dump(glob("$path/*/nothere"));
+var_dump(glob("$path/[aoeu]*.none"));
+var_dump(glob("$path/directly_not_exists"));
+
+var_dump($path == ini_get('open_basedir'));
+?>
+==DONE==
+--EXPECT--
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+bool(true)
+==DONE==
diff --git a/ext/standard/tests/file/glob_variation5.phpt b/ext/standard/tests/file/glob_variation5.phpt
new file mode 100644 (file)
index 0000000..10db400
--- /dev/null
@@ -0,0 +1,29 @@
+--TEST--
+Test glob() function: ensure no platform difference, variation 3
+--SKIPIF--
+<?php if( substr(PHP_OS, 0, 3) == "WIN" ) {die('skip not valid on Windows');} ?>
+--FILE--
+<?php
+$path = dirname(__FILE__);
+
+ini_set('open_basedir', '/tmp');
+
+var_dump(glob("$path/*.none"));
+var_dump(glob("$path/?.none"));
+var_dump(glob("$path/*{hello,world}.none"));
+var_dump(glob("$path/*/nothere"));
+var_dump(glob("$path/[aoeu]*.none"));
+var_dump(glob("$path/directly_not_exists"));
+
+var_dump('/tmp' == ini_get('open_basedir'));
+?>
+==DONE==
+--EXPECT--
+bool(false)
+bool(false)
+bool(false)
+bool(false)
+bool(false)
+bool(false)
+bool(true)
+==DONE==
diff --git a/ext/standard/tests/file/glob_variation6.phpt b/ext/standard/tests/file/glob_variation6.phpt
new file mode 100644 (file)
index 0000000..9cd9c2b
--- /dev/null
@@ -0,0 +1,35 @@
+--TEST--
+Test glob() function: ensure no platform difference, variation 4
+--SKIPIF--
+<?php if( substr(PHP_OS, 0, 3) != "WIN" ) {die('skip only valid on Windows');} ?>
+--FILE--
+<?php
+$path = dirname(__FILE__);
+
+ini_set('open_basedir', 'c:\\windows');
+
+var_dump(glob("$path/*.none"));
+var_dump(glob("$path/?.none"));
+var_dump(glob("$path/*{hello,world}.none"));
+var_dump(glob("$path/*/nothere"));
+var_dump(glob("$path/[aoeu]*.none"));
+var_dump(glob("$path/directly_not_exists"));
+
+var_dump('c:\\windows' == ini_get('open_basedir'));
+?>
+==DONE==
+--EXPECT--
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+array(0) {
+}
+bool(true)
+==DONE==