MediaWiki  1.29.2
SpecialPageTest.php
Go to the documentation of this file.
1 <?php
2 
11 
12  protected function setUp() {
13  parent::setUp();
14 
15  $this->setMwGlobals( [
16  'wgScript' => '/index.php',
17  'wgContLang' => Language::factory( 'en' )
18  ] );
19  }
20 
24  public function testGetTitleFor( $expectedName, $name ) {
26  $expected = Title::makeTitle( NS_SPECIAL, $expectedName );
27  $this->assertEquals( $expected, $title );
28  }
29 
30  public function getTitleForProvider() {
31  return [
32  [ 'UserLogin', 'Userlogin' ]
33  ];
34  }
35 
39  public function testInvalidGetTitleFor() {
41  $expected = Title::makeTitle( NS_SPECIAL, 'Cat' );
42  $this->assertEquals( $expected, $title );
43  }
44 
49  public function testGetTitleForWithWarning( $expected, $name ) {
51  $this->assertEquals( $expected, $title );
52  }
53 
54  public function getTitleForWithWarningProvider() {
55  return [
56  [ Title::makeTitle( NS_SPECIAL, 'UserLogin' ), 'UserLogin' ]
57  ];
58  }
59 
63  public function testRequireLoginAnon( $expected, $reason, $title ) {
64  $specialPage = new SpecialPage( 'Watchlist', 'viewmywatchlist' );
65 
66  $user = User::newFromId( 0 );
67  $specialPage->getContext()->setUser( $user );
68  $specialPage->getContext()->setLanguage( Language::factory( 'en' ) );
69 
70  $this->setExpectedException( 'UserNotLoggedIn', $expected );
71 
72  // $specialPage->requireLogin( [ $reason [, $title ] ] )
73  call_user_func_array(
74  [ $specialPage, 'requireLogin' ],
75  array_filter( [ $reason, $title ] )
76  );
77  }
78 
79  public function requireLoginAnonProvider() {
80  $lang = 'en';
81 
82  $expected1 = wfMessage( 'exception-nologin-text' )->inLanguage( $lang )->text();
83  $expected2 = wfMessage( 'about' )->inLanguage( $lang )->text();
84 
85  return [
86  [ $expected1, null, null ],
87  [ $expected2, 'about', null ],
88  [ $expected2, 'about', 'about' ],
89  ];
90  }
91 
92  public function testRequireLoginNotAnon() {
93  $specialPage = new SpecialPage( 'Watchlist', 'viewmywatchlist' );
94 
95  $user = User::newFromName( "UTSysop" );
96  $specialPage->getContext()->setUser( $user );
97 
98  $specialPage->requireLogin();
99 
100  // no exception thrown, logged in use can access special page
101  $this->assertTrue( true );
102  }
103 
104 }
SpecialPageTest\getTitleForProvider
getTitleForProvider()
Definition: SpecialPageTest.php:30
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:579
SpecialPageTest\testInvalidGetTitleFor
testInvalidGetTitleFor()
PHPUnit_Framework_Error_Notice.
Definition: SpecialPageTest.php:39
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
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:35
NS_SPECIAL
const NS_SPECIAL
Definition: Defines.php:51
SpecialPageTest\requireLoginAnonProvider
requireLoginAnonProvider()
Definition: SpecialPageTest.php:79
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
SpecialPageTest\getTitleForWithWarningProvider
getTitleForWithWarningProvider()
Definition: SpecialPageTest.php:54
SpecialPageTest\testGetTitleFor
testGetTitleFor( $expectedName, $name)
getTitleForProvider
Definition: SpecialPageTest.php:24
SpecialPageTest\setUp
setUp()
Definition: SpecialPageTest.php:12
SpecialPageTest
SpecialPage.
Definition: SpecialPageTest.php:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
SpecialPageTest\testRequireLoginAnon
testRequireLoginAnon( $expected, $reason, $title)
requireLoginAnonProvider
Definition: SpecialPageTest.php:63
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
SpecialPageTest\testGetTitleForWithWarning
testGetTitleForWithWarning( $expected, $name)
PHPUnit_Framework_Error_Notice getTitleForWithWarningProvider.
Definition: SpecialPageTest.php:49
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
SpecialPageTest\testRequireLoginNotAnon
testRequireLoginNotAnon()
Definition: SpecialPageTest.php:92