stat_variation3-win32.phpt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --TEST--
  2. Test stat() functions: usage variations - effects of creating/deleting the 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 of creating & deleting of subdir/file on the stats of dir/file */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. /* create temp file and directory */
  15. mkdir("$file_path/stat_variation3/"); // temp dir
  16. echo "*** Testing stat(): with creating & deleting subdir/file ***\n";
  17. // creating and deleting subdir and files in the dir
  18. echo "-- Testing stat() on dir after subdir and file is created in it --\n";
  19. $dirname = "$file_path/stat_variation3";
  20. $old_stat = stat($dirname);
  21. clearstatcache();
  22. sleep(1);
  23. mkdir("$dirname/stat_variation3_subdir");
  24. $file_handle = fopen("$dirname/stat_variation3a.tmp", "w");
  25. fclose($file_handle);
  26. $new_stat = stat($dirname);
  27. // compare self stats
  28. var_dump( compare_self_stat($old_stat) );
  29. var_dump( compare_self_stat($new_stat) );
  30. // compare the stats
  31. $affected_members = array( 9, 'mtime');
  32. clearstatcache();
  33. sleep(2);
  34. var_dump(compare_stats($old_stat, $new_stat, $affected_members, "<"));
  35. unlink("$dirname/stat_variation3a.tmp");
  36. rmdir("$dirname/stat_variation3_subdir");
  37. clearstatcache();
  38. // comparing stats after the deletion of subdir and file
  39. echo "-- Testing stat() for comparing stats after the deletion of subdir and file --\n";
  40. $new_stat1 = stat($dirname);
  41. // compare self stats
  42. var_dump( compare_self_stat($new_stat1) );
  43. // compare the stats
  44. var_dump(compare_stats($new_stat, $new_stat1, $affected_members, "<"));
  45. clearstatcache();
  46. echo "\n*** Done ***";
  47. ?>
  48. --CLEAN--
  49. <?php
  50. $file_path = __DIR__;
  51. rmdir("$file_path/stat_variation3");
  52. ?>
  53. --EXPECT--
  54. *** Testing stat(): with creating & deleting subdir/file ***
  55. -- Testing stat() on dir after subdir and file is created in it --
  56. bool(true)
  57. bool(true)
  58. bool(true)
  59. -- Testing stat() for comparing stats after the deletion of subdir and file --
  60. bool(true)
  61. bool(true)
  62. *** Done ***