diff options
author | Anatol Belski <ab@php.net> | 2016-05-30 12:47:04 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-05-30 12:47:04 +0200 |
commit | 97c530fece03bb42b43137b8542d33a4a09f31c7 (patch) | |
tree | 25eb5ef8a8e1c9553c6811ce44ccb04b5a5454cc /ext/zip | |
parent | f6e79af3efd48931573d03a8faa91dce74f6d2af (diff) | |
download | php-git-97c530fece03bb42b43137b8542d33a4a09f31c7.tar.gz |
Add test for bug #72258
Diffstat (limited to 'ext/zip')
-rw-r--r-- | ext/zip/tests/bug72258.phpt | 26 | ||||
-rw-r--r-- | ext/zip/tests/bug72258.zip | bin | 0 -> 110 bytes |
2 files changed, 26 insertions, 0 deletions
diff --git a/ext/zip/tests/bug72258.phpt b/ext/zip/tests/bug72258.phpt new file mode 100644 index 0000000000..0e0c8c1a71 --- /dev/null +++ b/ext/zip/tests/bug72258.phpt @@ -0,0 +1,26 @@ +--TEST-- +Bug #72258 ZipArchive converts fns to unrecoverable form +--SKIPIF-- +<?php +/* $Id$ */ +if(!extension_loaded('zip')) die('skip'); +?> +--FILE-- +<?php + +$fn = dirname(__FILE__) . DIRECTORY_SEPARATOR . "bug72258.zip"; + +$zip = new \ZipArchive(); +$res = $zip->open($fn); +if ($res !== true) { + echo 'Error opening: ' . $res; + die(); +} + +for ($i = 0; $i < $zip->numFiles; $i++) { + $fnInArc = $zip->getNameIndex($i, ZipArchive::FL_ENC_RAW); + var_dump($fnInArc); +} +?> +--EXPECT-- +string(6) "/" diff --git a/ext/zip/tests/bug72258.zip b/ext/zip/tests/bug72258.zip Binary files differnew file mode 100644 index 0000000000..07ea2e4948 --- /dev/null +++ b/ext/zip/tests/bug72258.zip |