mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-11 23:46:07 +00:00
Add tests for AmsMappings
Change-Id: Ia4fbba3cda087b17587a953a6c01c6fae2fe2b64
This commit is contained in:
parent
d68c302b71
commit
6a46f2813c
|
@ -363,8 +363,8 @@ class AMSMappings {
|
|||
// Just an empty private constructor, for singleton pattern
|
||||
}
|
||||
|
||||
public static function removeInstance() {
|
||||
self::$instance = null;
|
||||
public static function getAll(): array {
|
||||
return self::ALL;
|
||||
}
|
||||
|
||||
public static function getInstance() {
|
||||
|
@ -372,10 +372,6 @@ class AMSMappings {
|
|||
return self::$instance;
|
||||
}
|
||||
|
||||
public static function getEntryFromList( $keylist, $key ) {
|
||||
return self::ALL[$keylist][$key] ?? null;
|
||||
}
|
||||
|
||||
public static function getOperatorByKey( $key ) {
|
||||
// √ to \\u.... this is only temporary probably entities.php will be refactored with \u vals again
|
||||
$key = MMLutil::x2uNotation( $key );
|
||||
|
|
72
tests/phpunit/unit/WikiTexVC/MMLmappings/AmsMappingsTest.php
Normal file
72
tests/phpunit/unit/WikiTexVC/MMLmappings/AmsMappingsTest.php
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?php
|
||||
|
||||
namespace MediaWiki\Extension\Math\Tests\WikiTexVC\MMLmappings;
|
||||
|
||||
use MediaWiki\Extension\Math\WikiTexVC\MMLmappings\AMSMappings;
|
||||
use MediaWiki\Extension\Math\WikiTexVC\MMLmappings\BaseParsing;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers \MediaWiki\Extension\Math\WikiTexVC\MMLmappings\AMSMappings
|
||||
*/
|
||||
class AmsMappingsTest extends TestCase {
|
||||
|
||||
public function testGetAll() {
|
||||
$all = AMSMappings::getAll();
|
||||
$this->assertIsArray( $all );
|
||||
$this->assertNotEmpty( $all );
|
||||
}
|
||||
|
||||
public function provideTestCases(): array {
|
||||
// the second argument is an array of known problems which should be removed in the future
|
||||
return [
|
||||
'amsmacros' => [ 'amsmacros', [ 'MultiIntegral', 'HandleTag', 'HandleNoTag', 'HandleRef', 'HandleDeclareOp',
|
||||
'HandleShove' ] ],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider provideTestCases
|
||||
*/
|
||||
public function testValidMethods( $setName, $knownProblems = [] ) {
|
||||
foreach ( AMSMappings::getAll()[$setName] as $symbol => $payload ) {
|
||||
$methodName = is_array( $payload ) ? $payload[0] : $payload;
|
||||
if ( in_array( $methodName, $knownProblems ) ) {
|
||||
continue;
|
||||
}
|
||||
$this->assertTrue( method_exists( BaseParsing::class, $methodName ),
|
||||
'Method ' . $methodName . ' for symbol ' . $symbol . ' does not exist in BaseParsing' );
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function testGetOperatorByKey() {
|
||||
$this->assertEquals( '⨌', AMSMappings::getOperatorByKey( 'iiiint' )[0] );
|
||||
}
|
||||
|
||||
public function testGetMathDelimiterByKey() {
|
||||
$this->assertEquals( '|', AMSMappings::getMathDelimiterByKey( 'lvert' )[0] );
|
||||
}
|
||||
|
||||
public function testGetSymbolDelimiterByKey() {
|
||||
$this->assertEquals( '⌜', AMSMappings::getSymbolDelimiterByKey( 'ulcorner' )[0] );
|
||||
}
|
||||
|
||||
public function testGetMacroByKey() {
|
||||
$this->assertEquals( 'Tilde', AMSMappings::getMacroByKey( '\\nobreakspace' )[0] );
|
||||
$this->assertEquals( 'macro', AMSMappings::getMacroByKey( 'implies' )[0] );
|
||||
}
|
||||
|
||||
public function testGetInstance() {
|
||||
$this->assertInstanceOf( AMSMappings::class, AMSMappings::getInstance() );
|
||||
}
|
||||
|
||||
public function testGetIdentifierByKey() {
|
||||
$this->assertEquals( 'Γ', AMSMappings::getIdentifierByKey( 'varGamma' )[0] );
|
||||
}
|
||||
|
||||
public function testGetEnvironmentByKey() {
|
||||
$this->assertEquals( 'EqnArray', AMSMappings::getEnvironmentByKey( 'align' )[0] );
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue