php-src/ext/zip/tests
Anatol Belski 3d3f11ede4 Fixed the UTF-8 and long path support in the streams on Windows.
Since long the default PHP charset is UTF-8, however the Windows part is
out of step with this important point. The current implementation in PHP
doesn't technically permit to handle UTF-8 filepath and several other
things. Till now, only the ANSI compatible APIs are being used. Here is more
about it

dd317752%28v=vs.85%29.aspx

The patch fixes not only issues with multibyte filenames under
incompatible codepages, but indirectly also issues with some other multibyte
encodings like BIG5, Shift-JIS, etc. by providing a clean way to access
filenames in UTF-8. Below is a small list of issues from the bug tracker,
that are getting fixed:

https://bugs.php.net/63401
https://bugs.php.net/41199
https://bugs.php.net/50203
https://bugs.php.net/71509
https://bugs.php.net/64699
https://bugs.php.net/64506
https://bugs.php.net/30195
https://bugs.php.net/65358
https://bugs.php.net/61315
https://bugs.php.net/70943
https://bugs.php.net/70903
https://bugs.php.net/63593
https://bugs.php.net/54977
https://bugs.php.net/54028
https://bugs.php.net/43148
https://bugs.php.net/30730
https://bugs.php.net/33350
https://bugs.php.net/35300
https://bugs.php.net/46990
https://bugs.php.net/61309
https://bugs.php.net/69333
https://bugs.php.net/45517
https://bugs.php.net/70551
https://bugs.php.net/50197
https://bugs.php.net/72200
https://bugs.php.net/37672

Yet more related tickets can for sure be found - on bugs.php.net, Stackoverflow
and Github. Some of the bugs are pretty recent, some descend to early
2000th, but  the user comments in there last even till today. Just for example,
bug #30195 was opened in 2004, the latest comment in there was made in 2014. It
is certain, that these bugs descend not only to pure PHP use cases, but get also
redirected from the popular PHP based projects. Given the modern systems (and
those supported by PHP) are always based on NTFS, there is no excuse to keep
these issues unresolved.

The internalization approach on Windows is in many ways different from
UNIX and Linux, while it supports and is based on Unicode. It depends on the
current system code page, APIs used and exact kind how the binary was compiled
The locale doesn't affect the way Unicode or ANSI API work. PHP in particular
is being compiled without _UNICODE defined and this is conditioned by the
way we handle strings. Here is more about it

https://msdn.microsoft.com/en-us/library/tsbaswba.aspx

However, with any system code page ANSI functions automatically convert
paths to UTF-16. Paths in some encodings incompatible with the
current system code page, won't work correctly with ANSI APIs. PHP
till now only uses the ANSI Windows APIs.

For example, on a system with the current code page 1252, the paths
in cp1252 are supported and transparently converted to UTF-16 by the
ANSI functions. Once one wants to handle a filepath encoded with cp932 on
that particular system, an ANSI or a POSIX compatible function used in
PHP will produce an erroneous result. When trying to convert that cp932 path
to UTF-8 and passing to the ANSI functions, an ANSI function would
likely interpret the UTF-8 string as some string in the current code page and
create a filepath that represents every single byte of the UTF-8 string.
These behaviors are not only broken but also disregard the documented
INI settings.

This patch solves the issies with the multibyte paths on Windows by
intelligently enforcing the usage of the Unicode aware APIs. For
functions expect Unicode (fe CreateFileW, FindFirstFileW, etc.), arguments
will be converted to UTF-16 wide chars. For functions returning Unicode
aware data (fe GetCurrentDirectoryW, etc.), resulting wide string is
converted back to char's depending on the current PHP charset settings,
either to the current ANSI codepage (this is the behavior prior to this patch)
or to UTF-8 (the default behavior).

In a particular case, users might have to explicitly set
internal_encoding or default_charset, if filenames in ANSI codepage are
necessary. Current tests show no regressions and witness that this will be an
exotic case, the current default UTF-8 encoding is compatible with any
supported system. The dependency libraries are long switching to Unicode APIs,
so some tests were also added for extensions not directly related to streams.
At large, the patch brings over 150 related tests into the core. Those target
and was run on various environments with European, Asian, etc. codepages.
General PHP frameworks was tested and showed no regressions.

The impact on the current C code base is low, the most places affected
are the Windows only places in the three files tsrm_win32.c, zend_virtual_cwd.c
and plain_wrapper.c. The actual implementation of the most of the wide
char supporting functionality is in win32/ioutil.* and win32/codepage.*,
several  low level functionsare extended in place to avoid reimplementation for
now. No performance impact was sighted. As previously mentioned, the ANSI APIs
used prior the patch perform Unicode conversions internally. Using the
Unicode  APIs directly while doing custom conversions just retains the status
quo. The ways to optimize it are open (fe. by implementing caching for the
strings converted to wide variants).

The long path implementation is user transparent. If a path exceeds the
length of _MAX_PATH, it'll be automatically prefixed with \\?\. The MAXPATHLEN
is set to 2048 bytes.

