7fa83c84b0ee29d65e558c119dc87815715511b1
[m6w6/ext-http] / tests / encstream019.phpt
1 --TEST--
2 encoding stream brotli error
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 class_exists("http\\Encoding\\Stream\\Enbrotli") or die("SKIP need brotli support");
7 ?>
8 --FILE--
9 <?php
10 echo "Test\n";
11
12 var_dump(http\Encoding\Stream\Debrotli::decode("if this goes through, something's pretty wrong"));
13
14 ?>
15 DONE
16 --EXPECTF--
17 Test
18
19 Warning: http\Encoding\Stream\Debrotli::decode(): Could not brotli decode data: %s in %s on line %d
20 bool(false)
21 DONE