mediawiki-extensions-Discus.../tests/phpunit/CommentModifierTest.php
Bartosz Dziewoński 469b7720af Place replies outside transclusions, disallow replying to transcluded comments
Bug: T313100
Change-Id: I3993c96ec8d3d0add33d779860d158327985107d
2022-11-14 19:17:18 +01:00

180 lines
5.6 KiB
PHP

<?php
namespace MediaWiki\Extension\DiscussionTools\Tests;
use MediaWiki\Extension\DiscussionTools\CommentModifier;
use MediaWiki\MediaWikiServices;
use Wikimedia\Parsoid\Utils\DOMCompat;
use Wikimedia\Parsoid\Utils\DOMUtils;
use Wikimedia\Parsoid\Wt2Html\XMLSerializer;
/**
* @group DiscussionTools
* @covers \MediaWiki\Extension\DiscussionTools\CommentModifier
* @covers \MediaWiki\Extension\DiscussionTools\CommentUtils
*/
class CommentModifierTest extends IntegrationTestCase {
/**
* @dataProvider provideAddListItem
*/
public function testAddListItem(
string $name, string $title, string $dom, string $expected, string $config, string $data,
string $replyIndentation = 'invisible'
): void {
$origPath = $dom;
$dom = static::getHtml( $dom );
$expectedPath = $expected;
$expected = static::getHtml( $expected );
$config = static::getJson( $config );
$data = static::getJson( $data );
$this->setupEnv( $config, $data );
$title = MediaWikiServices::getInstance()->getTitleParser()->parseTitle( $title );
$doc = static::createDocument( $dom );
$container = static::getThreadContainer( $doc );
$threadItemSet = static::createParser( $data )->parse( $container, $title );
$comments = $threadItemSet->getCommentItems();
foreach ( $comments as $comment ) {
if ( $comment->getTranscludedFrom() ) {
// Reply tool wouldn't be available for this comment on this page, because it's transcluded.
// Skip this case, because the result of addListItem() would be misleading (we add replies
// after the transclusion, which would be the wrong place for most of these comments).
continue;
}
$node = CommentModifier::addListItem( $comment, $replyIndentation );
$node->textContent = 'Reply to ' . $comment->getId();
}
$expectedDoc = static::createDocument( $expected );
// Optionally write updated content to the "modified HTML" files
if ( getenv( 'DISCUSSIONTOOLS_OVERWRITE_TESTS' ) ) {
static::overwriteHtmlFile( $expectedPath, $container, $origPath );
}
// saveHtml is not dirty-diff safe, but for testing it is probably faster than DOMCompat::getOuterHTML
static::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name );
// removeAddedListItem is not implemented on the server
}
public function provideAddListItem(): array {
return static::getJson( '../cases/modified.json' );
}
/**
* @dataProvider provideAddReplyLink
*/
public function testAddReplyLink(
string $name, string $title, string $dom, string $expected, string $config, string $data
): void {
$origPath = $dom;
$dom = static::getHtml( $dom );
$expectedPath = $expected;
$expected = static::getHtml( $expected );
$config = static::getJson( $config );
$data = static::getJson( $data );
$this->setupEnv( $config, $data );
$title = MediaWikiServices::getInstance()->getTitleParser()->parseTitle( $title );
$doc = static::createDocument( $dom );
$container = static::getThreadContainer( $doc );
$threadItemSet = static::createParser( $data )->parse( $container, $title );
$comments = $threadItemSet->getCommentItems();
foreach ( $comments as $comment ) {
$linkNode = $doc->createElement( 'a' );
$linkNode->nodeValue = 'Reply';
$linkNode->setAttribute( 'href', '#' );
CommentModifier::addReplyLink( $comment, $linkNode );
}
$expectedDoc = static::createDocument( $expected );
// Optionally write updated content to the "reply HTML" files
if ( getenv( 'DISCUSSIONTOOLS_OVERWRITE_TESTS' ) ) {
static::overwriteHtmlFile( $expectedPath, $container, $origPath );
}
// saveHtml is not dirty-diff safe, but for testing it is probably faster than DOMCompat::getOuterHTML
static::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name );
}
public function provideAddReplyLink(): array {
return static::getJson( '../cases/reply.json' );
}
/**
* @dataProvider provideUnwrapList
*/
public function testUnwrapList( string $name, string $html, int $index, string $expected ): void {
$doc = static::createDocument( '' );
$container = $doc->createElement( 'div' );
DOMCompat::setInnerHTML( $container, $html );
CommentModifier::unwrapList( $container->childNodes[$index] );
static::assertEquals( $expected, DOMCompat::getInnerHTML( $container ) );
}
public function provideUnwrapList(): array {
return static::getJson( '../cases/unwrap.json' );
}
/**
* @dataProvider provideAppendSignature
*/
public function testAppendSignature(
string $msg, string $html, string $expected
): void {
$doc = static::createDocument( '' );
$container = DOMUtils::parseHTMLToFragment( $doc, $html );
CommentModifier::appendSignature( $container, ' ~~~~' );
static::assertEquals(
$expected,
XMLSerializer::serialize( $container, [ 'innerXML' => true, 'smartQuote' => false ] )['html'],
$msg
);
}
public function provideAppendSignature(): array {
return static::getJson( '../cases/appendSignature.json' );
}
public function testAppendSignatureWikitext(): void {
static::assertEquals(
'Foo bar ~~~~',
CommentModifier::appendSignatureWikitext( 'Foo bar', ' ~~~~' ),
'Simple message'
);
static::assertEquals(
"Foo bar\n*A\n*B\n~~~~",
CommentModifier::appendSignatureWikitext( "Foo bar\n*A\n*B", ' ~~~~' ),
'List'
);
}
/**
* @dataProvider provideSanitizeWikitextLinebreaks
*/
public function testSanitizeWikitextLinebreaks( string $msg, string $wikitext, string $expected ): void {
static::assertEquals(
$expected,
CommentModifier::sanitizeWikitextLinebreaks( $wikitext ),
$msg
);
}
public function provideSanitizeWikitextLinebreaks(): array {
return static::getJson( '../cases/sanitize-wikitext-linebreaks.json' );
}
}