rename_variation1-win32.phpt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. --TEST--
  2. Test rename() function: usage variations
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. only for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. require __DIR__.'/file.inc';
  12. /* creating directory */
  13. $file_path = __DIR__;
  14. // rename dirs across directories
  15. echo "\n*** Testing rename() : renaming directory across directories ***\n";
  16. $src_dirs = array (
  17. /* Testing simple directory tree */
  18. "$file_path/rename_variation/",
  19. /* Testing a dir with trailing slash */
  20. "$file_path/rename_variation/",
  21. /* Testing dir with double trailing slashes */
  22. "$file_path//rename_variation//",
  23. );
  24. $dest_dir = "$file_path/rename_variation_dir";
  25. // create the $dest_dir
  26. mkdir($dest_dir);
  27. $counter = 1;
  28. /* loop through each $src_dirs and rename it to $dest_dir */
  29. foreach($src_dirs as $src_dir) {
  30. echo "-- Iteration $counter --\n";
  31. // create the src dir
  32. mkdir("$file_path/rename_variation/");
  33. // rename the src dir to a new dir in dest dir
  34. var_dump( rename($src_dir, $dest_dir."/new_dir") );
  35. // ensure that dir was renamed
  36. var_dump( file_exists($src_dir) ); // expecting false
  37. var_dump( file_exists($dest_dir."/new_dir") ); // expecting true
  38. // remove the new dir
  39. rmdir($dest_dir."/new_dir");
  40. $counter++;
  41. }
  42. echo "Done\n";
  43. ?>
  44. --CLEAN--
  45. <?php
  46. $file_path = __DIR__;
  47. unlink($file_path."/rename_variation_link.tmp");
  48. unlink($file_path."/rename_variation.tmp");
  49. rmdir($file_path."/rename_variation_dir");
  50. ?>
  51. --EXPECT--
  52. *** Testing rename() : renaming directory across directories ***
  53. -- Iteration 1 --
  54. bool(true)
  55. bool(false)
  56. bool(true)
  57. -- Iteration 2 --
  58. bool(true)
  59. bool(false)
  60. bool(true)
  61. -- Iteration 3 --
  62. bool(true)
  63. bool(false)
  64. bool(true)
  65. Done