mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-12 07:55:11 +00:00
ba47c32e1d
For development history of this changeset see: Id96a4b1b55e3959aab81f4ba436c5ac125f2a1bb Bug: T312528 Change-Id: I61cfdbd63f8d50b072ada05927a134686fdd53d3
60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
|
|
|
|
use ArgumentCountError;
|
|
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
|
|
use MediaWiki\Extension\Math\TexVC\Nodes\Lr;
|
|
use MediaWiki\Extension\Math\TexVC\Nodes\TexArray;
|
|
use MediaWikiUnitTestCase;
|
|
use TypeError;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\Lr
|
|
*/
|
|
class LrTest extends MediaWikiUnitTestCase {
|
|
|
|
public function testEmptyLr() {
|
|
$this->expectException( ArgumentCountError::class );
|
|
new Lr();
|
|
throw new ArgumentCountError( 'Should not create an empty lr' );
|
|
}
|
|
|
|
public function testOneArgumentLr() {
|
|
$this->expectException( ArgumentCountError::class );
|
|
new Lr( '(' );
|
|
throw new ArgumentCountError( 'Should not create a lr with one argument' );
|
|
}
|
|
|
|
public function testIncorrectTypeLr() {
|
|
$this->expectException( TypeError::class );
|
|
new Lr( '(', ')', new Literal( 'a' ) );
|
|
throw new TypeError( 'Should not create a lr with incorrect type' );
|
|
}
|
|
|
|
public function testBasicLr() {
|
|
$f = new Lr( '(', ')', new TexArray( new Literal( 'a' ) ) );
|
|
$this->assertEquals( '\\left(a\\right)', $f->render(), 'Should create a basic function' );
|
|
}
|
|
|
|
public function testGetters() {
|
|
$f = new Lr( '(', ')', new TexArray( new Literal( 'a' ) ) );
|
|
$this->assertNotEmpty( $f->getLeft() );
|
|
$this->assertNotEmpty( $f->getRight() );
|
|
$this->assertNotEmpty( $f->getArg() );
|
|
}
|
|
|
|
public function testCurliesLr() {
|
|
$f = new Lr( '(', ')', new TexArray( new Literal( 'a' ), new Literal( 'b' ) ) );
|
|
$this->assertEquals( '{\\left(ab\\right)}', $f->inCurlies(),
|
|
'Should create exactly one set of curlies' );
|
|
}
|
|
|
|
public function testExtractIdentifiersLr() {
|
|
$n = new Lr( '(', ')', new TexArray( new Literal( 'a' ), new Literal( 'b' ) ) );
|
|
$this->assertEquals( [ 'a', 'b' ], $n->extractIdentifiers(),
|
|
'Should extract identifiers' );
|
|
}
|
|
|
|
}
|