1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/zlib/tests/bug_34821.phpt
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

42 lines
655 B
PHP

--TEST--
Bug #34821 (zlib encoders fail on widely varying binary data)
--EXTENSIONS--
zlib
--FILE--
<?php
// test 50 bytes to 50k
$b = array(
50,
500,
5000,
50000,
// 1000000, // works, but test would take too long
);
$s = '';
$i = 0;
foreach ($b as $size) {
do {
$s .= chr(rand(0,255));
} while (++$i < $size);
var_dump($s === gzinflate(gzdeflate($s)));
var_dump($s === gzuncompress(gzcompress($s)));
var_dump($s === gzinflate(substr(gzencode($s), 10, -8)));
}
?>
--EXPECT--
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)