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/symlink_to_symlink.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/symlink_to_symlink.phpt')
-rw-r--r-- | ext/standard/tests/file/symlink_to_symlink.phpt | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/ext/standard/tests/file/symlink_to_symlink.phpt b/ext/standard/tests/file/symlink_to_symlink.phpt new file mode 100644 index 0000000..b7554f9 --- /dev/null +++ b/ext/standard/tests/file/symlink_to_symlink.phpt @@ -0,0 +1,50 @@ +--TEST-- +symlink() using a relative path, and symlink() to a symlink +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') { + die('skip no symlinks on Windows'); +} +?> +--FILE-- +<?php +$prefix = __FILE__; + +touch($prefix . "_file"); + +// symlink to a regular file using a relative dest +symlink(basename($prefix . "_file"), $prefix . "_link1"); + +// symlink to a symlink using a relative path +symlink(basename($prefix . "_link1"), $prefix . "_link2"); + +// symlink to a non-existent path +@unlink($prefix . "_nonexistant"); +symlink(basename($prefix . "_nonexistant"), $prefix . "_link3"); + +// symlink to a regular file using an absolute path +symlink($prefix . "_file", $prefix . "_link4"); + +// symlink to a symlink using an absolute path +symlink($prefix . "_link4", $prefix . "_link5"); + +var_dump(readlink($prefix . "_link1")); +var_dump(readlink($prefix . "_link2")); +var_dump(readlink($prefix . "_link3")); +var_dump(readlink($prefix . "_link4")); +var_dump(readlink($prefix . "_link5")); + +unlink($prefix . "_link5"); +unlink($prefix . "_link4"); +unlink($prefix . "_link3"); +unlink($prefix . "_link2"); +unlink($prefix . "_link1"); +unlink($prefix . "_file"); + +?> +--EXPECTF-- +%unicode|string%(%d) "symlink_to_symlink.php_file" +%unicode|string%(%d) "symlink_to_symlink.php_link1" +%unicode|string%(%d) "symlink_to_symlink.php_nonexistant" +%unicode|string%(%d) "%s/symlink_to_symlink.php_file" +%unicode|string%(%d) "%s/symlink_to_symlink.php_link4" |