tempnam_variation7-win32.phpt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. --TEST--
  2. Test tempnam() function: usage variations - invalid/non-existing dir
  3. --SKIPIF--
  4. <?php
  5. if(substr(PHP_OS, 0, 3) != "WIN")
  6. die("skip Only run on Windows");
  7. ?>
  8. --CONFLICTS--
  9. obscure_filename
  10. --FILE--
  11. <?php
  12. /* Passing invalid/non-existing args for $dir,
  13. hence the unique files will be created in temporary dir */
  14. echo "*** Testing tempnam() with invalid/non-existing directory names ***\n";
  15. /* An array of names, which will be passed as a dir name */
  16. $names_arr = array(
  17. /* Invalid args */
  18. -1,
  19. TRUE,
  20. FALSE,
  21. "",
  22. " ",
  23. "\0",
  24. array(),
  25. /* Non-existing dirs */
  26. "/no/such/file/dir",
  27. "php"
  28. );
  29. for( $i=0; $i<count($names_arr); $i++ ) {
  30. echo "-- Iteration $i --\n";
  31. try {
  32. $file_name = tempnam($names_arr[$i], "tempnam_variation3.tmp");
  33. } catch (Error $e) {
  34. echo $e->getMessage(), "\n";
  35. continue;
  36. }
  37. if( file_exists($file_name) ){
  38. echo "File name is => ";
  39. print($file_name);
  40. echo "\n";
  41. echo "File permissions are => ";
  42. printf("%o", fileperms($file_name) );
  43. echo "\n";
  44. echo "File created in => ";
  45. $file_dir = dirname($file_name);
  46. if (realpath($file_dir) == realpath(sys_get_temp_dir()) || realpath($file_dir."\\") == realpath(sys_get_temp_dir())) {
  47. echo "temp dir\n";
  48. } else {
  49. echo "unknown location\n";
  50. }
  51. } else {
  52. echo "-- File is not created --\n";
  53. }
  54. unlink($file_name);
  55. }
  56. ?>
  57. --EXPECTF--
  58. *** Testing tempnam() with invalid/non-existing directory names ***
  59. -- Iteration 0 --
  60. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation7-win32.php on line %d
  61. File name is => %s%et%s
  62. File permissions are => 100666
  63. File created in => temp dir
  64. -- Iteration 1 --
  65. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation7-win32.php on line %d
  66. File name is => %s%et%s
  67. File permissions are => 100666
  68. File created in => temp dir
  69. -- Iteration 2 --
  70. File name is => %s%et%s
  71. File permissions are => 100666
  72. File created in => temp dir
  73. -- Iteration 3 --
  74. File name is => %s%et%s
  75. File permissions are => 100666
  76. File created in => temp dir
  77. -- Iteration 4 --
  78. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation7-win32.php on line %d
  79. File name is => %s%et%s
  80. File permissions are => 100666
  81. File created in => temp dir
  82. -- Iteration 5 --
  83. tempnam(): Argument #1 ($directory) must not contain any null bytes
  84. -- Iteration 6 --
  85. tempnam(): Argument #1 ($directory) must be of type string, array given
  86. -- Iteration 7 --
  87. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation7-win32.php on line %d
  88. File name is => %s%et%s
  89. File permissions are => 100666
  90. File created in => temp dir
  91. -- Iteration 8 --
  92. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation7-win32.php on line %d
  93. File name is => %s%et%s
  94. File permissions are => 100666
  95. File created in => temp dir