(follow-up r90256) Unit tests.
[lhc/web/wiklou.git] / tests / phpunit / includes / media / JpegTest.php
1 <?php
2 class JpegTest extends MediaWikiTestCase {
3
4 public function testInvalidFile() {
5 global $wgShowEXIF;
6 if ( !$wgShowEXIF ) {
7 $this->markTestIncomplete( "This test needs the exif extension." );
8 }
9 $jpeg = new JpegHandler;
10 $res = $jpeg->getMetadata( null, dirname( __FILE__ ) . '/README' );
11 $this->assertEquals( ExifBitmapHandler::BROKEN_FILE, $res );
12 }
13 public function testTiffFile() {
14 global $wgShowEXIF;
15 if ( !$wgShowEXIF ) {
16 $this->markTestIncomplete( "This test needs the exif extension." );
17 }
18 $h = new JpegHandler;
19 $res = $h->getMetadata( null, dirname( __FILE__ ) . '/test.jpg' );
20 $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;}';
21 // Hopefully php always serializes things in the same order.
22 $this->assertEquals( $expected, $res );
23 }
24 }