Appreciation to Pierre Joye, Matt Ficken, @algo13 and others for tips, ideas
and testing.

Thanks.
2016-06-20 12:45:39 +02:00
..
001.phpt
binarynull.zip
bug7214.phpt
bug7658.odt
bug7658.phpt
bug7658.xml
bug8009.phpt
bug8009.zip
bug8700.phpt
bug11216.phpt fix tests 2009-01-08 22:03:32 +00:00
bug14962.phpt
bug38943.inc Sync ext/zip with pecl/zip version 1.3.2 2013-11-04 13:23:36 +01:00
bug38943.phpt Removed old (< 5.3) version of test and cleaned up the actual version. 2011-09-02 17:41:39 +00:00
bug38943_2.phpt Sync ext/zip with pecl/zip version 1.3.2 2013-11-04 13:23:36 +01:00
bug38944.phpt fix tests 2009-01-08 22:03:32 +00:00
bug40228-mb.phpt Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
bug40228.phpt
bug40228.zip
bug40228私はガラスを食べられます.zip Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
bug47667.phpt - fix test 2010-02-01 19:30:32 +00:00
bug49072.phpt - fixed bug #49072, feof never returns true for damaged file in zip 2009-08-11 15:12:00 +00:00
bug49072.zip - fixed bug #49072, feof never returns true for damaged file in zip 2009-08-11 15:12:00 +00:00
bug51353.phpt Added test for bug #51353. It'll be skipped by default and must be 2012-08-21 13:22:00 +02:00
bug53579.phpt Fixed bug#53579 (stream_get_contents() segfaults on ziparchive streams) 2010-12-20 11:00:27 +00:00
bug53603.phpt - Fixed bug #53893 (Wrong return value for ZipArchive::extractTo()) 2011-02-07 16:20:16 +00:00
bug53854.phpt Fixed bug #53854 (Missing constants for compression type). Patch by Richard 2011-01-28 04:19:40 +00:00
bug53885.phpt Fix cleanup routines 2011-09-07 12:05:19 +00:00
bug64342_0.phpt Merge branch 'pull-request/341' 2013-06-10 14:30:59 -07:00
bug64342_1-mb.phpt Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
bug64342_1.phpt Merge branch 'pull-request/341' 2013-06-10 14:30:59 -07:00
bug70322.phpt Fix #70322: ZipArchive::close() doesn't indicate errors 2015-09-05 00:34:10 +02:00
bug70350.phpt fix test 2015-09-01 00:59:31 -07:00
bug72258.phpt fix test title 2016-05-30 12:48:00 +02:00
bug72258.zip Add test for bug #72258 2016-05-30 12:47:04 +02:00
compression_methods.phpt Fix #53854: Missing constants for compression type 2015-07-23 21:36:14 +02:00
compression_methods.zip Fix #53854: Missing constants for compression type 2015-07-23 21:36:14 +02:00
doubleclose.phpt Refactor Zip (1 test failed) 2014-05-05 10:49:27 +08:00
oo_addemptydir.phpt
oo_addfile.phpt
oo_addglob.phpt Fixed bug #70544 (ext/zip/tests/oo_addglob.phpt broken on Solaris) 2015-09-21 22:04:27 +08:00
oo_addpattern.phpt Added tests for ZipArchive::addGlob() and ZipArchive::addPattern() 2014-05-23 05:51:13 +00:00
oo_close.phpt
oo_delete.phpt Fix #70322: ZipArchive::close() doesn't indicate errors 2015-09-05 00:34:10 +02:00
oo_ext_zip.phpt
oo_externalattributes.phpt missing file from libzip 0.11.2 2013-12-30 10:00:02 +01:00
oo_extract.phpt
oo_getcomment.phpt
oo_getnameindex.phpt
oo_getstatusstring.phpt The last of the 2009 testfest tests 2009-08-30 18:18:50 +00:00
oo_namelocate.phpt
oo_open.phpt
oo_properties.phpt fix tests 2009-01-08 22:03:32 +00:00
oo_rename.phpt
oo_setcomment.phpt
oo_setcompression.phpt add ZipArchive::setCompressionName and ZipArchive::setCompressionIndex methods 2015-05-06 15:16:43 +02:00
oo_stream.phpt
pecl12414.phpt Reverted the BC fix regarding to #57905, test adopted 2012-06-17 16:04:36 +02:00
pecl12414.zip
stream_meta_data.phpt fix tests 2016-02-01 18:58:02 -08:00
test.zip
test_procedural.zip
test_with_comment.zip
utils.inc
zip_close.phpt
zip_entry_close.phpt Refactor Zip (1 test failed) 2014-05-05 10:49:27 +08:00
zip_entry_compressedsize.phpt
zip_entry_compressionmethod.phpt
zip_entry_filesize.phpt
zip_entry_name.phpt
zip_entry_open.phpt
zip_entry_read.phpt
zip_open.phpt
zip_open_error.phpt The last of the 2009 testfest tests 2009-08-30 18:18:50 +00:00
zip_read.phpt