11 $user = \User::newFromName(
'UTSysop' );
13 $provider = $this->getMockForAbstractClass( AbstractPrimaryAuthenticationProvider::class );
16 $provider->continuePrimaryAuthentication( [] );
17 $this->fail(
'Expected exception not thrown' );
18 }
catch ( \BadMethodCallException $ex ) {
22 $provider->continuePrimaryAccountCreation(
$user,
$user, [] );
23 $this->fail(
'Expected exception not thrown' );
24 }
catch ( \BadMethodCallException $ex ) {
27 $req = $this->getMockForAbstractClass( AuthenticationRequest::class );
29 $this->assertTrue( $provider->providerAllowsPropertyChange(
'foo' ) );
31 \StatusValue::newGood(),
32 $provider->testForAccountCreation(
$user,
$user, [] )
35 \StatusValue::newGood(),
39 \StatusValue::newGood(),
40 $provider->testUserForCreation(
$user,
false )
49 $provider->postAuthentication(
$user,
$res );
51 $provider->postAccountLink(
$user,
$res );
53 $provider->expects( $this->once() )
54 ->method(
'testUserExists' )
55 ->with( $this->equalTo(
'foo' ) )
56 ->will( $this->returnValue(
true ) );
57 $this->assertTrue( $provider->testUserCanAuthenticate(
'foo' ) );
62 for ( $i = 0; $i < 3; $i++ ) {
63 $reqs[$i] = $this->createMock( AuthenticationRequest::class );
64 $reqs[$i]->done =
false;
67 $provider = $this->getMockForAbstractClass( AbstractPrimaryAuthenticationProvider::class );
68 $provider->expects( $this->once() )->method(
'getAuthenticationRequests' )
71 $this->identicalTo( [
'username' =>
'UTSysop' ] )
73 ->will( $this->returnValue( $reqs ) );
74 $provider->expects( $this->exactly( 3 ) )->method(
'providerChangeAuthenticationData' )
75 ->will( $this->returnCallback(
function (
$req ) {
76 $this->assertSame(
'UTSysop',
$req->username );
77 $this->assertFalse(
$req->done );
81 $provider->providerRevokeAccessForUser(
'UTSysop' );
83 foreach ( $reqs
as $i =>
$req ) {
84 $this->assertTrue(
$req->done,
"#$i" );
94 $provider = $this->getMockForAbstractClass( AbstractPrimaryAuthenticationProvider::class );
95 $provider->expects( $this->any() )->method(
'accountCreationType' )
96 ->will( $this->returnValue(
$type ) );
98 $class = AbstractPrimaryAuthenticationProvider::class;
99 $msg1 =
"{$class}::beginPrimaryAccountLink $msg";
100 $msg2 =
"{$class}::continuePrimaryAccountLink is not implemented.";
102 $user = \User::newFromName(
'Whatever' );
105 $provider->beginPrimaryAccountLink(
$user, [] );
106 $this->fail(
'Expected exception not thrown' );
107 }
catch ( \BadMethodCallException $ex ) {
108 $this->assertSame( $msg1, $ex->getMessage() );
111 $provider->continuePrimaryAccountLink(
$user, [] );
112 $this->fail(
'Expected exception not thrown' );
113 }
catch ( \BadMethodCallException $ex ) {
114 $this->assertSame( $msg2, $ex->getMessage() );
122 'should not be called on a non-link provider.',
126 'should not be called on a non-link provider.',
130 'is not implemented.',
141 'InterwikiLoadPrefix' => [
142 function ( $prefix, &$iwdata ) {
143 if ( $prefix ===
'interwiki' ) {
145 'iw_url' =>
'http://example.com/',
155 $provider = $this->getMockForAbstractClass( AbstractPrimaryAuthenticationProvider::class );
156 $this->assertSame( $expect, $provider->providerNormalizeUsername(
$name ) );
161 'Leading space' => [
' Leading space',
'Leading space' ],
162 'Trailing space ' => [
'Trailing space ',
'Trailing space' ],
163 'Namespace prefix' => [
'Talk:Username',
null ],
164 'Interwiki prefix' => [
'interwiki:Username',
null ],
165 'With hash' => [
'name with # hash',
null ],
166 'Multi spaces' => [
'Multi spaces',
'Multi spaces' ],
167 'Lowercase' => [
'lowercase',
'Lowercase' ],
168 'Invalid character' => [
'in[]valid',
null ],
169 'With slash' => [
'with / slash',
null ],
170 'Underscores' => [
'___under__scores___',
'Under scores' ],
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
this hook is for auditing only $req
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Allows to change the fields on the form that will be generated $name
return true to allow those checks to and false if checking is done & $user
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