Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
41 lines
962 B
PHP
41 lines
962 B
PHP
<?php
|
|
|
|
/**
|
|
* @group Media
|
|
*/
|
|
class SvgTest extends MediaWikiMediaTestCase {
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->filePath = __DIR__ . '/../../data/media/';
|
|
|
|
$this->setMwGlobals( 'wgShowEXIF', true );
|
|
|
|
$this->handler = new SvgHandler;
|
|
}
|
|
|
|
/**
|
|
* @param string $filename
|
|
* @param array $expected The expected independent metadata
|
|
* @dataProvider providerGetIndependentMetaArray
|
|
* @covers SvgHandler::getCommonMetaArray
|
|
*/
|
|
public function testGetIndependentMetaArray( $filename, $expected ) {
|
|
$file = $this->dataFile( $filename, 'image/svg+xml' );
|
|
$res = $this->handler->getCommonMetaArray( $file );
|
|
|
|
$this->assertEquals( $res, $expected );
|
|
}
|
|
|
|
public static function providerGetIndependentMetaArray() {
|
|
return [
|
|
[ 'Tux.svg', [
|
|
'ObjectName' => 'Tux',
|
|
'ImageDescription' =>
|
|
'For more information see: http://commons.wikimedia.org/wiki/Image:Tux.svg',
|
|
] ],
|
|
[ 'Wikimedia-logo.svg', [] ]
|
|
];
|
|
}
|
|
}
|