mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-11 14:46:11 +00:00
37 lines
919 B
PHP
37 lines
919 B
PHP
|
<?php
|
||
|
|
||
|
namespace Cite\Tests\Unit;
|
||
|
|
||
|
use Cite\Parsoid\Ref;
|
||
|
use MediaWikiUnitTestCase;
|
||
|
use Wikimedia\Parsoid\Ext\ParsoidExtensionAPI;
|
||
|
use Wikimedia\Parsoid\NodeData\DataMw;
|
||
|
use Wikimedia\Parsoid\Utils\DOMDataUtils;
|
||
|
use Wikimedia\Parsoid\Utils\DOMUtils;
|
||
|
|
||
|
/**
|
||
|
* @covers \Cite\Parsoid\Ref
|
||
|
* @license GPL-2.0-or-later
|
||
|
*/
|
||
|
class RefTest extends MediaWikiUnitTestCase {
|
||
|
|
||
|
public function testProcessAttributeEmbeddedHTML() {
|
||
|
$doc = DOMUtils::parseHTML( '' );
|
||
|
DOMDataUtils::prepareDoc( $doc );
|
||
|
$elt = $doc->createElement( 'a' );
|
||
|
DOMDataUtils::setDataMw( $elt, new DataMw( [ 'body' => (object)[ 'html' => 'old' ] ] ) );
|
||
|
|
||
|
$group = new Ref();
|
||
|
$group->processAttributeEmbeddedHTML(
|
||
|
$this->createNoOpMock( ParsoidExtensionAPI::class ),
|
||
|
$elt,
|
||
|
fn () => 'new'
|
||
|
);
|
||
|
|
||
|
$this->assertSame( 'new', DOMDataUtils::getDataMw( $elt )->body->html );
|
||
|
}
|
||
|
|
||
|
// TODO: Incomplete, there are a few more public methods to test
|
||
|
|
||
|
}
|