From b7cd099ae04c926f8faedbf8c726984d9315ccb9 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 20 Aug 2013 13:39:30 +0200 Subject: [PATCH] split the glob() test to test different basedir --- ext/standard/tests/file/glob_variation3.phpt | 41 +------------------- ext/standard/tests/file/glob_variation4.phpt | 33 ++++++++++++++++ ext/standard/tests/file/glob_variation5.phpt | 29 ++++++++++++++ ext/standard/tests/file/glob_variation6.phpt | 35 +++++++++++++++++ 4 files changed, 99 insertions(+), 39 deletions(-) create mode 100644 ext/standard/tests/file/glob_variation4.phpt create mode 100644 ext/standard/tests/file/glob_variation5.phpt create mode 100644 ext/standard/tests/file/glob_variation6.phpt diff --git a/ext/standard/tests/file/glob_variation3.phpt b/ext/standard/tests/file/glob_variation3.phpt index 9c57ada3be..c50f8a81b8 100644 --- a/ext/standard/tests/file/glob_variation3.phpt +++ b/ext/standard/tests/file/glob_variation3.phpt @@ -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 index 0000000000..00d8f648aa --- /dev/null +++ b/ext/standard/tests/file/glob_variation4.phpt @@ -0,0 +1,33 @@ +--TEST-- +Test glob() function: ensure no platform difference, variation 2 +--FILE-- + +==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 index 0000000000..10db40099b --- /dev/null +++ b/ext/standard/tests/file/glob_variation5.phpt @@ -0,0 +1,29 @@ +--TEST-- +Test glob() function: ensure no platform difference, variation 3 +--SKIPIF-- + +--FILE-- + +==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 index 0000000000..9cd9c2b353 --- /dev/null +++ b/ext/standard/tests/file/glob_variation6.phpt @@ -0,0 +1,35 @@ +--TEST-- +Test glob() function: ensure no platform difference, variation 4 +--SKIPIF-- + +--FILE-- + +==DONE== +--EXPECT-- +array(0) { +} +array(0) { +} +array(0) { +} +array(0) { +} +array(0) { +} +array(0) { +} +bool(true) +==DONE== -- 2.40.0