* Added support for configuration of an arbitrary number of commons-style file repositories. * Split Image.php into filerepo/File.php and filerepo/LocalFile.php * Renamed Image::getImagePath() to File::getPath() * Added initial support for timestamp-based file fetching (OldLocalFile), to be expanded upon by aaron. * Changed the interface for Image/File object creation: use wfFindFile() or wfLocalFile() depending on semantics * ImageGallery::add() now accepts a title object as the first parameter * Moved file handling operations on upload from SpecialUpload to File * Removed path-related functions from ImageFunctions.php. Removed static path accessors from File. * Added a Content-Disposition header to thumb.php output * Improved thumb.php error handling * Updated the unit test suite to kind of partially work with modern computers. RunTests.php doesn't work just yet. Fixed an actual regression that the test suite detected -- moved some defines to Defines.php where they will be loaded consistently.
48 lines
989 B
PHP
48 lines
989 B
PHP
<?php
|
|
|
|
class ImageFunctionsTest extends PHPUnit_Framework_TestCase {
|
|
function testFitBoxWidth() {
|
|
$vals = array(
|
|
array(
|
|
'width' => 50,
|
|
'height' => 50,
|
|
'tests' => array(
|
|
50 => 50,
|
|
17 => 17,
|
|
18 => 18 ) ),
|
|
array(
|
|
'width' => 366,
|
|
'height' => 300,
|
|
'tests' => array(
|
|
50 => 61,
|
|
17 => 21,
|
|
18 => 22 ) ),
|
|
array(
|
|
'width' => 300,
|
|
'height' => 366,
|
|
'tests' => array(
|
|
50 => 41,
|
|
17 => 14,
|
|
18 => 15 ) ),
|
|
array(
|
|
'width' => 100,
|
|
'height' => 400,
|
|
'tests' => array(
|
|
50 => 12,
|
|
17 => 4,
|
|
18 => 4 ) ) );
|
|
foreach( $vals as $row ) {
|
|
extract( $row );
|
|
foreach( $tests as $max => $expected ) {
|
|
$y = round( $expected * $height / $width );
|
|
$result = wfFitBoxWidth( $width, $height, $max );
|
|
$y2 = round( $result * $height / $width );
|
|
$this->assertEquals( $expected,
|
|
$result,
|
|
"($width, $height, $max) wanted: {$expected}x$y, got: {$result}x$y2" );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|