MediaWiki REL1_31
PNGTest.php
Go to the documentation of this file.
1<?php
2
7
9 protected $handler;
10
11 protected function setUp() {
12 parent::setUp();
13 $this->handler = new PNGHandler();
14 }
15
19 public function testInvalidFile() {
20 $res = $this->handler->getMetadata( null, $this->filePath . '/README' );
21 $this->assertEquals( PNGHandler::BROKEN_FILE, $res );
22 }
23
30 public function testIsAnimanted( $filename, $expected ) {
31 $file = $this->dataFile( $filename, 'image/png' );
32 $actual = $this->handler->isAnimatedImage( $file );
33 $this->assertEquals( $expected, $actual );
34 }
35
36 public static function provideIsAnimated() {
37 return [
38 [ 'Animated_PNG_example_bouncing_beach_ball.png', true ],
39 [ '1bit-png.png', false ],
40 ];
41 }
42
49 public function testGetImageArea( $filename, $expected ) {
50 $file = $this->dataFile( $filename, 'image/png' );
51 $actual = $this->handler->getImageArea( $file, $file->getWidth(), $file->getHeight() );
52 $this->assertEquals( $expected, $actual );
53 }
54
55 public static function provideGetImageArea() {
56 return [
57 [ '1bit-png.png', 2500 ],
58 [ 'greyscale-png.png', 2500 ],
59 [ 'Png-native-test.png', 126000 ],
60 [ 'Animated_PNG_example_bouncing_beach_ball.png', 10000 ],
61 ];
62 }
63
70 public function testIsMetadataValid( $metadata, $expected ) {
71 $actual = $this->handler->isMetadataValid( null, $metadata );
72 $this->assertEquals( $expected, $actual );
73 }
74
75 public static function provideIsMetadataValid() {
76 // phpcs:disable Generic.Files.LineLength
77 return [
81 [ 'Something invalid!', PNGHandler::METADATA_BAD ],
82 [
83 'a:6:{s:10:"frameCount";i:0;s:9:"loopCount";i:1;s:8:"duration";d:0;s:8:"bitDepth";i:8;s:9:"colorType";s:10:"truecolour";s:8:"metadata";a:1:{s:15:"_MW_PNG_VERSION";i:1;}}',
85 ],
86 ];
87 // phpcs:enable
88 }
89
96 public function testGetMetadata( $filename, $expected ) {
97 $file = $this->dataFile( $filename, 'image/png' );
98 $actual = $this->handler->getMetadata( $file, "$this->filePath/$filename" );
99// $this->assertEquals( unserialize( $expected ), unserialize( $actual ) );
100 $this->assertEquals( ( $expected ), ( $actual ) );
101 }
102
103 public static function provideGetMetadata() {
104 // phpcs:disable Generic.Files.LineLength
105 return [
106 [
107 'rgb-na-png.png',
108 'a:6:{s:10:"frameCount";i:0;s:9:"loopCount";i:1;s:8:"duration";d:0;s:8:"bitDepth";i:8;s:9:"colorType";s:10:"truecolour";s:8:"metadata";a:1:{s:15:"_MW_PNG_VERSION";i:1;}}'
109 ],
110 [
111 'xmp.png',
112 'a:6:{s:10:"frameCount";i:0;s:9:"loopCount";i:1;s:8:"duration";d:0;s:8:"bitDepth";i:1;s:9:"colorType";s:14:"index-coloured";s:8:"metadata";a:2:{s:12:"SerialNumber";s:9:"123456789";s:15:"_MW_PNG_VERSION";i:1;}}'
113 ],
114 ];
115 // phpcs:enable
116 }
117
124 public function testGetIndependentMetaArray( $filename, $expected ) {
125 $file = $this->dataFile( $filename, 'image/png' );
126 $actual = $this->handler->getCommonMetaArray( $file );
127 $this->assertEquals( $expected, $actual );
128 }
129
130 public static function provideGetIndependentMetaArray() {
131 return [
132 [ 'rgb-na-png.png', [] ],
133 [ 'xmp.png',
134 [
135 'SerialNumber' => '123456789',
136 ]
137 ],
138 ];
139 }
140
147 public function testGetLength( $filename, $expectedLength ) {
148 $file = $this->dataFile( $filename, 'image/png' );
149 $actualLength = $file->getLength();
150 $this->assertEquals( $expectedLength, $actualLength, '', 0.00001 );
151 }
152
153 public function provideGetLength() {
154 return [
155 [ 'Animated_PNG_example_bouncing_beach_ball.png', 1.5 ],
156 [ 'Png-native-test.png', 0.0 ],
157 [ 'greyscale-png.png', 0.0 ],
158 [ '1bit-png.png', 0.0 ],
159 ];
160 }
161}
const METADATA_GOOD
Specificly for testing Media handlers.
dataFile( $name, $type=null)
Utility function: Get a new file object for a file on disk but not actually in db.
testGetLength( $filename, $expectedLength)
Definition PNGTest.php:147
PNGHandler $handler
Definition PNGTest.php:9
testGetMetadata( $filename, $expected)
Definition PNGTest.php:96
static provideIsAnimated()
Definition PNGTest.php:36
testInvalidFile()
PNGHandler::getMetadata.
Definition PNGTest.php:19
static provideGetIndependentMetaArray()
Definition PNGTest.php:130
static provideGetImageArea()
Definition PNGTest.php:55
testIsMetadataValid( $metadata, $expected)
Definition PNGTest.php:70
testIsAnimanted( $filename, $expected)
Definition PNGTest.php:30
testGetIndependentMetaArray( $filename, $expected)
Definition PNGTest.php:124
static provideGetMetadata()
Definition PNGTest.php:103
testGetImageArea( $filename, $expected)
Definition PNGTest.php:49
static provideIsMetadataValid()
Definition PNGTest.php:75
Handler for PNG images.
Definition PNG.php:29
const BROKEN_FILE
Definition PNG.php:30
$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 probably a stub 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:930
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:2006
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187