1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
<?php
/**
* @group Media
* @covers \SVGReader
*/
class SVGReaderTest extends \MediaWikiIntegrationTestCase {
/**
* @dataProvider provideSvgFiles
*/
public function testGetMetadata( $infile, $expected ) {
$this->assertMetadata( $infile, $expected );
}
/**
* @dataProvider provideSvgFilesWithXMLMetadata
*/
public function testGetXMLMetadata( $infile, $expected ) {
$r = new XMLReader();
$this->assertMetadata( $infile, $expected );
}
/**
* @dataProvider provideSvgUnits
*/
public function testScaleSVGUnit( $inUnit, $expected ) {
$this->assertEquals(
$expected,
SVGReader::scaleSVGUnit( $inUnit ),
'SVG unit conversion and scaling failure'
);
}
private function assertMetadata( $infile, $expected ) {
if ( $expected === false ) {
$this->expectException( InvalidSVGException::class );
}
$svgReader = new SVGReader( $infile );
$data = $svgReader->getMetadata();
$this->assertEquals( $expected, $data, 'SVG metadata extraction test' );
}
public static function provideSvgFiles() {
$base = __DIR__ . '/../../data/media';
return [
[
"$base/Wikimedia-logo.svg",
[
'width' => 1024,
'height' => 1024,
'originalWidth' => '1024',
'originalHeight' => '1024',
'translations' => [],
]
],
[
"$base/QA_icon.svg",
[
'width' => 60,
'height' => 60,
'originalWidth' => '60',
'originalHeight' => '60',
'translations' => [],
]
],
[
"$base/Gtk-media-play-ltr.svg",
[
'width' => 60,
'height' => 60,
'originalWidth' => '60.0000000',
'originalHeight' => '60.0000000',
'translations' => [],
]
],
[
"$base/Toll_Texas_1.svg",
// This file triggered T33719, needs entity expansion in the xmlns checks
[
'width' => 385,
'height' => 385,
'originalWidth' => '385',
'originalHeight' => '385.0004883',
'translations' => [],
]
],
[
"$base/Tux.svg",
[
'width' => 512,
'height' => 594,
'originalWidth' => '100%',
'originalHeight' => '100%',
'title' => 'Tux',
'translations' => [],
'description' => 'For more information see: http://commons.wikimedia.org/wiki/Image:Tux.svg',
]
],
[
"$base/Speech_bubbles.svg",
[
'width' => 669,
'height' => 491,
'originalWidth' => '17.7cm',
'originalHeight' => '13cm',
'translations' => [
'de' => SVGReader::LANG_FULL_MATCH,
'fr' => SVGReader::LANG_FULL_MATCH,
'nl' => SVGReader::LANG_FULL_MATCH,
'tlh-ca' => SVGReader::LANG_FULL_MATCH,
'tlh' => SVGReader::LANG_PREFIX_MATCH
],
]
],
[
"$base/Soccer_ball_animated.svg",
[
'width' => 150,
'height' => 150,
'originalWidth' => '150',
'originalHeight' => '150',
'animated' => true,
'translations' => []
],
],
[
"$base/comma_separated_viewbox.svg",
[
'width' => 512,
'height' => 594,
'originalWidth' => '100%',
'originalHeight' => '100%',
'translations' => []
],
],
[
"$base/css-animated.svg",
[
'width' => 100,
'height' => 100,
'originalWidth' => '100',
'originalHeight' => '100',
'animated' => true,
'translations' => []
],
],
];
}
public static function provideSvgFilesWithXMLMetadata() {
$base = __DIR__ . '/../../data/media';
$metadata = '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<ns4:Work xmlns:ns4="http://creativecommons.org/ns#" rdf:about="">
<ns5:format xmlns:ns5="http://purl.org/dc/elements/1.1/">image/svg+xml</ns5:format>
<ns5:type xmlns:ns5="http://purl.org/dc/elements/1.1/" rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</ns4:Work>
</rdf:RDF>';
// phpcs:enable
$metadata = str_replace( "\r", '', $metadata ); // Windows compat
return [
[
"$base/US_states_by_total_state_tax_revenue.svg",
[
'height' => 593,
'metadata' => $metadata,
'width' => 959,
'originalWidth' => '958.69',
'originalHeight' => '592.78998',
'translations' => [],
]
],
];
}
public static function provideSvgUnits() {
return [
[ '1', 1 ],
[ '1.1', 1.1 ],
[ '0.1', 0.1 ],
[ '.1', 0.1 ],
[ '1e2', 100 ],
[ '1E2', 100 ],
[ '+1', 1 ],
[ '-1', -1 ],
[ '-1.1', -1.1 ],
[ '1e+2', 100 ],
[ '1e-2', 0.01 ],
[ '10px', 10 ],
[ '10.2cm', 10.2 * 37.795275 ],
[ '10pt', 10 * 1.333333 ],
[ '10pc', 10 * 16 ],
[ '10mm', 10 * 3.7795275 ],
[ '10q', 10 * 0.944881 ],
[ '10Q', 10 * 0.944881 ],
[ '10cm', 10 * 37.795275 ],
[ '10in', 10 * 96 ],
[ '10em', 10 * 16 ],
[ '10rem', 10 * 16 ],
[ '10ex', 10 * 8 ],
[ '10ch', 10 * 8 ],
[ '10%', 51.2 ],
[ '10 px', 10 ],
// Invalid values
[ '1e1.1', 10 ],
[ '10bp', 10 ],
[ 'p10', null ],
];
}
}
|