????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.28 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/b8009/php-5.6.22/ext/phar/tests/zip/ |
Upload File : |
--TEST--
Phar: unsupported compression methods
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
<?php if (!extension_loaded("spl")) die("skip SPL not available"); ?>
--FILE--
<?php
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup1.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup2.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup3.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup4.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup5.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup6.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup7.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup9.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup10.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup14.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup18.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup19.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup97.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsup98.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
new PharData(dirname(__FILE__) . '/files/compress_unsupunknown.zip');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
?>
===DONE===
--EXPECTF--
phar error: unsupported compression method (Shrunk) used in this zip in zip-based phar "%scompress_unsup1.zip"
phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_unsup2.zip"
phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_unsup3.zip"
phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_unsup4.zip"
phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_unsup5.zip"
phar error: unsupported compression method (Implode) used in this zip in zip-based phar "%scompress_unsup6.zip"
phar error: unsupported compression method (Tokenize) used in this zip in zip-based phar "%scompress_unsup7.zip"
phar error: unsupported compression method (Deflate64) used in this zip in zip-based phar "%scompress_unsup9.zip"
phar error: unsupported compression method (PKWare Implode/old IBM TERSE) used in this zip in zip-based phar "%scompress_unsup10.zip"
phar error: unsupported compression method (LZMA) used in this zip in zip-based phar "%scompress_unsup14.zip"
phar error: unsupported compression method (IBM TERSE) used in this zip in zip-based phar "%scompress_unsup18.zip"
phar error: unsupported compression method (IBM LZ77) used in this zip in zip-based phar "%scompress_unsup19.zip"
phar error: unsupported compression method (WavPack) used in this zip in zip-based phar "%scompress_unsup97.zip"
phar error: unsupported compression method (PPMd) used in this zip in zip-based phar "%scompress_unsup98.zip"
phar error: unsupported compression method (unknown) used in this zip in zip-based phar "%scompress_unsupunknown.zip"
===DONE===