touch_variation6-win32.phpt 7.5 KB

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