rename_variation11-win32.phpt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. --TEST--
  2. Test rename() function : variation - various relative, absolute 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 valid for Windows");
  9. ?>
  10. --FILE--
  11. <?php
  12. echo "*** Testing rename() with absolute and relative paths ***\n";
  13. $mainDir = "renameVar11";
  14. $subDir = "renameVar11Sub";
  15. $absMainDir = __DIR__."\\".$mainDir;
  16. mkdir($absMainDir);
  17. $absSubDir = $absMainDir."\\".$subDir;
  18. mkdir($absSubDir);
  19. $fromFile = "renameMe.tmp";
  20. $toFile = "IwasRenamed.tmp";
  21. $old_dir_path = getcwd();
  22. chdir(__DIR__);
  23. $unixifiedDir = '/'.substr(str_replace('\\','/',$absSubDir),3);
  24. $allDirs = array(
  25. // absolute paths
  26. "$absSubDir\\",
  27. "$absSubDir\\..\\".$subDir,
  28. "$absSubDir\\\\..\\.\\".$subDir,
  29. "$absSubDir\\..\\..\\".$mainDir."\\.\\".$subDir,
  30. "$absSubDir\\..\\\\\\".$subDir."\\\\..\\\\..\\".$subDir,
  31. "$absSubDir\\BADDIR",
  32. // relative paths
  33. $mainDir."\\".$subDir,
  34. $mainDir."\\\\".$subDir,
  35. $mainDir."\\\\\\".$subDir,
  36. ".\\".$mainDir."\\..\\".$mainDir."\\".$subDir,
  37. "BADDIR",
  38. // unixifed path
  39. $unixifiedDir,
  40. );
  41. for($i = 0; $i<count($allDirs); $i++) {
  42. $j = $i+1;
  43. $dir = $allDirs[$i];
  44. echo "\n-- Iteration $j --\n";
  45. touch($absSubDir."\\".$fromFile);
  46. $res = rename($dir."\\".$fromFile, $dir."\\".$toFile);
  47. var_dump($res);
  48. if ($res == true) {
  49. $res = rename($dir."\\".$toFile, $dir."\\".$fromFile);
  50. var_dump($res);
  51. }
  52. unlink($absSubDir."\\".$fromFile);
  53. }
  54. chdir($old_dir_path);
  55. rmdir($absSubDir);
  56. rmdir($absMainDir);
  57. echo "\n*** Done ***\n";
  58. ?>
  59. --EXPECTF--
  60. *** Testing rename() with absolute and relative paths ***
  61. -- Iteration 1 --
  62. bool(true)
  63. bool(true)
  64. -- Iteration 2 --
  65. bool(true)
  66. bool(true)
  67. -- Iteration 3 --
  68. bool(true)
  69. bool(true)
  70. -- Iteration 4 --
  71. bool(true)
  72. bool(true)
  73. -- Iteration 5 --
  74. Warning: rename(%s\renameVar11\renameVar11Sub\..\\\renameVar11Sub\\..\\..\renameVar11Sub\renameMe.tmp,%s\renameVar11\renameVar11Sub\..\\\renameVar11Sub\\..\\..\renameVar11Sub\IwasRenamed.tmp): The system cannot find the path specified (code: 3) in %s on line %d
  75. bool(false)
  76. -- Iteration 6 --
  77. Warning: rename(%s\renameVar11\renameVar11Sub\BADDIR\renameMe.tmp,%s\renameVar11\renameVar11Sub\BADDIR\IwasRenamed.tmp): The system cannot find the path specified (code: 3) in %s on line %d
  78. bool(false)
  79. -- Iteration 7 --
  80. bool(true)
  81. bool(true)
  82. -- Iteration 8 --
  83. bool(true)
  84. bool(true)
  85. -- Iteration 9 --
  86. bool(true)
  87. bool(true)
  88. -- Iteration 10 --
  89. bool(true)
  90. bool(true)
  91. -- Iteration 11 --
  92. Warning: rename(BADDIR\renameMe.tmp,BADDIR\IwasRenamed.tmp): The system cannot find the path specified (code: 3) in %s on line %d
  93. bool(false)
  94. -- Iteration 12 --
  95. bool(true)
  96. bool(true)
  97. *** Done ***