mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-03 11:46:29 +00:00
a82727f61f
Change-Id: Idd98205ea291640b01946374f15c807da7fc26e5
100 lines
3.1 KiB
PHP
100 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\WikiTexVC;
|
|
|
|
use InvalidArgumentException;
|
|
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 {
|
|
/** indicate whether this test is active */
|
|
private const ACTIVE = true;
|
|
private const FILENAME = "en-wiki-formulae-good.json";
|
|
private const REF_FILENAME = "en-wiki-formulae-good-reference.json";
|
|
private const CHUNKSIZE = 1000;
|
|
|
|
/**
|
|
* Reads the json file to an object
|
|
* @param string $filePath file to be read
|
|
* @throws InvalidArgumentException File with testcases does not exist.
|
|
* @return array json with testcases
|
|
*/
|
|
private static function getJSON( $filePath ): array {
|
|
if ( !file_exists( $filePath ) ) {
|
|
throw new InvalidArgumentException( "No testfile found at specified path: " . $filePath );
|
|
}
|
|
$file = file_get_contents( $filePath );
|
|
$json = json_decode( $file, true );
|
|
return $json;
|
|
}
|
|
|
|
public static function provideTestCases(): \Generator {
|
|
$group = [];
|
|
$groupNo = 1;
|
|
$references = self::getJSON( __DIR__ . '/' . self::REF_FILENAME );
|
|
foreach ( self::getJSON( __DIR__ . '/' . self::FILENAME ) as $key => $elem ) {
|
|
$group[$key] = [ $elem , $references[ $key ] ];
|
|
if ( count( $group ) >= self::CHUNKSIZE ) {
|
|
yield "Group $groupNo" => [ $group ];
|
|
$groupNo++;
|
|
$group = [];
|
|
}
|
|
}
|
|
if ( count( $group ) > 0 ) {
|
|
yield "Group $groupNo" => [ $group ];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideTestCases
|
|
*/
|
|
public function testRunCases( $testcase ) {
|
|
if ( !$this::ACTIVE ) {
|
|
$this->markTestSkipped( "All MediaWiki formulae en test not active and skipped. This is expected." );
|
|
}
|
|
|
|
$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 );
|
|
}
|
|
}
|
|
}
|
|
}
|