Test copy() function: usage variations - destination dir access perms
--SKIPIF--
<?php
-if( (stristr(PHP_OS, "Mac")) || (substr(PHP_OS, 0, 3) == "WIN") )
- die("skip do not run on Win/MacOS");
+if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
+ die("skip do not run on MacOS/Windows");
// Skip if being run by root (files are always readable, writeable and executable)
$filename = dirname(__FILE__)."/copy_variation15_root_check.tmp";
$fp = fopen($filename, 'w');
Test copy() function: usage variations - destination file names(case sensitive)
--SKIPIF--
<?php
-if( (stristr(PHP_OS, "Mac")) || (substr(PHP_OS, 0, 3) == "WIN") )
- die("skip do not run on Win/MacOS");
+if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
+ die("skip do not run on MacOS/Windows");
?>
--FILE--
<?php
Test copy() function: usage variations - destination file access perms
--SKIPIF--
<?php
-if( (stristr(PHP_OS, "Mac")) || (substr(PHP_OS, 0, 3) == "WIN") )
- die("skip do not run on Win/MacOS");
+if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
+ die("skip do not run on MacOS/Windows");
// Skip if being run by root (files are always readable, writeable and executable)
$filename = dirname(__FILE__)."/copy_variation9_root_check.tmp";
--TEST--
Test fileowner() function: basic functionality
---SKIPIF--
-<?php
-if (!function_exists("posix_getpwuid")) {
- die("skip no posix_getpwuid");
-}
--FILE--
<?php
/* Prototype: int fileowner ( string $filename )
echo "*** Testing fileowner(): basic functionality ***\n";
echo "-- Testing with the file or directory created by owner --\n";
-var_dump( posix_getpwuid ( fileowner(__FILE__) ) );
+var_dump( fileowner(__FILE__) );
var_dump( fileowner(".") );
var_dump( fileowner("./..") );
mkdir($dir_name);
var_dump( fileowner($dir_name) );
-echo "\n-- Testing with the standard file or directory --\n";
-var_dump( fileowner("/etc/passwd") );
-var_dump( fileowner("/etc") );
-var_dump( fileowner("/") );
-
-echo "\n*** Done ***\n";
+echo "*** Done ***\n";
?>
--CLEAN--
--EXPECTF--
*** Testing fileowner(): basic functionality ***
-- Testing with the file or directory created by owner --
-array(7) {
- ["name"]=>
- string(%d) %s
- ["passwd"]=>
- string(%d) "%s"
- ["uid"]=>
- int(%d)
- ["gid"]=>
- int(%d)
- ["gecos"]=>
- string(%d) %s
- ["dir"]=>
- string(%d) %s
- ["shell"]=>
- string(%d) %s
-}
-int(%d)
int(%d)
int(%d)
int(%d)
-
--- Testing with the standard file or directory --
-int(%d)
int(%d)
int(%d)
-
*** Done ***
--UEXPECTF--
*** Testing fileowner(): basic functionality ***
-- Testing with the file or directory created by owner --
-array(7) {
- ["name"]=>
- string(%d) %s
- ["passwd"]=>
- string(%d) "%s"
- ["uid"]=>
- int(%d)
- ["gid"]=>
- int(%d)
- ["gecos"]=>
- string(%d) %s
- ["dir"]=>
- string(%d) %s
- ["shell"]=>
- string(%d) %s
-}
int(%d)
int(%d)
-
-Notice: fwrite(): 26 character unicode buffer downcoded for binary stream runtime_encoding in %s on line %d
-int(%d)
int(%d)
--- Testing with the standard file or directory --
-int(%d)
+Notice: fwrite(): 26 character unicode buffer downcoded for binary stream runtime_encoding in %s on line %d
int(%d)
int(%d)
-
*** Done ***