wiki.techinc.nl/tests/phpunit/unit/includes/parser/Parsoid/ParsoidRenderIdTest.php

49 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace MediaWiki\Tests\Unit\Parser\Parsoid;
use MediaWiki\Parser\Parsoid\ParsoidRenderID;
use MediaWikiUnitTestCase;
class ParsoidRenderIdTest extends MediaWikiUnitTestCase {
/**
* @covers \MediaWiki\Parser\Parsoid\ParsoidRenderID
*/
public function testConstruction() {
$renderID = new ParsoidRenderID( 1, '123-abc' );
$this->assertSame( 1, $renderID->getRevisionID() );
$this->assertEquals( '123-abc', $renderID->getUniqueID() );
$this->assertEquals( '1/123-abc', $renderID->__toString() );
}
/**
* @covers \MediaWiki\Parser\Parsoid\ParsoidRenderID::newFromKey
*/
public function testRoundTrip() {
$renderID = new ParsoidRenderID( 1, '123-abc' );
$stringRenderID = $renderID->__toString();
$backToRenderID = $renderID::newFromKey( $stringRenderID );
$this->assertSame( $stringRenderID, $backToRenderID->__toString() );
}
/**
* @dataProvider provideETags
*
* @param string $eTag
* @param ParsoidRenderID $renderId
*
* @covers \MediaWiki\Parser\Parsoid\ParsoidRenderID::newFromETag
*/
public function testNewFromETag( $eTag, $renderId ) {
$actual = ParsoidRenderID::newFromETag( $eTag );
$this->assertSame( $renderId->getKey(), $actual->getKey() );
}
public function provideETags() {
yield [ '"1/abc/stash"', new ParsoidRenderID( 1, 'abc' ) ];
yield [ '"1/abc"', new ParsoidRenderID( 1, 'abc' ) ];
yield [ '"1/abc/stash/stash"', new ParsoidRenderID( 1, 'abc' ) ];
}
}