stat_basic-win32-mb.phpt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. --TEST--
  2. Test stat() function: basic functionality
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. valid only for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. $file_path = __DIR__;
  12. require("$file_path/file.inc");
  13. echo "*** Testing stat() : basic functionality ***\n";
  14. /* creating temp directory and file */
  15. // creating dir
  16. $dirname = "$file_path/stat_basic_私はガラスを食べられます";
  17. mkdir($dirname);
  18. // stat of the dir created
  19. $dir_stat = stat($dirname);
  20. clearstatcache();
  21. sleep(1);
  22. // creating file
  23. $filename = "$dirname/stat_basic_私はガラスを食べられます.tmp";
  24. $file_handle = fopen($filename, "w");
  25. fclose($file_handle);
  26. // stat of the file created
  27. $file_stat = stat($filename);
  28. sleep(1);
  29. // now new stat of the dir after file is created
  30. $new_dir_stat = stat($dirname);
  31. clearstatcache();
  32. // stat contains 13 different values stored twice, can be accessed using
  33. // numeric and named keys, compare them to see they are same
  34. echo "*** Testing stat(): validating the values stored in stat ***\n";
  35. // Initial stat values
  36. var_dump( compare_self_stat($file_stat) ); //expect true
  37. var_dump( compare_self_stat($dir_stat) ); //expect true
  38. // New stat values taken after creation of file
  39. var_dump( compare_self_stat($new_dir_stat) ); // expect true
  40. // compare the two stat values, initial stat and stat recorded after
  41. // creating file, also dump the value of stats
  42. echo "*** Testing stat(): comparing stats (recorded before and after file creation) ***\n";
  43. echo "-- comparing difference in dir stats before and after creating file in it --\n";
  44. $affected_elements = array( 9, 'mtime' );
  45. var_dump( compare_stats($dir_stat, $new_dir_stat, $affected_elements, '!=', true) ); // expect true
  46. echo "*** Testing stat(): for the return value ***\n";
  47. var_dump( is_array( stat($filename) ) );
  48. echo "\n---Done---";
  49. ?>
  50. --CLEAN--
  51. <?php
  52. $file_path = __DIR__;
  53. unlink("$file_path/stat_basic_私はガラスを食べられます/stat_basic_私はガラスを食べられます.tmp");
  54. rmdir("$file_path/stat_basic_私はガラスを食べられます");
  55. ?>
  56. --EXPECTF--
  57. *** Testing stat() : basic functionality ***
  58. *** Testing stat(): validating the values stored in stat ***
  59. bool(true)
  60. bool(true)
  61. bool(true)
  62. *** Testing stat(): comparing stats (recorded before and after file creation) ***
  63. -- comparing difference in dir stats before and after creating file in it --
  64. array(26) {
  65. [0]=>
  66. int(%i)
  67. [1]=>
  68. int(%d)
  69. [2]=>
  70. int(%d)
  71. [3]=>
  72. int(%d)
  73. [4]=>
  74. int(0)
  75. [5]=>
  76. int(0)
  77. [6]=>
  78. int(%d)
  79. [7]=>
  80. int(%d)
  81. [8]=>
  82. int(%d)
  83. [9]=>
  84. int(%d)
  85. [10]=>
  86. int(%d)
  87. [11]=>
  88. int(-1)
  89. [12]=>
  90. int(-1)
  91. ["dev"]=>
  92. int(%i)
  93. ["ino"]=>
  94. int(%d)
  95. ["mode"]=>
  96. int(%d)
  97. ["nlink"]=>
  98. int(%d)
  99. ["uid"]=>
  100. int(0)
  101. ["gid"]=>
  102. int(0)
  103. ["rdev"]=>
  104. int(%d)
  105. ["size"]=>
  106. int(%d)
  107. ["atime"]=>
  108. int(%d)
  109. ["mtime"]=>
  110. int(%d)
  111. ["ctime"]=>
  112. int(%d)
  113. ["blksize"]=>
  114. int(-1)
  115. ["blocks"]=>
  116. int(-1)
  117. }
  118. array(26) {
  119. [0]=>
  120. int(%i)
  121. [1]=>
  122. int(%d)
  123. [2]=>
  124. int(%d)
  125. [3]=>
  126. int(%d)
  127. [4]=>
  128. int(%d)
  129. [5]=>
  130. int(%d)
  131. [6]=>
  132. int(%d)
  133. [7]=>
  134. int(%d)
  135. [8]=>
  136. int(%d)
  137. [9]=>
  138. int(%d)
  139. [10]=>
  140. int(%d)
  141. [11]=>
  142. int(-1)
  143. [12]=>
  144. int(-1)
  145. ["dev"]=>
  146. int(%i)
  147. ["ino"]=>
  148. int(%d)
  149. ["mode"]=>
  150. int(%d)
  151. ["nlink"]=>
  152. int(%d)
  153. ["uid"]=>
  154. int(%d)
  155. ["gid"]=>
  156. int(%d)
  157. ["rdev"]=>
  158. int(%d)
  159. ["size"]=>
  160. int(%d)
  161. ["atime"]=>
  162. int(%d)
  163. ["mtime"]=>
  164. int(%d)
  165. ["ctime"]=>
  166. int(%d)
  167. ["blksize"]=>
  168. int(-1)
  169. ["blocks"]=>
  170. int(-1)
  171. }
  172. bool(true)
  173. *** Testing stat(): for the return value ***
  174. bool(true)
  175. ---Done---