chmod_variation2.phpt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. --TEST--
  2. chmod() with various paths
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip non-windows only test');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. define("PERMISSIONS_MASK", 0777);
  12. $script_directory = __DIR__;
  13. chdir($script_directory);
  14. $test_dirname = basename(__FILE__, ".php") . "testdir";
  15. mkdir($test_dirname);
  16. $filepath = __FILE__ . ".tmp";
  17. $filename = basename($filepath);
  18. $fd = fopen($filepath, "w+");
  19. fclose($fd);
  20. echo "chmod() on a path containing .. and .\n";
  21. var_dump(chmod("./$test_dirname/../$filename", 0777));
  22. var_dump(chmod("./$test_dirname/../$filename", 0755));
  23. clearstatcache();
  24. printf("%o\n", fileperms($filepath) & PERMISSIONS_MASK);
  25. echo "\nchmod() on a path containing .. with invalid directories\n";
  26. var_dump(chmod($filepath, 0777));
  27. var_dump(chmod("./$test_dirname/bad_dir/../../$filename", 0755));
  28. clearstatcache();
  29. printf("%o\n", fileperms($filepath) & PERMISSIONS_MASK);
  30. echo "\nchmod() on a linked file\n";
  31. $linkname = "somelink";
  32. var_dump(symlink($filepath, $linkname));
  33. var_dump(chmod($filepath, 0777));
  34. var_dump(chmod($linkname, 0755));
  35. clearstatcache();
  36. printf("%o\n", fileperms($filepath) & PERMISSIONS_MASK);
  37. var_dump(unlink($linkname));
  38. echo "\nchmod() on a relative path from a different working directory\n";
  39. chdir($test_dirname);
  40. var_dump(chmod("../$filename", 0777));
  41. var_dump(chmod("../$filename", 0755));
  42. clearstatcache();
  43. printf("%o\n", fileperms($filepath) & PERMISSIONS_MASK);
  44. chdir($script_directory);
  45. echo "\nchmod() on a directory with a trailing /\n";
  46. var_dump(chmod($test_dirname, 0777));
  47. var_dump(chmod("$test_dirname/", 0775));
  48. clearstatcache();
  49. printf("%o\n", fileperms($filepath) & PERMISSIONS_MASK);
  50. chdir($script_directory);
  51. rmdir($test_dirname);
  52. unlink($filepath);
  53. ?>
  54. --EXPECTF--
  55. chmod() on a path containing .. and .
  56. bool(true)
  57. bool(true)
  58. 755
  59. chmod() on a path containing .. with invalid directories
  60. bool(true)
  61. Warning: chmod(): No such file or directory in %s on line %d
  62. bool(false)
  63. 777
  64. chmod() on a linked file
  65. bool(true)
  66. bool(true)
  67. bool(true)
  68. 755
  69. bool(true)
  70. chmod() on a relative path from a different working directory
  71. bool(true)
  72. bool(true)
  73. 755
  74. chmod() on a directory with a trailing /
  75. bool(true)
  76. bool(true)
  77. 755