1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 10:03:18 +02:00
Files
archived-php-src/ext/zlib/tests/gzuncompress_basic1.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

42 lines
940 B
PHP

--TEST--
Test gzuncompress() function : basic functionality
--SKIPIF--
<?php
if (!extension_loaded("zlib")) {
print "skip - ZLIB extension not loaded";
}
?>
--FILE--
<?php
/* Prototype : string gzuncompress(string data [, int length])
* Description: Unzip a gzip-compressed string
* Source code: ext/zlib/zlib.c
* Alias to functions:
*/
include(__DIR__ . '/data.inc');
echo "*** Testing gzuncompress() : basic functionality ***\n";
// Initialise all required variables
$compressed = gzcompress($data);
echo "\n-- Basic decompress --\n";
var_dump(strcmp($data, gzuncompress($compressed)));
$length = 3547;
echo "\n-- Calling gzuncompress() with max length of $length --\n";
echo "Result length is ". strlen(gzuncompress($compressed, $length)) . "\n";
?>
--EXPECT--
*** Testing gzuncompress() : basic functionality ***
-- Basic decompress --
int(0)
-- Calling gzuncompress() with max length of 3547 --
Result length is 3547