3 * Tests related to auto rotation.
9 class ExifRotationTest
extends MediaWikiTestCase
{
11 protected function setUp() {
13 $this->checkPHPExtension( 'exif' );
15 $this->handler
= new BitmapHandler();
16 $filePath = __DIR__
. '/../../data/media';
18 $tmpDir = $this->getNewTempDirectory();
20 $this->repo
= new FSRepo( array(
22 'url' => 'http://localhost/thumbtest',
23 'backend' => new FSFileBackend( array(
24 'name' => 'localtesting',
25 'wikiId' => wfWikiId(),
26 'containerPaths' => array( 'temp-thumb' => $tmpDir, 'data' => $filePath )
30 $this->setMwGlobals( array(
32 'wgEnableAutoRotation' => true,
37 * @dataProvider provideFiles
39 public function testMetadata( $name, $type, $info ) {
40 if ( !BitmapHandler
::canRotate() ) {
41 $this->markTestSkipped( "This test needs a rasterizer that can auto-rotate." );
43 $file = $this->dataFile( $name, $type );
44 $this->assertEquals( $info['width'], $file->getWidth(), "$name: width check" );
45 $this->assertEquals( $info['height'], $file->getHeight(), "$name: height check" );
50 * @dataProvider provideFiles
52 public function testRotationRendering( $name, $type, $info, $thumbs ) {
53 if ( !BitmapHandler
::canRotate() ) {
54 $this->markTestSkipped( "This test needs a rasterizer that can auto-rotate." );
56 foreach ( $thumbs as $size => $out ) {
57 if ( preg_match( '/^(\d+)px$/', $size, $matches ) ) {
59 'width' => $matches[1],
61 } elseif ( preg_match( '/^(\d+)x(\d+)px$/', $size, $matches ) ) {
63 'width' => $matches[1],
64 'height' => $matches[2]
67 throw new MWException( 'bogus test data format ' . $size );
70 $file = $this->dataFile( $name, $type );
71 $thumb = $file->transform( $params, File
::RENDER_NOW | File
::RENDER_FORCE
);
76 "$name: thumb reported width check for $size"
81 "$name: thumb reported height check for $size"
84 $gis = getimagesize( $thumb->getLocalCopyPath() );
85 if ( $out[0] > $info['width'] ) {
86 // Physical image won't be scaled bigger than the original.
87 $this->assertEquals( $info['width'], $gis[0], "$name: thumb actual width check for $size" );
88 $this->assertEquals( $info['height'], $gis[1], "$name: thumb actual height check for $size" );
90 $this->assertEquals( $out[0], $gis[0], "$name: thumb actual width check for $size" );
91 $this->assertEquals( $out[1], $gis[1], "$name: thumb actual height check for $size" );
96 /* Utility function */
97 private function dataFile( $name, $type ) {
98 return new UnregisteredLocalFile( false, $this->repo
,
99 "mwstore://localtesting/data/$name", $type );
102 public static function provideFiles() {
105 'landscape-plain.jpg',
112 '800x600px' => array( 800, 600 ),
113 '9999x800px' => array( 1067, 800 ),
114 '800px' => array( 800, 600 ),
115 '600px' => array( 600, 450 ),
119 'portrait-rotated.jpg',
122 'width' => 768, // as rotated
123 'height' => 1024, // as rotated
126 '800x600px' => array( 450, 600 ),
127 '9999x800px' => array( 600, 800 ),
128 '800px' => array( 800, 1067 ),
129 '600px' => array( 600, 800 ),
136 * Same as before, but with auto-rotation disabled.
137 * @dataProvider provideFilesNoAutoRotate
139 public function testMetadataNoAutoRotate( $name, $type, $info ) {
140 $this->setMwGlobals( 'wgEnableAutoRotation', false );
142 $file = $this->dataFile( $name, $type );
143 $this->assertEquals( $info['width'], $file->getWidth(), "$name: width check" );
144 $this->assertEquals( $info['height'], $file->getHeight(), "$name: height check" );
149 * @dataProvider provideFilesNoAutoRotate
151 public function testRotationRenderingNoAutoRotate( $name, $type, $info, $thumbs ) {
152 $this->setMwGlobals( 'wgEnableAutoRotation', false );
154 foreach ( $thumbs as $size => $out ) {
155 if ( preg_match( '/^(\d+)px$/', $size, $matches ) ) {
157 'width' => $matches[1],
159 } elseif ( preg_match( '/^(\d+)x(\d+)px$/', $size, $matches ) ) {
161 'width' => $matches[1],
162 'height' => $matches[2]
165 throw new MWException( 'bogus test data format ' . $size );
168 $file = $this->dataFile( $name, $type );
169 $thumb = $file->transform( $params, File
::RENDER_NOW | File
::RENDER_FORCE
);
174 "$name: thumb reported width check for $size"
179 "$name: thumb reported height check for $size"
182 $gis = getimagesize( $thumb->getLocalCopyPath() );
183 if ( $out[0] > $info['width'] ) {
184 // Physical image won't be scaled bigger than the original.
185 $this->assertEquals( $info['width'], $gis[0], "$name: thumb actual width check for $size" );
186 $this->assertEquals( $info['height'], $gis[1], "$name: thumb actual height check for $size" );
188 $this->assertEquals( $out[0], $gis[0], "$name: thumb actual width check for $size" );
189 $this->assertEquals( $out[1], $gis[1], "$name: thumb actual height check for $size" );
194 public static function provideFilesNoAutoRotate() {
197 'landscape-plain.jpg',
204 '800x600px' => array( 800, 600 ),
205 '9999x800px' => array( 1067, 800 ),
206 '800px' => array( 800, 600 ),
207 '600px' => array( 600, 450 ),
211 'portrait-rotated.jpg',
214 'width' => 1024, // since not rotated
215 'height' => 768, // since not rotated
218 '800x600px' => array( 800, 600 ),
219 '9999x800px' => array( 1067, 800 ),
220 '800px' => array( 800, 600 ),
221 '600px' => array( 600, 450 ),
227 const TEST_WIDTH
= 100;
228 const TEST_HEIGHT
= 200;
231 * @dataProvider provideBitmapExtractPreRotationDimensions
233 public function testBitmapExtractPreRotationDimensions( $rotation, $expected ) {
234 $result = $this->handler
->extractPreRotationDimensions( array(
235 'physicalWidth' => self
::TEST_WIDTH
,
236 'physicalHeight' => self
::TEST_HEIGHT
,
238 $this->assertEquals( $expected, $result );
241 public static function provideBitmapExtractPreRotationDimensions() {
245 array( self
::TEST_WIDTH
, self
::TEST_HEIGHT
)
249 array( self
::TEST_HEIGHT
, self
::TEST_WIDTH
)
253 array( self
::TEST_WIDTH
, self
::TEST_HEIGHT
)
257 array( self
::TEST_HEIGHT
, self
::TEST_WIDTH
)