stat_variation4-win32.phpt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. --TEST--
  2. Test stat() functions: usage variations - effects of is_dir() & is_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 using is_dir() & is_file() on dir/file */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. /* create temp file and directory */
  15. mkdir("$file_path/stat_variation4/"); // temp dir
  16. $file_handle = fopen("$file_path/stat_variation4.tmp", "w"); // temp file
  17. fclose($file_handle);
  18. echo "\n*** Testing stat(): on file and directory after accessing it
  19. with is_dir() and is_file() functions ***\n";
  20. // is_dir() on a directory
  21. echo "-- Testing on Directory --\n";
  22. $old_dirname = "$file_path/stat_variation4";
  23. $old_stat = stat($old_dirname);
  24. // clear the cache
  25. clearstatcache();
  26. sleep(1);
  27. var_dump( is_dir($old_dirname) );
  28. $new_stat = stat($old_dirname);
  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. var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
  34. // clear the stat
  35. clearstatcache();
  36. // is_file() on a file
  37. echo "-- Testing on file --\n";
  38. $old_filename = "$file_path/stat_variation4.tmp";
  39. $old_stat = stat($old_filename);
  40. // clear the stat
  41. clearstatcache();
  42. sleep(2);
  43. var_dump( is_file($old_filename) );
  44. $new_stat = stat($old_filename);
  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. var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
  50. // clear the stat
  51. clearstatcache();
  52. echo "\n*** Done ***";
  53. ?>
  54. --CLEAN--
  55. <?php
  56. $file_path = __DIR__;
  57. unlink("$file_path/stat_variation4.tmp");
  58. rmdir("$file_path/stat_variation4");
  59. ?>
  60. --EXPECT--
  61. *** Testing stat(): on file and directory after accessing it
  62. with is_dir() and is_file() functions ***
  63. -- Testing on Directory --
  64. bool(true)
  65. bool(true)
  66. bool(true)
  67. bool(true)
  68. -- Testing on file --
  69. bool(true)
  70. bool(true)
  71. bool(true)
  72. bool(true)
  73. *** Done ***