php MathGenerateTests.php MathTest * in the maitenance folder of the Math extension. * 3. Test local e.g. via * sudo php /vagrant/mediawiki/tests/phpunit/phpunit.php * /vagrant/mediawiki/extensions/Math/tests/MathCoverageTest.php * (If you don't use sudo you might have problems with the permissions set at vagrant.) * * @covers MathRenderer * * @group Math * * @license GPL-2.0-or-later */ class MathCoverageTest extends MediaWikiTestCase { /** * Loops over all test cases provided by the provider function. * Compares each the rendering result of each input with the expected output. * @dataProvider provideCoverage */ public function testCoverage( $input, $options, $output ) { // TODO: Make rendering mode configurable // TODO: Provide test-ids // TODO: Link to the wikipage that contains the reference rendering $this->assertEquals( $this->normalize( $output ), $this->normalize( MathRenderer::renderMath( $input, $options, 'png' ) ), "Failed to render ${input}" ); } /** * Gets the test-data from the file ParserTest.json * @return array where $input is the test input string * and $output is the rendered html5-output string */ public function provideCoverage() { $testcases = json_decode( file_get_contents( __DIR__ . '/../ParserTest.json' ), true ); // uncomment for fast testing // $testcases = array_slice($testcases,0,3); return $testcases; } private function normalize( $input ) { return preg_replace( '#src="(.*?)/(([a-f]|\d)*)"#', 'src="\2"', $input ); } }