2020-10-19 20:59:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\Tests;
|
|
|
|
|
2021-01-06 17:06:27 +00:00
|
|
|
use RequestContext;
|
2020-10-19 20:59:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @coversDefaultClass \MediaWiki\Extension\DiscussionTools\CommentFormatter
|
|
|
|
*/
|
|
|
|
class CommentFormatterTest extends CommentTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider provideAddReplyLinks
|
|
|
|
* @covers ::addReplyLinks
|
|
|
|
*/
|
|
|
|
public function testAddReplyLinks(
|
|
|
|
string $name, string $dom, string $expected, string $config, string $data
|
|
|
|
) : void {
|
|
|
|
$origPath = $dom;
|
|
|
|
$dom = self::getHtml( $dom );
|
|
|
|
$expectedPath = $expected;
|
|
|
|
$expected = self::getHtml( $expected );
|
|
|
|
$config = self::getJson( $config );
|
|
|
|
$data = self::getJson( $data );
|
|
|
|
|
|
|
|
$this->setupEnv( $config, $data );
|
2021-01-08 22:19:20 +00:00
|
|
|
MockCommentFormatter::$data = $data;
|
2020-10-19 20:59:55 +00:00
|
|
|
|
2021-01-08 22:19:20 +00:00
|
|
|
$actual = MockCommentFormatter::addReplyLinks( $dom, RequestContext::getMain()->getLanguage() );
|
2021-01-06 17:06:27 +00:00
|
|
|
|
|
|
|
$doc = self::createDocument( $actual );
|
2020-10-19 20:59:55 +00:00
|
|
|
$expectedDoc = self::createDocument( $expected );
|
|
|
|
|
|
|
|
// Optionally write updated content to the "reply HTML" files
|
|
|
|
if ( getenv( 'DISCUSSIONTOOLS_OVERWRITE_TESTS' ) ) {
|
|
|
|
self::overwriteHtmlFile( $expectedPath, $doc, $origPath );
|
|
|
|
}
|
|
|
|
|
|
|
|
// saveHtml is not dirty-diff safe, but for testing it is probably faster than DOMCompat::getOuterHTML
|
|
|
|
self::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideAddReplyLinks() : array {
|
|
|
|
return self::getJson( '../cases/formattedreply.json' );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|