mediawiki-extensions-Math/tests/phpunit/unit/WikiTexVC/Nodes/TexNodeTest.php
Stegmujo a82727f61f
Rename TexVC in PHP to WikiTexVC
Change-Id: Idd98205ea291640b01946374f15c807da7fc26e5
2023-11-24 16:41:30 +01:00

176 lines
5.2 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes;
use InvalidArgumentException;
use MediaWiki\Extension\Math\WikiTexVC\Nodes\TexArray;
use MediaWiki\Extension\Math\WikiTexVC\Nodes\TexNode;
use MediaWikiUnitTestCase;
use RuntimeException;
/**
* @covers \MediaWiki\Extension\Math\WikiTexVC\Nodes\TexNode
*/
class TexNodeTest extends MediaWikiUnitTestCase {
public static function provideTexToRender() {
return [
[ [], '' ],
[ [ '' ], '' ],
[ [ 'hello', ' ', 'world' ], 'hello world' ],
[ [ 'hello', new TexNode( ' ' ), new TexNode( new TexNode( 'world' ) ) ], 'hello world' ],
];
}
/**
* @dataProvider provideTexToRender
*/
public function testRender( array $args, string $expected ) {
$n = new TexNode( ...$args );
$this->assertSame( $expected, $n->render() );
}
public function testIntegerArgs() {
$this->expectException( InvalidArgumentException::class );
( new TexNode( 1 ) )->render();
throw new RuntimeException( 'Should not accept integers as arguments' );
}
public static function provideTexWithoutCurlies() {
return [
[ 'a', '{a}' ],
[ new TexNode( 'a' ), '{a}' ],
[ '', '{}' ],
];
}
/**
* @dataProvider provideTexWithoutCurlies
*/
public function testInCurlies( $arg, string $expected ) {
$n = new TexNode( $arg );
$this->assertSame( $expected, $n->inCurlies() );
}
public function testExtractIdentifiers() {
$n = new TexNode( new TexNode( 'a' ) );
$this->assertEquals( [ 'a' ], $n->extractIdentifiers(), 'Should extract identifiers' );
}
public function testGetters() {
$n = new TexNode( new TexNode( 'a' ) );
$this->assertNotEmpty( $n->getArgs() );
}
public function testIdentiferMods() {
$n = new TexNode( '' );
$this->assertEquals( [], $n->getModIdent(),
'Should contain a method stub for extracting identifier modifications' );
}
public function testExtractSubscripts() {
$n = new TexNode( '' );
$this->assertEquals( [], $n->extractSubscripts(),
'Should contain a method stub for extracting subscripts' );
}
public static function providNegativeMatches() {
return [
[ 'asd', 'sda' ],
[ [ 'asd', 'ert' ], 'sda' ],
[ [ 0 => 'not a string key' ], '0' ],
];
}
/**
* @dataProvider providNegativeMatches
*/
public function testMatchFails( $target, string $str ) {
$this->assertFalse( TexNode::match( $target, $str ) );
}
public static function providPositiveMatches() {
return [
[ '', '' ],
[ 'asd', 'asd' ],
[ [ 'ert', 'asd' ], 'asd' ],
[ [ 'asd' => 'key should match' ], 'asd' ],
[ '0', '0' ],
[ [ '0' ], '0' ],
[ [ [ '0' ] ], '0' ],
];
}
/**
* @dataProvider providPositiveMatches
*/
public function testMatchSucceeds( $target, string $str ) {
$this->assertSame( $str, TexNode::match( $target, $str ) );
}
public static function provideTextContainingFunctions() {
return [
[ '', '', false ],
[ '\\', '\\' ],
[ 'bad input', 'bad input', false ],
[ '\\operatorname', '\\mismatch', false ],
[ '\\operatorname', '\\operatorname' ],
[ '\\operatorname', '\\operatorname {}' ],
[ '\\operatorname', '\\operatorname {someword}' ],
[ '\\operatorname', '\\operatorname {someword}(' ],
[ '\\operatorname', '\\operatorname {someword}[' ],
[ '\\operatorname', '\\operatorname {someword}{', false ],
[ '\\operatorname', '\\operatorname {someword}\\{' ],
[ '\\operatorname', '\\operatorname {someword} ' ],
[ '\\operatorname', '\\operatorname {someword} ', false ],
[ '\\operatorname', '\\operatorname {\\someword}', false ],
[ '\\operatorname', '\\operatorname{someword}', false ],
[
[ '\\operatorname', '\\nonexistingooperator' ],
'\\operatorname {someword}',
'\\operatorname'
],
[ '\\mbox', '\\mbox{}', false ],
[ '\\mbox', '\\mbox{foo}', false ],
[ '\\mbox', '\\mbox{\\}' ],
[ '\\mbox', '\\mbox{\\somefunc}' ],
[ '\\somefunc', '\\mbox{\\somefunc}' ],
[ '\\mismatch', '\\mbox{\\somefunc}', false ],
[ '\\somefunc', '\\mbox {\\somefunc}', false ],
[ '\\color', '\\color' ],
[ '\\color', '\\color the rest is ignored' ],
[ '\\pagecolor', '\\pagecolor' ],
[ '\\definecolor', '\\definecolor' ],
[ '\\mathbb', '\\mathbb {}', false ],
[ '\\mathbb', '\\mathbb {A}', false ],
[ '\\mathbb', '\\mathbb {foo}', false ],
[ '\\mathbb', '\\mathbb{}', false ],
[ '\\mathbb', '\\mathbb {.}', false ],
[ '\\mathbb', '\\mathbb {..........}', false ],
[ '\\mathbb', '\\mathbb {\\foo}' ],
[ '\\foo', '\\mathbb {\\foo}' ],
];
}
/**
* @dataProvider provideTextContainingFunctions
*/
public function testContainsFunc( $target, string $t, $expected = null ) {
$this->assertSame( $expected ?? $target, TexNode::texContainsFunc( $target, $t ) );
}
public function testIsEmptyString() {
$this->assertTrue( ( new TexNode( '', '' ) )->isEmpty() );
$this->assertFalse( ( new TexNode( '', 'a' ) )->isEmpty() );
$this->assertTrue( ( new TexNode() )->isEmpty() );
}
public function testIsEmptyObject() {
$this->assertTrue( ( new TexNode( new TexNode() ) )->isEmpty() );
$this->assertFalse( ( new TexNode( new TexNode( 'a' ) ) )->isEmpty() );
$this->assertTrue( ( new TexNode( new TexArray() ) )->isEmpty() );
$this->assertTrue( ( new TexNode( new TexArray( new TexNode( '' ) ) ) )->isEmpty() );
}
}