php-src/ext/zip/tests/bug38944.phpt
Pierre Joye 945f4cdfc4 - initial unicode support
. entry names will be converted to ascii. zip works with cp437
   when 7zip support will be added, unicode string will be supported
 . path and filenames are now encoded using php_stream_path_param_encode
   if the filename/path is used as entry name, it is converted to ascii
 . the stream (getStream and zip://) needs some tweak. I'm not sure if it
   should return unicode or binary, neither how to change the default. For
   now it returns unicode (seems to be the default :)
comments/suggestions welcome
2006-10-31 14:27:09 +00:00

60 lines
923 B
PHP

--TEST--
Bug #38944 (newly created ZipArchive segfaults when accessing comment property)
--SKIPIF--
<?php if (!extension_loaded("zip")) print "skip"; ?>
--FILE--
<?php
$arc_name = dirname(__FILE__)."/bug38944.zip";
$foo = new ZipArchive;
$foo->open($arc_name, ZIPARCHIVE::CREATE);;
var_dump($foo->status);
var_dump($foo->statusSys);
var_dump($foo->numFiles);
var_dump($foo->filename);
var_dump($foo->comment);
var_dump($foo);
echo "Done\n";
?>
--EXPECTF--
int(0)
int(0)
int(0)
string(0) ""
string(0) ""
object(ZipArchive)#%d (5) {
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}
Done
--UEXPECTF--
int(0)
int(0)
int(0)
string(0) ""
string(0) ""
object(ZipArchive)#1 (5) {
[u"status"]=>
int(0)
[u"statusSys"]=>
int(0)
[u"numFiles"]=>
int(0)
[u"filename"]=>
string(0) ""
[u"comment"]=>
string(0) ""
}
Done