mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-11 23:46:07 +00:00
69e111c91f
Instead of failing tests, we skip tests if the reuqired files are not there Change-Id: If107bea4efb35d08597f6274ffee45f6e951bc38
103 lines
3 KiB
PHP
103 lines
3 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\WikiTexVC;
|
|
|
|
use MediaWiki\Extension\Math\WikiTexVC\TexVC;
|
|
use MediaWikiUnitTestCase;
|
|
|
|
/**
|
|
* Currently WIP functionalities of en-wiki-formulae.js testsuite.
|
|
* All assertions are currently deactivated, cause high memory load on CI.
|
|
* These tests can be run locally by enabling the ACTIVE flag.
|
|
* File download of the json-input can be done by running:
|
|
* $ cd maintenance && ./downloadMoreTexVCtests.sh
|
|
* @covers \MediaWiki\Extension\Math\WikiTexVC\Parser
|
|
*
|
|
* @group Stub
|
|
*/
|
|
class EnWikiFormulaeTest extends MediaWikiUnitTestCase {
|
|
private const FILEPATH = __DIR__ . '/en-wiki-formulae-good.json';
|
|
private const REF_FILEPATH = __DIR__ . '/en-wiki-formulae-good-reference.json';
|
|
private const CHUNK_SIZE = 1000;
|
|
|
|
public static function setUpBeforeClass(): void {
|
|
self::checkFiles();
|
|
parent::setUpBeforeClass();
|
|
}
|
|
|
|
private static function checkFiles() {
|
|
if ( !file_exists( self::FILEPATH ) || !file_exists( self::REF_FILEPATH ) ) {
|
|
self::markTestSkipped( 'Missing test files. Required: ' .
|
|
self::FILEPATH . ' and ' .
|
|
self::REF_FILEPATH );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the json file to an object
|
|
* @param string $filePath file to be read
|
|
* @return array json with testcases
|
|
*/
|
|
private static function getJSON( $filePath ): array {
|
|
self::checkFiles();
|
|
$file = file_get_contents( $filePath );
|
|
return json_decode( $file, true );
|
|
}
|
|
|
|
public static function provideTestCases(): \Generator {
|
|
$group = [];
|
|
$groupNo = 1;
|
|
$references = self::getJSON( self::REF_FILEPATH );
|
|
foreach ( self::getJSON( self::FILEPATH ) as $key => $elem ) {
|
|
$group[$key] = [ $elem, $references[ $key ] ];
|
|
if ( count( $group ) >= self::CHUNK_SIZE ) {
|
|
yield "Group $groupNo" => [ $group ];
|
|
$groupNo++;
|
|
$group = [];
|
|
}
|
|
}
|
|
if ( count( $group ) > 0 ) {
|
|
yield "Group $groupNo" => [ $group ];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideTestCases
|
|
*/
|
|
public function testRunCases( $testcase ) {
|
|
$texVC = new TexVC();
|
|
|
|
foreach ( $testcase as $hash => [ $tex, $ref ] ) {
|
|
try {
|
|
$result = $texVC->check( $tex, [
|
|
"debug" => false,
|
|
"usemathrm" => false,
|
|
"oldtexvc" => false
|
|
] );
|
|
|
|
$this->assertEquals( '+', $result["status"],
|
|
$hash . " failed. Input: " . $tex );
|
|
if ( preg_match( '/\\\\definecolor \{/m', $ref ) ) {
|
|
// crop long numbers in color codes from 16 to 14 digits
|
|
// while this heuristic might produce false positivies in general, it is sufficient
|
|
// for this dataset
|
|
$ref = preg_replace( '/(0.\d{14})\d{2}([,\}])/m', '$1$2', $ref );
|
|
}
|
|
|
|
$this->assertEquals( $ref, $result["output"],
|
|
$hash . " does not match reference." );
|
|
|
|
$r1 = $texVC->check( $result["output"] );
|
|
$this->assertEquals( "+", $r1["status"],
|
|
"error rechecking output: " . $tex . " -> " . $result["output"] );
|
|
} catch ( PhpPegJs\SyntaxError $ex ) {
|
|
$message = "Syntax error: " . $ex->getMessage() .
|
|
' at line ' . $ex->grammarLine . ' column ' .
|
|
$ex->grammarColumn . ' offset ' . $ex->grammarOffset;
|
|
|
|
$this->assertTrue( false, $message );
|
|
}
|
|
}
|
|
}
|
|
}
|