follow-up r91885 - address CR comments
[lhc/web/wiklou.git] / tests / phpunit / includes / media / JpegTest.php
1 <?php
2 class JpegTest extends MediaWikiTestCase {
3
4 public function testInvalidFile() {
5 if ( !wfDl( 'exif' ) ) {
6 $this->markTestIncomplete( "This test needs the exif extension." );
7 }
8 $jpeg = new JpegHandler;
9 $res = $jpeg->getMetadata( null, dirname( __FILE__ ) . '/README' );
10 $this->assertEquals( ExifBitmapHandler::BROKEN_FILE, $res );
11 }
12 public function testTiffFile() {
13 if ( !wfDl( 'exif' ) ) {
14 $this->markTestIncomplete( "This test needs the exif extension." );
15 }
16 $h = new JpegHandler;
17 $res = $h->getMetadata( null, dirname( __FILE__ ) . '/test.jpg' );
18 $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;}';
19
20 // Unserialize in case serialization format ever changes.
21 $this->assertEquals( unserialize( $expected ), unserialize( $res ) );
22 }
23 }