rdbms: Rename "memCache" to "memStash" in LBFactory
[mediawiki.git] / tests / phpunit / includes / media / JpegTest.php
blobabe028088a9be012e334558ef7f53d0088f6a4b7
1 <?php
3 /**
4 * @group Media
5 * @covers JpegHandler
6 */
7 class JpegTest extends MediaWikiMediaTestCase {
9 protected function setUp() {
10 parent::setUp();
11 $this->checkPHPExtension( 'exif' );
13 $this->setMwGlobals( 'wgShowEXIF', true );
15 $this->handler = new JpegHandler;
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 );
24 public function testJpegMetadataExtraction() {
25 $file = $this->dataFile( 'test.jpg', 'image/jpeg' );
26 $res = $this->handler->getMetadata( $file, $this->filePath . 'test.jpg' );
27 // @codingStandardsIgnoreStart Ignore Generic.Files.LineLength.TooLong
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 // @codingStandardsIgnoreEnd
31 // Unserialize in case serialization format ever changes.
32 $this->assertEquals( unserialize( $expected ), unserialize( $res ) );
35 /**
36 * @covers JpegHandler::getCommonMetaArray
38 public function testGetIndependentMetaArray() {
39 $file = $this->dataFile( 'test.jpg', 'image/jpeg' );
40 $res = $this->handler->getCommonMetaArray( $file );
41 $expected = [
42 'ImageDescription' => 'Test file',
43 'XResolution' => '72/1',
44 'YResolution' => '72/1',
45 'ResolutionUnit' => 2,
46 'YCbCrPositioning' => 1,
47 'JPEGFileComment' => [
48 'Created with GIMP',
52 $this->assertEquals( $res, $expected );
55 /**
56 * @dataProvider provideSwappingICCProfile
57 * @covers JpegHandler::swapICCProfile
59 public function testSwappingICCProfile(
60 $sourceFilename, $controlFilename, $newProfileFilename, $oldProfileName
61 ) {
62 global $wgExiftool;
64 if ( !$wgExiftool || !is_file( $wgExiftool ) ) {
65 $this->markTestSkipped( "Exiftool not installed, cannot test ICC profile swapping" );
68 $this->setMwGlobals( 'wgUseTinyRGBForJPGThumbnails', true );
70 $sourceFilepath = $this->filePath . $sourceFilename;
71 $controlFilepath = $this->filePath . $controlFilename;
72 $profileFilepath = $this->filePath . $newProfileFilename;
73 $filepath = $this->getNewTempFile();
75 copy( $sourceFilepath, $filepath );
77 $file = $this->dataFile( $sourceFilename, 'image/jpeg' );
78 $this->handler->swapICCProfile(
79 $filepath,
80 [ 'sRGB', '-' ],
81 [ $oldProfileName ],
82 $profileFilepath
85 $this->assertEquals(
86 sha1( file_get_contents( $filepath ) ),
87 sha1( file_get_contents( $controlFilepath ) )
91 public function provideSwappingICCProfile() {
92 return [
93 // File with sRGB should end up with TinyRGB
95 'srgb.jpg',
96 'tinyrgb.jpg',
97 'tinyrgb.icc',
98 'sRGB IEC61966-2.1'
100 // File with TinyRGB should be left unchanged
102 'tinyrgb.jpg',
103 'tinyrgb.jpg',
104 'tinyrgb.icc',
105 'sRGB IEC61966-2.1'
107 // File without profile should end up with TinyRGB
109 'missingprofile.jpg',
110 'tinyrgb.jpg',
111 'tinyrgb.icc',
112 'sRGB IEC61966-2.1'
114 // Non-sRGB file should be left untouched
116 'adobergb.jpg',
117 'adobergb.jpg',
118 'tinyrgb.icc',
119 'sRGB IEC61966-2.1'