MediaWiki  REL1_31
SpecialMyLanguageTest.php
Go to the documentation of this file.
1 <?php
2 
8  public function addDBDataOnce() {
9  $titles = [
10  'Page/Another',
11  'Page/Another/ar',
12  'Page/Another/en',
13  'Page/Another/ru',
14  'Page/Another/zh-hans',
15  ];
16  foreach ( $titles as $title ) {
18  if ( $page->getId() == 0 ) {
19  $page->doEditContent(
20  new WikitextContent( 'UTContent' ),
21  'UTPageSummary',
22  EDIT_NEW,
23  false,
24  User::newFromName( 'UTSysop' ) );
25  }
26  }
27  }
28 
37  public function testFindTitle( $expected, $subpage, $langCode, $userLang ) {
38  $this->setMwGlobals( 'wgLanguageCode', $langCode );
40  $special->getContext()->setLanguage( $userLang );
41  // Test with subpages both enabled and disabled
42  $this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => true ] );
43  $this->assertTitle( $expected, $special->findTitle( $subpage ) );
44  $this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => false ] );
45  $this->assertTitle( $expected, $special->findTitle( $subpage ) );
46  }
47 
52  private function assertTitle( $expected, $title ) {
53  if ( $title ) {
54  $title = $title->getPrefixedText();
55  }
56  $this->assertEquals( $expected, $title );
57  }
58 
59  public static function provideFindTitle() {
60  // See addDBDataOnce() for page declarations
61  return [
62  // [ $expected, $subpage, $langCode, $userLang ]
63  [ null, '::Fail', 'en', 'en' ],
64  [ 'Page/Another', 'Page/Another/en', 'en', 'en' ],
65  [ 'Page/Another', 'Page/Another', 'en', 'en' ],
66  [ 'Page/Another/ru', 'Page/Another', 'en', 'ru' ],
67  [ 'Page/Another', 'Page/Another', 'en', 'es' ],
68  [ 'Page/Another/zh-hans', 'Page/Another', 'en', 'zh-hans' ],
69  [ 'Page/Another/zh-hans', 'Page/Another', 'en', 'zh-mo' ],
70  [ 'Page/Another/en', 'Page/Another', 'de', 'es' ],
71  [ 'Page/Another/ar', 'Page/Another', 'en', 'ar' ],
72  [ 'Page/Another/ar', 'Page/Another', 'en', 'arz' ],
73  [ 'Page/Another/ar', 'Page/Another/de', 'en', 'arz' ],
74  [ 'Page/Another/ru', 'Page/Another/ru', 'en', 'arz' ],
75  [ 'Page/Another/ar', 'Page/Another/ru', 'en', 'ar' ],
76  ];
77  }
78 }
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:273
MediaWikiTestCase\mergeMwGlobalArrayValue
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
Definition: MediaWikiTestCase.php:813
SpecialMyLanguageTest\addDBDataOnce
addDBDataOnce()
Stub.
Definition: SpecialMyLanguageTest.php:8
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:591
SpecialMyLanguageTest
Database SpecialMyLanguage.
Definition: SpecialMyLanguageTest.php:7
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
NS_MAIN
const NS_MAIN
Definition: Defines.php:74
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:115
$titles
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition: linkcache.txt:17
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:678
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
SpecialMyLanguageTest\provideFindTitle
static provideFindTitle()
Definition: SpecialMyLanguageTest.php:59
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
SpecialMyLanguageTest\assertTitle
assertTitle( $expected, $title)
Definition: SpecialMyLanguageTest.php:52
EDIT_NEW
const EDIT_NEW
Definition: Defines.php:162
SpecialMyLanguageTest\testFindTitle
testFindTitle( $expected, $subpage, $langCode, $userLang)
SpecialMyLanguage::findTitle provideFindTitle.
Definition: SpecialMyLanguageTest.php:37
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:22
$special
this hook is for auditing only RecentChangesLinked and Watchlist $special
Definition: hooks.txt:998
SpecialMyLanguage
Unlisted special page just to redirect the user to the translated version of a page,...
Definition: SpecialMyLanguage.php:35