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

71 lines
2.1 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes;
use ArgumentCountError;
use MediaWiki\Extension\Math\WikiTexVC\Nodes\Box;
use MediaWiki\Extension\Math\WikiTexVC\Nodes\Literal;
use MediaWikiUnitTestCase;
use RuntimeException;
use TypeError;
/**
* @covers \MediaWiki\Extension\Math\WikiTexVC\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' );
}
public function testRenderMML() {
$box = new Box( '\\hbox', 'a' );
$this->assertStringContainsString( '</mtext>', $box->renderMML(), 'Render MathML as text.' );
}
public function testTrailingSpaceBoxMML() {
$box = new Box( '\\hbox', 'a ' );
$this->assertStringContainsString( '&#xA0;', $box->renderMML(), 'Should have trailing rendered space' );
}
public function testPrecedingSpaceBoxMML() {
$box = new Box( '\\hbox', ' a' );
$this->assertStringContainsString( '&#xA0;', $box->renderMML(), 'Should have preceding rendered space' );
}
}