MediaWiki REL1_33
GIFHandlerTest.php
Go to the documentation of this file.
1<?php
2
7
9 protected $handler;
10
11 protected function setUp() {
12 parent::setUp();
13
14 $this->handler = new GIFHandler();
15 }
16
20 public function testInvalidFile() {
21 $res = $this->handler->getMetadata( null, $this->filePath . '/README' );
23 }
24
31 public function testIsAnimanted( $filename, $expected ) {
32 $file = $this->dataFile( $filename, 'image/gif' );
33 $actual = $this->handler->isAnimatedImage( $file );
34 $this->assertEquals( $expected, $actual );
35 }
36
37 public static function provideIsAnimated() {
38 return [
39 [ 'animated.gif', true ],
40 [ 'nonanimated.gif', false ],
41 ];
42 }
43
50 public function testGetImageArea( $filename, $expected ) {
51 $file = $this->dataFile( $filename, 'image/gif' );
52 $actual = $this->handler->getImageArea( $file, $file->getWidth(), $file->getHeight() );
53 $this->assertEquals( $expected, $actual );
54 }
55
56 public static function provideGetImageArea() {
57 return [
58 [ 'animated.gif', 5400 ],
59 [ 'nonanimated.gif', 1350 ],
60 ];
61 }
62
69 public function testIsMetadataValid( $metadata, $expected ) {
70 $actual = $this->handler->isMetadataValid( null, $metadata );
71 $this->assertEquals( $expected, $actual );
72 }
73
74 public static function provideIsMetadataValid() {
75 // phpcs:disable Generic.Files.LineLength
76 return [
80 [ 'Something invalid!', GIFHandler::METADATA_BAD ],
81 [
82 'a:4:{s:10:"frameCount";i:1;s:6:"looped";b:0;s:8:"duration";d:0.1000000000000000055511151231257827021181583404541015625;s:8:"metadata";a:2:{s:14:"GIFFileComment";a:1:{i:0;s:35:"GIF test file ⁕ Created with GIMP";}s:15:"_MW_GIF_VERSION";i:1;}}',
84 ],
85 ];
86 // phpcs:enable
87 }
88
95 public function testGetMetadata( $filename, $expected ) {
96 $file = $this->dataFile( $filename, 'image/gif' );
97 $actual = $this->handler->getMetadata( $file, "$this->filePath/$filename" );
98 $this->assertEquals( unserialize( $expected ), unserialize( $actual ) );
99 }
100
101 public static function provideGetMetadata() {
102 // phpcs:disable Generic.Files.LineLength
103 return [
104 [
105 'nonanimated.gif',
106 'a:4:{s:10:"frameCount";i:1;s:6:"looped";b:0;s:8:"duration";d:0.1000000000000000055511151231257827021181583404541015625;s:8:"metadata";a:2:{s:14:"GIFFileComment";a:1:{i:0;s:35:"GIF test file ⁕ Created with GIMP";}s:15:"_MW_GIF_VERSION";i:1;}}'
107 ],
108 [
109 'animated-xmp.gif',
110 'a:4:{s:10:"frameCount";i:4;s:6:"looped";b:1;s:8:"duration";d:2.399999999999999911182158029987476766109466552734375;s:8:"metadata";a:5:{s:6:"Artist";s:7:"Bawolff";s:16:"ImageDescription";a:2:{s:9:"x-default";s:18:"A file to test GIF";s:5:"_type";s:4:"lang";}s:15:"SublocationDest";s:13:"The interwebs";s:14:"GIFFileComment";a:1:{i:0;s:16:"GIƒ·test·file";}s:15:"_MW_GIF_VERSION";i:1;}}'
111 ],
112 ];
113 // phpcs:enable
114 }
115
122 public function testGetIndependentMetaArray( $filename, $expected ) {
123 $file = $this->dataFile( $filename, 'image/gif' );
124 $actual = $this->handler->getCommonMetaArray( $file );
125 $this->assertEquals( $expected, $actual );
126 }
127
128 public static function provideGetIndependentMetaArray() {
129 return [
130 [ 'nonanimated.gif', [
131 'GIFFileComment' => [
132 'GIF test file ⁕ Created with GIMP',
133 ],
134 ] ],
135 [ 'animated-xmp.gif',
136 [
137 'Artist' => 'Bawolff',
138 'ImageDescription' => [
139 'x-default' => 'A file to test GIF',
140 '_type' => 'lang',
141 ],
142 'SublocationDest' => 'The interwebs',
143 'GIFFileComment' =>
144 [
145 'GIƒ·test·file',
146 ],
147 ]
148 ],
149 ];
150 }
151
158 public function testGetLength( $filename, $expectedLength ) {
159 $file = $this->dataFile( $filename, 'image/gif' );
160 $actualLength = $file->getLength();
161 $this->assertEquals( $expectedLength, $actualLength, '', 0.00001 );
162 }
163
164 public function provideGetLength() {
165 return [
166 [ 'animated.gif', 2.4 ],
167 [ 'animated-xmp.gif', 2.4 ],
168 [ 'nonanimated', 0.0 ],
169 [ 'Bishzilla_blink.gif', 1.4 ],
170 ];
171 }
172}
unserialize( $serialized)
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
static provideGetIndependentMetaArray()
testGetLength( $filename, $expectedLength)
testGetMetadata( $filename, $expected)
GIFHandler $handler
static provideIsMetadataValid()
testGetImageArea( $filename, $expected)
static provideGetImageArea()
testIsAnimanted( $filename, $expected)
testGetIndependentMetaArray( $filename, $expected)
static provideGetMetadata()
testInvalidFile()
GIFHandler::getMetadata.
static provideIsAnimated()
testIsMetadataValid( $metadata, $expected)
Handler for GIF images.
const BROKEN_FILE
const METADATA_GOOD
Specificly for testing Media handlers.
dataFile( $name, $type=false)
Utility function: Get a new file object for a file on disk but not actually in db.
$res
Definition database.txt:21
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
Definition hooks.txt:921
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2004
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187