mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 11:48:23 +00:00
8333e2541a
Parser.php is excluded from linting steps. Bug: T312528 Change-Id: I372832bb9ea212f9bc06947d0ef192f270dc54c2
57 lines
1.2 KiB
PHP
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' );
|
|
}
|
|
}
|