MediaWiki  1.33.0
JpegTest.php
Go to the documentation of this file.
1 <?php
2 
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 
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 
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 }
copy
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a copy
Definition: COPYING.txt:87
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition: router.php:42
JpegTest\testJpegMetadataExtraction
testJpegMetadataExtraction()
Definition: JpegTest.php:24
$wgExiftool
$wgExiftool
Path to exiftool binary.
Definition: DefaultSettings.php:1172
$res
$res
Definition: database.txt:21
MediaWikiMediaTestCase\dataFile
dataFile( $name, $type=false)
Utility function: Get a new file object for a file on disk but not actually in db.
Definition: MediaWikiMediaTestCase.php:76
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaWikiMediaTestCase
Specificly for testing Media handlers.
Definition: MediaWikiMediaTestCase.php:5
JpegTest\testGetIndependentMetaArray
testGetIndependentMetaArray()
JpegHandler::getCommonMetaArray.
Definition: JpegTest.php:37
JpegTest\testInvalidFile
testInvalidFile()
Definition: JpegTest.php:18
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:709
MediaWikiTestCase\getNewTempFile
getNewTempFile()
Obtains a new temporary file name.
Definition: MediaWikiTestCase.php:474
handler
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:780
JpegTest\provideSwappingICCProfile
provideSwappingICCProfile()
Definition: JpegTest.php:90
JpegTest
Media JpegHandler.
Definition: JpegTest.php:7
JpegHandler
JPEG specific handler.
Definition: JpegHandler.php:35
unserialize
unserialize( $serialized)
Definition: ApiMessageTrait.php:142
MediaWikiTestCase\checkPHPExtension
checkPHPExtension( $extName)
Check if $extName is a loaded PHP extension, will skip the test whenever it is not loaded.
Definition: MediaWikiTestCase.php:2288
JpegTest\setUp
setUp()
Definition: JpegTest.php:9
ExifBitmapHandler\BROKEN_FILE
const BROKEN_FILE
Definition: ExifBitmapHandler.php:31
JpegTest\testSwappingICCProfile
testSwappingICCProfile( $sourceFilename, $controlFilename, $newProfileFilename, $oldProfileName)
provideSwappingICCProfile JpegHandler::swapICCProfile
Definition: JpegTest.php:58