rename_variation2.phpt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --TEST--
  2. Test rename() function: usage variations-3
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip.. only for Linux');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. $file_path = __DIR__;
  12. $dest_dir = "$file_path/rename_variation2_dir";
  13. // create the $dest_dir
  14. mkdir($dest_dir);
  15. /* Testing rename() on soft and hard links with different permissions */
  16. echo "\n*** Testing rename() on soft links ***\n";
  17. // create the file
  18. $filename = $file_path."/rename_variation2.tmp";
  19. @unlink($filename);
  20. var_dump(touch($filename));
  21. // create the soft links to the file
  22. $linkname = $file_path."/rename_variation2_soft_link1.tmp";
  23. var_dump(symlink($filename, $linkname));
  24. //rename the link to a new name in the same dir
  25. $dest_linkname = $file_path."/rename_variation2_soft_link2.tmp";
  26. var_dump( rename( $linkname, $dest_linkname) );
  27. //ensure that link was renamed
  28. clearstatcache();
  29. var_dump( file_exists($linkname) ); // expecting false
  30. var_dump( file_exists($dest_linkname) ); // expecting true
  31. // rename a link across dir
  32. var_dump( rename($dest_linkname, $dest_dir."/rename_variation2_soft_link2.tmp"));
  33. //ensure that link got renamed
  34. clearstatcache();
  35. var_dump( file_exists($dest_linkname) ); // expecting false
  36. var_dump( file_exists($dest_dir."/rename_variation2_soft_link2.tmp") ); // expecting true
  37. // delete the link file now
  38. unlink($dest_dir."/rename_variation2_soft_link2.tmp");
  39. echo "Done\n";
  40. ?>
  41. --CLEAN--
  42. <?php
  43. $file_path = __DIR__;
  44. unlink($file_path."/rename_variation2.tmp");
  45. rmdir($file_path."/rename_variation2_dir");
  46. ?>
  47. --EXPECT--
  48. *** Testing rename() on soft links ***
  49. bool(true)
  50. bool(true)
  51. bool(true)
  52. bool(false)
  53. bool(true)
  54. bool(true)
  55. bool(false)
  56. bool(true)
  57. Done