markTestSkippedIfExtensionNotLoaded( 'WikibaseClient' ); parent::setUp(); } /** * Checks the * @covers \MediaWiki\Extension\Math\MathFormatter::__construct */ public function testBasics() { $formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN ); // check if the format input was corretly passed to the class $this->assertSame( SnakFormatter::FORMAT_PLAIN, $formatter->getFormat(), 'test getFormat' ); } public function testNotStringValue() { $formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN ); $this->expectException( InvalidArgumentException::class ); $formatter->format( new NumberValue( 0 ) ); } public function testNullValue() { $formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN ); $this->expectException( InvalidArgumentException::class ); $formatter->format( null ); } public function testUnknownFormatFallsBackToMathMl() { $this->setupGoodMathRestBaseMockHttp( true ); $formatter = new MathFormatter( 'unknown/unknown' ); $value = new StringValue( self::SOME_TEX ); $resultFormat = $formatter->format( $value ); $this->assertStringContainsString( '', $resultFormat ); } /** * @covers \MediaWiki\Extension\Math\MathFormatter::format */ public function testUnknownFormatFailure() { $this->setupBadMathRestBaseMockHttp(); $formatter = new MathFormatter( 'unknown/unknown' ); $value = new StringValue( '\newcommand' ); $resultFormat = $formatter->format( $value ); $this->assertStringContainsString( 'unknown function', $resultFormat ); } public function testFormatPlain() { $formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN ); $value = new StringValue( self::SOME_TEX ); $resultFormat = $formatter->format( $value ); $this->assertSame( self::SOME_TEX, $resultFormat ); } public function testFormatHtml() { $this->setupGoodMathRestBaseMockHttp( true ); $formatter = new MathFormatter( SnakFormatter::FORMAT_HTML ); $value = new StringValue( self::SOME_TEX ); $resultFormat = $formatter->format( $value ); $this->assertStringContainsString( '', $resultFormat, 'Result must contain math-tag' ); } public function testFormatDiffHtml() { $this->setupGoodMathRestBaseMockHttp( true ); $formatter = new MathFormatter( SnakFormatter::FORMAT_HTML_DIFF ); $value = new StringValue( self::SOME_TEX ); $resultFormat = $formatter->format( $value ); $this->assertStringContainsString( '', $resultFormat, 'Result must contain math-tag' ); $this->assertStringContainsString( '', $resultFormat, 'Result must contain a

tag' ); $this->assertStringContainsString( '', $resultFormat, 'Result must contain a tag' ); $this->assertStringContainsString( 'wb-details', $resultFormat, 'Result must contain wb-details class' ); $this->assertStringContainsString( htmlspecialchars( self::SOME_TEX ), $resultFormat, 'Result must contain the TeX source' ); } public function testFormatXWiki() { $tex = self::SOME_TEX; $formatter = new MathFormatter( SnakFormatter::FORMAT_WIKI ); $value = new StringValue( self::SOME_TEX ); $resultFormat = $formatter->format( $value ); $this->assertSame( "$tex", $resultFormat, 'Tex wasn\'t properly wrapped' ); } }