setupEnv( $config, $data ); $doc = self::createDocument( $dom ); $container = $doc->getElementsByTagName( 'body' )->item( 0 ); $parser = self::createParser( $data ); $comments = $parser->getComments( $container ); $parser->groupThreads( $comments ); $nodes = []; foreach ( $comments as $comment ) { if ( $comment instanceof CommentItem ) { $node = CommentModifier::addListItem( $comment ); $node->textContent = 'Reply to ' . $comment->getId(); $nodes[] = $node; } } $expectedDoc = self::createDocument( $expected ); self::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name ); // removeAddedListItem is not implemented on the server } public function provideAddListItem() : array { return self::getJson( '../cases/modified.json' ); } /** * @dataProvider provideAddReplyLink * @covers ::addReplyLink */ public function testAddReplyLink( string $name, string $dom, string $expected, string $config, string $data ) : void { $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->getElementsByTagName( 'body' )->item( 0 ); $parser = self::createParser( $data ); $comments = $parser->getComments( $container ); $parser->groupThreads( $comments ); foreach ( $comments as $comment ) { if ( $comment instanceof CommentItem ) { $linkNode = $doc->createElement( 'a' ); $linkNode->nodeValue = 'Reply'; $linkNode->setAttribute( 'href', '#' ); CommentModifier::addReplyLink( $comment, $linkNode ); } } $expectedDoc = self::createDocument( $expected ); self::assertEquals( $expectedDoc->saveHtml(), $doc->saveHtml(), $name ); } public function provideAddReplyLink() : array { return self::getJson( '../cases/reply.json' ); } /** * @dataProvider provideUnwrapList * @covers ::unwrapList */ public function testUnwrapList( string $name, string $html, int $index, string $expected ) : void { $doc = self::createDocument( '' ); $container = $doc->createElement( 'div' ); DOMCompat::setInnerHTML( $container, $html ); CommentModifier::unwrapList( $container->childNodes[$index] ); self::assertEquals( $expected, DOMCompat::getInnerHTML( $container ) ); } public function provideUnwrapList() : array { return self::getJson( '../cases/unwrap.json' ); } /** * @dataProvider provideAutoSignWikitext * @covers ::autoSignWikitext */ public function testAutoSignWikitext( string $msg, string $wikitext, string $expected, ?string $prefix = null ) : void { if ( $prefix !== null ) { // TODO: Work out how to mock messages self::assertTrue( true ); return; } self::assertEquals( $expected, CommentModifier::autoSignWikitext( $wikitext ), $msg ); } public function provideAutoSignWikitext() : array { return self::getJson( '../cases/auto-sign-wikitext.json' ); } /** * @dataProvider provideSanitizeWikitextLinebreaks * @covers ::autoSignWikitext */ public function testSanitizeWikitextLinebreaks( string $msg, string $wikitext, string $expected ) : void { self::assertEquals( $expected, CommentModifier::sanitizeWikitextLinebreaks( $wikitext ), $msg ); } public function provideSanitizeWikitextLinebreaks() : array { return self::getJson( '../cases/sanitize-wikitext-linebreaks.json' ); } }