MediaWiki  1.23.6
UserTest.php
Go to the documentation of this file.
1 <?php
2 
3 define( 'NS_UNITTEST', 5600 );
4 define( 'NS_UNITTEST_TALK', 5601 );
5 
9 class UserTest extends MediaWikiTestCase {
13  protected $user;
14 
15  protected function setUp() {
16  parent::setUp();
17 
18  $this->setMwGlobals( array(
19  'wgGroupPermissions' => array(),
20  'wgRevokePermissions' => array(),
21  ) );
22 
23  $this->setUpPermissionGlobals();
24 
25  $this->user = new User;
26  $this->user->addGroup( 'unittesters' );
27  }
28 
29  private function setUpPermissionGlobals() {
30  global $wgGroupPermissions, $wgRevokePermissions;
31 
32  # Data for regular $wgGroupPermissions test
33  $wgGroupPermissions['unittesters'] = array(
34  'test' => true,
35  'runtest' => true,
36  'writetest' => false,
37  'nukeworld' => false,
38  );
39  $wgGroupPermissions['testwriters'] = array(
40  'test' => true,
41  'writetest' => true,
42  'modifytest' => true,
43  );
44 
45  # Data for regular $wgRevokePermissions test
46  $wgRevokePermissions['formertesters'] = array(
47  'runtest' => true,
48  );
49 
50  # For the options test
51  $wgGroupPermissions['*'] = array(
52  'editmyoptions' => true,
53  );
54  }
55 
59  public function testGroupPermissions() {
60  $rights = User::getGroupPermissions( array( 'unittesters' ) );
61  $this->assertContains( 'runtest', $rights );
62  $this->assertNotContains( 'writetest', $rights );
63  $this->assertNotContains( 'modifytest', $rights );
64  $this->assertNotContains( 'nukeworld', $rights );
65 
66  $rights = User::getGroupPermissions( array( 'unittesters', 'testwriters' ) );
67  $this->assertContains( 'runtest', $rights );
68  $this->assertContains( 'writetest', $rights );
69  $this->assertContains( 'modifytest', $rights );
70  $this->assertNotContains( 'nukeworld', $rights );
71  }
72 
76  public function testRevokePermissions() {
77  $rights = User::getGroupPermissions( array( 'unittesters', 'formertesters' ) );
78  $this->assertNotContains( 'runtest', $rights );
79  $this->assertNotContains( 'writetest', $rights );
80  $this->assertNotContains( 'modifytest', $rights );
81  $this->assertNotContains( 'nukeworld', $rights );
82  }
83 
87  public function testUserPermissions() {
88  $rights = $this->user->getRights();
89  $this->assertContains( 'runtest', $rights );
90  $this->assertNotContains( 'writetest', $rights );
91  $this->assertNotContains( 'modifytest', $rights );
92  $this->assertNotContains( 'nukeworld', $rights );
93  }
94 
99  public function testGetGroupsWithPermission( $expected, $right ) {
101  sort( $result );
102  sort( $expected );
103 
104  $this->assertEquals( $expected, $result, "Groups with permission $right" );
105  }
106 
107  public static function provideGetGroupsWithPermission() {
108  return array(
109  array(
110  array( 'unittesters', 'testwriters' ),
111  'test'
112  ),
113  array(
114  array( 'unittesters' ),
115  'runtest'
116  ),
117  array(
118  array( 'testwriters' ),
119  'writetest'
120  ),
121  array(
122  array( 'testwriters' ),
123  'modifytest'
124  ),
125  );
126  }
127 
132  public function testIsValidUserName( $username, $result, $message ) {
133  $this->assertEquals( $this->user->isValidUserName( $username ), $result, $message );
134  }
135 
136  public static function provideUserNames() {
137  return array(
138  array( '', false, 'Empty string' ),
139  array( ' ', false, 'Blank space' ),
140  array( 'abcd', false, 'Starts with small letter' ),
141  array( 'Ab/cd', false, 'Contains slash' ),
142  array( 'Ab cd', true, 'Whitespace' ),
143  array( '192.168.1.1', false, 'IP' ),
144  array( 'User:Abcd', false, 'Reserved Namespace' ),
145  array( '12abcd232', true, 'Starts with Numbers' ),
146  array( '?abcd', true, 'Start with ? mark' ),
147  array( '#abcd', false, 'Start with #' ),
148  array( 'Abcdകഖഗഘ', true, ' Mixed scripts' ),
149  array( 'ജോസ്‌തോമസ്', false, 'ZWNJ- Format control character' ),
150  array( 'Ab cd', false, ' Ideographic space' ),
151  );
152  }
153 
159  public function testAllRightsWithMessage() {
160  //Getting all user rights, for core: User::$mCoreRights, for extensions: $wgAvailableRights
161  $allRights = User::getAllRights();
162  $allMessageKeys = Language::getMessageKeysFor( 'en' );
163 
164  $rightsWithMessage = array();
165  foreach ( $allMessageKeys as $message ) {
166  // === 0: must be at beginning of string (position 0)
167  if ( strpos( $message, 'right-' ) === 0 ) {
168  $rightsWithMessage[] = substr( $message, strlen( 'right-' ) );
169  }
170  }
171 
172  sort( $allRights );
173  sort( $rightsWithMessage );
174 
175  $this->assertEquals(
176  $allRights,
177  $rightsWithMessage,
178  'Each user rights (core/extensions) has a corresponding right- message.'
179  );
180  }
181 
187  public function testEditCount() {
188  $user = User::newFromName( 'UnitTestUser' );
189  $user->loadDefaults();
190  $user->addToDatabase();
191 
192  // let the user have a few (3) edits
193  $page = WikiPage::factory( Title::newFromText( 'Help:UserTest_EditCount' ) );
194  for ( $i = 0; $i < 3; $i++ ) {
195  $page->doEdit( (string)$i, 'test', 0, false, $user );
196  }
197 
199  $this->assertEquals( 3, $user->getEditCount(), 'After three edits, the user edit count should be 3' );
200 
201  // increase the edit count and clear the cache
202  $user->incEditCount();
203 
205  $this->assertEquals( 4, $user->getEditCount(), 'After increasing the edit count manually, the user edit count should be 4' );
206  }
207 
213  public function testOptions() {
214  $user = User::newFromName( 'UnitTestUser' );
215  $user->addToDatabase();
216 
217  $user->setOption( 'someoption', 'test' );
218  $user->setOption( 'cols', 200 );
219  $user->saveSettings();
220 
221  $user = User::newFromName( 'UnitTestUser' );
222  $this->assertEquals( 'test', $user->getOption( 'someoption' ) );
223  $this->assertEquals( 200, $user->getOption( 'cols' ) );
224  }
225 
231  public function testAnonOptions() {
232  global $wgDefaultUserOptions;
233  $this->user->setOption( 'someoption', 'test' );
234  $this->assertEquals( $wgDefaultUserOptions['cols'], $this->user->getOption( 'cols' ) );
235  $this->assertEquals( 'test', $this->user->getOption( 'someoption' ) );
236  }
237 
242  public function testPasswordExpire() {
243  global $wgPasswordExpireGrace;
244  $wgTemp = $wgPasswordExpireGrace;
245  $wgPasswordExpireGrace = 3600 * 24 * 7; // 7 days
246 
247  $user = User::newFromName( 'UnitTestUser' );
248  $user->loadDefaults();
249  $this->assertEquals( false, $user->getPasswordExpired() );
250 
251  $ts = time() - ( 3600 * 24 * 1 ); // 1 day ago
252  $user->expirePassword( $ts );
253  $this->assertEquals( 'soft', $user->getPasswordExpired() );
254 
255  $ts = time() - ( 3600 * 24 * 10 ); // 10 days ago
256  $user->expirePassword( $ts );
257  $this->assertEquals( 'hard', $user->getPasswordExpired() );
258 
259  $wgPasswordExpireGrace = $wgTemp;
260  }
261 
271  public function testCheckPasswordValidity() {
272  $this->setMwGlobals( 'wgMinimalPasswordLength', 6 );
273  $user = User::newFromName( 'Useruser' );
274  // Sanity
275  $this->assertTrue( $user->isValidPassword( 'Password1234' ) );
276 
277  // Minimum length
278  $this->assertFalse( $user->isValidPassword( 'a' ) );
279  $this->assertFalse( $user->checkPasswordValidity( 'a' )->isGood() );
280  $this->assertEquals( 'passwordtooshort', $user->getPasswordValidity( 'a' ) );
281 
282  // Matches username
283  $this->assertFalse( $user->checkPasswordValidity( 'Useruser' )->isGood() );
284  $this->assertEquals( 'password-name-match', $user->getPasswordValidity( 'Useruser' ) );
285 
286  // On the forbidden list
287  $this->assertFalse( $user->checkPasswordValidity( 'Passpass' )->isGood() );
288  $this->assertEquals( 'password-login-forbidden', $user->getPasswordValidity( 'Passpass' ) );
289  }
290 }
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1528
UserTest\provideGetGroupsWithPermission
static provideGetGroupsWithPermission()
Definition: UserTest.php:106
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:189
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
User\isValidPassword
isValidPassword( $password)
Is the input a valid password for this user?
Definition: User.php:690
User\getEditCount
getEditCount()
Get the user's edit count.
Definition: User.php:2884
User\incEditCount
incEditCount()
Increment the user's edit-count field.
Definition: User.php:4428
User\loadDefaults
loadDefaults( $name=false)
Set cached properties to default.
Definition: User.php:970
$right
return false if a UserGetRights hook might remove the named right $right
Definition: hooks.txt:2798
UserTest\testAllRightsWithMessage
testAllRightsWithMessage()
Test, if for all rights a right- message exist, which is used on Special:ListGroupRights as help text...
Definition: UserTest.php:158
UserTest\$user
User $user
Definition: UserTest.php:12
UserTest\testOptions
testOptions()
Test changing user options.
Definition: UserTest.php:212
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:388
UserTest\testGroupPermissions
testGroupPermissions()
@covers User::getGroupPermissions
Definition: UserTest.php:58
User\addToDatabase
addToDatabase()
Add this existing user object to the database.
Definition: User.php:3521
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:103
User\checkPasswordValidity
checkPasswordValidity( $password)
Check if this is a valid password for this user.
Definition: User.php:729
UserTest\testAnonOptions
testAnonOptions()
Bug 37963 Make sure defaults are loaded when setOption is called.
Definition: UserTest.php:230
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:302
MediaWikiTestCase
Definition: MediaWikiTestCase.php:6
UserTest\testCheckPasswordValidity
testCheckPasswordValidity()
Test password validity checks.
Definition: UserTest.php:270
UserTest\setUpPermissionGlobals
setUpPermissionGlobals()
Definition: UserTest.php:28
UserTest
@group Database
Definition: UserTest.php:9
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
UserTest\testEditCount
testEditCount()
Test User::editCount @group medium @covers User::getEditCount.
Definition: UserTest.php:186
User\clearInstanceCache
clearInstanceCache( $reloadFrom=false)
Clear various cached data stored in this object.
Definition: User.php:1325
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
UserTest\testUserPermissions
testUserPermissions()
@covers User::getRights
Definition: UserTest.php:86
User\saveSettings
saveSettings()
Save this user's settings into the database.
Definition: User.php:3381
User\expirePassword
expirePassword( $ts=0)
Expire a user's password.
Definition: User.php:776
user
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Definition: distributors.txt:9
User\getOption
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
Definition: User.php:2425
User\getGroupPermissions
static getGroupPermissions( $groups)
Get the permissions associated with a given list of groups.
Definition: User.php:4096
UserTest\setUp
setUp()
Definition: UserTest.php:14
User\getAllRights
static getAllRights()
Get a list of all available permissions.
Definition: User.php:4233
UserTest\testGetGroupsWithPermission
testGetGroupsWithPermission( $expected, $right)
@dataProvider provideGetGroupsWithPermission @covers User::getGroupsWithPermission
Definition: UserTest.php:98
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:9
Language\getMessageKeysFor
static getMessageKeysFor( $code)
Get all message keys for a given language.
Definition: Language.php:4221
User\getPasswordExpired
getPasswordExpired()
Check if the user's password is expired.
Definition: User.php:814
User
User
Definition: All_system_messages.txt:425
UserTest\testPasswordExpire
testPasswordExpire()
Test password expiration.
Definition: UserTest.php:241
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:59
User\setOption
setOption( $oname, $val)
Set the given option for a user.
Definition: User.php:2503
UserTest\provideUserNames
static provideUserNames()
Definition: UserTest.php:135
User\getPasswordValidity
getPasswordValidity( $password)
Given unvalidated password input, return error message on failure.
Definition: User.php:702
UserTest\testRevokePermissions
testRevokePermissions()
@covers User::getGroupPermissions
Definition: UserTest.php:75
User\getGroupsWithPermission
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
Definition: User.php:4123
UserTest\testIsValidUserName
testIsValidUserName( $username, $result, $message)
@dataProvider provideUserNames @covers User::isValidUserName
Definition: UserTest.php:131