readfile_variation10-win32.phpt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. --TEST--
  2. Test readfile() 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. echo "*** Testing readfile() : variation ***\n";
  15. /* An array of files */
  16. $names_arr = array(
  17. /* Invalid args */
  18. "-1" => -1,
  19. "TRUE" => TRUE,
  20. "FALSE" => FALSE,
  21. "\"\"" => "",
  22. "\" \"" => " ",
  23. "\\0" => "\0",
  24. "array()" => array(),
  25. /* prefix with path separator of a non existing directory*/
  26. "/no/such/file/dir" => "/no/such/file/dir",
  27. "php/php"=> "php/php"
  28. );
  29. foreach($names_arr as $key => $value) {
  30. echo "\n-- Filename: $key --\n";
  31. try {
  32. readfile($value);
  33. } catch (\TypeError|\ValueError $e) {
  34. echo get_class($e) . ': ' . $e->getMessage(), "\n";
  35. }
  36. }
  37. ?>
  38. --EXPECTF--
  39. *** Testing readfile() : variation ***
  40. -- Filename: -1 --
  41. Warning: readfile(-1): Failed to open stream: No such file or directory in %s on line %d
  42. -- Filename: TRUE --
  43. Warning: readfile(1): Failed to open stream: No such file or directory in %s on line %d
  44. -- Filename: FALSE --
  45. ValueError: Path cannot be empty
  46. -- Filename: "" --
  47. ValueError: Path cannot be empty
  48. -- Filename: " " --
  49. Warning: readfile( ): Failed to open stream: Permission denied in %s on line %d
  50. -- Filename: \0 --
  51. ValueError: readfile(): Argument #1 ($filename) must not contain any null bytes
  52. -- Filename: array() --
  53. TypeError: readfile(): Argument #1 ($filename) must be of type string, array given
  54. -- Filename: /no/such/file/dir --
  55. Warning: readfile(/no/such/file/dir): Failed to open stream: No such file or directory in %s on line %d
  56. -- Filename: php/php --
  57. Warning: readfile(php/php): Failed to open stream: No such file or directory in %s on line %d