MediaWiki  1.33.0
ConfirmLinkAuthenticationRequestTest.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Auth;
4 
5 use InvalidArgumentException;
6 
12 
13  protected function getInstance( array $args = [] ) {
15  }
16 
21  public function testConstructorException() {
23  }
24 
29  private function getLinkRequests() {
30  $reqs = [];
31 
32  $mb = $this->getMockBuilder( AuthenticationRequest::class )
33  ->setMethods( [ 'getUniqueId' ] );
34  for ( $i = 1; $i <= 3; $i++ ) {
35  $req = $mb->getMockForAbstractClass();
36  $req->expects( $this->any() )->method( 'getUniqueId' )
37  ->will( $this->returnValue( "Request$i" ) );
38  $reqs[$req->getUniqueId()] = $req;
39  }
40 
41  return $reqs;
42  }
43 
44  public function provideLoadFromSubmission() {
45  $reqs = $this->getLinkRequests();
46 
47  return [
48  'Empty request' => [
49  [],
50  [],
51  [ 'linkRequests' => $reqs ],
52  ],
53  'Some confirmed' => [
54  [],
55  [ 'confirmedLinkIDs' => [ 'Request1', 'Request3' ] ],
56  [ 'confirmedLinkIDs' => [ 'Request1', 'Request3' ], 'linkRequests' => $reqs ],
57  ],
58  ];
59  }
60 
61  public function testGetUniqueId() {
63  $this->assertSame(
64  get_class( $req ) . ':Request1|Request2|Request3',
65  $req->getUniqueId()
66  );
67  }
68 }
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest\getLinkRequests
getLinkRequests()
Get requests for testing.
Definition: ConfirmLinkAuthenticationRequestTest.php:29
$req
this hook is for auditing only $req
Definition: hooks.txt:979
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:35
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest\testConstructorException
testConstructorException()
InvalidArgumentException $linkRequests must not be empty.
Definition: ConfirmLinkAuthenticationRequestTest.php:21
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest
AuthManager \MediaWiki\Auth\ConfirmLinkAuthenticationRequest.
Definition: ConfirmLinkAuthenticationRequestTest.php:11
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest\provideLoadFromSubmission
provideLoadFromSubmission()
Definition: ConfirmLinkAuthenticationRequestTest.php:44
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest\testGetUniqueId
testGetUniqueId()
Definition: ConfirmLinkAuthenticationRequestTest.php:61
any
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition: COPYING.txt:326
$args
if( $line===false) $args
Definition: cdb.php:64
MediaWiki\Auth\ConfirmLinkAuthenticationRequestTest\getInstance
getInstance(array $args=[])
Definition: ConfirmLinkAuthenticationRequestTest.php:13
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:52
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
MediaWiki\Auth\ConfirmLinkAuthenticationRequest
Definition: ConfirmLinkAuthenticationRequest.php:24