MediaWiki  1.23.1
ZipDirectoryReaderTest.php
Go to the documentation of this file.
1 <?php
2 
8  protected $zipDir;
9  protected $entries;
10 
11  protected function setUp() {
12  parent::setUp();
13  $this->zipDir = __DIR__ . '/../../data/zip';
14  }
15 
16  function zipCallback( $entry ) {
17  $this->entries[] = $entry;
18  }
19 
20  function readZipAssertError( $file, $error, $assertMessage ) {
21  $this->entries = array();
22  $status = ZipDirectoryReader::read( "{$this->zipDir}/$file", array( $this, 'zipCallback' ) );
23  $this->assertTrue( $status->hasMessage( $error ), $assertMessage );
24  }
25 
26  function readZipAssertSuccess( $file, $assertMessage ) {
27  $this->entries = array();
28  $status = ZipDirectoryReader::read( "{$this->zipDir}/$file", array( $this, 'zipCallback' ) );
29  $this->assertTrue( $status->isOK(), $assertMessage );
30  }
31 
32  public function testEmpty() {
33  $this->readZipAssertSuccess( 'empty.zip', 'Empty zip' );
34  }
35 
36  public function testMultiDisk0() {
37  $this->readZipAssertError( 'split.zip', 'zip-unsupported',
38  'Split zip error' );
39  }
40 
41  public function testNoSignature() {
42  $this->readZipAssertError( 'nosig.zip', 'zip-wrong-format',
43  'No signature should give "wrong format" error' );
44  }
45 
46  public function testSimple() {
47  $this->readZipAssertSuccess( 'class.zip', 'Simple ZIP' );
48  $this->assertEquals( $this->entries, array( array(
49  'name' => 'Class.class',
50  'mtime' => '20010115000000',
51  'size' => 1,
52  ) ) );
53  }
54 
55  public function testBadCentralEntrySignature() {
56  $this->readZipAssertError( 'wrong-central-entry-sig.zip', 'zip-bad',
57  'Bad central entry error' );
58  }
59 
60  public function testTrailingBytes() {
61  $this->readZipAssertError( 'trail.zip', 'zip-bad',
62  'Trailing bytes error' );
63  }
64 
65  public function testWrongCDStart() {
66  $this->readZipAssertError( 'wrong-cd-start-disk.zip', 'zip-unsupported',
67  'Wrong CD start disk error' );
68  }
69 
70  public function testCentralDirectoryGap() {
71  $this->readZipAssertError( 'cd-gap.zip', 'zip-bad',
72  'CD gap error' );
73  }
74 
75  public function testCentralDirectoryTruncated() {
76  $this->readZipAssertError( 'cd-truncated.zip', 'zip-bad',
77  'CD truncated error (should hit unpack() overrun)' );
78  }
79 
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' );
83  }
84 }
ZipDirectoryReaderTest\testSimple
testSimple()
Definition: ZipDirectoryReaderTest.php:46
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
ZipDirectoryReaderTest\readZipAssertSuccess
readZipAssertSuccess( $file, $assertMessage)
Definition: ZipDirectoryReaderTest.php:26
ZipDirectoryReaderTest\testBadCentralEntrySignature
testBadCentralEntrySignature()
Definition: ZipDirectoryReaderTest.php:55
ZipDirectoryReaderTest\$entries
$entries
Definition: ZipDirectoryReaderTest.php:9
ZipDirectoryReaderTest\testMultiDisk0
testMultiDisk0()
Definition: ZipDirectoryReaderTest.php:36
ZipDirectoryReaderTest\testCentralDirectoryTruncated
testCentralDirectoryTruncated()
Definition: ZipDirectoryReaderTest.php:75
MediaWikiTestCase
Definition: MediaWikiTestCase.php:6
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
ZipDirectoryReaderTest\setUp
setUp()
Definition: ZipDirectoryReaderTest.php:11
ZipDirectoryReaderTest\zipCallback
zipCallback( $entry)
Definition: ZipDirectoryReaderTest.php:16
ZipDirectoryReaderTest
@covers ZipDirectoryReader NOTE: this test is more like an integration test than a unit test
Definition: ZipDirectoryReaderTest.php:7
$file
if(PHP_SAPI !='cli') $file
Definition: UtfNormalTest2.php:30
ZipDirectoryReaderTest\$zipDir
$zipDir
Definition: ZipDirectoryReaderTest.php:8
ZipDirectoryReaderTest\testEmpty
testEmpty()
Definition: ZipDirectoryReaderTest.php:32
ZipDirectoryReaderTest\testNoSignature
testNoSignature()
Definition: ZipDirectoryReaderTest.php:41
ZipDirectoryReaderTest\testTrailingBytes
testTrailingBytes()
Definition: ZipDirectoryReaderTest.php:60
ZipDirectoryReaderTest\testWrongCDStart
testWrongCDStart()
Definition: ZipDirectoryReaderTest.php:65
$error
usually copyright or history_copyright This message must be in HTML not wikitext $subpages will be ignored and the rest of subPageSubtitle() will run. 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink' whether MediaWiki currently thinks this is a CSS JS page Hooks may change this value to override the return value of Title::isCssOrJsPage(). 'TitleIsAlwaysKnown' whether MediaWiki currently thinks this page is known isMovable() always returns false. $title whether MediaWiki currently thinks this page is movable Hooks may change this value to override the return value of Title::isMovable(). 'TitleIsWikitextPage' whether MediaWiki currently thinks this is a wikitext page Hooks may change this value to override the return value of Title::isWikitextPage() 'TitleMove' use UploadVerification and UploadVerifyFile instead where the first element is the message key and the remaining elements are used as parameters to the message based on mime etc Preferred in most cases over UploadVerification object with all info about the upload string as detected by MediaWiki Handlers will typically only apply for specific mime types object & $error
Definition: hooks.txt:2573
ZipDirectoryReaderTest\testCentralDirectoryGap
testCentralDirectoryGap()
Definition: ZipDirectoryReaderTest.php:70
ZipDirectoryReader\read
static read( $fileName, $callback, $options=array())
Read a ZIP file and call a function for each file discovered in it.
Definition: ZipDirectoryReader.php:89
ZipDirectoryReaderTest\testLooksLikeZip64
testLooksLikeZip64()
Definition: ZipDirectoryReaderTest.php:80
ZipDirectoryReaderTest\readZipAssertError
readZipAssertError( $file, $error, $assertMessage)
Definition: ZipDirectoryReaderTest.php:20