mediawiki-extensions-Math/tests/phpunit/unit/TexVC/RenderTest.php
Stegmujo 8333e2541a Create Tests for Parser and TexVC
Parser.php is excluded from linting steps.

Bug: T312528

Change-Id: I372832bb9ea212f9bc06947d0ef192f270dc54c2
2022-10-19 17:25:20 +00:00

59 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\TexVC;
use MediaWiki\Extension\Math\TexVC\Parser;
use MediaWikiUnitTestCase;
/**
* @covers \MediaWiki\Extension\Math\TexVC\Parser
*/
class RenderTest extends MediaWikiUnitTestCase {
private $testCases;
protected function setUp(): void {
parent::setUp();
$this->testCases = [
[
'in' => '',
],
[
'in' => 'a',
],
[
'in' => 'a^2',
'out' => 'a^{2}'
],
[
'in' => 'a^2+b^{2}',
'out' => 'a^{2}+b^{2}'
],
[
'in' => 'a^{2}+b^{2}',
],
[
'in' => 'l_a^2+l_b^2=l_c^2',
'out' => 'l_{a}^{2}+l_{b}^{2}=l_{c}^{2}'
],
[
'in' => '\\sin(x)+{}{}\\cos(x)^2 newcommand',
'out' => '\\sin(x)+{}{}\\cos(x)^{2}newcommand'
]
];
}
public function testRendering() {
$parser = new Parser();
foreach ( $this->testCases as $case ) {
$in = $case['in'];
$out = $case['out'] ?? $in;
$result = $parser->parse( $in );
$rendered = $result->render();
$this->assertEquals( $out, $rendered, 'Error rendering input: '
. $in . ' rendered output is: ' . $rendered . ' should be: ' . $out );
}
}
}