fread_basic.phpt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. --TEST--
  2. Test fread() function : basic functionality
  3. --FILE--
  4. <?php
  5. // include the file.inc for common functions for test
  6. include ("file.inc");
  7. /* Function : function check_size(string $data, int $expect_size)
  8. Description : Check the length of the data, and compare the size with $expect_size
  9. $data : Text data.
  10. $expect_size : Expected data length
  11. */
  12. function check_size($data, $expect_size) {
  13. $size=strlen($data);
  14. if ( $size == $expect_size)
  15. echo "OK\n";
  16. else
  17. echo "Error: Expected: $expect_size, Actual: $size";
  18. }
  19. echo "*** Testing fread() basic operations ***\n";
  20. /*
  21. test fread with file opened in "r" and "rb" mode only
  22. Content with numeric and strings with it
  23. */
  24. $file_modes = array( "r", "rb", "rt", "r+", "r+b", "r+t");
  25. $file_content_types = array("numeric","text","text_with_new_line","alphanumeric");
  26. foreach($file_content_types as $file_content_type) {
  27. echo "\n-- Testing fread) with file having data of type ". $file_content_type ." --\n";
  28. /* create files with $file_content_type */
  29. create_files ( __DIR__, 1, $file_content_type, 0755, 1, "w", "fread_basic");
  30. $filename = __DIR__."/fread_basic1.tmp"; // this is name of the file created by create_files()
  31. /* open the file using $files_modes and perform fread() on it */
  32. for($inner_loop_counter = 0;
  33. $inner_loop_counter < count($file_modes);
  34. $inner_loop_counter++) {
  35. echo "-- File opened in mode ".$file_modes[$inner_loop_counter]." --\n";
  36. $file_handle = fopen($filename, $file_modes[$inner_loop_counter]);
  37. if (!$file_handle) {
  38. echo "Error: failed to fopen() file: $filename!";
  39. exit();
  40. }
  41. /* read file by giving the actual length, check the length and content by calculating the
  42. hash using md5() function
  43. */
  44. /* Reading 1024 bytes from file, expecting 1024 bytes */ ;
  45. var_dump(ftell($file_handle));
  46. var_dump( feof($file_handle) );
  47. echo "Reading 1024 bytes from file, expecting 1024 bytes ... ";
  48. $data_from_file=fread($file_handle, 1024);
  49. check_size($data_from_file,1024);
  50. var_dump(ftell($file_handle));
  51. var_dump( feof($file_handle) );
  52. var_dump( md5($data_from_file) ); // calculate the hash and dump it
  53. /* read file by giving size more than its size */
  54. var_dump(rewind($file_handle));
  55. var_dump(ftell($file_handle));
  56. var_dump( feof($file_handle) );
  57. /*reading 1030 bytes from file, expecting 1024 bytes */ ;
  58. echo "Reading 1030 bytes from file, expecting 1024 bytes ... ";
  59. $data_from_file=fread($file_handle, 1030);// request for 6 bytes more than its size
  60. check_size($data_from_file,1024);
  61. var_dump(ftell($file_handle));
  62. var_dump( feof($file_handle) );
  63. var_dump( md5($data_from_file) ); // calculate the hash and dump it
  64. // reading 1000 bytes within the file max size
  65. var_dump(rewind($file_handle));
  66. var_dump(ftell($file_handle));
  67. var_dump( feof($file_handle) );
  68. /*reading 1000 bytes from file, expecting 1000 bytes */ ;
  69. echo "Reading 1000 bytes from file, expecting 1000 bytes ... ";
  70. $data_from_file=fread($file_handle, 1000);// request for 24 bytes less than its size
  71. check_size($data_from_file,1000);
  72. var_dump(ftell($file_handle));
  73. var_dump( feof($file_handle) );
  74. var_dump( md5($data_from_file) ); // calculate the hash and dump it
  75. var_dump(fclose($file_handle)); // now close the file
  76. } // end of inner for loop
  77. // delete the file created
  78. delete_file($filename); // delete file with name
  79. } // end of outer foreach loop
  80. echo "Done\n";
  81. ?>
  82. --EXPECT--
  83. *** Testing fread() basic operations ***
  84. -- Testing fread) with file having data of type numeric --
  85. -- File opened in mode r --
  86. int(0)
  87. bool(false)
  88. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  89. int(1024)
  90. bool(false)
  91. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  92. bool(true)
  93. int(0)
  94. bool(false)
  95. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  96. int(1024)
  97. bool(true)
  98. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  99. bool(true)
  100. int(0)
  101. bool(false)
  102. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  103. int(1000)
  104. bool(false)
  105. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  106. bool(true)
  107. -- File opened in mode rb --
  108. int(0)
  109. bool(false)
  110. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  111. int(1024)
  112. bool(false)
  113. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  114. bool(true)
  115. int(0)
  116. bool(false)
  117. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  118. int(1024)
  119. bool(true)
  120. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  121. bool(true)
  122. int(0)
  123. bool(false)
  124. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  125. int(1000)
  126. bool(false)
  127. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  128. bool(true)
  129. -- File opened in mode rt --
  130. int(0)
  131. bool(false)
  132. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  133. int(1024)
  134. bool(false)
  135. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  136. bool(true)
  137. int(0)
  138. bool(false)
  139. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  140. int(1024)
  141. bool(true)
  142. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  143. bool(true)
  144. int(0)
  145. bool(false)
  146. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  147. int(1000)
  148. bool(false)
  149. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  150. bool(true)
  151. -- File opened in mode r+ --
  152. int(0)
  153. bool(false)
  154. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  155. int(1024)
  156. bool(false)
  157. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  158. bool(true)
  159. int(0)
  160. bool(false)
  161. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  162. int(1024)
  163. bool(true)
  164. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  165. bool(true)
  166. int(0)
  167. bool(false)
  168. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  169. int(1000)
  170. bool(false)
  171. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  172. bool(true)
  173. -- File opened in mode r+b --
  174. int(0)
  175. bool(false)
  176. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  177. int(1024)
  178. bool(false)
  179. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  180. bool(true)
  181. int(0)
  182. bool(false)
  183. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  184. int(1024)
  185. bool(true)
  186. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  187. bool(true)
  188. int(0)
  189. bool(false)
  190. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  191. int(1000)
  192. bool(false)
  193. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  194. bool(true)
  195. -- File opened in mode r+t --
  196. int(0)
  197. bool(false)
  198. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  199. int(1024)
  200. bool(false)
  201. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  202. bool(true)
  203. int(0)
  204. bool(false)
  205. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  206. int(1024)
  207. bool(true)
  208. string(32) "950b7457d1deb6332f2fc5d42f3129d6"
  209. bool(true)
  210. int(0)
  211. bool(false)
  212. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  213. int(1000)
  214. bool(false)
  215. string(32) "4501f99f2b79d0345f26f1394aca58a3"
  216. bool(true)
  217. -- Testing fread) with file having data of type text --
  218. -- File opened in mode r --
  219. int(0)
  220. bool(false)
  221. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  222. int(1024)
  223. bool(false)
  224. string(32) "e486000c4c8452774f746a27658d87fa"
  225. bool(true)
  226. int(0)
  227. bool(false)
  228. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  229. int(1024)
  230. bool(true)
  231. string(32) "e486000c4c8452774f746a27658d87fa"
  232. bool(true)
  233. int(0)
  234. bool(false)
  235. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  236. int(1000)
  237. bool(false)
  238. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  239. bool(true)
  240. -- File opened in mode rb --
  241. int(0)
  242. bool(false)
  243. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  244. int(1024)
  245. bool(false)
  246. string(32) "e486000c4c8452774f746a27658d87fa"
  247. bool(true)
  248. int(0)
  249. bool(false)
  250. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  251. int(1024)
  252. bool(true)
  253. string(32) "e486000c4c8452774f746a27658d87fa"
  254. bool(true)
  255. int(0)
  256. bool(false)
  257. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  258. int(1000)
  259. bool(false)
  260. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  261. bool(true)
  262. -- File opened in mode rt --
  263. int(0)
  264. bool(false)
  265. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  266. int(1024)
  267. bool(false)
  268. string(32) "e486000c4c8452774f746a27658d87fa"
  269. bool(true)
  270. int(0)
  271. bool(false)
  272. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  273. int(1024)
  274. bool(true)
  275. string(32) "e486000c4c8452774f746a27658d87fa"
  276. bool(true)
  277. int(0)
  278. bool(false)
  279. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  280. int(1000)
  281. bool(false)
  282. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  283. bool(true)
  284. -- File opened in mode r+ --
  285. int(0)
  286. bool(false)
  287. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  288. int(1024)
  289. bool(false)
  290. string(32) "e486000c4c8452774f746a27658d87fa"
  291. bool(true)
  292. int(0)
  293. bool(false)
  294. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  295. int(1024)
  296. bool(true)
  297. string(32) "e486000c4c8452774f746a27658d87fa"
  298. bool(true)
  299. int(0)
  300. bool(false)
  301. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  302. int(1000)
  303. bool(false)
  304. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  305. bool(true)
  306. -- File opened in mode r+b --
  307. int(0)
  308. bool(false)
  309. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  310. int(1024)
  311. bool(false)
  312. string(32) "e486000c4c8452774f746a27658d87fa"
  313. bool(true)
  314. int(0)
  315. bool(false)
  316. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  317. int(1024)
  318. bool(true)
  319. string(32) "e486000c4c8452774f746a27658d87fa"
  320. bool(true)
  321. int(0)
  322. bool(false)
  323. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  324. int(1000)
  325. bool(false)
  326. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  327. bool(true)
  328. -- File opened in mode r+t --
  329. int(0)
  330. bool(false)
  331. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  332. int(1024)
  333. bool(false)
  334. string(32) "e486000c4c8452774f746a27658d87fa"
  335. bool(true)
  336. int(0)
  337. bool(false)
  338. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  339. int(1024)
  340. bool(true)
  341. string(32) "e486000c4c8452774f746a27658d87fa"
  342. bool(true)
  343. int(0)
  344. bool(false)
  345. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  346. int(1000)
  347. bool(false)
  348. string(32) "2ec76a59f8c44b8f8a0f5139f61bb1bd"
  349. bool(true)
  350. -- Testing fread) with file having data of type text_with_new_line --
  351. -- File opened in mode r --
  352. int(0)
  353. bool(false)
  354. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  355. int(1024)
  356. bool(false)
  357. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  358. bool(true)
  359. int(0)
  360. bool(false)
  361. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  362. int(1024)
  363. bool(true)
  364. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  365. bool(true)
  366. int(0)
  367. bool(false)
  368. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  369. int(1000)
  370. bool(false)
  371. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  372. bool(true)
  373. -- File opened in mode rb --
  374. int(0)
  375. bool(false)
  376. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  377. int(1024)
  378. bool(false)
  379. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  380. bool(true)
  381. int(0)
  382. bool(false)
  383. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  384. int(1024)
  385. bool(true)
  386. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  387. bool(true)
  388. int(0)
  389. bool(false)
  390. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  391. int(1000)
  392. bool(false)
  393. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  394. bool(true)
  395. -- File opened in mode rt --
  396. int(0)
  397. bool(false)
  398. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  399. int(1024)
  400. bool(false)
  401. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  402. bool(true)
  403. int(0)
  404. bool(false)
  405. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  406. int(1024)
  407. bool(true)
  408. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  409. bool(true)
  410. int(0)
  411. bool(false)
  412. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  413. int(1000)
  414. bool(false)
  415. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  416. bool(true)
  417. -- File opened in mode r+ --
  418. int(0)
  419. bool(false)
  420. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  421. int(1024)
  422. bool(false)
  423. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  424. bool(true)
  425. int(0)
  426. bool(false)
  427. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  428. int(1024)
  429. bool(true)
  430. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  431. bool(true)
  432. int(0)
  433. bool(false)
  434. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  435. int(1000)
  436. bool(false)
  437. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  438. bool(true)
  439. -- File opened in mode r+b --
  440. int(0)
  441. bool(false)
  442. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  443. int(1024)
  444. bool(false)
  445. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  446. bool(true)
  447. int(0)
  448. bool(false)
  449. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  450. int(1024)
  451. bool(true)
  452. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  453. bool(true)
  454. int(0)
  455. bool(false)
  456. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  457. int(1000)
  458. bool(false)
  459. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  460. bool(true)
  461. -- File opened in mode r+t --
  462. int(0)
  463. bool(false)
  464. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  465. int(1024)
  466. bool(false)
  467. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  468. bool(true)
  469. int(0)
  470. bool(false)
  471. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  472. int(1024)
  473. bool(true)
  474. string(32) "b09c8026a64a88d36d4c2f17983964bb"
  475. bool(true)
  476. int(0)
  477. bool(false)
  478. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  479. int(1000)
  480. bool(false)
  481. string(32) "a148fa8110bbac875d84fc9d7056c0a1"
  482. bool(true)
  483. -- Testing fread) with file having data of type alphanumeric --
  484. -- File opened in mode r --
  485. int(0)
  486. bool(false)
  487. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  488. int(1024)
  489. bool(false)
  490. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  491. bool(true)
  492. int(0)
  493. bool(false)
  494. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  495. int(1024)
  496. bool(true)
  497. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  498. bool(true)
  499. int(0)
  500. bool(false)
  501. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  502. int(1000)
  503. bool(false)
  504. string(32) "a49d752f980184c7f44568e930f89c72"
  505. bool(true)
  506. -- File opened in mode rb --
  507. int(0)
  508. bool(false)
  509. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  510. int(1024)
  511. bool(false)
  512. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  513. bool(true)
  514. int(0)
  515. bool(false)
  516. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  517. int(1024)
  518. bool(true)
  519. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  520. bool(true)
  521. int(0)
  522. bool(false)
  523. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  524. int(1000)
  525. bool(false)
  526. string(32) "a49d752f980184c7f44568e930f89c72"
  527. bool(true)
  528. -- File opened in mode rt --
  529. int(0)
  530. bool(false)
  531. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  532. int(1024)
  533. bool(false)
  534. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  535. bool(true)
  536. int(0)
  537. bool(false)
  538. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  539. int(1024)
  540. bool(true)
  541. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  542. bool(true)
  543. int(0)
  544. bool(false)
  545. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  546. int(1000)
  547. bool(false)
  548. string(32) "a49d752f980184c7f44568e930f89c72"
  549. bool(true)
  550. -- File opened in mode r+ --
  551. int(0)
  552. bool(false)
  553. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  554. int(1024)
  555. bool(false)
  556. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  557. bool(true)
  558. int(0)
  559. bool(false)
  560. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  561. int(1024)
  562. bool(true)
  563. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  564. bool(true)
  565. int(0)
  566. bool(false)
  567. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  568. int(1000)
  569. bool(false)
  570. string(32) "a49d752f980184c7f44568e930f89c72"
  571. bool(true)
  572. -- File opened in mode r+b --
  573. int(0)
  574. bool(false)
  575. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  576. int(1024)
  577. bool(false)
  578. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  579. bool(true)
  580. int(0)
  581. bool(false)
  582. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  583. int(1024)
  584. bool(true)
  585. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  586. bool(true)
  587. int(0)
  588. bool(false)
  589. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  590. int(1000)
  591. bool(false)
  592. string(32) "a49d752f980184c7f44568e930f89c72"
  593. bool(true)
  594. -- File opened in mode r+t --
  595. int(0)
  596. bool(false)
  597. Reading 1024 bytes from file, expecting 1024 bytes ... OK
  598. int(1024)
  599. bool(false)
  600. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  601. bool(true)
  602. int(0)
  603. bool(false)
  604. Reading 1030 bytes from file, expecting 1024 bytes ... OK
  605. int(1024)
  606. bool(true)
  607. string(32) "3fabd48d8eaa65c14e0d93d6880c560c"
  608. bool(true)
  609. int(0)
  610. bool(false)
  611. Reading 1000 bytes from file, expecting 1000 bytes ... OK
  612. int(1000)
  613. bool(false)
  614. string(32) "a49d752f980184c7f44568e930f89c72"
  615. bool(true)
  616. Done