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/gzcompress_error1.phpt
Gina Peter Banyard 5bd18e3fdc ext/zlib: Refactor tests (#18887)
- Use INI sections
- Use CGI sections
- Move data into a subfolder
- Remove ZPP tests
- Fix various bugs within tests
- Simplify some


Found while working on #18879
2025-06-21 18:03:50 +01:00

40 lines
961 B
PHP

--TEST--
Test gzcompress() function : error conditions
--EXTENSIONS--
zlib
--FILE--
<?php
/*
* 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";
$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 --
gzcompress(): Argument #2 ($level) must be between -1 and 9
-- Testing with invalid encoding --
gzcompress(): Argument #3 ($encoding) must be one of ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP, or ZLIB_ENCODING_DEFLATE