ftruncate_variation6-win32.phpt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. --TEST--
  2. Test ftruncate() function : usage variations - truncate file to smaller size
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. only valid for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* truncate the file to smaller size and display the content */
  12. // include common file related test functions
  13. include ("file.inc");
  14. echo "*** Testing ftruncate() : usage variations ***\n";
  15. /* test ftruncate with file opened in different modes */
  16. $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
  17. "w", "wb", "wt", "w+", "w+b", "w+t",
  18. "x", "xb", "xt", "x+", "x+b", "x+t",
  19. "a", "ab", "at", "a+", "a+b", "a+t");
  20. $file_content_types = array("numeric","text_with_new_line");
  21. foreach($file_content_types as $file_content_type) {
  22. echo "\n-- Testing ftruncate() with file having data of type ". $file_content_type ." --\n";
  23. for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
  24. echo "-- Testing ftruncate() with file opening using $file_modes[$mode_counter] mode --\n";
  25. // create 1 file with some contents
  26. $filename = __DIR__."/ftruncate_variation6.tmp";
  27. if( strstr($file_modes[$mode_counter], "x") || strstr($file_modes[$mode_counter], "w") ) {
  28. // fopen the file using the $file_modes
  29. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  30. fill_file($file_handle, $file_content_type, 1024);
  31. } else {
  32. create_files ( __DIR__, 1, $file_content_type, 0755, 1, "w", "ftruncate_variation", 6);
  33. // fopen the file using the $file_modes
  34. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  35. }
  36. if (!$file_handle) {
  37. echo "Error: failed to open file $filename!\n";
  38. exit();
  39. }
  40. rewind($file_handle); // file pointer to 0
  41. echo "-- Testing ftruncate(): truncate to smaller size and display the file content --\n";
  42. /* try to truncate it and display the file content */
  43. $new_size = 15;
  44. var_dump( filesize($filename) ); // current filesize
  45. var_dump( ftell($file_handle) );
  46. if(ftruncate($file_handle, $new_size) ){// truncate it
  47. echo "File content after truncating file to $new_size size : ";
  48. var_dump( file_get_contents($filename) );
  49. }
  50. var_dump( ftell($file_handle) );
  51. var_dump( feof($file_handle) );
  52. fclose($file_handle);
  53. clearstatcache(); // clear previous size value in cache
  54. var_dump( filesize($filename) );
  55. //delete all files created
  56. delete_file( $filename );
  57. }//end of inner for loop
  58. }//end of outer foreach loop
  59. echo "Done\n";
  60. ?>
  61. --EXPECT--
  62. *** Testing ftruncate() : usage variations ***
  63. -- Testing ftruncate() with file having data of type numeric --
  64. -- Testing ftruncate() with file opening using r mode --
  65. -- Testing ftruncate(): truncate to smaller size and display the file content --
  66. int(1024)
  67. int(0)
  68. int(0)
  69. bool(false)
  70. int(1024)
  71. -- Testing ftruncate() with file opening using rb mode --
  72. -- Testing ftruncate(): truncate to smaller size and display the file content --
  73. int(1024)
  74. int(0)
  75. int(0)
  76. bool(false)
  77. int(1024)
  78. -- Testing ftruncate() with file opening using rt mode --
  79. -- Testing ftruncate(): truncate to smaller size and display the file content --
  80. int(1024)
  81. int(0)
  82. int(0)
  83. bool(false)
  84. int(1024)
  85. -- Testing ftruncate() with file opening using r+ mode --
  86. -- Testing ftruncate(): truncate to smaller size and display the file content --
  87. int(1024)
  88. int(0)
  89. File content after truncating file to 15 size : string(15) "222222222222222"
  90. int(0)
  91. bool(false)
  92. int(15)
  93. -- Testing ftruncate() with file opening using r+b mode --
  94. -- Testing ftruncate(): truncate to smaller size and display the file content --
  95. int(1024)
  96. int(0)
  97. File content after truncating file to 15 size : string(15) "222222222222222"
  98. int(0)
  99. bool(false)
  100. int(15)
  101. -- Testing ftruncate() with file opening using r+t mode --
  102. -- Testing ftruncate(): truncate to smaller size and display the file content --
  103. int(1024)
  104. int(0)
  105. File content after truncating file to 15 size : string(15) "222222222222222"
  106. int(0)
  107. bool(false)
  108. int(15)
  109. -- Testing ftruncate() with file opening using w mode --
  110. -- Testing ftruncate(): truncate to smaller size and display the file content --
  111. int(1024)
  112. int(0)
  113. File content after truncating file to 15 size : string(15) "222222222222222"
  114. int(0)
  115. bool(false)
  116. int(15)
  117. -- Testing ftruncate() with file opening using wb mode --
  118. -- Testing ftruncate(): truncate to smaller size and display the file content --
  119. int(1024)
  120. int(0)
  121. File content after truncating file to 15 size : string(15) "222222222222222"
  122. int(0)
  123. bool(false)
  124. int(15)
  125. -- Testing ftruncate() with file opening using wt mode --
  126. -- Testing ftruncate(): truncate to smaller size and display the file content --
  127. int(1024)
  128. int(0)
  129. File content after truncating file to 15 size : string(15) "222222222222222"
  130. int(0)
  131. bool(false)
  132. int(15)
  133. -- Testing ftruncate() with file opening using w+ mode --
  134. -- Testing ftruncate(): truncate to smaller size and display the file content --
  135. int(1024)
  136. int(0)
  137. File content after truncating file to 15 size : string(15) "222222222222222"
  138. int(0)
  139. bool(false)
  140. int(15)
  141. -- Testing ftruncate() with file opening using w+b mode --
  142. -- Testing ftruncate(): truncate to smaller size and display the file content --
  143. int(1024)
  144. int(0)
  145. File content after truncating file to 15 size : string(15) "222222222222222"
  146. int(0)
  147. bool(false)
  148. int(15)
  149. -- Testing ftruncate() with file opening using w+t mode --
  150. -- Testing ftruncate(): truncate to smaller size and display the file content --
  151. int(1024)
  152. int(0)
  153. File content after truncating file to 15 size : string(15) "222222222222222"
  154. int(0)
  155. bool(false)
  156. int(15)
  157. -- Testing ftruncate() with file opening using x mode --
  158. -- Testing ftruncate(): truncate to smaller size and display the file content --
  159. int(1024)
  160. int(0)
  161. File content after truncating file to 15 size : string(15) "222222222222222"
  162. int(0)
  163. bool(false)
  164. int(15)
  165. -- Testing ftruncate() with file opening using xb mode --
  166. -- Testing ftruncate(): truncate to smaller size and display the file content --
  167. int(1024)
  168. int(0)
  169. File content after truncating file to 15 size : string(15) "222222222222222"
  170. int(0)
  171. bool(false)
  172. int(15)
  173. -- Testing ftruncate() with file opening using xt mode --
  174. -- Testing ftruncate(): truncate to smaller size and display the file content --
  175. int(1024)
  176. int(0)
  177. File content after truncating file to 15 size : string(15) "222222222222222"
  178. int(0)
  179. bool(false)
  180. int(15)
  181. -- Testing ftruncate() with file opening using x+ mode --
  182. -- Testing ftruncate(): truncate to smaller size and display the file content --
  183. int(1024)
  184. int(0)
  185. File content after truncating file to 15 size : string(15) "222222222222222"
  186. int(0)
  187. bool(false)
  188. int(15)
  189. -- Testing ftruncate() with file opening using x+b mode --
  190. -- Testing ftruncate(): truncate to smaller size and display the file content --
  191. int(1024)
  192. int(0)
  193. File content after truncating file to 15 size : string(15) "222222222222222"
  194. int(0)
  195. bool(false)
  196. int(15)
  197. -- Testing ftruncate() with file opening using x+t mode --
  198. -- Testing ftruncate(): truncate to smaller size and display the file content --
  199. int(1024)
  200. int(0)
  201. File content after truncating file to 15 size : string(15) "222222222222222"
  202. int(0)
  203. bool(false)
  204. int(15)
  205. -- Testing ftruncate() with file opening using a mode --
  206. -- Testing ftruncate(): truncate to smaller size and display the file content --
  207. int(1024)
  208. int(0)
  209. File content after truncating file to 15 size : string(15) "222222222222222"
  210. int(0)
  211. bool(false)
  212. int(15)
  213. -- Testing ftruncate() with file opening using ab mode --
  214. -- Testing ftruncate(): truncate to smaller size and display the file content --
  215. int(1024)
  216. int(0)
  217. File content after truncating file to 15 size : string(15) "222222222222222"
  218. int(0)
  219. bool(false)
  220. int(15)
  221. -- Testing ftruncate() with file opening using at mode --
  222. -- Testing ftruncate(): truncate to smaller size and display the file content --
  223. int(1024)
  224. int(0)
  225. File content after truncating file to 15 size : string(15) "222222222222222"
  226. int(0)
  227. bool(false)
  228. int(15)
  229. -- Testing ftruncate() with file opening using a+ mode --
  230. -- Testing ftruncate(): truncate to smaller size and display the file content --
  231. int(1024)
  232. int(0)
  233. File content after truncating file to 15 size : string(15) "222222222222222"
  234. int(0)
  235. bool(false)
  236. int(15)
  237. -- Testing ftruncate() with file opening using a+b mode --
  238. -- Testing ftruncate(): truncate to smaller size and display the file content --
  239. int(1024)
  240. int(0)
  241. File content after truncating file to 15 size : string(15) "222222222222222"
  242. int(0)
  243. bool(false)
  244. int(15)
  245. -- Testing ftruncate() with file opening using a+t mode --
  246. -- Testing ftruncate(): truncate to smaller size and display the file content --
  247. int(1024)
  248. int(0)
  249. File content after truncating file to 15 size : string(15) "222222222222222"
  250. int(0)
  251. bool(false)
  252. int(15)
  253. -- Testing ftruncate() with file having data of type text_with_new_line --
  254. -- Testing ftruncate() with file opening using r mode --
  255. -- Testing ftruncate(): truncate to smaller size and display the file content --
  256. int(1024)
  257. int(0)
  258. int(0)
  259. bool(false)
  260. int(1024)
  261. -- Testing ftruncate() with file opening using rb mode --
  262. -- Testing ftruncate(): truncate to smaller size and display the file content --
  263. int(1024)
  264. int(0)
  265. int(0)
  266. bool(false)
  267. int(1024)
  268. -- Testing ftruncate() with file opening using rt mode --
  269. -- Testing ftruncate(): truncate to smaller size and display the file content --
  270. int(1024)
  271. int(0)
  272. int(0)
  273. bool(false)
  274. int(1024)
  275. -- Testing ftruncate() with file opening using r+ mode --
  276. -- Testing ftruncate(): truncate to smaller size and display the file content --
  277. int(1024)
  278. int(0)
  279. File content after truncating file to 15 size : string(15) "line
  280. line of te"
  281. int(0)
  282. bool(false)
  283. int(15)
  284. -- Testing ftruncate() with file opening using r+b mode --
  285. -- Testing ftruncate(): truncate to smaller size and display the file content --
  286. int(1024)
  287. int(0)
  288. File content after truncating file to 15 size : string(15) "line
  289. line of te"
  290. int(0)
  291. bool(false)
  292. int(15)
  293. -- Testing ftruncate() with file opening using r+t mode --
  294. -- Testing ftruncate(): truncate to smaller size and display the file content --
  295. int(1024)
  296. int(0)
  297. File content after truncating file to 15 size : string(15) "line
  298. line of te"
  299. int(0)
  300. bool(false)
  301. int(15)
  302. -- Testing ftruncate() with file opening using w mode --
  303. -- Testing ftruncate(): truncate to smaller size and display the file content --
  304. int(1024)
  305. int(0)
  306. File content after truncating file to 15 size : string(15) "line
  307. line of te"
  308. int(0)
  309. bool(false)
  310. int(15)
  311. -- Testing ftruncate() with file opening using wb mode --
  312. -- Testing ftruncate(): truncate to smaller size and display the file content --
  313. int(1024)
  314. int(0)
  315. File content after truncating file to 15 size : string(15) "line
  316. line of te"
  317. int(0)
  318. bool(false)
  319. int(15)
  320. -- Testing ftruncate() with file opening using wt mode --
  321. -- Testing ftruncate(): truncate to smaller size and display the file content --
  322. int(1137)
  323. int(0)
  324. File content after truncating file to 15 size : string(15) "line
  325. line of t"
  326. int(0)
  327. bool(false)
  328. int(15)
  329. -- Testing ftruncate() with file opening using w+ mode --
  330. -- Testing ftruncate(): truncate to smaller size and display the file content --
  331. int(1024)
  332. int(0)
  333. File content after truncating file to 15 size : string(15) "line
  334. line of te"
  335. int(0)
  336. bool(false)
  337. int(15)
  338. -- Testing ftruncate() with file opening using w+b mode --
  339. -- Testing ftruncate(): truncate to smaller size and display the file content --
  340. int(1024)
  341. int(0)
  342. File content after truncating file to 15 size : string(15) "line
  343. line of te"
  344. int(0)
  345. bool(false)
  346. int(15)
  347. -- Testing ftruncate() with file opening using w+t mode --
  348. -- Testing ftruncate(): truncate to smaller size and display the file content --
  349. int(1137)
  350. int(0)
  351. File content after truncating file to 15 size : string(15) "line
  352. line of t"
  353. int(0)
  354. bool(false)
  355. int(15)
  356. -- Testing ftruncate() with file opening using x mode --
  357. -- Testing ftruncate(): truncate to smaller size and display the file content --
  358. int(1024)
  359. int(0)
  360. File content after truncating file to 15 size : string(15) "line
  361. line of te"
  362. int(0)
  363. bool(false)
  364. int(15)
  365. -- Testing ftruncate() with file opening using xb mode --
  366. -- Testing ftruncate(): truncate to smaller size and display the file content --
  367. int(1024)
  368. int(0)
  369. File content after truncating file to 15 size : string(15) "line
  370. line of te"
  371. int(0)
  372. bool(false)
  373. int(15)
  374. -- Testing ftruncate() with file opening using xt mode --
  375. -- Testing ftruncate(): truncate to smaller size and display the file content --
  376. int(1137)
  377. int(0)
  378. File content after truncating file to 15 size : string(15) "line
  379. line of t"
  380. int(0)
  381. bool(false)
  382. int(15)
  383. -- Testing ftruncate() with file opening using x+ mode --
  384. -- Testing ftruncate(): truncate to smaller size and display the file content --
  385. int(1024)
  386. int(0)
  387. File content after truncating file to 15 size : string(15) "line
  388. line of te"
  389. int(0)
  390. bool(false)
  391. int(15)
  392. -- Testing ftruncate() with file opening using x+b mode --
  393. -- Testing ftruncate(): truncate to smaller size and display the file content --
  394. int(1024)
  395. int(0)
  396. File content after truncating file to 15 size : string(15) "line
  397. line of te"
  398. int(0)
  399. bool(false)
  400. int(15)
  401. -- Testing ftruncate() with file opening using x+t mode --
  402. -- Testing ftruncate(): truncate to smaller size and display the file content --
  403. int(1137)
  404. int(0)
  405. File content after truncating file to 15 size : string(15) "line
  406. line of t"
  407. int(0)
  408. bool(false)
  409. int(15)
  410. -- Testing ftruncate() with file opening using a mode --
  411. -- Testing ftruncate(): truncate to smaller size and display the file content --
  412. int(1024)
  413. int(0)
  414. File content after truncating file to 15 size : string(15) "line
  415. line of te"
  416. int(0)
  417. bool(false)
  418. int(15)
  419. -- Testing ftruncate() with file opening using ab mode --
  420. -- Testing ftruncate(): truncate to smaller size and display the file content --
  421. int(1024)
  422. int(0)
  423. File content after truncating file to 15 size : string(15) "line
  424. line of te"
  425. int(0)
  426. bool(false)
  427. int(15)
  428. -- Testing ftruncate() with file opening using at mode --
  429. -- Testing ftruncate(): truncate to smaller size and display the file content --
  430. int(1024)
  431. int(0)
  432. File content after truncating file to 15 size : string(15) "line
  433. line of te"
  434. int(0)
  435. bool(false)
  436. int(15)
  437. -- Testing ftruncate() with file opening using a+ mode --
  438. -- Testing ftruncate(): truncate to smaller size and display the file content --
  439. int(1024)
  440. int(0)
  441. File content after truncating file to 15 size : string(15) "line
  442. line of te"
  443. int(0)
  444. bool(false)
  445. int(15)
  446. -- Testing ftruncate() with file opening using a+b mode --
  447. -- Testing ftruncate(): truncate to smaller size and display the file content --
  448. int(1024)
  449. int(0)
  450. File content after truncating file to 15 size : string(15) "line
  451. line of te"
  452. int(0)
  453. bool(false)
  454. int(15)
  455. -- Testing ftruncate() with file opening using a+t mode --
  456. -- Testing ftruncate(): truncate to smaller size and display the file content --
  457. int(1024)
  458. int(0)
  459. File content after truncating file to 15 size : string(15) "line
  460. line of te"
  461. int(0)
  462. bool(false)
  463. int(15)
  464. Done