realpath_basic-win32.phpt 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. --TEST--
  2. Test realpath() function: basic functionality
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip only on Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. echo "\n*** Testing basic functions of realpath() with files ***\n";
  12. /* creating directories and files */
  13. $file_path = __DIR__;
  14. mkdir("$file_path/realpath_basic/home/test/", 0777, true);
  15. $file_handle1 = fopen("$file_path/realpath_basic/home/test/realpath_basic.tmp", "w");
  16. $file_handle2 = fopen("$file_path/realpath_basic/home/realpath_basic.tmp", "w");
  17. $file_handle3 = fopen("$file_path/realpath_basic/realpath_basic.tmp", "w");
  18. fclose($file_handle1);
  19. fclose($file_handle2);
  20. fclose($file_handle3);
  21. echo "\n*** Testing realpath() on filenames ***\n";
  22. $filenames = array (
  23. /* filenames resulting in valid paths */
  24. "$file_path/realpath_basic/home/realpath_basic.tmp",
  25. "$file_path/realpath_basic/realpath_basic.tmp/",
  26. "$file_path/realpath_basic//home/test//../test/./realpath_basic.tmp",
  27. "$file_path/realpath_basic/home//../././realpath_basic.tmp//",
  28. // checking for binary safe
  29. "$file_path/realpath_basic/home/realpath_basic.tmp",
  30. /* filenames with invalid path */
  31. "$file_path///realpath_basic/home//..//././test//realpath_basic.tmp",
  32. "$file_path/realpath_basic/home/../home/../test/../..realpath_basic.tmp"
  33. );
  34. $counter = 1;
  35. /* loop through $files to read the filepath of $file in the above array */
  36. foreach($filenames as $file) {
  37. echo "\n-- Iteration $counter --\n";
  38. var_dump( realpath($file) );
  39. $counter++;
  40. }
  41. echo "Done\n";
  42. ?>
  43. --CLEAN--
  44. <?php
  45. $name_prefix = __DIR__."/realpath_basic";
  46. unlink("$name_prefix/home/test/realpath_basic.tmp");
  47. unlink("$name_prefix/home/realpath_basic.tmp");
  48. unlink("$name_prefix/realpath_basic.tmp");
  49. rmdir("$name_prefix/home/test/");
  50. rmdir("$name_prefix/home/");
  51. rmdir("$name_prefix/");
  52. ?>
  53. --EXPECTF--
  54. *** Testing basic functions of realpath() with files ***
  55. *** Testing realpath() on filenames ***
  56. -- Iteration 1 --
  57. string(%d) "%s\realpath_basic\home\realpath_basic.tmp"
  58. -- Iteration 2 --
  59. bool(false)
  60. -- Iteration 3 --
  61. string(%d) "%s\realpath_basic\home\test\realpath_basic.tmp"
  62. -- Iteration 4 --
  63. bool(false)
  64. -- Iteration 5 --
  65. string(%d) "%s\realpath_basic\home\realpath_basic.tmp"
  66. -- Iteration 6 --
  67. bool(false)
  68. -- Iteration 7 --
  69. bool(false)
  70. Done