touch_basic-win32-mb.phpt 2.0 KB

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