123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- --TEST--
- Bug #71417: fread() does not report zlib.inflate errors
- --EXTENSIONS--
- zlib
- --FILE--
- <?php
- function test($case) {
- $plain = "The quick brown fox jumps over the lazy dog.";
- $fn = "bug71417.gz";
- $compressed = (string) gzencode($plain);
- if ($case == 1) {
- // 1. Set a random byte in the middle of the compressed data.
- // $ php test-zlib-inflate.php
- // --> read: string(0) ""
- // --> read: string(44) "The quick brown fox jumps over the lazx8dog."
- // $ gzip test-zlib-inflate.gz
- // gzip: test-zlib-inflate.gz: invalid compressed data--crc error
- $compressed[strlen($compressed) - 15] = 'X';
- } else if ($case == 2) {
- // 2. Truncate the compressed data.
- // $ php test-zlib-inflate.php
- // --> read: string(32) "The quick brown fox jumps over t"
- // $ gzip test-zlib-inflate.gz
- // gzip: test-zlib-inflate.gz: unexpected end of file
- $compressed = substr($compressed, 0, strlen($compressed) - 20);
- } else if ($case == 3) {
- // 3. Corrupted final CRC.
- // $ php test-zlib-inflate.php
- // --> read: string(0) ""
- // --> read: string(44) "The quick brown fox jumps over the lazy dog."
- // $ gzip test-zlib-inflate.gz
- // gzip: test-zlib-inflate.gz: invalid compressed data--crc error
- $compressed[strlen($compressed)-5] = 'X';
- } else if ($case == 4) {
- // 4. Corrupted final length.
- // $ php test-zlib-inflate.phpread: string(0) ""
- // read: string(44) "The quick brown fox jumps over the lazy dog."
- // $ gunzip test-zlib-inflate.gz
- // gzip: test-zlib-inflate.gz: invalid compressed data--length error
- $compressed[strlen($compressed)-2] = 'X';
- }
- // The gzdecode() function applied to the corrupted compressed data always
- // detects the error:
- // --> gzdecode(): PHP Fatal error: Uncaught ErrorException: gzdecode(): data error in ...
- echo "gzdecode(): ", rawurldecode(gzdecode($compressed)), "\n";
- file_put_contents($fn, $compressed);
- $r = fopen($fn, "r");
- stream_filter_append($r, 'zlib.inflate', STREAM_FILTER_READ, array('window' => 15+16));
- while (!feof($r)) {
- $s = fread($r, 100);
- echo "read: "; var_dump($s);
- }
- fclose($r);
- unlink($fn);
- }
- test(1);
- test(2);
- test(3);
- test(4);
- ?>
- --EXPECTF--
- gzdecode():
- Warning: gzdecode(): data error in %s on line %d
- Notice: fread(): zlib: data error in %s on line %d
- read: bool(false)
- gzdecode():
- Warning: gzdecode(): data error in %s on line %d
- read: string(32) "The quick brown fox jumps over t"
- gzdecode():
- Warning: gzdecode(): data error in %s on line %d
- Notice: fread(): zlib: data error in %s on line %d
- read: bool(false)
- gzdecode():
- Warning: gzdecode(): data error in %s on line %d
- Notice: fread(): zlib: data error in %s on line %d
- read: bool(false)
|