mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-14 19:35:38 +00:00
a00131a18f
Bug: T322651 Depends-On: I86d461756398780dc24949013f35b7730a481052 Change-Id: I85ee8e6ed6eba97b94f4e4c415fbc5286c234cce
79 lines
2.4 KiB
PHP
79 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\Tests;
|
|
|
|
use FormatJson;
|
|
use MediaWiki\MediaWikiServices;
|
|
use ParserOutput;
|
|
use Title;
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\DiscussionTools\CommentFormatter
|
|
* @covers \MediaWiki\Extension\DiscussionTools\CommentUtils
|
|
*/
|
|
class CommentFormatterTest extends IntegrationTestCase {
|
|
|
|
/**
|
|
* @dataProvider provideAddDiscussionToolsInternal
|
|
*/
|
|
public function testAddDiscussionToolsInternal(
|
|
string $name, string $title, string $dom, array $expectedByMode, string $config, string $data
|
|
): void {
|
|
$dom = static::getHtml( $dom );
|
|
$config = static::getJson( $config );
|
|
$data = static::getJson( $data );
|
|
|
|
$this->setupEnv( $config, $data );
|
|
$title = Title::newFromText( $title );
|
|
MockCommentFormatter::$parser = TestUtils::createParser( $data );
|
|
|
|
$commentFormatter = TestingAccessWrapper::newFromClass( MockCommentFormatter::class );
|
|
|
|
$pout = new ParserOutput();
|
|
[ 'html' => $preprocessed ] = $commentFormatter->addDiscussionToolsInternal( $dom, $pout, $title );
|
|
$preprocessed .= "\n<pre>\n" .
|
|
FormatJson::encode( $pout->getJsConfigVars(), "\t", FormatJson::ALL_OK ) .
|
|
"\n</pre>";
|
|
|
|
$mockSubStore = new MockSubscriptionStore();
|
|
$qqxLang = MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( 'qqx' );
|
|
|
|
\OutputPage::setupOOUI();
|
|
|
|
$modes = [ 'mobile' => true, 'desktop' => false ];
|
|
foreach ( $modes as $mode => $isMobile ) {
|
|
$actual = $preprocessed;
|
|
$expectedPath = $expectedByMode[ $mode ];
|
|
$expected = static::getText( $expectedPath );
|
|
|
|
$actual = MockCommentFormatter::postprocessTopicSubscription(
|
|
$actual, $qqxLang, $mockSubStore, static::getTestUser()->getUser(), $isMobile
|
|
);
|
|
|
|
$actual = MockCommentFormatter::postprocessVisualEnhancements(
|
|
$actual, $qqxLang, static::getTestUser()->getUser(), $isMobile
|
|
);
|
|
|
|
$actual = MockCommentFormatter::postprocessReplyTool(
|
|
$actual, $qqxLang, $isMobile
|
|
);
|
|
|
|
// OOUI ID's are non-deterministic, so strip them from test output
|
|
$actual = preg_replace( '/ id=[\'"]ooui-php-[0-9]+[\'"]/', '', $actual );
|
|
|
|
// Optionally write updated content to the "reply HTML" files
|
|
if ( getenv( 'DISCUSSIONTOOLS_OVERWRITE_TESTS' ) ) {
|
|
static::overwriteTextFile( $expectedPath, $actual );
|
|
}
|
|
|
|
static::assertEquals( $expected, $actual, $name );
|
|
}
|
|
}
|
|
|
|
public function provideAddDiscussionToolsInternal(): array {
|
|
return static::getJson( '../cases/formatted.json' );
|
|
}
|
|
|
|
}
|