php-src/ext/standard/tests/file/fileowner_basic.phpt
2007-06-13 22:38:49 +00:00

83 lines
1.7 KiB
PHP

--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 )
* Description: Returns the user ID of the owner of the file, or
* FALSE in case of an error.
*/
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(".") );
var_dump( fileowner("./..") );
/* Newly created files and dirs */
$file_path = dirname(__FILE__);
$file_name = $file_path."/fileowner_basic.tmp";
$file_handle = fopen($file_name, "w");
$string = "Hello, world\n1234\n123Hello";
fwrite($file_handle, $string);
var_dump( fileowner($file_name) );
fclose($file_handle);
$dir_name = $file_path."/fileowner_basic";
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";
?>
--CLEAN--
<?php
$file_path = dirname(__FILE__);
$file_name = $file_path."/fileowner_basic.tmp";
$dir_name = $file_path."/fileowner_basic";
unlink($file_name);
rmdir($dir_name);
?>
--EXPECTF--
*** Testing fileowner(): basic functionality ***
-- Testing with the file or directory created by owner --
array(7) {
["name"]=>
string(%d) %s
["passwd"]=>
string(1) "x"
["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(0)
int(0)
int(0)
*** Done ***