mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
928afd8fb7
Closes GH-4985
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
--TEST--
|
|
Test gzcompress() function : error conditions
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("zlib")) {
|
|
print "skip - ZLIB extension not loaded";
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : string gzcompress(string data [, int level, [int encoding]])
|
|
* Description: Gzip-compress a string
|
|
* Source code: ext/zlib/zlib.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
/*
|
|
* add a comment here to say what the test is supposed to do
|
|
*/
|
|
|
|
echo "*** Testing gzcompress() : error conditions ***\n";
|
|
|
|
echo "\n-- Testing with incorrect compression level --\n";
|
|
$data = 'string_val';
|
|
$bad_level = 99;
|
|
try {
|
|
var_dump(gzcompress($data, $bad_level));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . \PHP_EOL;
|
|
}
|
|
|
|
echo "\n-- Testing with invalid encoding --\n";
|
|
$data = 'string_val';
|
|
$level = 2;
|
|
$encoding = 99;
|
|
try {
|
|
var_dump(gzcompress($data, $level, $encoding));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . \PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
*** Testing gzcompress() : error conditions ***
|
|
|
|
-- Testing with incorrect compression level --
|
|
Compression level (99) must be within -1..9
|
|
|
|
-- Testing with invalid encoding --
|
|
Encoding mode must be either ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP or ZLIB_ENCODING_DEFLATE
|