4 * @covers ZipDirectoryReader
5 * NOTE: this test is more like an integration test than a unit test
7 class ZipDirectoryReaderTest
extends PHPUnit_Framework_TestCase
{
11 protected function setUp() {
13 $this->zipDir
= __DIR__
. '/../../data/zip';
16 function zipCallback( $entry ) {
17 $this->entries
[] = $entry;
20 function readZipAssertError( $file, $error, $assertMessage ) {
22 $status = ZipDirectoryReader
::read( "{$this->zipDir}/$file", [ $this, 'zipCallback' ] );
23 $this->assertTrue( $status->hasMessage( $error ), $assertMessage );
26 function readZipAssertSuccess( $file, $assertMessage ) {
28 $status = ZipDirectoryReader
::read( "{$this->zipDir}/$file", [ $this, 'zipCallback' ] );
29 $this->assertTrue( $status->isOK(), $assertMessage );
32 public function testEmpty() {
33 $this->readZipAssertSuccess( 'empty.zip', 'Empty zip' );
36 public function testMultiDisk0() {
37 $this->readZipAssertError( 'split.zip', 'zip-unsupported',
41 public function testNoSignature() {
42 $this->readZipAssertError( 'nosig.zip', 'zip-wrong-format',
43 'No signature should give "wrong format" error' );
46 public function testSimple() {
47 $this->readZipAssertSuccess( 'class.zip', 'Simple ZIP' );
48 $this->assertEquals( $this->entries
, [ [
49 'name' => 'Class.class',
50 'mtime' => '20010115000000',
55 public function testBadCentralEntrySignature() {
56 $this->readZipAssertError( 'wrong-central-entry-sig.zip', 'zip-bad',
57 'Bad central entry error' );
60 public function testTrailingBytes() {
61 $this->readZipAssertError( 'trail.zip', 'zip-bad',
62 'Trailing bytes error' );
65 public function testWrongCDStart() {
66 $this->readZipAssertError( 'wrong-cd-start-disk.zip', 'zip-unsupported',
67 'Wrong CD start disk error' );
70 public function testCentralDirectoryGap() {
71 $this->readZipAssertError( 'cd-gap.zip', 'zip-bad',
75 public function testCentralDirectoryTruncated() {
76 $this->readZipAssertError( 'cd-truncated.zip', 'zip-bad',
77 'CD truncated error (should hit unpack() overrun)' );
80 public function testLooksLikeZip64() {
81 $this->readZipAssertError( 'looks-like-zip64.zip', 'zip-unsupported',
82 'A file which looks like ZIP64 but isn\'t, should give error' );