mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 11:48:23 +00:00
c1c4e42c86
Change-Id: I2c9141753b59d99a1caf84279a0afcaf8431e631
116 lines
3.4 KiB
PHP
116 lines
3.4 KiB
PHP
<?php
|
|
|
|
use DataValues\StringValue;
|
|
use DataValues\NumberValue;
|
|
use Wikibase\Lib\SnakFormatter;
|
|
|
|
/**
|
|
* Test the results of MathFormatter
|
|
*
|
|
* @covers MathFormatter
|
|
*
|
|
* @group Math
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
*/
|
|
class MathFormatterTest extends MediaWikiTestCase {
|
|
|
|
const SOME_TEX = 'a^2+b^2 < c^2';
|
|
|
|
protected static $hasRestbase;
|
|
|
|
public static function setUpBeforeClass() {
|
|
$rbi = new MathRestbaseInterface();
|
|
self::$hasRestbase = $rbi->checkBackend( true );
|
|
}
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
if ( !self::$hasRestbase ) {
|
|
$this->markTestSkipped( 'Can not connect to Restbase Math interface.' );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks the
|
|
* @covers 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' );
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testNotStringValue() {
|
|
$formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN );
|
|
$formatter->format( new NumberValue( 0 ) );
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testNullValue() {
|
|
$formatter = new MathFormatter( SnakFormatter::FORMAT_PLAIN );
|
|
$formatter->format( null );
|
|
}
|
|
|
|
public function testUnknownFormatFallsBackToMathMl() {
|
|
$formatter = new MathFormatter( 'unknown/unknown' );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertContains( '</math>', $resultFormat );
|
|
}
|
|
|
|
/**
|
|
* @covers MathFormatter::format
|
|
*/
|
|
public function testUnknownFormatFailure() {
|
|
$formatter = new MathFormatter( 'unknown/unknown' );
|
|
$value = new StringValue( '\noTex' );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertContains( '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() {
|
|
$formatter = new MathFormatter( SnakFormatter::FORMAT_HTML );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertContains( '</math>', $resultFormat, 'Result must contain math-tag' );
|
|
}
|
|
|
|
public function testFormatDiffHtml() {
|
|
$formatter = new MathFormatter( SnakFormatter::FORMAT_HTML_DIFF );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertContains( '</math>', $resultFormat, 'Result must contain math-tag' );
|
|
$this->assertContains( '</h4>', $resultFormat, 'Result must contain a <h4> tag' );
|
|
$this->assertContains( '</code>', $resultFormat, 'Result must contain a <code> tag' );
|
|
$this->assertContains( 'wb-details', $resultFormat, 'Result must contain wb-details class' );
|
|
$this->assertContains(
|
|
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( "<math>$tex</math>", $resultFormat, 'Tex wasn\'t properly wrapped' );
|
|
}
|
|
|
|
}
|