stat_variation6-win32.phpt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. --TEST--
  2. Test stat() functions: usage variations - changing permissions of dir/file
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. only for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* test the effects on the stats of dir/file for changing permissions of dir/file */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. /* create temp file and directory */
  15. $dirname = "$file_path/stat_variation6";
  16. mkdir($dirname); // temp dir
  17. $filename = "$file_path/stat_variation6.tmp";
  18. $file_handle = fopen($filename, "w"); // temp file
  19. fclose($file_handle);
  20. // checking stat() on file
  21. echo "\n*** Testing stat() on file with miscellaneous file permission and content ***\n";
  22. clearstatcache();
  23. $old_stat = stat($filename);
  24. sleep(1);
  25. var_dump( chmod($filename, 0777) );
  26. // clear the stat
  27. clearstatcache();
  28. $new_stat = stat($filename);
  29. // compare self stats
  30. var_dump( compare_self_stat($old_stat) );
  31. var_dump( compare_self_stat($new_stat) );
  32. // compare the stat
  33. $affected_members = array( 10, 'ctime');
  34. var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
  35. // clear the stat
  36. clearstatcache(); // clear statement cache
  37. // checking stat() on directory
  38. echo "\n*** Testing stat() on directory with miscellaneous file permission ***\n";
  39. $old_stat = stat($dirname);
  40. sleep(1);
  41. var_dump( chmod($dirname, 0777) );
  42. // clear the stat
  43. clearstatcache();
  44. $new_stat = stat($dirname);
  45. // compare self stats
  46. var_dump( compare_self_stat($old_stat) );
  47. var_dump( compare_self_stat($new_stat) );
  48. // compare the stat
  49. $affected_members = array( 10, 'ctime');
  50. var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
  51. // clear the stat
  52. clearstatcache(); // clear statement cache
  53. echo "\n*** Done ***";
  54. ?>
  55. --CLEAN--
  56. <?php
  57. $file_path = __DIR__;
  58. unlink("$file_path/stat_variation6.tmp");
  59. rmdir("$file_path/stat_variation6");
  60. ?>
  61. --EXPECT--
  62. *** Testing stat() on file with miscellaneous file permission and content ***
  63. bool(true)
  64. bool(true)
  65. bool(true)
  66. bool(true)
  67. *** Testing stat() on directory with miscellaneous file permission ***
  68. bool(true)
  69. bool(true)
  70. bool(true)
  71. bool(true)
  72. *** Done ***