3 namespace MediaWiki\Auth
;
7 * @covers MediaWiki\Auth\AbstractSecondaryAuthenticationProvider
9 class AbstractSecondaryAuthenticationProviderTest
extends \MediaWikiTestCase
{
10 public function testAbstractSecondaryAuthenticationProvider() {
11 $user = \User
::newFromName( 'UTSysop' );
13 $provider = $this->getMockForAbstractClass( AbstractSecondaryAuthenticationProvider
::class );
16 $provider->continueSecondaryAuthentication( $user, [] );
17 $this->fail( 'Expected exception not thrown' );
18 } catch ( \BadMethodCallException
$ex ) {
22 $provider->continueSecondaryAccountCreation( $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( 'ignored' ),
32 $provider->providerAllowsAuthenticationDataChange( $req )
35 \StatusValue
::newGood(),
36 $provider->testForAccountCreation( $user, $user, [] )
39 \StatusValue
::newGood(),
40 $provider->testUserForCreation( $user, AuthManager
::AUTOCREATE_SOURCE_SESSION
)
43 \StatusValue
::newGood(),
44 $provider->testUserForCreation( $user, false )
47 $provider->providerChangeAuthenticationData( $req );
48 $provider->autoCreatedAccount( $user, AuthManager
::AUTOCREATE_SOURCE_SESSION
);
50 $res = AuthenticationResponse
::newPass();
51 $provider->postAuthentication( $user, $res );
52 $provider->postAccountCreation( $user, $user, $res );
55 public function testProviderRevokeAccessForUser() {
57 for ( $i = 0; $i < 3; $i++
) {
58 $reqs[$i] = $this->getMock( AuthenticationRequest
::class );
59 $reqs[$i]->done
= false;
62 $provider = $this->getMockBuilder( AbstractSecondaryAuthenticationProvider
::class )
63 ->setMethods( [ 'providerChangeAuthenticationData' ] )
64 ->getMockForAbstractClass();
65 $provider->expects( $this->once() )->method( 'getAuthenticationRequests' )
67 $this->identicalTo( AuthManager
::ACTION_REMOVE
),
68 $this->identicalTo( [ 'username' => 'UTSysop' ] )
70 ->will( $this->returnValue( $reqs ) );
71 $provider->expects( $this->exactly( 3 ) )->method( 'providerChangeAuthenticationData' )
72 ->will( $this->returnCallback( function ( $req ) {
73 $this->assertSame( 'UTSysop', $req->username
);
74 $this->assertFalse( $req->done
);
78 $provider->providerRevokeAccessForUser( 'UTSysop' );
80 foreach ( $reqs as $i => $req ) {
81 $this->assertTrue( $req->done
, "#$i" );