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