6 class ArticleTablesTest
extends MediaWikiLangTestCase
{
8 * Make sure that T16404 doesn't strike again. We don't want
9 * templatelinks based on the user language when {{int:}} is used, only the
12 * @covers Title::getTemplateLinksFrom
13 * @covers Title::getLinksFrom
15 public function testTemplatelinksUsesContentLanguage() {
16 $title = Title
::newFromText( 'T16404' );
17 $page = WikiPage
::factory( $title );
19 $user->mRights
= [ 'createpage', 'edit', 'purge' ];
20 $this->setContentLang( 'es' );
21 $this->setUserLang( 'fr' );
24 new WikitextContent( '{{:{{int:history}}}}' ),
25 'Test code for T16404',
30 $templates1 = $title->getTemplateLinksFrom();
32 $this->setUserLang( 'de' );
33 $page = WikiPage
::factory( $title ); // In order to force the re-rendering of the same wikitext
35 // We need an edit, a purge is not enough to regenerate the tables
37 new WikitextContent( '{{:{{int:history}}}}' ),
38 'Test code for T16404',
43 $templates2 = $title->getTemplateLinksFrom();
46 * @var Title[] $templates1
47 * @var Title[] $templates2
49 $this->assertEquals( $templates1, $templates2 );
50 $this->assertEquals( $templates1[0]->getFullText(), 'Historial' );