touch_basic.phpt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. --TEST--
  2. Test touch() function : basic functionality
  3. --CREDITS--
  4. Dave Kelsey <d_kelsey@uk.ibm.com>
  5. --SKIPIF--
  6. <?php
  7. if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
  8. if (substr(PHP_OS, 0, 3) == 'WIN') {
  9. die('skip.. only for Non Windows');
  10. }
  11. ?>
  12. --FILE--
  13. <?php
  14. echo "*** Testing touch() : basic functionality ***\n";
  15. $filename = __DIR__."/touch_basic.dat";
  16. echo "\n--- testing touch creates a file ---\n";
  17. @unlink($filename);
  18. if (file_exists($filename)) {
  19. die("touch_basic failed");
  20. }
  21. var_dump( touch($filename) );
  22. if (file_exists($filename) == false) {
  23. die("touch_basic failed");
  24. }
  25. echo "\n --- testing touch doesn't alter file contents ---\n";
  26. $testln = "Here is a test line";
  27. $h = fopen($filename, "wb");
  28. fwrite($h, $testln);
  29. fclose($h);
  30. touch($filename);
  31. $h = fopen($filename, "rb");
  32. echo fgets($h);
  33. fclose($h);
  34. echo "\n\n --- testing touch alters the correct file metadata ---\n";
  35. $init_meta = stat($filename);
  36. clearstatcache();
  37. sleep(1);
  38. touch($filename);
  39. $next_meta = stat($filename);
  40. $type = array("dev", "ino", "mode", "nlink", "uid", "gid",
  41. "rdev", "size", "atime", "mtime", "ctime",
  42. "blksize", "blocks");
  43. for ($i = 0; $i < count($type); $i++) {
  44. if ($init_meta[$i] != $next_meta[$i]) {
  45. echo "stat data differs at $type[$i]\n";
  46. }
  47. }
  48. // Initialise all required variables
  49. $time = 10000;
  50. $atime = 20470;
  51. // Calling touch() with all possible arguments
  52. echo "\n --- testing touch using all parameters ---\n";
  53. var_dump( touch($filename, $time, $atime) );
  54. clearstatcache();
  55. $init_meta = stat($filename);
  56. echo "ctime=".$init_meta['ctime']."\n";
  57. echo "mtime=".$init_meta['mtime']."\n";
  58. echo "atime=".$init_meta['atime']."\n";
  59. unlink($filename);
  60. echo "Done";
  61. ?>
  62. --EXPECTF--
  63. *** Testing touch() : basic functionality ***
  64. --- testing touch creates a file ---
  65. bool(true)
  66. --- testing touch doesn't alter file contents ---
  67. Here is a test line
  68. --- testing touch alters the correct file metadata ---
  69. stat data differs at atime
  70. stat data differs at mtime
  71. stat data differs at ctime
  72. --- testing touch using all parameters ---
  73. bool(true)
  74. ctime=%d
  75. mtime=10000
  76. atime=20470
  77. Done