Merge "Remove @param comments that literally repeat what the code says"
[lhc/web/wiklou.git] / tests / phpunit / includes / media / JpegTest.php
1 <?php
2
3 /**
4 * @group Media
5 * @covers JpegHandler
6 */
7 class JpegTest extends MediaWikiMediaTestCase {
8
9 protected function setUp() {
10 parent::setUp();
11 $this->checkPHPExtension( 'exif' );
12
13 $this->setMwGlobals( 'wgShowEXIF', true );
14
15 $this->handler = new JpegHandler;
16 }
17
18 public function testInvalidFile() {
19 $file = $this->dataFile( 'README', 'image/jpeg' );
20 $res = $this->handler->getMetadata( $file, $this->filePath . 'README' );
21 $this->assertEquals( ExifBitmapHandler::BROKEN_FILE, $res );
22 }
23
24 public function testJpegMetadataExtraction() {
25 $file = $this->dataFile( 'test.jpg', 'image/jpeg' );
26 $res = $this->handler->getMetadata( $file, $this->filePath . 'test.jpg' );
27 // phpcs:ignore Generic.Files.LineLength
28 $expected = 'a:7:{s:16:"ImageDescription";s:9:"Test file";s:11:"XResolution";s:4:"72/1";s:11:"YResolution";s:4:"72/1";s:14:"ResolutionUnit";i:2;s:16:"YCbCrPositioning";i:1;s:15:"JPEGFileComment";a:1:{i:0;s:17:"Created with GIMP";}s:22:"MEDIAWIKI_EXIF_VERSION";i:2;}';
29
30 // Unserialize in case serialization format ever changes.
31 $this->assertEquals( unserialize( $expected ), unserialize( $res ) );
32 }
33
34 /**
35 * @covers JpegHandler::getCommonMetaArray
36 */
37 public function testGetIndependentMetaArray() {
38 $file = $this->dataFile( 'test.jpg', 'image/jpeg' );
39 $res = $this->handler->getCommonMetaArray( $file );
40 $expected = [
41 'ImageDescription' => 'Test file',
42 'XResolution' => '72/1',
43 'YResolution' => '72/1',
44 'ResolutionUnit' => 2,
45 'YCbCrPositioning' => 1,
46 'JPEGFileComment' => [
47 'Created with GIMP',
48 ],
49 ];
50
51 $this->assertEquals( $res, $expected );
52 }
53
54 /**
55 * @dataProvider provideSwappingICCProfile
56 * @covers JpegHandler::swapICCProfile
57 */
58 public function testSwappingICCProfile(
59 $sourceFilename, $controlFilename, $newProfileFilename, $oldProfileName
60 ) {
61 global $wgExiftool;
62
63 if ( !$wgExiftool || !is_file( $wgExiftool ) ) {
64 $this->markTestSkipped( "Exiftool not installed, cannot test ICC profile swapping" );
65 }
66
67 $this->setMwGlobals( 'wgUseTinyRGBForJPGThumbnails', true );
68
69 $sourceFilepath = $this->filePath . $sourceFilename;
70 $controlFilepath = $this->filePath . $controlFilename;
71 $profileFilepath = $this->filePath . $newProfileFilename;
72 $filepath = $this->getNewTempFile();
73
74 copy( $sourceFilepath, $filepath );
75
76 $file = $this->dataFile( $sourceFilename, 'image/jpeg' );
77 $this->handler->swapICCProfile(
78 $filepath,
79 [ 'sRGB', '-' ],
80 [ $oldProfileName ],
81 $profileFilepath
82 );
83
84 $this->assertEquals(
85 sha1( file_get_contents( $filepath ) ),
86 sha1( file_get_contents( $controlFilepath ) )
87 );
88 }
89
90 public function provideSwappingICCProfile() {
91 return [
92 // File with sRGB should end up with TinyRGB
93 [
94 'srgb.jpg',
95 'tinyrgb.jpg',
96 'tinyrgb.icc',
97 'sRGB IEC61966-2.1'
98 ],
99 // File with TinyRGB should be left unchanged
100 [
101 'tinyrgb.jpg',
102 'tinyrgb.jpg',
103 'tinyrgb.icc',
104 'sRGB IEC61966-2.1'
105 ],
106 // File without profile should end up with TinyRGB
107 [
108 'missingprofile.jpg',
109 'tinyrgb.jpg',
110 'tinyrgb.icc',
111 'sRGB IEC61966-2.1'
112 ],
113 // Non-sRGB file should be left untouched
114 [
115 'adobergb.jpg',
116 'adobergb.jpg',
117 'tinyrgb.icc',
118 'sRGB IEC61966-2.1'
119 ]
120 ];
121 }
122 }