mediawiki-extensions-Math/tests/phpunit/unit/TexVC/ParserTest.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

57 lines
1.2 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\TexVC;
use MediaWiki\Extension\Math\TexVC\Parser;
use MediaWikiUnitTestCase;
/**
* @covers \MediaWiki\Extension\Math\TexVC\Parser
*/
class ParserTest extends MediaWikiUnitTestCase {
private $testCases;
private $parser;
protected function setUp(): void {
parent::setUp();
$this->parser = new Parser();
$this->testCases = [
[
'in' => '',
],
[
'in' => 'a',
],
[
'in' => 'a^2',
],
[
'in' => 'a^2+b^{2}',
],
[
'in' => 'l_a^2+l_b^2=l_c^2' ,
]
];
}
public function testSimpleParse() {
foreach ( $this->testCases as $case ) {
$this->parser->parse( $case['in'], [ 'debug' => true ] );
$this->assertTrue( true, 'Should parse: ' . $case['in'] );
}
}
public function testExample() {
$this->parser->parse( '\\sin(x)+{}{}\\cos(x)^2 newcommand', [ 'debug' => true ] );
$this->assertTrue( true, 'Should parse texVC example' );
}
public function testSpecific() {
$resultR = $this->parser->parse( '\\reals' );
$resultS = $this->parser->parse( '\\mathbb{R}' );
$this->assertEquals( $resultR, $resultS, 'Should parse texVC specific functions' );
}
}