MediaWiki REL1_31
MediaHandlerTest.php
Go to the documentation of this file.
1<?php
2
7
13 public function testFitBoxWidth( $width, $height, $max, $expected ) {
14 $y = round( $expected * $height / $width );
15 $result = MediaHandler::fitBoxWidth( $width, $height, $max );
16 $y2 = round( $result * $height / $width );
17 $this->assertEquals( $expected,
18 $result,
19 "($width, $height, $max) wanted: {$expected}x$y, got: {z$result}x$y2" );
20 }
21
22 public static function provideTestFitBoxWidth() {
23 return array_merge(
24 static::generateTestFitBoxWidthData( 50, 50, [
25 50 => 50,
26 17 => 17,
27 18 => 18 ]
28 ),
29 static::generateTestFitBoxWidthData( 366, 300, [
30 50 => 61,
31 17 => 21,
32 18 => 22 ]
33 ),
34 static::generateTestFitBoxWidthData( 300, 366, [
35 50 => 41,
36 17 => 14,
37 18 => 15 ]
38 ),
39 static::generateTestFitBoxWidthData( 100, 400, [
40 50 => 12,
41 17 => 4,
42 18 => 4 ]
43 )
44 );
45 }
46
61 private static function generateTestFitBoxWidthData( $width, $height, $tests ) {
62 $result = [];
63 foreach ( $tests as $max => $expected ) {
64 $result[] = [ $width, $height, $max, $expected ];
65 }
66 return $result;
67 }
68}
testFitBoxWidth( $width, $height, $max, $expected)
MediaHandler::fitBoxWidth.
static provideTestFitBoxWidth()
static generateTestFitBoxWidthData( $width, $height, $tests)
Generate single test cases by combining the dimensions and tests contents.
static fitBoxWidth( $boxWidth, $boxHeight, $maxHeight)
Calculate the largest thumbnail width for a given original file size such that the thumbnail's height...
namespace being checked & $result
Definition hooks.txt:2323