mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-13 08:28:32 +00:00
b9e297c4ec
* Use merror instead of plain strings for not implemented functions Change-Id: If20559e05f3b0c8921a28c623102b8f4788a3c94
61 lines
1.8 KiB
PHP
61 lines
1.8 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' );
|
|
}
|
|
|
|
public function testRenderMML() {
|
|
$box = new Box( '\\hbox', 'a' );
|
|
$this->assertStringContainsString( '</mtext>', $box->renderMML(), 'Render MathML as text.' );
|
|
}
|
|
}
|