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 [ 'macros' => [ 'macros', [ 'SetSize', 'Overunderset', 'Root', 'MoveRoot', 'LeftRight', 'MoveLeftRight', 'rule', 'Rule', 'Nonscript', 'BuildRel', 'FBox', 'FrameBox', 'Strut', 'Cr', 'HFill', 'BeginEnd', 'HandleLabel', 'HandleRef', 'HandleNoTag', 'MmlToken' ] ], 'cancel' => [ 'cancel' ], 'mhchem' => [ 'mhchem' ], 'custom' => [ 'custom', [ 'Insert' ] ], 'special' => [ 'special', [ 'open', 'close', 'superscript', 'subscript', 'space', 'prime', 'comment', 'entry', 'hash' ] ], // only tilde exists ]; } /** * @dataProvider provideTestCases */ public function testValidMethods( $setName, $knownProblems = [] ) { foreach ( BaseMappings::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 testGetCancelByKey() { $this->assertEquals( 'updiagonalstrike', BaseMappings::getCancelByKey( '\\cancel' )[1] ); $this->assertEquals( 'cancelTo', BaseMappings::getCancelByKey( '\\cancelto' )[0] ); $this->assertNull( BaseMappings::getCancelByKey( '\\notCancel' ) ); } public function testGetOperatorByKey() { $this->assertEquals( '√', BaseMappings::getOperatorByKey( '\\surd' )[0] ); $this->assertEquals( '−', BaseMappings::getOperatorByKey( '-' ) ); } public function testGetCustomByKey() { $this->assertEquals( '\u222E', BaseMappings::getCustomByKey( '\\oint' )[1] ); } public function testGetDelimiterByKey() { $this->assertEquals( '(', BaseMappings::getDelimiterByKey( '(' )[0] ); } public function testGetMacroByKey() { $this->assertEquals( 'D', BaseMappings::getMacroByKey( '\\displaystyle' )[1] ); } public function testGetSpecialByKey() { $this->assertEquals( 'tilde', BaseMappings::getSpecialByKey( '~' )[1] ); $this->assertNull( BaseMappings::getSpecialByKey( '_' ) ); } public function testGetColorByKey() { $this->assertEquals( '#ED1B23', BaseMappings::getColorByKey( 'red' )[0] ); } public function testGetInstance() { $this->assertInstanceOf( BaseMappings::class, BaseMappings::getInstance() ); } public function testGetCharacterByKey() { $this->assertEquals( '\u0393', BaseMappings::getCharacterByKey( '\\Gamma' ) ); } public function testGetMhChemByKey() { $this->assertEquals( 'ce', BaseMappings::getMhChemByKey( '\\ce' )[1] ); } public function testGetIdentifierByKey() { $this->assertEquals( 'α', BaseMappings::getIdentifierByKey( '\\alpha' )[0] ); } }