This class belongs with the rest of the Parsoid output stash code. This class has been marked @unstable since 1.39 and thus the move does not need release notes. Change-Id: I16061c0c28b1549fbe90ea082cc717fee4a09a6e
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Tests\Unit\Edit;
|
|
|
|
use MediaWiki\Edit\ParsoidRenderID;
|
|
use MediaWikiUnitTestCase;
|
|
|
|
class ParsoidRenderIdTest extends MediaWikiUnitTestCase {
|
|
|
|
/**
|
|
* @covers \MediaWiki\Edit\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\Edit\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 \MediaWiki\Edit\ParsoidRenderID $renderId
|
|
*
|
|
* @covers \MediaWiki\Edit\ParsoidRenderID::newFromETag
|
|
*/
|
|
public function testNewFromETag( $eTag, $renderId ) {
|
|
$actual = ParsoidRenderID::newFromETag( $eTag );
|
|
$this->assertSame( $renderId->getKey(), $actual->getKey() );
|
|
}
|
|
|
|
public static 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' ) ];
|
|
yield [ 'W/"1/abc"', new ParsoidRenderID( 1, 'abc' ) ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideBadETags
|
|
*
|
|
* @param string $eTag
|
|
*
|
|
* @covers \MediaWiki\Edit\ParsoidRenderID::newFromETag
|
|
*/
|
|
public function testNewFromBadETag( $eTag ) {
|
|
// make sure it doesn't explode
|
|
$this->assertNull( ParsoidRenderID::newFromETag( $eTag ) );
|
|
}
|
|
|
|
public static function provideBadETags() {
|
|
yield [ '' ];
|
|
yield [ '0' ];
|
|
yield [ '""' ];
|
|
yield [ '"/"' ];
|
|
yield [ '"x/y"' ];
|
|
yield [ '"1/foo"XXX' ];
|
|
yield [ 'XXX"1/foo"' ];
|
|
}
|
|
}
|