MediaWiki REL1_31
ArticleTablesTest.php
Go to the documentation of this file.
1<?php
2
16 $title = Title::newFromText( 'T16404' );
17 $page = WikiPage::factory( $title );
18 $user = new User();
19 $user->mRights = [ 'createpage', 'edit', 'purge' ];
20 $this->setContentLang( 'es' );
21 $this->setUserLang( 'fr' );
22
23 $page->doEditContent(
24 new WikitextContent( '{{:{{int:history}}}}' ),
25 'Test code for T16404',
26 0,
27 false,
28 $user
29 );
30 $templates1 = $title->getTemplateLinksFrom();
31
32 $this->setUserLang( 'de' );
33 $page = WikiPage::factory( $title ); // In order to force the re-rendering of the same wikitext
34
35 // We need an edit, a purge is not enough to regenerate the tables
36 $page->doEditContent(
37 new WikitextContent( '{{:{{int:history}}}}' ),
38 'Test code for T16404',
40 false,
41 $user
42 );
43 $templates2 = $title->getTemplateLinksFrom();
44
49 $this->assertEquals( $templates1, $templates2 );
50 $this->assertEquals( $templates1[0]->getFullText(), 'Historial' );
51 }
52}
testTemplatelinksUsesContentLanguage()
Make sure that T16404 doesn't strike again.
Base class that store and restore the Language objects.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
Content object for wiki text pages.
const EDIT_UPDATE
Definition Defines.php:163