php-src/ext/zip/tests/bug51353.phpt
Ilija Tovilo f39b5c4c25
Close PHP tags in tests
Closes GH-12422
2023-10-18 17:34:10 +02:00

59 lines
1.2 KiB
PHP

--TEST--
Bug #51353 ZIP64 problem, archive with 100000 items
--EXTENSIONS--
zip
--SKIPIF--
<?php
die('skip the test might get very long, activate it manually');
?>
--FILE--
<?php
/* This test might get very long depending on the mashine it's running on. Therefore
adding an explicit skip, remove it to run this test. */
set_time_limit(0);
$base_path = __DIR__;
/* Either we ship a file with 100000 entries which would be >12M big,
or create it dynamically. */
$zip = new ZipArchive;
$r = $zip->open("$base_path/51353.zip", ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE);
if ($r) {
for ($i = 0; $i < 100000; $i++) {
$zip->addFromString("$i.txt", '1');
}
$zip->close();
} else {
die("failed");
}
$zip = new ZipArchive;
$r = $zip->open("$base_path/51353.zip");
if ($r) {
$zip->extractTo("$base_path/51353_unpack");
$zip->close();
$a = glob("$base_path/51353_unpack/*.txt");
echo count($a) . "\n";
} else {
die("failed");
}
echo "OK";
?>
--CLEAN--
<?php
$base_path = __DIR__;
unlink("$base_path/51353.zip");
$a = glob("$base_path/51353_unpack/*.txt");
foreach($a as $f) {
unlink($f);
}
rmdir("$base_path/51353_unpack");
?>
--EXPECT--
100000
OK