php-src/tests/security/open_basedir_glob.phpt
2008-05-26 15:52:06 +00:00

58 lines
853 B
PHP

--TEST--
Test open_basedir configuration
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip Not for Windows variation');
}
?>
--INI--
open_basedir=.
--FILE--
<?php
require_once "open_basedir.inc";
test_open_basedir("glob");
?>
--CLEAN--
<?php
require_once "open_basedir.inc";
delete_directories();
?>
--EXPECTF--
*** Testing open_basedir configuration [glob] ***
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
array(1) {
[0]=>
unicode(5) "../ok"
}
array(1) {
[0]=>
unicode(6) "ok.txt"
}
array(1) {
[0]=>
unicode(12) "../ok/ok.txt"
}
array(1) {
[0]=>
unicode(%d) "%s/test/ok/ok.txt"
}
array(1) {
[0]=>
unicode(%d) "%s/test/ok/../ok/ok.txt"
}
*** Finished testing open_basedir configuration [glob] ***