mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
7a8d5b9dc4
Initally used a new sniff with autofix (T333745) Bug: T332865 Change-Id: I73d2903fed7523826b71fc452a846dc4c6e85802
132 lines
4.5 KiB
PHP
132 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests;
|
|
|
|
use ExtensionRegistry;
|
|
use MediaWiki\Config\ServiceOptions;
|
|
use MediaWiki\Extension\Math\MathConfig;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\MathConfig
|
|
*/
|
|
class MathConfigTest extends TestCase {
|
|
|
|
private const TEST_DEFAULT = 'test-default';
|
|
private const DUMMY_URL = 'https://example.com/api.php';
|
|
|
|
private function newMathConfig(
|
|
array $configOverrides,
|
|
ExtensionRegistry $registry = null
|
|
): MathConfig {
|
|
return new MathConfig(
|
|
new ServiceOptions( MathConfig::CONSTRUCTOR_OPTIONS, $configOverrides + [
|
|
'MathDisableTexFilter' => MathConfig::ALWAYS,
|
|
'MathValidModes' => [ MathConfig::MODE_SOURCE ],
|
|
'MathEntitySelectorFallbackUrl' => self::DUMMY_URL,
|
|
] ),
|
|
$registry ?? ExtensionRegistry::getInstance()
|
|
);
|
|
}
|
|
|
|
public static function provideTexCheckDisabled() {
|
|
yield 'always' => [ 'always', MathConfig::ALWAYS ];
|
|
yield 'never' => [ 'never', MathConfig::NEVER ];
|
|
yield 'new' => [ 'new', MathConfig::NEW ];
|
|
yield 'true' => [ true, MathConfig::NEVER ];
|
|
yield 'false' => [ false, MathConfig::ALWAYS ];
|
|
yield 'garbage' => [ 'garbage', MathConfig::ALWAYS ];
|
|
yield 'wrong case' => [ 'NEVER', MathConfig::NEVER ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideTexCheckDisabled
|
|
*/
|
|
public function testTexCheckDisabled( $configValue, string $expected ) {
|
|
$mathConfig = $this->newMathConfig( [ 'MathDisableTexFilter' => $configValue ] );
|
|
$this->assertSame( $expected, $mathConfig->texCheckDisabled() );
|
|
}
|
|
|
|
public static function provideNormalizeRenderingMode() {
|
|
yield 'legacy user option' => [ 1, self::TEST_DEFAULT ];
|
|
yield 'source user option' => [ 3, MathConfig::MODE_SOURCE ];
|
|
yield 'mathml user option' => [ 5, MathConfig::MODE_MATHML ];
|
|
yield 'latexml user option' => [ 7, MathConfig::MODE_LATEXML ];
|
|
yield 'native user option' => [ 8, MathConfig::MODE_NATIVE_MML ];
|
|
yield 'source string' => [ 'source', MathConfig::MODE_SOURCE ];
|
|
yield 'mathml string' => [ 'mathml', MathConfig::MODE_MATHML ];
|
|
yield 'latexml string' => [ 'latexml', MathConfig::MODE_LATEXML ];
|
|
yield 'native string' => [ 'native', MathConfig::MODE_NATIVE_MML ];
|
|
yield 'wrong capitalizaton' => [ 'LaTeXmL', MathConfig::MODE_LATEXML ];
|
|
yield 'unrecognized' => [ 'garbage', self::TEST_DEFAULT ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideNormalizeRenderingMode
|
|
*/
|
|
public function testNormalizeRenderingMode( $input, string $expected ) {
|
|
$this->assertSame( $expected, MathConfig::normalizeRenderingMode( $input, self::TEST_DEFAULT ) );
|
|
}
|
|
|
|
public function testGetValidRenderingModes() {
|
|
$mathConfig = $this->newMathConfig( [
|
|
'MathValidModes' => [
|
|
MathConfig::MODE_MATHML,
|
|
5,
|
|
MathConfig::MODE_SOURCE,
|
|
'this will be converted to mathml' ],
|
|
] );
|
|
$actualModes = $mathConfig->getValidRenderingModes();
|
|
$this->assertCount( 2, $actualModes );
|
|
$this->assertContains( MathConfig::MODE_MATHML, $actualModes );
|
|
$this->assertContains( MathConfig::MODE_SOURCE, $actualModes );
|
|
}
|
|
|
|
public static function provideIsValidRenderingMode() {
|
|
yield 'valid' => [ MathConfig::MODE_MATHML, true ];
|
|
yield 'garbage' => [ 'garbage', false ];
|
|
yield 'does not normalize' => [ 0, false ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideIsValidRenderingMode
|
|
*/
|
|
public function testIsValidRenderingMode( $mode, $expected ) {
|
|
$mathConfig = $this->newMathConfig( [
|
|
'MathValidModes' => [ MathConfig::MODE_MATHML ],
|
|
] );
|
|
$this->assertSame( $expected, $mathConfig->isValidRenderingMode( $mode ) );
|
|
}
|
|
|
|
public function testGetValidRenderingModeKeys() {
|
|
$mathConfig = $this->newMathConfig( [
|
|
'MathValidModes' => [ MathConfig::MODE_MATHML ],
|
|
] );
|
|
$this->assertEquals(
|
|
[ 'mathml' => 'mw_math_mathml' ],
|
|
$mathConfig->getValidRenderingModeKeys() );
|
|
}
|
|
|
|
public function testEntitySelectorUrlWikibase() {
|
|
$mathConfig = $this->newMathConfig( [] );
|
|
if ( ExtensionRegistry::getInstance()->isLoaded( 'WikibaseClient' ) ) {
|
|
$localUrl = $mathConfig->getMathEntitySelectorUrl();
|
|
$this->assertStringContainsString( 'api.php', $localUrl );
|
|
$this->assertStringNotContainsString( 'example.com', $localUrl );
|
|
} else {
|
|
$this->markTestSkipped( 'Wikibase Client is not loaded partially skipping test.' );
|
|
}
|
|
}
|
|
|
|
public function testEntitySelectorUrlFallback() {
|
|
$mathConfig = $this->newMathConfig( [], new class extends ExtensionRegistry {
|
|
public function isLoaded( $name, $constraint = '*' ): bool {
|
|
return false;
|
|
}
|
|
} );
|
|
$url = $mathConfig->getMathEntitySelectorUrl();
|
|
$this->assertEquals( self::DUMMY_URL, $url );
|
|
}
|
|
|
|
}
|