rename_variation12.phpt 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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') die('skip.. not for Windows');
  8. ?>
  9. --FILE--
  10. <?php
  11. /* Creating unique files in various dirs by passing relative paths to $dir arg */
  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. $allDirs = array(
  24. // absolute paths
  25. "$absSubDir/",
  26. "$absSubDir/../".$subDir,
  27. "$absSubDir//.././".$subDir,
  28. "$absSubDir/../../".$mainDir."/./".$subDir,
  29. "$absSubDir/..///".$subDir."//..//../".$subDir,
  30. "$absSubDir/BADDIR",
  31. // relative paths
  32. $mainDir."/".$subDir,
  33. $mainDir."//".$subDir,
  34. $mainDir."///".$subDir,
  35. "./".$mainDir."/../".$mainDir."/".$subDir,
  36. "BADDIR",
  37. );
  38. for($i = 0; $i<count($allDirs); $i++) {
  39. $j = $i+1;
  40. $dir = $allDirs[$i];
  41. echo "\n-- Iteration $j --\n";
  42. touch($absSubDir."/".$fromFile);
  43. $res = rename($dir."/".$fromFile, $dir."/".$toFile);
  44. var_dump($res);
  45. if ($res == true) {
  46. $res = rename($dir."/".$toFile, $dir."/".$fromFile);
  47. var_dump($res);
  48. }
  49. unlink($absSubDir."/".$fromFile);
  50. }
  51. chdir($old_dir_path);
  52. rmdir($absSubDir);
  53. rmdir($absMainDir);
  54. echo "\n*** Done ***\n";
  55. ?>
  56. --EXPECTF--
  57. *** Testing rename() with absolute and relative paths ***
  58. -- Iteration 1 --
  59. bool(true)
  60. bool(true)
  61. -- Iteration 2 --
  62. bool(true)
  63. bool(true)
  64. -- Iteration 3 --
  65. bool(true)
  66. bool(true)
  67. -- Iteration 4 --
  68. bool(true)
  69. bool(true)
  70. -- Iteration 5 --
  71. Warning: rename(%s/renameVar11/renameVar11Sub/..///renameVar11Sub//..//../renameVar11Sub/renameMe.tmp,%s/renameVar11/renameVar11Sub/..///renameVar11Sub//..//../renameVar11Sub/IwasRenamed.tmp): %s in %s on line %d
  72. bool(false)
  73. -- Iteration 6 --
  74. Warning: rename(%s/renameVar11/renameVar11Sub/BADDIR/renameMe.tmp,%s/renameVar11/renameVar11Sub/BADDIR/IwasRenamed.tmp): %s in %s on line %d
  75. bool(false)
  76. -- Iteration 7 --
  77. bool(true)
  78. bool(true)
  79. -- Iteration 8 --
  80. bool(true)
  81. bool(true)
  82. -- Iteration 9 --
  83. bool(true)
  84. bool(true)
  85. -- Iteration 10 --
  86. bool(true)
  87. bool(true)
  88. -- Iteration 11 --
  89. Warning: rename(BADDIR/renameMe.tmp,BADDIR/IwasRenamed.tmp): %s in %s on line %d
  90. bool(false)
  91. *** Done ***