MediaWiki  1.27.2
RememberMeAuthenticationRequestTest.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Auth;
4 
10 
11  public static function provideGetFieldInfo() {
12  return [
13  [ [ 1 ] ],
14  [ [ null ] ],
15  ];
16  }
17 
18  public function testGetFieldInfo_2() {
21 
22  $reqWrapper->expiration = 30 * 24 * 3600;
23  $this->assertNotEmpty( $req->getFieldInfo() );
24 
25  $reqWrapper->expiration = null;
26  $this->assertEmpty( $req->getFieldInfo() );
27  }
28 
29  protected function getInstance( array $args = [] ) {
32  $reqWrapper->expiration = $args[0];
33  return $req;
34  }
35 
36  public function provideLoadFromSubmission() {
37  return [
38  'Empty request' => [
39  [ 30 * 24 * 3600 ],
40  [],
41  [ 'expiration' => 30 * 24 * 3600, 'rememberMe' => false ]
42  ],
43  'RememberMe present' => [
44  [ 30 * 24 * 3600 ],
45  [ 'rememberMe' => '' ],
46  [ 'expiration' => 30 * 24 * 3600, 'rememberMe' => true ]
47  ],
48  'RememberMe present but session provider cannot remember' => [
49  [ null ],
50  [ 'rememberMe' => '' ],
51  false
52  ],
53  ];
54  }
55 }
the array() calling protocol came about after MediaWiki 1.4rc1.
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
if($line===false) $args
Definition: cdb.php:64
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 just before the function returns a value If you return true
Definition: hooks.txt:1798
This is an authentication request added by AuthManager to show a "remember me" checkbox.
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
this hook is for auditing only $req
Definition: hooks.txt:965
AuthManager MediaWiki\Auth\RememberMeAuthenticationRequest.
static newFromObject($object)
Return the same object, without access restrictions.