mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-12 16:05:09 +00:00
b843a09e92
* example: "\lim\limits_{x \to 2}" * case 4 phabricator: "limits-case" * index: 411 Bug: T327391 Change-Id: I9a91e4cf49c9df89fb610057484165069f5c7e50
87 lines
3.2 KiB
PHP
87 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\TexVC;
|
|
|
|
use MediaWiki\Extension\Math\TexVC\MMLmappings\Util\MMLTestUtil;
|
|
use MediaWiki\Extension\Math\TexVC\TexVC;
|
|
use MediaWikiUnitTestCase;
|
|
|
|
/**
|
|
* These are some specific testcases by MML-Rendering by TexVC.
|
|
* They are explicitly described here instead of in JSON files because
|
|
* Mathoid or LaTeXML do not generate suitable results for reference.
|
|
* @covers \MediaWiki\Extension\Math\TexVC\TexVC
|
|
*/
|
|
class MMLRenderTest extends MediaWikiUnitTestCase {
|
|
public function testSidesetError() {
|
|
$input = "\\sideset{_1^2}{_3^4}";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertTrue( str_contains( $mathMLtexVC, "merror" ) );
|
|
}
|
|
|
|
public function testSidesetSum() {
|
|
$input = "\\sideset{_1^2}{_3^4}\\sum";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringNotContainsString( "merror", $mathMLtexVC );
|
|
$this->assertStringContainsString( "mmultiscripts", $mathMLtexVC );
|
|
$this->assertStringContainsString( "<mprescripts/>", $mathMLtexVC );
|
|
$this->assertStringContainsString( ">∑", $mathMLtexVC );
|
|
}
|
|
|
|
public function testSidesetProd() {
|
|
$input = "\\sideset{_1^2}{_3^4}\\prod";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringNotContainsString( "merror", $mathMLtexVC );
|
|
$this->assertStringContainsString( "mmultiscripts", $mathMLtexVC );
|
|
$this->assertStringContainsString( "<mprescripts/>", $mathMLtexVC );
|
|
$this->assertStringContainsString( ">∏", $mathMLtexVC );
|
|
}
|
|
|
|
public function testSidesetFQ() {
|
|
$input = "\\sideset{_1^2}{_3^4}\prod_a^b";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringNotContainsString( "merror", $mathMLtexVC );
|
|
$this->assertStringContainsString( "mmultiscripts", $mathMLtexVC );
|
|
$this->assertStringContainsString( "<mprescripts/>", $mathMLtexVC );
|
|
$this->assertStringContainsString( ">∏", $mathMLtexVC );
|
|
$this->assertStringContainsString( "<mi>a</mi>", $mathMLtexVC );
|
|
$this->assertStringContainsString( "<mi>b</mi>", $mathMLtexVC );
|
|
$this->assertStringContainsString( "movablelimits", $mathMLtexVC );
|
|
}
|
|
|
|
public function testLimitsProd() {
|
|
$input = "\\prod\\limits_{j=1}^k A_{\\alpha_j}";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringContainsString( "munderover", $mathMLtexVC );
|
|
$this->assertStringContainsString( "∏", $mathMLtexVC, );
|
|
$this->assertStringContainsString( "msub", $mathMLtexVC, );
|
|
}
|
|
|
|
public function testLimitsSum() {
|
|
$input = "\\sum\\limits_{j=1}^k A_{\\alpha_j}";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringContainsString( "munderover", $mathMLtexVC );
|
|
$this->assertStringContainsString( "∑", $mathMLtexVC, );
|
|
$this->assertStringContainsString( "msub", $mathMLtexVC, );
|
|
}
|
|
|
|
public function testLimitsLim() {
|
|
$input = "\\lim_{x \\to 2}";
|
|
$mathMLtexVC = $this->generateMML( $input );
|
|
$this->assertStringContainsString( "lim", $mathMLtexVC );
|
|
$this->assertStringContainsString( "munder", $mathMLtexVC, );
|
|
}
|
|
|
|
private function generateMML( $input, $chem = false ) {
|
|
$texVC = new TexVC();
|
|
$resultT = $texVC->check( $input, [
|
|
'debug' => false,
|
|
'usemathrm' => false,
|
|
'oldtexvc' => false,
|
|
'usemhchem' => $chem
|
|
] );
|
|
|
|
return MMLTestUtil::getMMLwrapped( $resultT["input"] ) ?? "<math> error texvc </math>";
|
|
}
|
|
}
|