Math/tests/MathValidatorTest.php
lyrianos93 946a18d14c Implement datatype 'Math' for Wikidata
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
2016-01-11 22:29:29 +00:00

70 lines
1.8 KiB
PHP

<?php
/**
* Test the results of MathFormatter
*
* @group Math
*/
use DataValues\StringValue;
use DataValues\NumberValue;
class MathValidatorTest extends MediaWikiTestCase {
const VADLID_TEX = "a^2+b^2=c^2";
const INVADLID_TEX = "\\notExists";
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();
}
/**
* @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException
*/
public function testNotStringValue() {
$validator = new MathValidator();
$validator->validate( new NumberValue( 0 ) );
}
/**
* @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException
*/
public function testNullValue() {
$validator = new MathValidator();
$validator->validate( null );
}
public function testValidInput() {
$validator = new MathValidator();
$result = $validator->validate( new StringValue( self::VADLID_TEX ) );
// not supported by jenkins php version
// $this->assertType( \ValueValidators\Result::class, $result );
$this->assertTrue( $result->isValid() );
}
public function testInvalidInput() {
$validator = new MathValidator();
$result = $validator->validate( new StringValue( self::INVADLID_TEX ) );
// not supported by jenkins php version
// $this->assertType( \ValueValidators\Result::class, $result );
$this->assertFalse( $result->isValid() );
}
}