mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-28 02:00:57 +00:00
115 lines
3 KiB
PHP
115 lines
3 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @coversDefaultClass DiscussionToolsCommentModifier
|
||
|
*/
|
||
|
class DiscussionToolsCommentModifierTest extends DiscussionToolsTestCase {
|
||
|
|
||
|
/**
|
||
|
* @dataProvider provideAddListItem
|
||
|
* @covers ::addListItem
|
||
|
* @covers ::removeListItem
|
||
|
*/
|
||
|
public function testAddListItem( $name, $dom, $expected, $config, $data ) {
|
||
|
$dom = self::getHtml( $dom );
|
||
|
$expected = self::getHtml( $expected );
|
||
|
$config = self::getJson( $config );
|
||
|
$data = self::getJson( $data );
|
||
|
|
||
|
$this->setupEnv( $config, $data );
|
||
|
|
||
|
$doc = self::createDocument( $dom );
|
||
|
$container = $doc->documentElement->childNodes[0];
|
||
|
|
||
|
$parser = self::createParser( $data );
|
||
|
$comments = $parser->getComments( $container );
|
||
|
$parser->groupThreads( $comments );
|
||
|
|
||
|
$nodes = [];
|
||
|
foreach ( $comments as $comment ) {
|
||
|
if ( $comment->type === 'heading' ) {
|
||
|
continue;
|
||
|
}
|
||
|
$node = DiscussionToolsCommentModifier::addListItem( $comment );
|
||
|
$node->textContent = 'Reply to ' . $comment->id;
|
||
|
$nodes[] = $node;
|
||
|
}
|
||
|
|
||
|
$expectedDoc = self::createDocument( $expected );
|
||
|
|
||
|
self::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name );
|
||
|
}
|
||
|
|
||
|
public function provideAddListItem() {
|
||
|
$modified = self::getJson( './cases/modified.json' );
|
||
|
return [
|
||
|
$modified[0],
|
||
|
$modified[1],
|
||
|
$modified[2],
|
||
|
$modified[3],
|
||
|
$modified[4],
|
||
|
// TODO: Fix strange escaping discrepancy inside data-mw
|
||
|
// $modified[5],
|
||
|
$modified[6],
|
||
|
$modified[7],
|
||
|
$modified[8],
|
||
|
$modified[9],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @dataProvider provideAddReplyLink
|
||
|
* @covers ::addReplyLink
|
||
|
*/
|
||
|
public function testAddReplyLink( $name, $dom, $expected, $config, $data ) {
|
||
|
$dom = self::getHtml( $dom );
|
||
|
$expected = self::getHtml( $expected );
|
||
|
$config = self::getJson( $config );
|
||
|
$data = self::getJson( $data );
|
||
|
|
||
|
$this->setupEnv( $config, $data );
|
||
|
|
||
|
$doc = self::createDocument( $dom );
|
||
|
$container = $doc->documentElement->childNodes[0];
|
||
|
|
||
|
$parser = self::createParser( $data );
|
||
|
$comments = $parser->getComments( $container );
|
||
|
$parser->groupThreads( $comments );
|
||
|
|
||
|
foreach ( $comments as $comment ) {
|
||
|
if ( $comment->type === 'heading' ) {
|
||
|
continue;
|
||
|
}
|
||
|
$linkNode = $doc->createElement( 'a' );
|
||
|
$linkNode->nodeValue = 'Reply';
|
||
|
$linkNode->setAttribute( 'href', '#' );
|
||
|
DiscussionToolsCommentModifier::addReplyLink( $comment, $linkNode );
|
||
|
}
|
||
|
|
||
|
$expectedDoc = self::createDocument( $expected );
|
||
|
|
||
|
self::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name );
|
||
|
}
|
||
|
|
||
|
public function provideAddReplyLink() {
|
||
|
return self::getJson( './cases/reply.json' );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @dataProvider provideUnwrapList
|
||
|
* @covers ::unwrapList
|
||
|
*/
|
||
|
public function testUnwrapList( $name, $html, $expected ) {
|
||
|
$doc = self::createDocument( '<div>' . $html . '</div>' );
|
||
|
$expectedDoc = self::createDocument( '<div>' . $expected . '</div>' );
|
||
|
|
||
|
DiscussionToolsCommentModifier::unwrapList( $doc->getElementsByTagName( 'dl' )[0] );
|
||
|
|
||
|
self::assertEquals( $expectedDoc->documentElement, $doc->documentElement );
|
||
|
}
|
||
|
|
||
|
public function provideUnwrapList() {
|
||
|
return self::getJson( './cases/unwrap.json' );
|
||
|
}
|
||
|
}
|