summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/bug73944.phpt
blob: 6d1e5e5b914f41104880c2f3877f4056c45dc73d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #73944: Dictionary option of intflate_init() does not work
--SKIPIF--
<?php if(!extension_loaded('zlib')) die('skip zlib extension not loaded'); ?>
--FILE--
<?php

$in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => str_repeat("\00", 32768)));
$a = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture1'));
echo '1 block: '.strlen($a).PHP_EOL;

$in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => $a));
$b = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture2'));
echo '2 block: '.($b === false ? 'failed' : strlen($b)).PHP_EOL;

?>
--EXPECTF--
1 block: 32768
2 block: 32768