MediaWiki REL1_33
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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:48
Content object for wiki text pages.
const EDIT_UPDATE
Definition Defines.php:162