This changeset resumes work on T89432 and related tickets by porting an initial set of tests to the new unit test suite separated out in I69b92db3e70093570e05cc0a64c7780a278b321a. The tests were only ported if they worked immediately without requiring any changes other than changing the test case class to MediaWikiUnitTestCase and moving the test to the new suite. If a test failed for any reason (even trivial misconfiguration), it was NOT ported. With this change, the unit tests suite now consits of a total of 455 tests. As before, you can run these tests via the following command: $ composer phpunit:unit Bug: T84948 Bug: T89432 Bug: T87781 Change-Id: Ibb8175981092d7f41864e641cc3c118af70a5c76
68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group Media
|
|
*/
|
|
class MediaHandlerTest extends \MediaWikiUnitTestCase {
|
|
|
|
/**
|
|
* @covers MediaHandler::fitBoxWidth
|
|
*
|
|
* @dataProvider provideTestFitBoxWidth
|
|
*/
|
|
public function testFitBoxWidth( $width, $height, $max, $expected ) {
|
|
$y = round( $expected * $height / $width );
|
|
$result = MediaHandler::fitBoxWidth( $width, $height, $max );
|
|
$y2 = round( $result * $height / $width );
|
|
$this->assertEquals( $expected,
|
|
$result,
|
|
"($width, $height, $max) wanted: {$expected}x$y, got: {z$result}x$y2" );
|
|
}
|
|
|
|
public static function provideTestFitBoxWidth() {
|
|
return array_merge(
|
|
static::generateTestFitBoxWidthData( 50, 50, [
|
|
50 => 50,
|
|
17 => 17,
|
|
18 => 18 ]
|
|
),
|
|
static::generateTestFitBoxWidthData( 366, 300, [
|
|
50 => 61,
|
|
17 => 21,
|
|
18 => 22 ]
|
|
),
|
|
static::generateTestFitBoxWidthData( 300, 366, [
|
|
50 => 41,
|
|
17 => 14,
|
|
18 => 15 ]
|
|
),
|
|
static::generateTestFitBoxWidthData( 100, 400, [
|
|
50 => 12,
|
|
17 => 4,
|
|
18 => 4 ]
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Generate single test cases by combining the dimensions and tests contents
|
|
*
|
|
* It creates:
|
|
* [$width, $height, $max, $expected],
|
|
* [$width, $height, $max2, $expected2], ...
|
|
* out of parameters:
|
|
* $width, $height, { $max => $expected, $max2 => $expected2, ... }
|
|
*
|
|
* @param int $width
|
|
* @param int $height
|
|
* @param array $tests associative array of $max => $expected values
|
|
* @return array
|
|
*/
|
|
private static function generateTestFitBoxWidthData( $width, $height, $tests ) {
|
|
$result = [];
|
|
foreach ( $tests as $max => $expected ) {
|
|
$result[] = [ $width, $height, $max, $expected ];
|
|
}
|
|
return $result;
|
|
}
|
|
}
|