mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-18 18:40:39 +00:00
dab5364b31
* Add hline search in matrix construction: ** This avoids a second scan later for the cost of some memory overhead * Parse | in array column specification * Add CSS based table lines as done by TMML, cf. https://github.com/w3c/mathml-core/issues/245 Bug: T377167 Change-Id: I6e29b47b1731638ea9b06de3006ce2834e4f0c68
151 lines
4.6 KiB
PHP
151 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes;
|
|
|
|
use ArgumentCountError;
|
|
use InvalidArgumentException;
|
|
use MediaWiki\Extension\Math\WikiTexVC\Nodes\Literal;
|
|
use MediaWiki\Extension\Math\WikiTexVC\Nodes\Matrix;
|
|
use MediaWiki\Extension\Math\WikiTexVC\Nodes\TexArray;
|
|
use MediaWikiUnitTestCase;
|
|
use TypeError;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\WikiTexVC\Nodes\Matrix
|
|
*/
|
|
class MatrixTest extends MediaWikiUnitTestCase {
|
|
/** @var Matrix */
|
|
private $sampleMatrix;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
$this->sampleMatrix = new Matrix( 'align',
|
|
new TexArray( new TexArray( new Literal( 'a' ) ) ) );
|
|
}
|
|
|
|
public function testEmptyMatrix() {
|
|
$this->expectException( ArgumentCountError::class );
|
|
new Matrix();
|
|
throw new TypeError( 'Should not create an empty matrix' );
|
|
}
|
|
|
|
public function testNestedArguments() {
|
|
$this->expectException( InvalidArgumentException::class );
|
|
new Matrix(
|
|
'align',
|
|
new TexArray(
|
|
new Literal( 'a' ) ) );
|
|
throw new TypeError( 'Nested arguments have to be type of TexArray' );
|
|
}
|
|
|
|
public function testInstanceOfTexArray() {
|
|
$this->assertEquals( 'MediaWiki\\Extension\\Math\\WikiTexVC\\Nodes\\TexArray',
|
|
get_parent_class( $this->sampleMatrix ),
|
|
'Should create an instance of TexArray' );
|
|
}
|
|
|
|
public function testGetters() {
|
|
$this->assertNotEmpty( $this->sampleMatrix->getTop() );
|
|
$this->assertNotEmpty( $this->sampleMatrix->getMainarg() );
|
|
}
|
|
|
|
public function testRenderMatrix() {
|
|
$this->assertEquals( '{\\begin{align}a\\end{align}}', $this->sampleMatrix->render() );
|
|
}
|
|
|
|
public function testExtractCurlies() {
|
|
$this->assertEquals( '{\\begin{align}a\\end{align}}', $this->sampleMatrix->inCurlies(),
|
|
'Should not create extra curlies' );
|
|
}
|
|
|
|
public function testExtractIdentifiers() {
|
|
$this->assertEquals( [ 'a' ], $this->sampleMatrix->extractIdentifiers(),
|
|
'Should extract identifiers' );
|
|
}
|
|
|
|
public function testCreateFromMatrix() {
|
|
$matrix = new Matrix( 'align',
|
|
new TexArray( new TexArray( new Literal( 'a' ) ) ) );
|
|
$newMatrix = new Matrix( 'align', $matrix );
|
|
$this->assertEquals( $matrix, $newMatrix,
|
|
'Should create a matrix from a matrix' );
|
|
}
|
|
|
|
public function testContainsTop() {
|
|
$matrix = new Matrix( 'top',
|
|
new TexArray( new TexArray( new Literal( 'a' ) ) ) );
|
|
$this->assertTrue( $matrix->containsFunc( '\\begin{top}' ),
|
|
'Should create top attribute' );
|
|
}
|
|
|
|
public function testContainsArgs() {
|
|
$matrix = new Matrix( 'top',
|
|
new TexArray( new TexArray( new Literal( '\\sin' ) ) ) );
|
|
$this->assertTrue( $matrix->containsFunc( '\\sin' ),
|
|
'Should contain inner elements' );
|
|
}
|
|
|
|
public function testRenderMML() {
|
|
$matrix = new Matrix( 'matrix',
|
|
new TexArray( new TexArray( new Literal( '\\sin' ) ) ) );
|
|
$this->assertStringContainsString( 'mtable', $matrix->renderMML(),
|
|
'Should render a matrix' );
|
|
}
|
|
|
|
public function testTop() {
|
|
$this->sampleMatrix->setTop( 'abc' );
|
|
$this->assertEquals( 'abc', $this->sampleMatrix->getTop() );
|
|
}
|
|
|
|
public function testColSpec() {
|
|
$this->sampleMatrix->setColumnSpecs( TexArray::newCurly( new Literal( '2' ) ) );
|
|
$this->assertSame( '2', $this->sampleMatrix->getRenderedColumnSpecs() );
|
|
}
|
|
|
|
public function testAdvColSpec() {
|
|
$this->sampleMatrix->setColumnSpecs( TexArray::newCurly( new Literal( '{r|l}' ) ) );
|
|
$this->assertSame( 'r|l', $this->sampleMatrix->getRenderedColumnSpecs() );
|
|
$this->assertEquals( 'right left ', $this->sampleMatrix->getAlignInfo() );
|
|
$this->assertEquals( [ 1 => true ], $this->sampleMatrix->getBoarder() );
|
|
}
|
|
|
|
public function testGetLines() {
|
|
$real = $this->sampleMatrix->getLines();
|
|
$this->assertNotEmpty( $real );
|
|
$this->assertFalse( $real[0] );
|
|
}
|
|
|
|
public function testLinesBottom() {
|
|
$matrix = new Matrix( 'matrix',
|
|
new TexArray( new TexArray( new Literal( 'a' ) ),
|
|
new TexArray( new TexArray( new Literal( '\\hline ' ) ) ) ) );
|
|
$real = $matrix->getLines();
|
|
$this->assertNotEmpty( $real );
|
|
$this->assertFalse( $real[0] );
|
|
$this->assertTrue( $real[1] );
|
|
$this->assertCount( 2, $real );
|
|
}
|
|
|
|
public function testLinesTop() {
|
|
$matrix = new Matrix( 'matrix',
|
|
new TexArray( new TexArray( new TexArray( new Literal( '\\hline ' ), new Literal( 'a'
|
|
) ) ) ) );
|
|
$real = $matrix->getLines();
|
|
$this->assertNotEmpty( $real );
|
|
$this->assertTrue( $real[0] );
|
|
$this->assertCount( 1, $real );
|
|
}
|
|
|
|
public function testLinesLast() {
|
|
$matrix = new Matrix( 'matrix',
|
|
new TexArray( new TexArray( new Literal( 'a' ) ),
|
|
new TexArray( new TexArray( new Literal( '\\hline ' ), new Literal( 'a'
|
|
) ) ) ) );
|
|
$real = $matrix->getLines();
|
|
$this->assertNotEmpty( $real );
|
|
$this->assertFalse( $real[0] );
|
|
$this->assertTrue( $real[1] );
|
|
$this->assertCount( 2, $real );
|
|
}
|
|
}
|