Go to the documentation of this file.
3 define(
'NS_UNITTEST', 5600 );
4 define(
'NS_UNITTEST_TALK', 5601 );
15 protected function setUp() {
19 'wgGroupPermissions' =>
array(),
20 'wgRevokePermissions' =>
array(),
26 $this->
user->addGroup(
'unittesters' );
30 global $wgGroupPermissions, $wgRevokePermissions;
32 # Data for regular $wgGroupPermissions test
33 $wgGroupPermissions[
'unittesters'] =
array(
39 $wgGroupPermissions[
'testwriters'] =
array(
45 # Data for regular $wgRevokePermissions test
46 $wgRevokePermissions[
'formertesters'] =
array(
50 # For the options test
51 $wgGroupPermissions[
'*'] =
array(
52 'editmyoptions' =>
true,
61 $this->assertContains(
'runtest', $rights );
62 $this->assertNotContains(
'writetest', $rights );
63 $this->assertNotContains(
'modifytest', $rights );
64 $this->assertNotContains(
'nukeworld', $rights );
67 $this->assertContains(
'runtest', $rights );
68 $this->assertContains(
'writetest', $rights );
69 $this->assertContains(
'modifytest', $rights );
70 $this->assertNotContains(
'nukeworld', $rights );
78 $this->assertNotContains(
'runtest', $rights );
79 $this->assertNotContains(
'writetest', $rights );
80 $this->assertNotContains(
'modifytest', $rights );
81 $this->assertNotContains(
'nukeworld', $rights );
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 );
104 $this->assertEquals( $expected,
$result,
"Groups with permission $right" );
110 array(
'unittesters',
'testwriters' ),
114 array(
'unittesters' ),
118 array(
'testwriters' ),
122 array(
'testwriters' ),
133 $this->assertEquals( $this->
user->isValidUserName( $username ),
$result, $message );
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' ),
164 $rightsWithMessage =
array();
165 foreach ( $allMessageKeys
as $message ) {
167 if ( strpos( $message,
'right-' ) === 0 ) {
168 $rightsWithMessage[] = substr( $message, strlen(
'right-' ) );
173 sort( $rightsWithMessage );
178 'Each user rights (core/extensions) has a corresponding right- message.'
194 for ( $i = 0; $i < 3; $i++ ) {
195 $page->doEdit( (
string)$i,
'test', 0,
false,
$user );
199 $this->assertEquals( 3,
$user->
getEditCount(),
'After three edits, the user edit count should be 3' );
205 $this->assertEquals( 4,
$user->
getEditCount(),
'After increasing the edit count manually, the user edit count should be 4' );
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' ) );
243 global $wgPasswordExpireGrace;
244 $wgTemp = $wgPasswordExpireGrace;
245 $wgPasswordExpireGrace = 3600 * 24 * 7;
251 $ts = time() - ( 3600 * 24 * 1 );
255 $ts = time() - ( 3600 * 24 * 10 );
259 $wgPasswordExpireGrace = $wgTemp;
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
static provideGetGroupsWithPermission()
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
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
isValidPassword( $password)
Is the input a valid password for this user?
getEditCount()
Get the user's edit count.
incEditCount()
Increment the user's edit-count field.
loadDefaults( $name=false)
Set cached properties to default.
return false if a UserGetRights hook might remove the named right $right
testAllRightsWithMessage()
Test, if for all rights a right- message exist, which is used on Special:ListGroupRights as help text...
testOptions()
Test changing user options.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
testGroupPermissions()
@covers User::getGroupPermissions
addToDatabase()
Add this existing user object to the database.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
checkPasswordValidity( $password)
Check if this is a valid password for this user.
testAnonOptions()
Bug 37963 Make sure defaults are loaded when setOption is called.
testCheckPasswordValidity()
Test password validity checks.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
testEditCount()
Test User::editCount @group medium @covers User::getEditCount.
clearInstanceCache( $reloadFrom=false)
Clear various cached data stored in this object.
when a variable name is used in a it is silently declared as a new masking the global
testUserPermissions()
@covers User::getRights
saveSettings()
Save this user's settings into the database.
expirePassword( $ts=0)
Expire a user's password.
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
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
static getGroupPermissions( $groups)
Get the permissions associated with a given list of groups.
static getAllRights()
Get a list of all available permissions.
testGetGroupsWithPermission( $expected, $right)
@dataProvider provideGetGroupsWithPermission @covers User::getGroupsWithPermission
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
static getMessageKeysFor( $code)
Get all message keys for a given language.
getPasswordExpired()
Check if the user's password is expired.
testPasswordExpire()
Test password expiration.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
setOption( $oname, $val)
Set the given option for a user.
static provideUserNames()
getPasswordValidity( $password)
Given unvalidated password input, return error message on failure.
testRevokePermissions()
@covers User::getGroupPermissions
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
testIsValidUserName( $username, $result, $message)
@dataProvider provideUserNames @covers User::isValidUserName