mediawiki-extensions-Math/tests/phpunit/MathNativeMMLTest.php
Fomafix 363abd4afb Use overrideConfigValue instead of setMwGlobals
Change-Id: Id53db757cf0c2f0601cc34a9403edf3bbb1f7298
2024-07-24 16:22:59 +00:00

63 lines
1.9 KiB
PHP

<?php
use MediaWiki\Extension\Math\MathNativeMML;
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\LBFactory;
/**
* Test the native MathML output format.
*
* @covers \MediaWiki\Extension\Math\MathNativeMML
*
* @group Math
*
* @license GPL-2.0-or-later
*/
class MathNativeMMLTest extends MediaWikiIntegrationTestCase {
protected function setUp(): void {
parent::setUp();
$db = $this->createMock( IDatabase::class );
$db->method( 'selectRow' )->willReturn( false );
$lbFactory = $this->createMock( LBFactory::class );
$lbFactory->method( 'getReplicaDatabase' )->willReturn( $db );
$this->setService( 'DBLoadBalancerFactory', $lbFactory );
$this->overrideConfigValue( 'MathValidModes', [ 'native' ] );
$this->clearHooks();
}
public function testSin() {
$mml = new MathNativeMML( '\sin' );
$this->assertSame( 'tex', $mml->getInputType() );
$this->assertTrue( $mml->checkTeX() );
$this->assertTrue( $mml->render() );
$this->assertStringContainsString( 'sin', $mml->getMathml() );
}
public function testNoLink() {
$this->overrideConfigValue( 'MathEnableFormulaLinks', false );
$mml = new MathNativeMML( '\sin', [ 'qid' => 'Q1' ] );
$this->assertTrue( $mml->render() );
$this->assertStringNotContainsString( 'href', $mml->getMathml() );
}
public function testLink() {
$this->overrideConfigValue( 'MathEnableFormulaLinks', true );
$mml = new MathNativeMML( '\sin', [ 'qid' => 'Q1' ] );
$this->assertTrue( $mml->render() );
$this->assertStringContainsString( 'href', $mml->getMathml() );
}
public function testId() {
$mml = new MathNativeMML( '\sin', [ 'id' => 'unique-id' ] );
$this->assertTrue( $mml->render() );
$this->assertStringContainsString( 'unique-id', $mml->getMathml() );
}
public function testBlock() {
$mml = new MathNativeMML( '\sin', [ 'display' => 'block' ] );
$this->assertTrue( $mml->render() );
$this->assertStringContainsString( 'block', $mml->getMathml() );
}
}