MediaWiki  1.23.0
ApiCreateAccountTest.php
Go to the documentation of this file.
1 <?php
2 
11  protected function setUp() {
12  parent::setUp();
14  $this->setMwGlobals( array( 'wgEnableEmail' => true ) );
15  }
16 
25  public function testValid() {
26  global $wgServer;
27 
28  if ( !isset( $wgServer ) ) {
29  $this->markTestIncomplete( 'This test needs $wgServer to be set in LocalSettings.php' );
30  }
31 
33 
34  $ret = $this->doApiRequest( array(
35  'action' => 'createaccount',
36  'name' => 'Apitestnew',
37  'password' => $password,
38  'email' => 'test@domain.test',
39  'realname' => 'Test Name'
40  ) );
41 
42  $result = $ret[0];
43  $this->assertNotInternalType( 'bool', $result );
44  $this->assertNotInternalType( 'null', $result['createaccount'] );
45 
46  // Should first ask for token.
47  $a = $result['createaccount'];
48  $this->assertEquals( 'NeedToken', $a['result'] );
49  $token = $a['token'];
50 
51  // Finally create the account
52  $ret = $this->doApiRequest(
53  array(
54  'action' => 'createaccount',
55  'name' => 'Apitestnew',
56  'password' => $password,
57  'token' => $token,
58  'email' => 'test@domain.test',
59  'realname' => 'Test Name'
60  ),
61  $ret[2]
62  );
63 
64  $result = $ret[0];
65  $this->assertNotInternalType( 'bool', $result );
66  $this->assertEquals( 'Success', $result['createaccount']['result'] );
67 
68  // Try logging in with the new user.
69  $ret = $this->doApiRequest( array(
70  'action' => 'login',
71  'lgname' => 'Apitestnew',
72  'lgpassword' => $password,
73  ) );
74 
75  $result = $ret[0];
76  $this->assertNotInternalType( 'bool', $result );
77  $this->assertNotInternalType( 'null', $result['login'] );
78 
79  $a = $result['login']['result'];
80  $this->assertEquals( 'NeedToken', $a );
81  $token = $result['login']['token'];
82 
83  $ret = $this->doApiRequest(
84  array(
85  'action' => 'login',
86  'lgtoken' => $token,
87  'lgname' => 'Apitestnew',
88  'lgpassword' => $password,
89  ),
90  $ret[2]
91  );
92 
93  $result = $ret[0];
94 
95  $this->assertNotInternalType( 'bool', $result );
96  $a = $result['login']['result'];
97 
98  $this->assertEquals( 'Success', $a );
99 
100  // log out to destroy the session
101  $ret = $this->doApiRequest(
102  array(
103  'action' => 'logout',
104  ),
105  $ret[2]
106  );
107  $this->assertEquals( array(), $ret[0] );
108  }
109 
114  public function testNoName() {
115  $this->doApiRequest( array(
116  'action' => 'createaccount',
118  'password' => 'password',
119  ) );
120  }
121 
126  public function testNoPassword() {
127  $this->doApiRequest( array(
128  'action' => 'createaccount',
129  'name' => 'testName',
131  ) );
132  }
133 
138  public function testExistingUser() {
139  $this->doApiRequest( array(
140  'action' => 'createaccount',
141  'name' => 'Apitestsysop',
143  'password' => 'password',
144  'email' => 'test@domain.test',
145  ) );
146  }
147 
152  public function testInvalidEmail() {
153  $this->doApiRequest( array(
154  'action' => 'createaccount',
155  'name' => 'Test User',
157  'password' => 'password',
158  'email' => 'invalid',
159  ) );
160  }
161 }
ApiCreateAccountTest\testValid
testValid()
Test the account creation API with a valid request.
Definition: ApiCreateAccountTest.php:25
$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
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
ApiCreateAccountTest\testNoName
testNoName()
Make sure requests with no names are invalid.
Definition: ApiCreateAccountTest.php:114
ApiCreateAccountTest
@group Database @group API @group medium
Definition: ApiCreateAccountTest.php:10
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:1530
ApiCreateAccountTest\testNoPassword
testNoPassword()
Make sure requests with no password are invalid.
Definition: ApiCreateAccountTest.php:126
LoginForm\getCreateaccountToken
static getCreateaccountToken()
Get the createaccount token from the current session.
Definition: SpecialUserlogin.php:1406
ApiCreateAccountTest\testInvalidEmail
testInvalidEmail()
Make sure requests with invalid emails are invalid.
Definition: ApiCreateAccountTest.php:152
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:302
User\randomPassword
static randomPassword()
Return a random password.
Definition: User.php:950
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
LoginForm\setCreateaccountToken
static setCreateaccountToken()
Randomly generate a new createaccount token and attach it to the current session.
Definition: SpecialUserlogin.php:1415
ApiTestCase
Definition: ApiTestCase.php:3
ApiCreateAccountTest\setUp
setUp()
Definition: ApiCreateAccountTest.php:11
$password
return false to override stock group addition can be modified try getUserPermissionsErrors userCan checks are continued by internal code can override on output return false to not delete it return false to override the default password checks this Boolean value will be checked to determine if the password was valid return false to implement your own hashing method & $password
Definition: hooks.txt:2697
ApiTestCase\doApiRequest
doApiRequest(array $params, array $session=null, $appendModule=false, User $user=null)
Does the API request and returns the result.
Definition: ApiTestCase.php:74
ApiCreateAccountTest\testExistingUser
testExistingUser()
Make sure requests with existing users are invalid.
Definition: ApiCreateAccountTest.php:138