mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 23:46:39 +00:00
946a18d14c
This change implements all components to use the datatype 'Math' in Wikidata. Because 'String 'is used as value type, only the Formatter and Validator are needed to be implemended. The components are: * hooks * Formatter class * Validator class * Test cases Bug: T67397 Change-Id: Ic64fd6c8560f48052e2db24ae1f013d48a82b5e9
101 lines
2.6 KiB
PHP
101 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* Test the results of MathFormatter
|
|
*
|
|
* @group Math
|
|
*/
|
|
|
|
use DataValues\StringValue;
|
|
use DataValues\NumberValue;
|
|
|
|
class MathFormatterTest extends MediaWikiTestCase {
|
|
const SOME_TEX = "a^2+b^2=c^2";
|
|
const FORMAT_PLAIN = 'text/plain';
|
|
const FORMAT_HTML = 'text/html';
|
|
const FORMAT_XWIKI = 'text/x-wiki';
|
|
const FORMAT_UNKNOWN = 'unknown/unknown';
|
|
const FORMAT_VALUE = "";
|
|
|
|
protected static $hasRestbase;
|
|
|
|
public static function setUpBeforeClass() {
|
|
$rbi = new MathRestbaseInterface();
|
|
self::$hasRestbase = $rbi->checkBackend( true );
|
|
}
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*/
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
if ( !self::$hasRestbase ) {
|
|
$this->markTestSkipped( "Can not connect to Restbase Math interface." );
|
|
}
|
|
}
|
|
|
|
protected function tearDown() {
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* Checks the
|
|
* @covers MathFormatter::__construct()
|
|
*/
|
|
public function testBasics() {
|
|
$formatter = new MathFormatter( self::FORMAT_PLAIN );
|
|
// check if the format input was corretly passed to the class
|
|
$this->assertEquals( self::FORMAT_PLAIN, $formatter->getFormat(), 'test getFormat' );
|
|
}
|
|
|
|
/**
|
|
* @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException
|
|
*/
|
|
public function testNotStringValue() {
|
|
$formatter = new MathFormatter( self::FORMAT_PLAIN );
|
|
$formatter->format( new NumberValue( 0 ) );
|
|
}
|
|
|
|
/**
|
|
* @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException
|
|
*/
|
|
public function testNullValue() {
|
|
$formatter = new MathFormatter( self::FORMAT_PLAIN );
|
|
$formatter->format( null );
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testUnknownFormat() {
|
|
$formatter = new MathFormatter( self::FORMAT_UNKNOWN );
|
|
}
|
|
|
|
public function testFormatPlain() {
|
|
$formatter = new MathFormatter( self::FORMAT_PLAIN );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertEquals( self::SOME_TEX, $resultFormat,
|
|
'Results should be equal' );
|
|
|
|
}
|
|
|
|
public function testFormatHtml() {
|
|
$formatter = new MathFormatter( self::FORMAT_HTML );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertContains( '</math>', $resultFormat,
|
|
'Result must contain math-tag' );
|
|
}
|
|
|
|
public function testFormatXWiki() {
|
|
$tex = self::SOME_TEX;
|
|
$formatter = new MathFormatter( self::FORMAT_XWIKI );
|
|
$value = new StringValue( self::SOME_TEX );
|
|
$resultFormat = $formatter->format( $value );
|
|
$this->assertEquals( "<math>$tex</math>", $resultFormat,
|
|
'Tex wasn\'t properly wrapped' );
|
|
|
|
}
|
|
}
|