MediaWiki REL1_33
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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:2340