mediawiki-extensions-Math/tests/phpunit/unit/TexVC/Nodes/BoxTest.php
Stegmujo ba47c32e1d
Add Node and Util fixes for Parser.php
For development history of this changeset see:
Id96a4b1b55e3959aab81f4ba436c5ac125f2a1bb

Bug: T312528

Change-Id: I61cfdbd63f8d50b072ada05927a134686fdd53d3
2022-10-19 16:33:15 +02:00

56 lines
1.6 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
use ArgumentCountError;
use MediaWiki\Extension\Math\TexVC\Nodes\Box;
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
use MediaWikiUnitTestCase;
use RuntimeException;
use TypeError;
/**
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\Box
*/
class BoxTest extends MediaWikiUnitTestCase {
public function testEmptyBox() {
$this->expectException( ArgumentCountError::class );
new Box();
throw new ArgumentCountError( 'Should not create an empty box' );
}
public function testOneArgumentBox() {
$this->expectException( ArgumentCountError::class );
new Box( '\\hbox' );
throw new ArgumentCountError( 'Should not create a box with one argument' );
}
public function testIncorrectTypeBox() {
$this->expectException( TypeError::class );
new Box( '\\hbox', new Literal( 'a' ) );
throw new RuntimeException( 'Should not create a box with incorrect type' );
}
public function testBasicFunctionBox() {
$box = new Box( '\\hbox', 'a' );
$this->assertEquals( '{\\hbox{a}}', $box->render(), 'Should create a basic function' );
}
public function testGetters() {
$box = new Box( '\\hbox', 'a' );
$this->assertNotEmpty( $box->getArg() );
$this->assertNotEmpty( $box->getFname() );
}
public function testExtractIdentifiersBox() {
$box = new Box( '\\hbox', 'a' );
$this->assertEquals( [], $box->extractIdentifiers(), 'Should extract identifiers' );
}
public function testCurliesBox() {
$box = new Box( '\\hbox', 'a' );
$this->assertEquals( '{\\hbox{a}}', $box->inCurlies(), 'Should create exactly one set of curlies' );
}
}