diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/standard/tests/file/lchown_basic.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/standard/tests/file/lchown_basic.phpt')
-rw-r--r-- | ext/standard/tests/file/lchown_basic.phpt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/ext/standard/tests/file/lchown_basic.phpt b/ext/standard/tests/file/lchown_basic.phpt new file mode 100644 index 0000000..9675d3a --- /dev/null +++ b/ext/standard/tests/file/lchown_basic.phpt @@ -0,0 +1,44 @@ +--TEST-- +Test lchown() function : basic functionality +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') die('skip no windows support'); +if (!function_exists("posix_getuid")) die("skip no posix_getuid()"); +?> +--FILE-- +<?php +/* Prototype : bool lchown (string filename, mixed user) + * Description: Change file owner of a symlink + * Source code: ext/standard/filestat.c + * Alias to functions: + */ + +echo "*** Testing lchown() : basic functionality ***\n"; +$filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'lchown.txt'; +$symlink = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'symlink.txt'; + +$uid = posix_getuid(); + +var_dump( touch( $filename ) ); +var_dump( symlink( $filename, $symlink ) ); +var_dump( lchown( $filename, $uid ) ); +var_dump( fileowner( $symlink ) === $uid ); + +?> +===DONE=== +--CLEAN-- +<?php + +$filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'lchown.txt'; +$symlink = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'symlink.txt'; +unlink($filename); +unlink($symlink); + +?> +--EXPECTF-- +*** Testing lchown() : basic functionality *** +bool(true) +bool(true) +bool(true) +bool(true) +===DONE=== |