MediaWiki  REL1_31
ButtonAuthenticationRequestTest.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Auth;
4 
10 
11  protected function getInstance( array $args = [] ) {
12  $data = array_intersect_key( $args, [ 'name' => 1, 'label' => 1, 'help' => 1 ] );
14  }
15 
16  public static function provideGetFieldInfo() {
17  return [
18  [ [ 'name' => 'foo', 'label' => 'bar', 'help' => 'baz' ] ]
19  ];
20  }
21 
22  public function provideLoadFromSubmission() {
23  return [
24  'Empty request' => [
25  [ 'name' => 'foo', 'label' => 'bar', 'help' => 'baz' ],
26  [],
27  false
28  ],
29  'Button present' => [
30  [ 'name' => 'foo', 'label' => 'bar', 'help' => 'baz' ],
31  [ 'foo' => 'Foobar' ],
32  [ 'name' => 'foo', 'label' => 'bar', 'help' => 'baz', 'foo' => true ]
33  ],
34  ];
35  }
36 
37  public function testGetUniqueId() {
38  $req = new ButtonAuthenticationRequest( 'foo', wfMessage( 'bar' ), wfMessage( 'baz' ) );
39  $this->assertSame(
40  'MediaWiki\\Auth\\ButtonAuthenticationRequest:foo', $req->getUniqueId()
41  );
42  }
43 
44  public function testGetRequestByName() {
45  $reqs = [];
46  $reqs['testOne'] = new ButtonAuthenticationRequest(
47  'foo', wfMessage( 'msg' ), wfMessage( 'help' )
48  );
49  $reqs[] = new ButtonAuthenticationRequest( 'bar', wfMessage( 'msg1' ), wfMessage( 'help1' ) );
50  $reqs[] = new ButtonAuthenticationRequest( 'bar', wfMessage( 'msg2' ), wfMessage( 'help2' ) );
51  $reqs['testSub'] = $this->getMockBuilder( ButtonAuthenticationRequest::class )
52  ->setConstructorArgs( [ 'subclass', wfMessage( 'msg3' ), wfMessage( 'help3' ) ] )
53  ->getMock();
54 
55  $this->assertNull( ButtonAuthenticationRequest::getRequestByName( $reqs, 'missing' ) );
56  $this->assertSame(
57  $reqs['testOne'], ButtonAuthenticationRequest::getRequestByName( $reqs, 'foo' )
58  );
59  $this->assertNull( ButtonAuthenticationRequest::getRequestByName( $reqs, 'bar' ) );
60  $this->assertSame(
61  $reqs['testSub'], ButtonAuthenticationRequest::getRequestByName( $reqs, 'subclass' )
62  );
63  }
64 }
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
array
the array() calling protocol came about after MediaWiki 1.4rc1.
MediaWiki\Auth\ButtonAuthenticationRequestTest\testGetRequestByName
testGetRequestByName()
Definition: ButtonAuthenticationRequestTest.php:44
MediaWiki\Auth\ButtonAuthenticationRequestTest\getInstance
getInstance(array $args=[])
Definition: ButtonAuthenticationRequestTest.php:11
MediaWiki\Auth\ButtonAuthenticationRequestTest
AuthManager MediaWiki\Auth\ButtonAuthenticationRequest.
Definition: ButtonAuthenticationRequestTest.php:9
true
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:2006
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:37
MediaWiki\Auth\ButtonAuthenticationRequest\getRequestByName
static getRequestByName(array $reqs, $name)
Fetch a ButtonAuthenticationRequest or subclass by name.
Definition: ButtonAuthenticationRequest.php:75
MediaWiki\Auth\ButtonAuthenticationRequest\__set_state
static __set_state( $data)
Definition: ButtonAuthenticationRequest.php:87
$req
this hook is for auditing only $req
Definition: hooks.txt:990
$args
if( $line===false) $args
Definition: cdb.php:64
MediaWiki\Auth\ButtonAuthenticationRequestTest\testGetUniqueId
testGetUniqueId()
Definition: ButtonAuthenticationRequestTest.php:37
MediaWiki\Auth\ButtonAuthenticationRequest
This is an authentication request that just implements a simple button.
Definition: ButtonAuthenticationRequest.php:31
MediaWiki\Auth\AuthenticationRequestTestCase
AuthManager.
Definition: AuthenticationRequestTestCase.php:8
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:56
MediaWiki\Auth\ButtonAuthenticationRequestTest\provideGetFieldInfo
static provideGetFieldInfo()
Definition: ButtonAuthenticationRequestTest.php:16
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
MediaWiki\Auth\ButtonAuthenticationRequestTest\provideLoadFromSubmission
provideLoadFromSubmission()
Definition: ButtonAuthenticationRequestTest.php:22
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187