setupEnv( $config, $data ); $this->setMwGlobals( [ 'wgScriptPath' => '/w', 'wgScript' => '/w/index.php', ] ); $title = Title::newFromText( $title ); MockCommentFormatter::$parser = static::createParser( $data ); $commentFormatter = TestingAccessWrapper::newFromClass( MockCommentFormatter::class ); $pout = new ParserOutput(); $preprocessed = $commentFormatter->addDiscussionToolsInternal( $dom, $pout, $title ); $preprocessed .= "\n
\n" . "newestComment: " . FormatJson::encode( $pout->getExtensionData( 'DiscussionTools-newestComment' ), "\t", FormatJson::ALL_OK ) . "\n" . ( $pout->getExtensionData( 'DiscussionTools-hasLedeContent' ) ? "hasLedeContent\n" : '' ) . ( $pout->getExtensionData( 'DiscussionTools-hasCommentsInLedeContent' ) ? "hasCommentsInLedeContent\n" : '' ) . ( $pout->getExtensionData( 'DiscussionTools-isEmptyTalkPage' ) ? "isEmptyTalkPage\n" : '' ) . FormatJson::encode( $pout->getJsConfigVars(), "\t", FormatJson::ALL_OK ) . "\n"; $mockSubStore = new MockSubscriptionStore(); $qqxLang = MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( 'qqx' ); \OutputPage::setupOOUI(); $actual = $preprocessed; $actual = MockCommentFormatter::postprocessTopicSubscription( $actual, $qqxLang, $title, $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 ); } /** * @return iterable