rename_variation13-win32.phpt 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. --TEST--
  2. Test rename() function : variation - various 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 run only on Windows");
  9. ?>
  10. --CONFLICTS--
  11. obscure_filename
  12. --FILE--
  13. <?php
  14. /* An array of files */
  15. $names_arr = array(
  16. /* Invalid args */
  17. -1, /* -1 is just a valid filename on windows */
  18. TRUE, /* 1 as well, (string)TRUE > "1" */
  19. FALSE,
  20. "", // I think both p8 and php are wrong on the messages here
  21. //p8 generates different messages to php, php is probably wrong
  22. //php has either "File Exists" or "Permission Denied".
  23. " ",
  24. /* prefix with path separator of a non existing directory*/
  25. "/no/such/file/dir",
  26. "php/php"
  27. );
  28. /* disable notice so we don't get the array to string conversion notice for "$name" where $name = array() */
  29. error_reporting(E_ALL ^ E_NOTICE);
  30. echo "*** Testing rename() with obscure files ***\n";
  31. $file_path = __DIR__."/renameVar13";
  32. $aFile = $file_path.'/afile.tmp';
  33. if (!mkdir($file_path)) {
  34. die("fail to create $file_path tmp dir");
  35. }
  36. for( $i=0; $i < count($names_arr); $i++ ) {
  37. $name = $names_arr[$i];
  38. echo "-- $i testing '$name' " . gettype($name) . " --\n";
  39. touch($aFile);
  40. var_dump(rename($aFile, $name));
  41. if (file_exists($name)) {
  42. @unlink($name);
  43. }
  44. if (file_exists($aFile)) {
  45. @unlink($aFile);
  46. }
  47. var_dump(rename($name, $aFile));
  48. if (file_exists($aFile)) {
  49. @unlink($aFile);
  50. }
  51. }
  52. rmdir($file_path);
  53. ?>
  54. --EXPECTF--
  55. *** Testing rename() with obscure files ***
  56. -- 0 testing '-1' integer --
  57. bool(true)
  58. Warning: rename(-1,%safile.tmp): The system cannot find the file specified (code: 2) in %srename_variation13-win32.php on line %d
  59. bool(false)
  60. -- 1 testing '1' boolean --
  61. bool(true)
  62. Warning: rename(1,%safile.tmp): The system cannot find the file specified (code: 2) in %srename_variation13-win32.php on line %d
  63. bool(false)
  64. -- 2 testing '' boolean --
  65. Warning: rename(%safile.tmp,): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified) \(code: \d+\))%r in %srename_variation13-win32.php on line %d
  66. bool(false)
  67. Warning: rename(,%safile.tmp): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified) \(code: \d+\))%r in %srename_variation13-win32.php on line %d
  68. bool(false)
  69. -- 3 testing '' string --
  70. Warning: rename(%safile.tmp,): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified) \(code: \d+\))%r in %srename_variation13-win32.php on line %d
  71. bool(false)
  72. Warning: rename(,%safile.tmp): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified) \(code: \d+\))%r in %srename_variation13-win32.php on line %d
  73. bool(false)
  74. -- 4 testing ' ' string --
  75. Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect (code: 123) in %srename_variation13-win32.php on line %d
  76. bool(false)
  77. Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect (code: 123) in %srename_variation13-win32.php on line %d
  78. bool(false)
  79. -- 5 testing '/no/such/file/dir' string --
  80. Warning: rename(%safile.tmp,/no/such/file/dir): The system cannot find the path specified (code: 3) in %srename_variation13-win32.php on line %d
  81. bool(false)
  82. Warning: rename(/no/such/file/dir,%safile.tmp): The system cannot find the path specified (code: 3) in %srename_variation13-win32.php on line %d
  83. bool(false)
  84. -- 6 testing 'php/php' string --
  85. Warning: rename(%safile.tmp,php/php): The system cannot find the path specified (code: 3) in %srename_variation13-win32.php on line %d
  86. bool(false)
  87. Warning: rename(php/php,%safile.tmp): The system cannot find the path specified (code: 3) in %srename_variation13-win32.php on line %d
  88. bool(false)