stat_variation8-win32.phpt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. --TEST--
  2. Test stat() functions: usage variations - effects of truncate()
  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 truncate() on stats of file */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. /* create temp file and directory */
  15. $filename = "$file_path/stat_variation8.tmp";
  16. $file_handle = fopen($filename, "w"); // temp file
  17. fclose($file_handle);
  18. echo "\n*** Testing stat(): on file by truncating it to given size ***\n";
  19. // create temp file
  20. $file_handle = fopen($filename, "w");
  21. fclose($file_handle);
  22. clearstatcache(true, $filename);
  23. $old_stat = stat($filename);
  24. // clear the cache
  25. sleep(1);
  26. // opening file in r/w mode
  27. $file_handle = fopen($filename, "r+");
  28. var_dump( ftruncate($file_handle, 512) ); // truncate it
  29. fclose($file_handle);
  30. clearstatcache(true, $filename);
  31. $new_stat = stat($filename);
  32. // compare self stats
  33. var_dump( compare_self_stat($old_stat) );
  34. var_dump( compare_self_stat($new_stat) );
  35. // compare the stat
  36. $affected_members = array(7, 9, 'size', 'mtime');
  37. var_dump( compare_stats($old_stat, $new_stat, $affected_members, '!=') );
  38. // clear the stat
  39. clearstatcache(true, $filename); // clear previous size value in cache
  40. echo "\n*** Done ***";
  41. ?>
  42. --CLEAN--
  43. <?php
  44. $file_path = __DIR__;
  45. unlink("$file_path/stat_variation8.tmp");
  46. ?>
  47. --EXPECT--
  48. *** Testing stat(): on file by truncating it to given size ***
  49. bool(true)
  50. bool(true)
  51. bool(true)
  52. bool(true)
  53. *** Done ***