touch_variation5-win32.phpt 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. --TEST--
  2. Test touch() function : variation: various valid and invalid paths
  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. --FILE--
  11. <?php
  12. $workDir = "touchVar5.tmp";
  13. $subDirOrFile = "aSubDirOrFile";
  14. $cwd = __DIR__;
  15. chdir($cwd);
  16. if (!mkdir($cwd . '/' . $workDir)) die("cannot create directory $workDir");
  17. $paths = array(
  18. // relative
  19. $workDir.'/'.$subDirOrFile,
  20. './'.$workDir.'/'.$subDirOrFile,
  21. $workDir.'/../'.$workDir.'/'.$subDirOrFile,
  22. // relative bad path (note p8 msgs differ)
  23. $workDir.'/../BADDIR/'.$subDirOrFile,
  24. 'BADDIR/'.$subDirOrFile,
  25. //absolute
  26. $cwd.'/'.$workDir.'/'.$subDirOrFile,
  27. $cwd.'/./'.$workDir.'/'.$subDirOrFile,
  28. $cwd.'/'.$workDir.'/../'.$workDir.'/'.$subDirOrFile,
  29. //absolute bad path (note p8 msgs differ)
  30. $cwd.'/BADDIR/'.$subDirOrFile,
  31. //trailing separators
  32. $workDir.'/'.$subDirOrFile.'/',
  33. $cwd.'/'.$workDir.'/'.$subDirOrFile.'/',
  34. // multiple separators
  35. $workDir.'//'.$subDirOrFile,
  36. $cwd.'//'.$workDir.'//'.$subDirOrFile,
  37. );
  38. echo "*** Testing touch() : variation ***\n";
  39. echo "\n*** testing nonexisting paths ***\n";
  40. test_nonexisting($paths);
  41. echo "\n*** testing existing files ***\n";
  42. test_existing($paths, false);
  43. echo "\n*** testing existing directories ***\n";
  44. test_existing($paths, true);
  45. rmdir($workDir);
  46. function test_nonexisting($paths) {
  47. foreach($paths as $path) {
  48. echo "--- testing $path ---\n";
  49. if (is_dir($path) || is_file($path)) {
  50. echo "FAILED: $path - exists\n";
  51. }
  52. else {
  53. $res = touch($path);
  54. if ($res === true) {
  55. // something was created
  56. if (file_exists($path)) {
  57. // something found
  58. if (is_dir($path)) {
  59. echo "FAILED: $path - unexpected directory\n";
  60. }
  61. else {
  62. echo "PASSED: $path - created\n";
  63. unlink($path);
  64. }
  65. }
  66. else {
  67. // nothing found
  68. echo "FAILED: $path - touch returned true, nothing there\n";
  69. }
  70. }
  71. else {
  72. // nothing created
  73. if (file_exists($path)) {
  74. //something found
  75. echo "FAILED: $path - touch returned false, something there\n";
  76. if (is_dir($path)) {
  77. rmdir($path);
  78. }
  79. else {
  80. unlink($path);
  81. }
  82. }
  83. }
  84. }
  85. }
  86. }
  87. function test_existing($paths, $are_dirs) {
  88. foreach($paths as $path) {
  89. if ($are_dirs) {
  90. $res = @mkdir($path);
  91. if ($res == true) {
  92. test_path($path);
  93. rmdir($path);
  94. }
  95. }
  96. else {
  97. $h = @fopen($path,"w");
  98. if ($h !== false) {
  99. fclose($h);
  100. test_path($path);
  101. unlink($path);
  102. }
  103. }
  104. }
  105. }
  106. function test_path($path) {
  107. echo "--- testing $path ---\n";
  108. $org_atime = get_atime($path);
  109. clearstatcache();
  110. $res = touch($path,0,0);
  111. $next_atime = get_atime($path);
  112. if ($next_atime == $org_atime) {
  113. echo "FAILED: $path - access time not changed\n";
  114. }
  115. else {
  116. echo "PASSED: $path - touched\n";
  117. }
  118. }
  119. function get_atime($path) {
  120. $temp = stat($path);
  121. return $temp['atime'];
  122. }
  123. ?>
  124. --EXPECTF--
  125. *** Testing touch() : variation ***
  126. *** testing nonexisting paths ***
  127. --- testing touchVar5.tmp/aSubDirOrFile ---
  128. PASSED: touchVar5.tmp/aSubDirOrFile - created
  129. --- testing ./touchVar5.tmp/aSubDirOrFile ---
  130. PASSED: ./touchVar5.tmp/aSubDirOrFile - created
  131. --- testing touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  132. PASSED: touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - created
  133. --- testing touchVar5.tmp/../BADDIR/aSubDirOrFile ---
  134. Warning: touch(): Unable to create file touchVar5.tmp/../BADDIR/aSubDirOrFile because %s in %s on line %d
  135. --- testing BADDIR/aSubDirOrFile ---
  136. Warning: touch(): Unable to create file BADDIR/aSubDirOrFile because %s in %s on line %d
  137. --- testing %s/touchVar5.tmp/aSubDirOrFile ---
  138. PASSED: %s/touchVar5.tmp/aSubDirOrFile - created
  139. --- testing %s/./touchVar5.tmp/aSubDirOrFile ---
  140. PASSED: %s/./touchVar5.tmp/aSubDirOrFile - created
  141. --- testing %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  142. PASSED: %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - created
  143. --- testing %s/BADDIR/aSubDirOrFile ---
  144. Warning: touch(): Unable to create file %s/BADDIR/aSubDirOrFile because %s in %s on line %d
  145. --- testing touchVar5.tmp/aSubDirOrFile/ ---
  146. Warning: touch(): Unable to create file touchVar5.tmp/aSubDirOrFile/ because %s in %s on line %d
  147. --- testing %s/touchVar5.tmp/aSubDirOrFile/ ---
  148. Warning: touch(): Unable to create file %s/touchVar5.tmp/aSubDirOrFile/ because %s in %s on line %d
  149. --- testing touchVar5.tmp//aSubDirOrFile ---
  150. PASSED: touchVar5.tmp//aSubDirOrFile - created
  151. --- testing %s//touchVar5.tmp//aSubDirOrFile ---
  152. PASSED: %s//touchVar5.tmp//aSubDirOrFile - created
  153. *** testing existing files ***
  154. --- testing touchVar5.tmp/aSubDirOrFile ---
  155. PASSED: touchVar5.tmp/aSubDirOrFile - touched
  156. --- testing ./touchVar5.tmp/aSubDirOrFile ---
  157. PASSED: ./touchVar5.tmp/aSubDirOrFile - touched
  158. --- testing touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  159. PASSED: touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - touched
  160. --- testing %s/touchVar5.tmp/aSubDirOrFile ---
  161. PASSED: %s/touchVar5.tmp/aSubDirOrFile - touched
  162. --- testing %s/./touchVar5.tmp/aSubDirOrFile ---
  163. PASSED: %s/./touchVar5.tmp/aSubDirOrFile - touched
  164. --- testing %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  165. PASSED: %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - touched
  166. --- testing touchVar5.tmp//aSubDirOrFile ---
  167. PASSED: touchVar5.tmp//aSubDirOrFile - touched
  168. --- testing %s//touchVar5.tmp//aSubDirOrFile ---
  169. PASSED: %s//touchVar5.tmp//aSubDirOrFile - touched
  170. *** testing existing directories ***
  171. --- testing touchVar5.tmp/aSubDirOrFile ---
  172. PASSED: touchVar5.tmp/aSubDirOrFile - touched
  173. --- testing ./touchVar5.tmp/aSubDirOrFile ---
  174. PASSED: ./touchVar5.tmp/aSubDirOrFile - touched
  175. --- testing touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  176. PASSED: touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - touched
  177. --- testing %s/touchVar5.tmp/aSubDirOrFile ---
  178. PASSED: %s/touchVar5.tmp/aSubDirOrFile - touched
  179. --- testing %s/./touchVar5.tmp/aSubDirOrFile ---
  180. PASSED: %s/./touchVar5.tmp/aSubDirOrFile - touched
  181. --- testing %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile ---
  182. PASSED: %s/touchVar5.tmp/../touchVar5.tmp/aSubDirOrFile - touched
  183. --- testing touchVar5.tmp/aSubDirOrFile/ ---
  184. PASSED: touchVar5.tmp/aSubDirOrFile/ - touched
  185. --- testing %s/touchVar5.tmp/aSubDirOrFile/ ---
  186. PASSED: %s/touchVar5.tmp/aSubDirOrFile/ - touched
  187. --- testing touchVar5.tmp//aSubDirOrFile ---
  188. PASSED: touchVar5.tmp//aSubDirOrFile - touched
  189. --- testing %s//touchVar5.tmp//aSubDirOrFile ---
  190. PASSED: %s//touchVar5.tmp//aSubDirOrFile - touched