2 class JpegTest
extends MediaWikiTestCase
{
4 protected function setUp() {
7 $this->filePath
= __DIR__
. '/../../data/media/';
8 if ( !wfDl( 'exif' ) ) {
9 $this->markTestSkipped( "This test needs the exif extension." );
12 $this->setMwGlobals( 'wgShowEXIF', true );
15 public function testInvalidFile() {
16 $jpeg = new JpegHandler
;
17 $res = $jpeg->getMetadata( null, $this->filePath
. 'README' );
18 $this->assertEquals( ExifBitmapHandler
::BROKEN_FILE
, $res );
21 public function testJpegMetadataExtraction() {
23 $res = $h->getMetadata( null, $this->filePath
. 'test.jpg' );
24 $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;}';
26 // Unserialize in case serialization format ever changes.
27 $this->assertEquals( unserialize( $expected ), unserialize( $res ) );