45 protected function hook( $hook, $expect ) {
47 $mock = $this->getMock( __CLASS__, [
"on$hook" ] );
48 $wgHooks[$hook] = [ $mock ];
49 return $mock->expects( $expect )->method(
"on$hook" );
68 if (
$key === null ) {
93 foreach ( [
'preauth',
'primaryauth',
'secondaryauth' ]
as $type ) {
94 $key = $type .
'Mocks';
95 foreach ( $this->
$key as $mock ) {
96 $config[
$type][$mock->getUniqueId()] = [
'factory' =>
function ()
use ( $mock ) {
102 $this->config->set(
'AuthManagerConfig',
$config );
103 $this->config->set(
'LanguageCode',
'en' );
104 $this->config->set(
'NewUserLog',
false );
112 if ( $regen || !$this->config ) {
113 $this->config = new \HashConfig();
115 if ( $regen || !$this->
request ) {
116 $this->
request = new \FauxRequest();
118 if ( !$this->logger ) {
119 $this->logger = new \TestLogger();
122 if ( $regen || !$this->config->has(
'AuthManagerConfig' ) ) {
126 $this->manager->setLogger( $this->logger );
137 if ( !$this->config ) {
138 $this->config = new \HashConfig();
141 $this->config->set(
'ObjectCacheSessionExpiry', 100 );
143 $methods[] =
'__toString';
144 $methods[] =
'describe';
145 if ( $canChangeUser !== null ) {
146 $methods[] =
'canChangeUser';
148 $provider = $this->getMockBuilder(
'DummySessionProvider' )
149 ->setMethods( $methods )
151 $provider->expects( $this->any() )->method(
'__toString' )
152 ->will( $this->returnValue(
'MockSessionProvider' ) );
153 $provider->expects( $this->any() )->method(
'describe' )
154 ->will( $this->returnValue(
'MockSessionProvider sessions' ) );
155 if ( $canChangeUser !== null ) {
156 $provider->expects( $this->any() )->method(
'canChangeUser' )
157 ->will( $this->returnValue( $canChangeUser ) );
159 $this->config->set(
'SessionProviders', [
160 [
'factory' =>
function ()
use ( $provider ) {
165 $manager = new \MediaWiki\Session\SessionManager( [
166 'config' => $this->config,
167 'logger' =>
new \Psr\Log\NullLogger(),
178 return [ $provider, $reset ];
185 $rProp->setAccessible(
true );
186 $old = $rProp->getValue();
187 $cb = new \ScopedCallback( [ $rProp,
'setValue' ], [ $old ] );
188 $rProp->setValue( null );
204 $this->assertFalse( $this->manager->canAuthenticateNow() );
208 $this->assertTrue( $this->manager->canAuthenticateNow() );
219 foreach ( $mocks
as $key => $mock ) {
220 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
$key ) );
222 $mocks[0]->expects( $this->once() )->method(
'providerNormalizeUsername' )
223 ->with( $this->identicalTo(
'XYZ' ) )
224 ->willReturn(
'Foo' );
225 $mocks[1]->expects( $this->once() )->method(
'providerNormalizeUsername' )
226 ->with( $this->identicalTo(
'XYZ' ) )
227 ->willReturn(
'Foo' );
228 $mocks[2]->expects( $this->once() )->method(
'providerNormalizeUsername' )
229 ->with( $this->identicalTo(
'XYZ' ) )
230 ->willReturn( null );
231 $mocks[3]->expects( $this->once() )->method(
'providerNormalizeUsername' )
232 ->with( $this->identicalTo(
'XYZ' ) )
233 ->willReturn(
'Bar!' );
235 $this->primaryauthMocks = $mocks;
239 $this->assertSame( [
'Foo',
'Bar!' ], $this->manager->normalizeUsername(
'XYZ' ) );
247 $this->logger = new \Psr\Log\NullLogger();
253 $mutableSession, [
'provideSessionInfo' ]
255 $provider->expects( $this->any() )->method(
'provideSessionInfo' )
256 ->will( $this->returnCallback(
function ()
use ( $provider, &$provideUser ) {
258 'provider' => $provider,
266 $this->config->set(
'ReauthenticateTime', [] );
267 $this->config->set(
'AllowSecuritySensitiveOperationIfCannotReauthenticate', [] );
269 $session = $provider->getManager()->getSessionForRequest( $this->
request );
270 $this->assertSame( 0, $session->getUser()->getId(),
'sanity check' );
273 $session->set(
'AuthManager:lastAuthId', 0 );
274 $session->set(
'AuthManager:lastAuthTimestamp', time() - 5 );
275 $this->assertSame( $reauth, $this->manager->securitySensitiveOperationStatus(
'foo' ) );
277 $provideUser =
$user;
278 $session = $provider->getManager()->getSessionForRequest( $this->
request );
279 $this->assertSame(
$user->getId(), $session->getUser()->getId(),
'sanity check' );
282 $session->set(
'AuthManager:lastAuthId',
$user->getId() + 1 );
283 $session->set(
'AuthManager:lastAuthTimestamp', time() - 5 );
285 $this->manager->securitySensitiveOperationStatus(
'foo' );
286 $this->fail(
'Expected exception not thrown' );
290 ?
'$wgReauthenticateTime lacks a default'
291 :
'$wgAllowSecuritySensitiveOperationIfCannotReauthenticate lacks a default',
296 if ( $mutableSession ) {
297 $this->config->set(
'ReauthenticateTime', [
304 $session->set(
'AuthManager:lastAuthId',
$user->getId() + 1 );
305 $session->set(
'AuthManager:lastAuthTimestamp', time() - 5 );
317 $session->set(
'AuthManager:lastAuthId',
$user->getId() );
318 $session->set(
'AuthManager:lastAuthTimestamp', null );
330 $session->set(
'AuthManager:lastAuthTimestamp', time() - 5 );
336 $session->set(
'AuthManager:lastAuthTimestamp', time() - 20 );
345 $this->config->set(
'AllowSecuritySensitiveOperationIfCannotReauthenticate', [
364 ]
as $hook => $expect ) {
365 $this->
hook(
'SecuritySensitiveOperationStatus', $this->exactly( 2 ) )
369 $this->callback(
function (
$s )
use ( $session ) {
370 return $s->getId() === $session->getId();
372 $mutableSession ? $this->equalTo( 500, 1 ) : $this->equalTo( -1 )
374 ->
will( $this->returnCallback(
function ( &$v )
use ( $hook ) {
378 $session->set(
'AuthManager:lastAuthTimestamp', time() - 500 );
380 $expect, $this->manager->securitySensitiveOperationStatus(
'test' ),
"hook $hook"
383 $expect, $this->manager->securitySensitiveOperationStatus(
'test2' ),
"hook $hook"
385 $this->
unhook(
'SecuritySensitiveOperationStatus' );
409 $mock1->expects( $this->any() )->method(
'getUniqueId' )
410 ->will( $this->returnValue(
'primary1' ) );
411 $mock1->expects( $this->any() )->method(
'testUserCanAuthenticate' )
412 ->with( $this->equalTo(
'UTSysop' ) )
413 ->will( $this->returnValue( $primary1Can ) );
415 $mock2->expects( $this->any() )->method(
'getUniqueId' )
416 ->will( $this->returnValue(
'primary2' ) );
417 $mock2->expects( $this->any() )->method(
'testUserCanAuthenticate' )
418 ->with( $this->equalTo(
'UTSysop' ) )
419 ->will( $this->returnValue( $primary2Can ) );
420 $this->primaryauthMocks = [ $mock1, $mock2 ];
423 $this->assertSame( $expect, $this->manager->userCanAuthenticate(
'UTSysop' ) );
428 [
false,
false,
false ],
429 [
true,
false,
true ],
430 [
false,
true,
true ],
431 [
true,
true,
true ],
439 $mock->expects( $this->any() )->method(
'getUniqueId' )
440 ->will( $this->returnValue(
'primary' ) );
441 $mock->expects( $this->once() )->method(
'providerRevokeAccessForUser' )
442 ->with( $this->equalTo(
'UTSysop' ) );
443 $this->primaryauthMocks = [ $mock ];
446 $this->logger->setCollect(
true );
448 $this->manager->revokeAccessForUser(
'UTSysop' );
451 [ LogLevel::INFO,
'Revoking access for {user}' ],
452 ], $this->logger->getBuffer() );
461 foreach ( $mocks
as $key => $mock ) {
462 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
$key ) );
463 $mock->expects( $this->once() )->method(
'setLogger' );
464 $mock->expects( $this->once() )->method(
'setManager' );
465 $mock->expects( $this->once() )->method(
'setConfig' );
467 $this->preauthMocks = [ $mocks[
'pre'] ];
468 $this->primaryauthMocks = [ $mocks[
'primary'] ];
469 $this->secondaryauthMocks = [ $mocks[
'secondary'] ];
475 $this->managerPriv->getAuthenticationProvider(
'primary' )
479 $this->managerPriv->getAuthenticationProvider(
'secondary' )
483 $this->managerPriv->getAuthenticationProvider(
'pre' )
486 [
'pre' => $mocks[
'pre'] ],
487 $this->managerPriv->getPreAuthenticationProviders()
490 [
'primary' => $mocks[
'primary'] ],
491 $this->managerPriv->getPrimaryAuthenticationProviders()
494 [
'secondary' => $mocks[
'secondary'] ],
495 $this->managerPriv->getSecondaryAuthenticationProviders()
501 $mock1->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
502 $mock2->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
503 $this->preauthMocks = [ $mock1 ];
504 $this->primaryauthMocks = [ $mock2 ];
505 $this->secondaryauthMocks = [];
508 $this->managerPriv->getAuthenticationProvider(
'Y' );
509 $this->fail(
'Expected exception not thrown' );
511 $class1 = get_class( $mock1 );
512 $class2 = get_class( $mock2 );
514 "Duplicate specifications for id X (classes $class1 and $class2)", $ex->getMessage()
520 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
521 $class = get_class( $mock );
522 $this->preauthMocks = [ $mock ];
523 $this->primaryauthMocks = [ $mock ];
524 $this->secondaryauthMocks = [ $mock ];
527 $this->managerPriv->getPreAuthenticationProviders();
528 $this->fail(
'Expected exception not thrown' );
531 "Expected instance of MediaWiki\\Auth\\PreAuthenticationProvider, got $class",
536 $this->managerPriv->getPrimaryAuthenticationProviders();
537 $this->fail(
'Expected exception not thrown' );
540 "Expected instance of MediaWiki\\Auth\\PrimaryAuthenticationProvider, got $class",
545 $this->managerPriv->getSecondaryAuthenticationProviders();
546 $this->fail(
'Expected exception not thrown' );
549 "Expected instance of MediaWiki\\Auth\\SecondaryAuthenticationProvider, got $class",
558 $mock1->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'A' ) );
559 $mock2->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'B' ) );
560 $mock3->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'C' ) );
561 $this->preauthMocks = [];
562 $this->primaryauthMocks = [ $mock1, $mock2, $mock3 ];
563 $this->secondaryauthMocks = [];
565 $config = $this->config->
get(
'AuthManagerConfig' );
569 [
'A' => $mock1,
'B' => $mock2,
'C' => $mock3 ],
570 $this->managerPriv->getPrimaryAuthenticationProviders(),
574 $config[
'primaryauth'][
'A'][
'sort'] = 100;
575 $config[
'primaryauth'][
'C'][
'sort'] = -1;
576 $this->config->set(
'AuthManagerConfig', $config );
579 [
'C' => $mock3,
'B' => $mock2,
'A' => $mock1 ],
580 $this->managerPriv->getPrimaryAuthenticationProviders()
593 $user->addToDatabase();
594 $oldToken =
$user->getToken();
595 $this->managerPriv->setDefaultUserOptions(
$user,
false );
596 $user->saveSettings();
597 $this->assertNotEquals( $oldToken,
$user->getToken() );
598 $this->assertSame(
'zh',
$user->getOption(
'language' ) );
599 $this->assertSame(
'zh',
$user->getOption(
'variant' ) );
602 $user->addToDatabase();
603 $oldToken = $user->getToken();
604 $this->managerPriv->setDefaultUserOptions( $user,
true );
605 $user->saveSettings();
606 $this->assertNotEquals( $oldToken, $user->getToken() );
607 $this->assertSame(
'de', $user->getOption(
'language' ) );
608 $this->assertSame(
'zh', $user->getOption(
'variant' ) );
613 $user->addToDatabase();
614 $oldToken = $user->getToken();
615 $this->managerPriv->setDefaultUserOptions( $user,
true );
616 $user->saveSettings();
617 $this->assertNotEquals( $oldToken, $user->getToken() );
618 $this->assertSame(
'de', $user->getOption(
'language' ) );
619 $this->assertSame( null, $user->getOption(
'variant' ) );
626 $mockA->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'A' ) );
627 $mockB->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'B' ) );
628 $mockB2->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'B' ) );
629 $this->primaryauthMocks = [ $mockA ];
631 $this->logger = new \TestLogger(
true );
635 $this->manager->forcePrimaryAuthenticationProviders( [ $mockB ],
'testing' );
637 [
'B' => $mockB ], $this->managerPriv->getPrimaryAuthenticationProviders()
639 $this->assertSame( null, $this->managerPriv->getAuthenticationProvider(
'A' ) );
640 $this->assertSame( $mockB, $this->managerPriv->getAuthenticationProvider(
'B' ) );
642 [ LogLevel::WARNING,
'Overriding AuthManager primary authn because testing' ],
643 ], $this->logger->getBuffer() );
644 $this->logger->clearBuffer();
648 $this->assertSame( $mockA, $this->managerPriv->getAuthenticationProvider(
'A' ) );
649 $this->assertSame( null, $this->managerPriv->getAuthenticationProvider(
'B' ) );
650 $this->
request->getSession()->setSecret(
'AuthManager::authnState',
'test' );
651 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
'test' );
652 $this->manager->forcePrimaryAuthenticationProviders( [ $mockB ],
'testing' );
654 [
'B' => $mockB ], $this->managerPriv->getPrimaryAuthenticationProviders()
656 $this->assertSame( null, $this->managerPriv->getAuthenticationProvider(
'A' ) );
657 $this->assertSame( $mockB, $this->managerPriv->getAuthenticationProvider(
'B' ) );
658 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::authnState' ) );
660 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
663 [ LogLevel::WARNING,
'Overriding AuthManager primary authn because testing' ],
666 'PrimaryAuthenticationProviders have already been accessed! I hope nothing breaks.'
668 ], $this->logger->getBuffer() );
669 $this->logger->clearBuffer();
674 $this->manager->forcePrimaryAuthenticationProviders( [ $mockB, $mockB2 ],
'testing' );
675 $this->fail(
'Expected exception not thrown' );
677 $class1 = get_class( $mockB );
678 $class2 = get_class( $mockB2 );
680 "Duplicate specifications for id B (classes $class2 and $class1)", $ex->getMessage()
686 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
687 $class = get_class( $mock );
689 $this->manager->forcePrimaryAuthenticationProviders( [ $mock ],
'testing' );
690 $this->fail(
'Expected exception not thrown' );
693 "Expected instance of MediaWiki\\Auth\\PrimaryAuthenticationProvider, got $class",
705 $this->
hook(
'UserLoggedIn', $this->never() );
706 $this->
request->getSession()->setSecret(
'AuthManager::authnState',
'test' );
708 $this->manager->beginAuthentication( [],
'http://localhost/' );
709 $this->fail(
'Expected exception not thrown' );
711 $this->assertSame(
'Authentication is not possible now', $ex->getMessage() );
713 $this->
unhook(
'UserLoggedIn' );
714 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::authnState' ) );
723 $this->
hook(
'UserLoggedIn', $this->never() );
725 $this->manager->beginAuthentication( $reqs,
'http://localhost/' );
726 $this->fail(
'Expected exception not thrown' );
729 'CreatedAccountAuthenticationRequests are only valid on the same AuthManager ' .
730 'that created the account',
734 $this->
unhook(
'UserLoggedIn' );
736 $this->
request->getSession()->clear();
737 $this->
request->getSession()->setSecret(
'AuthManager::authnState',
'test' );
738 $this->managerPriv->createdAccountAuthenticationRequests = [ $reqs[0] ];
739 $this->
hook(
'UserLoggedIn', $this->once() )
740 ->with( $this->callback(
function ( $u )
use (
$user ) {
741 return $user->getId() === $u->getId() &&
$user->getName() === $u->getName();
743 $this->
hook(
'AuthManagerLoginAuthenticateAudit', $this->once() );
744 $this->logger->setCollect(
true );
745 $ret = $this->manager->beginAuthentication( $reqs,
'http://localhost/' );
746 $this->logger->setCollect(
false );
747 $this->
unhook(
'UserLoggedIn' );
748 $this->
unhook(
'AuthManagerLoginAuthenticateAudit' );
750 $this->assertSame(
$user->getName(),
$ret->username );
751 $this->assertSame(
$user->getId(), $this->
request->getSessionData(
'AuthManager:lastAuthId' ) );
753 time(), $this->
request->getSessionData(
'AuthManager:lastAuthTimestamp' ),
756 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::authnState' ) );
757 $this->assertSame(
$user->getId(), $this->
request->getSession()->getUser()->getId() );
759 [ LogLevel::INFO,
'Logging in {user} after account creation' ],
760 ], $this->logger->getBuffer() );
769 $userReq->username =
'UTDummy';
771 $req1->returnToUrl =
'http://localhost/';
772 $req2->returnToUrl =
'http://localhost/';
773 $req3->returnToUrl =
'http://localhost/';
774 $req3->username =
'UTDummy';
775 $userReq->returnToUrl =
'http://localhost/';
779 $this->primaryauthMocks = [ $primary ];
782 $res->createRequest = $req1;
783 $primary->expects( $this->any() )->method(
'beginPrimaryAuthentication' )
784 ->will( $this->returnValue(
$res ) );
786 null, [ $req2->getUniqueId() => $req2 ]
788 $this->logger->setCollect(
true );
789 $ret = $this->manager->beginAuthentication( [ $createReq ],
'http://localhost/' );
790 $this->logger->setCollect(
false );
793 $this->assertSame( $req1,
$ret->createRequest->createRequest );
794 $this->assertEquals( [ $req2->getUniqueId() => $req2 ],
$ret->createRequest->maybeLink );
798 ->setMethods( [
'continuePrimaryAuthentication' ] )
799 ->getMockForAbstractClass();
800 $this->primaryauthMocks = [ $primary ];
802 $primary->expects( $this->any() )->method(
'beginPrimaryAuthentication' )
803 ->will( $this->returnValue(
807 $res->createRequest = $req2;
808 $primary->expects( $this->any() )->method(
'continuePrimaryAuthentication' )
809 ->will( $this->returnValue(
$res ) );
810 $this->logger->setCollect(
true );
811 $ret = $this->manager->beginAuthentication( [],
'http://localhost/' );
813 $ret = $this->manager->continueAuthentication( [] );
814 $this->logger->setCollect(
false );
817 $this->assertSame( $req2,
$ret->createRequest->createRequest );
818 $this->assertEquals( [],
$ret->createRequest->maybeLink );
822 $this->primaryauthMocks = [ $primary ];
825 $createReq->returnToUrl =
'http://localhost/';
826 $createReq->username =
'UTDummy';
828 $primary->expects( $this->any() )->method(
'beginPrimaryAccountCreation' )
829 ->with( $this->
anything(), $this->
anything(), [ $userReq, $createReq, $req3 ] )
830 ->will( $this->returnValue(
$res ) );
831 $primary->expects( $this->any() )->method(
'accountCreationType' )
833 $this->logger->setCollect(
true );
834 $ret = $this->manager->beginAccountCreation(
835 $user, [ $userReq, $createReq ],
'http://localhost/'
837 $this->logger->setCollect(
false );
839 $state = $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' );
840 $this->assertNotNull( $state );
841 $this->assertEquals( [ $userReq, $createReq, $req3 ], $state[
'reqs'] );
842 $this->assertEquals( [ $req2 ], $state[
'maybeLink'] );
859 $id =
$user->getId();
864 $req->rememberMe = (bool)rand( 0, 1 );
865 $req->pre = $preResponse;
866 $req->primary = $primaryResponses;
867 $req->secondary = $secondaryResponses;
869 foreach ( [
'pre',
'primary',
'secondary' ]
as $key ) {
870 $class = ucfirst( $key ) .
'AuthenticationProvider';
871 $mocks[
$key] = $this->getMockForAbstractClass(
872 "MediaWiki\\Auth\\$class", [],
"Mock$class"
874 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
875 ->will( $this->returnValue( $key ) );
876 $mocks[$key .
'2'] = $this->getMockForAbstractClass(
877 "MediaWiki\\Auth\\$class", [],
"Mock$class"
879 $mocks[$key .
'2']->expects( $this->any() )->method(
'getUniqueId' )
880 ->will( $this->returnValue( $key .
'2' ) );
881 $mocks[$key .
'3'] = $this->getMockForAbstractClass(
882 "MediaWiki\\Auth\\$class", [],
"Mock$class"
884 $mocks[$key .
'3']->expects( $this->any() )->method(
'getUniqueId' )
885 ->will( $this->returnValue( $key .
'3' ) );
887 foreach ( $mocks
as $mock ) {
888 $mock->expects( $this->any() )->method(
'getAuthenticationRequests' )
889 ->will( $this->returnValue( [] ) );
892 $mocks[
'pre']->expects( $this->once() )->method(
'testForAuthentication' )
893 ->will( $this->returnCallback(
function ( $reqs )
use (
$req ) {
894 $this->assertContains(
$req, $reqs );
898 $ct = count(
$req->primary );
899 $callback = $this->returnCallback(
function ( $reqs )
use (
$req ) {
900 $this->assertContains(
$req, $reqs );
901 return array_shift(
$req->primary );
903 $mocks[
'primary']->expects( $this->exactly( min( 1, $ct ) ) )
904 ->method(
'beginPrimaryAuthentication' )
906 $mocks[
'primary']->expects( $this->exactly( max( 0, $ct - 1 ) ) )
907 ->method(
'continuePrimaryAuthentication' )
910 $mocks[
'primary']->expects( $this->any() )->method(
'accountCreationType' )
914 $ct = count(
$req->secondary );
915 $callback = $this->returnCallback(
function (
$user, $reqs )
use ( $id,
$name,
$req ) {
916 $this->assertSame( $id,
$user->getId() );
918 $this->assertContains(
$req, $reqs );
919 return array_shift(
$req->secondary );
921 $mocks[
'secondary']->expects( $this->exactly( min( 1, $ct ) ) )
922 ->method(
'beginSecondaryAuthentication' )
924 $mocks[
'secondary']->expects( $this->exactly( max( 0, $ct - 1 ) ) )
925 ->method(
'continueSecondaryAuthentication' )
929 $mocks[
'pre2']->expects( $this->atMost( 1 ) )->method(
'testForAuthentication' )
931 $mocks[
'primary2']->expects( $this->atMost( 1 ) )->method(
'beginPrimaryAuthentication' )
932 ->will( $this->returnValue( $abstain ) );
933 $mocks[
'primary2']->expects( $this->never() )->method(
'continuePrimaryAuthentication' );
934 $mocks[
'secondary2']->expects( $this->atMost( 1 ) )->method(
'beginSecondaryAuthentication' )
935 ->will( $this->returnValue( $abstain ) );
936 $mocks[
'secondary2']->expects( $this->never() )->method(
'continueSecondaryAuthentication' );
937 $mocks[
'secondary3']->expects( $this->atMost( 1 ) )->method(
'beginSecondaryAuthentication' )
938 ->will( $this->returnValue( $abstain ) );
939 $mocks[
'secondary3']->expects( $this->never() )->method(
'continueSecondaryAuthentication' );
941 $this->preauthMocks = [ $mocks[
'pre'], $mocks[
'pre2'] ];
942 $this->primaryauthMocks = [ $mocks[
'primary'], $mocks[
'primary2'] ];
943 $this->secondaryauthMocks = [
944 $mocks[
'secondary3'], $mocks[
'secondary'], $mocks[
'secondary2'],
949 $this->logger->setCollect(
true );
951 $constraint = \PHPUnit_Framework_Assert::logicalOr(
955 $providers = array_filter(
957 $this->preauthMocks, $this->primaryauthMocks, $this->secondaryauthMocks
960 return is_callable( [ $p,
'expects' ] );
963 foreach ( $providers
as $p ) {
964 $p->postCalled =
false;
965 $p->expects( $this->atMost( 1 ) )->method(
'postAuthentication' )
967 if (
$user !== null ) {
968 $this->assertInstanceOf(
'User',
$user );
969 $this->assertSame(
'UTSysop',
$user->getName() );
972 $this->assertThat(
$response->status, $constraint );
977 $session = $this->
request->getSession();
978 $session->setRememberUser( !
$req->rememberMe );
984 $this->
hook(
'UserLoggedIn', $this->once() )
985 ->with( $this->callback(
function (
$user )
use ( $id,
$name ) {
989 $this->
hook(
'UserLoggedIn', $this->never() );
994 $response->message->getKey() !==
'authmanager-authn-not-in-progress' &&
995 $response->message->getKey() !==
'authmanager-authn-no-primary'
998 $this->
hook(
'AuthManagerLoginAuthenticateAudit', $this->once() );
1000 $this->
hook(
'AuthManagerLoginAuthenticateAudit', $this->never() );
1006 $ret = $this->manager->beginAuthentication( [
$req ],
'http://localhost/' );
1008 $ret = $this->manager->continueAuthentication( [
$req ] );
1011 $this->fail(
'Expected exception not thrown',
"Response $i" );
1017 $this->assertEquals(
$response->getMessage(), $ex->getMessage(),
"Response $i, exception" );
1018 $this->assertNull( $session->getSecret(
'AuthManager::authnState' ),
1019 "Response $i, exception, session state" );
1020 $this->
unhook(
'UserLoggedIn' );
1021 $this->
unhook(
'AuthManagerLoginAuthenticateAudit' );
1025 $this->
unhook(
'UserLoggedIn' );
1026 $this->
unhook(
'AuthManagerLoginAuthenticateAudit' );
1028 $this->assertSame(
'http://localhost/',
$req->returnToUrl );
1031 $this->assertEquals(
$response,
$ret,
"Response $i, response" );
1033 $this->assertSame( $id, $session->getUser()->getId(),
1034 "Response $i, authn" );
1036 $this->assertSame( 0, $session->getUser()->getId(),
1037 "Response $i, authn" );
1040 $this->assertNull( $session->getSecret(
'AuthManager::authnState' ),
1041 "Response $i, session state" );
1042 foreach ( $providers
as $p ) {
1043 $this->assertSame(
$response->status, $p->postCalled,
1044 "Response $i, post-auth callback called" );
1047 $this->assertNotNull( $session->getSecret(
'AuthManager::authnState' ),
1048 "Response $i, session state" );
1049 foreach (
$ret->neededRequests
as $neededReq ) {
1051 "Response $i, neededRequest action" );
1053 $this->assertEquals(
1054 $ret->neededRequests,
1056 "Response $i, continuation check"
1058 foreach ( $providers
as $p ) {
1059 $this->assertFalse( $p->postCalled,
"Response $i, post-auth callback not called" );
1063 $state = $session->getSecret(
'AuthManager::authnState' );
1064 $maybeLink = isset( $state[
'maybeLink'] ) ? $state[
'maybeLink'] : [];
1066 $this->assertEquals(
1069 "Response $i, maybeLink"
1072 $this->assertEquals( [], $maybeLink,
"Response $i, maybeLink" );
1077 $this->assertSame(
$req->rememberMe, $session->shouldRememberUser(),
1078 'rememberMe checkbox had effect' );
1080 $this->assertNotSame(
$req->rememberMe, $session->shouldRememberUser(),
1081 'rememberMe checkbox wasn\'t applied' );
1087 $id =
$user->getId();
1094 $req->foobar =
'baz';
1096 $this->
message(
'authmanager-authn-no-local-user' )
1098 $restartResponse->neededRequests = [ $rememberReq ];
1101 $restartResponse2Pass->linkRequest =
$req;
1103 $this->
message(
'authmanager-authn-no-local-user-link' )
1106 null, [
$req->getUniqueId() =>
$req ]
1109 $restartResponse2->neededRequests = [ $rememberReq, $restartResponse2->createRequest ];
1112 'Failure in pre-auth' => [
1119 $this->
message(
'authmanager-authn-not-in-progress' )
1123 'Failure in primary' => [
1131 'All primary abstain' => [
1141 'Primary UI, then redirect, then fail' => [
1151 'Primary redirect, then abstain' => [
1155 [
$req ],
'/foo.html', [
'foo' =>
'bar' ]
1162 new \DomainException(
1163 'MockPrimaryAuthenticationProvider::continuePrimaryAuthentication() returned ABSTAIN'
1167 'Primary UI, then pass with no local user' => [
1179 'Primary UI, then pass with no local user (link type)' => [
1183 $restartResponse2Pass,
1192 'Primary pass with invalid username' => [
1199 new \DomainException(
'MockPrimaryAuthenticationProvider returned an invalid username: <>' ),
1202 'Secondary fail' => [
1212 'Secondary UI, then abstain' => [
1226 'Secondary pass' => [
1249 $mock1->expects( $this->any() )->method(
'getUniqueId' )
1250 ->will( $this->returnValue(
'primary1' ) );
1251 $mock1->expects( $this->any() )->method(
'testUserExists' )
1252 ->with( $this->equalTo(
'UTSysop' ) )
1253 ->will( $this->returnValue( $primary1Exists ) );
1255 $mock2->expects( $this->any() )->method(
'getUniqueId' )
1256 ->will( $this->returnValue(
'primary2' ) );
1257 $mock2->expects( $this->any() )->method(
'testUserExists' )
1258 ->with( $this->equalTo(
'UTSysop' ) )
1259 ->will( $this->returnValue( $primary2Exists ) );
1260 $this->primaryauthMocks = [ $mock1, $mock2 ];
1263 $this->assertSame( $expect, $this->manager->userExists(
'UTSysop' ) );
1268 [
false,
false,
false ],
1269 [
true,
false,
true ],
1270 [
false,
true,
true ],
1271 [
true,
true,
true ],
1285 $mock1->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'1' ) );
1286 $mock1->expects( $this->any() )->method(
'providerAllowsAuthenticationDataChange' )
1287 ->with( $this->equalTo(
$req ) )
1288 ->will( $this->returnValue( $primaryReturn ) );
1290 $mock2->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'2' ) );
1291 $mock2->expects( $this->any() )->method(
'providerAllowsAuthenticationDataChange' )
1292 ->with( $this->equalTo(
$req ) )
1293 ->will( $this->returnValue( $secondaryReturn ) );
1295 $this->primaryauthMocks = [ $mock1 ];
1296 $this->secondaryauthMocks = [ $mock2 ];
1298 $this->assertEquals( $expect, $this->manager->allowsAuthenticationDataChange(
$req ) );
1303 $ignored->warning(
'authmanager-change-not-supported' );
1306 $okFromPrimary->warning(
'warning-from-primary' );
1308 $okFromSecondary->warning(
'warning-from-secondary' );
1356 $req->username =
'UTSysop';
1359 $mock1->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'1' ) );
1360 $mock1->expects( $this->once() )->method(
'providerChangeAuthenticationData' )
1361 ->with( $this->equalTo(
$req ) );
1363 $mock2->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'2' ) );
1364 $mock2->expects( $this->once() )->method(
'providerChangeAuthenticationData' )
1365 ->with( $this->equalTo(
$req ) );
1367 $this->primaryauthMocks = [ $mock1, $mock2 ];
1369 $this->logger->setCollect(
true );
1370 $this->manager->changeAuthenticationData(
$req );
1371 $this->assertSame( [
1372 [ LogLevel::INFO,
'Changing authentication data for {user} class {what}' ],
1373 ], $this->logger->getBuffer() );
1383 foreach ( $types
as $type => $can ) {
1385 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
$type ) );
1386 $mock->expects( $this->any() )->method(
'accountCreationType' )
1387 ->will( $this->returnValue(
$type ) );
1388 $this->primaryauthMocks = [ $mock ];
1390 $this->assertSame( $can, $this->manager->canCreateAccounts(),
$type );
1395 global $wgGroupPermissions;
1401 $wgGroupPermissions[
'*'][
'createaccount'] =
true;
1402 $this->assertEquals(
1404 $this->manager->checkAccountCreatePermissions(
new \
User )
1408 $this->assertEquals(
1410 $this->manager->checkAccountCreatePermissions(
new \
User )
1414 $wgGroupPermissions[
'*'][
'createaccount'] =
false;
1415 $status = $this->manager->checkAccountCreatePermissions(
new \
User );
1416 $this->assertFalse(
$status->isOK() );
1417 $this->assertTrue(
$status->hasMessage(
'badaccess-groups' ) );
1418 $wgGroupPermissions[
'*'][
'createaccount'] =
true;
1421 if (
$user->getID() == 0 ) {
1422 $user->addToDatabase();
1424 $user->saveSettings();
1429 $oldBlock->delete();
1432 'address' =>
'UTBlockee',
1433 'user' =>
$user->getID(),
1434 'reason' => __METHOD__,
1435 'expiry' => time() + 100500,
1436 'createAccount' =>
true,
1438 $block = new \Block( $blockOptions );
1440 $status = $this->manager->checkAccountCreatePermissions(
$user );
1441 $this->assertFalse(
$status->isOK() );
1442 $this->assertTrue(
$status->hasMessage(
'cantcreateaccount-text' ) );
1445 'address' =>
'127.0.0.0/24',
1446 'reason' => __METHOD__,
1447 'expiry' => time() + 100500,
1448 'createAccount' =>
true,
1450 $block = new \Block( $blockOptions );
1452 $scopeVariable = new \ScopedCallback( [ $block,
'delete' ] );
1453 $status = $this->manager->checkAccountCreatePermissions(
new \
User );
1454 $this->assertFalse(
$status->isOK() );
1455 $this->assertTrue(
$status->hasMessage(
'cantcreateaccount-range-text' ) );
1459 'wgEnableDnsBlacklist' =>
true,
1460 'wgDnsBlacklistUrls' => [
1461 'local.wmftest.net',
1463 'wgProxyWhitelist' => [],
1465 $status = $this->manager->checkAccountCreatePermissions(
new \
User );
1466 $this->assertFalse(
$status->isOK() );
1467 $this->assertTrue(
$status->hasMessage(
'sorbs_create_account_reason' ) );
1468 $this->
setMwGlobals(
'wgProxyWhitelist', [
'127.0.0.1' ] );
1469 $status = $this->manager->checkAccountCreatePermissions(
new \
User );
1470 $this->assertTrue(
$status->isGood() );
1480 $username =
"UTAuthManagerTestAccountCreation" . $uniq . ++$i;
1486 $username = self::usernameForCreation();
1489 $this->assertEquals(
1491 $this->manager->canCreateAccount(
$username )
1495 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1496 $mock->expects( $this->any() )->method(
'accountCreationType' )
1498 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
true ) );
1499 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1501 $this->primaryauthMocks = [ $mock ];
1504 $this->assertEquals(
1506 $this->manager->canCreateAccount(
$username )
1510 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1511 $mock->expects( $this->any() )->method(
'accountCreationType' )
1513 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1514 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1516 $this->primaryauthMocks = [ $mock ];
1519 $this->assertEquals(
1521 $this->manager->canCreateAccount(
$username .
'<>' )
1524 $this->assertEquals(
1526 $this->manager->canCreateAccount(
'UTSysop' )
1529 $this->assertEquals(
1531 $this->manager->canCreateAccount(
$username )
1535 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1536 $mock->expects( $this->any() )->method(
'accountCreationType' )
1538 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1539 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1541 $this->primaryauthMocks = [ $mock ];
1544 $this->assertEquals(
1546 $this->manager->canCreateAccount(
$username )
1553 $this->logger = new \TestLogger(
false,
function ( $message, $level ) {
1554 return $level === LogLevel::DEBUG ? null : $message;
1558 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
'test' );
1559 $this->
hook(
'LocalUserCreated', $this->never() );
1561 $this->manager->beginAccountCreation(
1562 $creator, [],
'http://localhost/'
1564 $this->fail(
'Expected exception not thrown' );
1566 $this->assertEquals(
'Account creation is not possible', $ex->getMessage() );
1568 $this->
unhook(
'LocalUserCreated' );
1570 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1574 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1575 $mock->expects( $this->any() )->method(
'accountCreationType' )
1577 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
true ) );
1578 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1580 $this->primaryauthMocks = [ $mock ];
1583 $this->
hook(
'LocalUserCreated', $this->never() );
1584 $ret = $this->manager->beginAccountCreation( $creator, [],
'http://localhost/' );
1585 $this->
unhook(
'LocalUserCreated' );
1587 $this->assertSame(
'noname',
$ret->message->getKey() );
1589 $this->
hook(
'LocalUserCreated', $this->never() );
1590 $userReq->username = self::usernameForCreation();
1592 $userReq2->username = $userReq->username .
'X';
1593 $ret = $this->manager->beginAccountCreation(
1594 $creator, [ $userReq, $userReq2 ],
'http://localhost/'
1596 $this->
unhook(
'LocalUserCreated' );
1598 $this->assertSame(
'noname',
$ret->message->getKey() );
1601 $this->
hook(
'LocalUserCreated', $this->never() );
1602 $userReq->username = self::usernameForCreation();
1603 $ret = $this->manager->beginAccountCreation( $creator, [ $userReq ],
'http://localhost/' );
1604 $this->
unhook(
'LocalUserCreated' );
1606 $this->assertSame(
'readonlytext',
$ret->message->getKey() );
1607 $this->assertSame( [
'Because' ],
$ret->message->getParams() );
1610 $this->
hook(
'LocalUserCreated', $this->never() );
1611 $userReq->username = self::usernameForCreation();
1612 $ret = $this->manager->beginAccountCreation( $creator, [ $userReq ],
'http://localhost/' );
1613 $this->
unhook(
'LocalUserCreated' );
1615 $this->assertSame(
'userexists',
$ret->message->getKey() );
1618 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1619 $mock->expects( $this->any() )->method(
'accountCreationType' )
1621 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1622 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1624 $this->primaryauthMocks = [ $mock ];
1627 $this->
hook(
'LocalUserCreated', $this->never() );
1628 $userReq->username = self::usernameForCreation();
1629 $ret = $this->manager->beginAccountCreation( $creator, [ $userReq ],
'http://localhost/' );
1630 $this->
unhook(
'LocalUserCreated' );
1632 $this->assertSame(
'fail',
$ret->message->getKey() );
1635 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1636 $mock->expects( $this->any() )->method(
'accountCreationType' )
1638 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1639 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1641 $this->primaryauthMocks = [ $mock ];
1644 $this->
hook(
'LocalUserCreated', $this->never() );
1645 $userReq->username = self::usernameForCreation() .
'<>';
1646 $ret = $this->manager->beginAccountCreation( $creator, [ $userReq ],
'http://localhost/' );
1647 $this->
unhook(
'LocalUserCreated' );
1649 $this->assertSame(
'noname',
$ret->message->getKey() );
1651 $this->
hook(
'LocalUserCreated', $this->never() );
1652 $userReq->username = $creator->getName();
1653 $ret = $this->manager->beginAccountCreation( $creator, [ $userReq ],
'http://localhost/' );
1654 $this->
unhook(
'LocalUserCreated' );
1656 $this->assertSame(
'userexists',
$ret->message->getKey() );
1659 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1660 $mock->expects( $this->any() )->method(
'accountCreationType' )
1662 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1663 $mock->expects( $this->any() )->method(
'testUserForCreation' )
1665 $mock->expects( $this->any() )->method(
'testForAccountCreation' )
1667 $this->primaryauthMocks = [ $mock ];
1671 ->setMethods( [
'populateUser' ] )
1673 $req->expects( $this->any() )->method(
'populateUser' )
1675 $userReq->username = self::usernameForCreation();
1676 $ret = $this->manager->beginAccountCreation(
1677 $creator, [ $userReq,
$req ],
'http://localhost/'
1680 $this->assertSame(
'populatefail',
$ret->message->getKey() );
1683 $userReq->username = self::usernameForCreation();
1685 $ret = $this->manager->beginAccountCreation(
1686 $creator, [ $userReq, $req ],
'http://localhost/'
1689 $this->assertSame(
'fail',
$ret->message->getKey() );
1691 $this->manager->beginAccountCreation(
1692 \
User::newFromName( $userReq->username ), [ $userReq, $req ],
'http://localhost/'
1695 $this->assertSame(
'fail',
$ret->message->getKey() );
1700 $username = self::usernameForCreation();
1701 $this->logger = new \TestLogger(
false,
function ( $message, $level ) {
1702 return $level === LogLevel::DEBUG ? null : $message;
1713 'primaryResponse' => null,
1715 'ranPreTests' =>
true,
1718 $this->
hook(
'LocalUserCreated', $this->never() );
1720 $this->manager->continueAccountCreation( [] );
1721 $this->fail(
'Expected exception not thrown' );
1723 $this->assertEquals(
'Account creation is not possible', $ex->getMessage() );
1725 $this->
unhook(
'LocalUserCreated' );
1728 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
1729 $mock->expects( $this->any() )->method(
'accountCreationType' )
1731 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
false ) );
1732 $mock->expects( $this->any() )->method(
'beginPrimaryAccountCreation' )->will(
1735 $this->primaryauthMocks = [ $mock ];
1738 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState', null );
1739 $this->
hook(
'LocalUserCreated', $this->never() );
1740 $ret = $this->manager->continueAccountCreation( [] );
1741 $this->
unhook(
'LocalUserCreated' );
1743 $this->assertSame(
'authmanager-create-not-in-progress',
$ret->message->getKey() );
1745 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1746 [
'username' =>
"$username<>" ] + $session );
1747 $this->
hook(
'LocalUserCreated', $this->never() );
1748 $ret = $this->manager->continueAccountCreation( [] );
1749 $this->
unhook(
'LocalUserCreated' );
1751 $this->assertSame(
'noname',
$ret->message->getKey() );
1753 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1756 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState', $session );
1757 $this->
hook(
'LocalUserCreated', $this->never() );
1760 $ret = $this->manager->continueAccountCreation( [] );
1762 $this->
unhook(
'LocalUserCreated' );
1764 $this->assertSame(
'usernameinprogress',
$ret->message->getKey() );
1768 $session, $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1771 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1772 [
'username' => $creator->getName() ] + $session );
1774 $this->
hook(
'LocalUserCreated', $this->never() );
1775 $ret = $this->manager->continueAccountCreation( [] );
1776 $this->
unhook(
'LocalUserCreated' );
1778 $this->assertSame(
'readonlytext',
$ret->message->getKey() );
1779 $this->assertSame( [
'Because' ],
$ret->message->getParams() );
1782 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1783 [
'username' => $creator->getName() ] + $session );
1784 $this->
hook(
'LocalUserCreated', $this->never() );
1785 $ret = $this->manager->continueAccountCreation( [] );
1786 $this->
unhook(
'LocalUserCreated' );
1788 $this->assertSame(
'userexists',
$ret->message->getKey() );
1790 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1793 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1794 [
'userid' => $creator->getId() ] + $session );
1795 $this->
hook(
'LocalUserCreated', $this->never() );
1797 $ret = $this->manager->continueAccountCreation( [] );
1798 $this->fail(
'Expected exception not thrown' );
1800 $this->assertEquals(
"User \"{$username}\" should exist now, but doesn't!", $ex->getMessage() );
1802 $this->
unhook(
'LocalUserCreated' );
1804 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1807 $id = $creator->getId();
1808 $name = $creator->getName();
1809 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1810 [
'username' =>
$name,
'userid' => $id + 1 ] + $session );
1811 $this->
hook(
'LocalUserCreated', $this->never() );
1813 $ret = $this->manager->continueAccountCreation( [] );
1814 $this->fail(
'Expected exception not thrown' );
1816 $this->assertEquals(
1817 "User \"{$name}\" exists, but ID $id != " . ( $id + 1 ) .
'!', $ex->getMessage()
1820 $this->
unhook(
'LocalUserCreated' );
1822 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1826 ->setMethods( [
'populateUser' ] )
1828 $req->expects( $this->any() )->method(
'populateUser' )
1830 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState',
1831 [
'reqs' => [ $req ] ] + $session );
1832 $ret = $this->manager->continueAccountCreation( [] );
1834 $this->assertSame(
'populatefail',
$ret->message->getKey() );
1836 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' )
1850 StatusValue $preTest, $primaryTest, $secondaryTest,
1851 array $primaryResponses,
array $secondaryResponses,
array $managerResponses
1854 $username = self::usernameForCreation();
1860 $req->preTest = $preTest;
1861 $req->primaryTest = $primaryTest;
1862 $req->secondaryTest = $secondaryTest;
1863 $req->primary = $primaryResponses;
1864 $req->secondary = $secondaryResponses;
1866 foreach ( [
'pre',
'primary',
'secondary' ]
as $key ) {
1867 $class = ucfirst( $key ) .
'AuthenticationProvider';
1868 $mocks[
$key] = $this->getMockForAbstractClass(
1869 "MediaWiki\\Auth\\$class", [],
"Mock$class"
1871 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
1872 ->will( $this->returnValue( $key ) );
1873 $mocks[
$key]->expects( $this->any() )->method(
'testUserForCreation' )
1875 $mocks[
$key]->expects( $this->any() )->method(
'testForAccountCreation' )
1876 ->will( $this->returnCallback(
1877 function (
$user, $creatorIn, $reqs )
1881 $this->assertSame( $creator->getId(), $creatorIn->getId() );
1882 $this->assertSame( $creator->getName(), $creatorIn->getName() );
1884 foreach ( $reqs
as $r ) {
1885 $this->assertSame(
$username, $r->username );
1886 $foundReq = $foundReq || get_class( $r ) === get_class(
$req );
1888 $this->assertTrue( $foundReq,
'$reqs contains $req' );
1894 for ( $i = 2; $i <= 3; $i++ ) {
1895 $mocks[$key . $i] = $this->getMockForAbstractClass(
1896 "MediaWiki\\Auth\\$class", [],
"Mock$class"
1898 $mocks[$key . $i]->expects( $this->any() )->method(
'getUniqueId' )
1899 ->will( $this->returnValue( $key . $i ) );
1900 $mocks[$key . $i]->expects( $this->any() )->method(
'testUserForCreation' )
1902 $mocks[$key . $i]->expects( $this->atMost( 1 ) )->method(
'testForAccountCreation' )
1907 $mocks[
'primary']->expects( $this->any() )->method(
'accountCreationType' )
1909 $mocks[
'primary']->expects( $this->any() )->method(
'testUserExists' )
1910 ->will( $this->returnValue(
false ) );
1911 $ct = count(
$req->primary );
1914 $this->assertSame(
'UTSysop', $creator->getName() );
1916 foreach ( $reqs
as $r ) {
1917 $this->assertSame(
$username, $r->username );
1918 $foundReq = $foundReq || get_class( $r ) === get_class(
$req );
1920 $this->assertTrue( $foundReq,
'$reqs contains $req' );
1921 return array_shift(
$req->primary );
1923 $mocks[
'primary']->expects( $this->exactly( min( 1, $ct ) ) )
1924 ->method(
'beginPrimaryAccountCreation' )
1925 ->will( $callback );
1926 $mocks[
'primary']->expects( $this->exactly( max( 0, $ct - 1 ) ) )
1927 ->method(
'continuePrimaryAccountCreation' )
1928 ->will( $callback );
1930 $ct = count(
$req->secondary );
1933 $this->assertSame(
'UTSysop', $creator->getName() );
1935 foreach ( $reqs
as $r ) {
1936 $this->assertSame(
$username, $r->username );
1937 $foundReq = $foundReq || get_class( $r ) === get_class(
$req );
1939 $this->assertTrue( $foundReq,
'$reqs contains $req' );
1940 return array_shift(
$req->secondary );
1942 $mocks[
'secondary']->expects( $this->exactly( min( 1, $ct ) ) )
1943 ->method(
'beginSecondaryAccountCreation' )
1944 ->will( $callback );
1945 $mocks[
'secondary']->expects( $this->exactly( max( 0, $ct - 1 ) ) )
1946 ->method(
'continueSecondaryAccountCreation' )
1947 ->will( $callback );
1950 $mocks[
'primary2']->expects( $this->any() )->method(
'accountCreationType' )
1952 $mocks[
'primary2']->expects( $this->any() )->method(
'testUserExists' )
1953 ->will( $this->returnValue(
false ) );
1954 $mocks[
'primary2']->expects( $this->atMost( 1 ) )->method(
'beginPrimaryAccountCreation' )
1955 ->will( $this->returnValue( $abstain ) );
1956 $mocks[
'primary2']->expects( $this->never() )->method(
'continuePrimaryAccountCreation' );
1957 $mocks[
'primary3']->expects( $this->any() )->method(
'accountCreationType' )
1959 $mocks[
'primary3']->expects( $this->any() )->method(
'testUserExists' )
1960 ->will( $this->returnValue(
false ) );
1961 $mocks[
'primary3']->expects( $this->never() )->method(
'beginPrimaryAccountCreation' );
1962 $mocks[
'primary3']->expects( $this->never() )->method(
'continuePrimaryAccountCreation' );
1963 $mocks[
'secondary2']->expects( $this->atMost( 1 ) )
1964 ->method(
'beginSecondaryAccountCreation' )
1965 ->will( $this->returnValue( $abstain ) );
1966 $mocks[
'secondary2']->expects( $this->never() )->method(
'continueSecondaryAccountCreation' );
1967 $mocks[
'secondary3']->expects( $this->atMost( 1 ) )
1968 ->method(
'beginSecondaryAccountCreation' )
1969 ->will( $this->returnValue( $abstain ) );
1970 $mocks[
'secondary3']->expects( $this->never() )->method(
'continueSecondaryAccountCreation' );
1972 $this->preauthMocks = [ $mocks[
'pre'], $mocks[
'pre2'] ];
1973 $this->primaryauthMocks = [ $mocks[
'primary3'], $mocks[
'primary'], $mocks[
'primary2'] ];
1974 $this->secondaryauthMocks = [
1975 $mocks[
'secondary3'], $mocks[
'secondary'], $mocks[
'secondary2']
1978 $this->logger = new \TestLogger(
true,
function ( $message, $level ) {
1979 return $level === LogLevel::DEBUG ? null : $message;
1984 $constraint = \PHPUnit_Framework_Assert::logicalOr(
1988 $providers = array_merge(
1989 $this->preauthMocks, $this->primaryauthMocks, $this->secondaryauthMocks
1991 foreach ( $providers
as $p ) {
1992 $p->postCalled =
false;
1993 $p->expects( $this->atMost( 1 ) )->method(
'postAccountCreation' )
1997 $this->assertInstanceOf(
'User',
$user );
1999 $this->assertSame(
'UTSysop', $creator->getName() );
2001 $this->assertThat(
$response->status, $constraint );
2008 $maxLogId = $dbw->selectField(
'logging',
'MAX(log_id)', [
'log_type' =>
'newusers' ] );
2012 foreach ( $managerResponses
as $i =>
$response ) {
2015 if ( $i ===
'created' ) {
2017 $this->
hook(
'LocalUserCreated', $this->once() )
2022 $this->equalTo(
false )
2024 $expectLog[] = [ LogLevel::INFO,
"Creating user {user} during account creation" ];
2026 $this->
hook(
'LocalUserCreated', $this->never() );
2034 $ret = $this->manager->beginAccountCreation(
2035 $creator, [ $userReq,
$req ],
'http://localhost/'
2038 $ret = $this->manager->continueAccountCreation( [
$req ] );
2041 $this->fail(
'Expected exception not thrown',
"Response $i" );
2047 $this->assertEquals(
$response->getMessage(), $ex->getMessage(),
"Response $i, exception" );
2049 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' ),
2050 "Response $i, exception, session state"
2052 $this->
unhook(
'LocalUserCreated' );
2056 $this->
unhook(
'LocalUserCreated' );
2058 $this->assertSame(
'http://localhost/',
$req->returnToUrl );
2061 $this->assertNotNull(
$ret->loginRequest,
"Response $i, login marker" );
2062 $this->assertContains(
2063 $ret->loginRequest, $this->managerPriv->createdAccountAuthenticationRequests,
2064 "Response $i, login marker"
2069 "MediaWiki\Auth\AuthManager::continueAccountCreation: Account creation succeeded for {user}"
2077 $this->assertNull(
$ret->loginRequest,
"Response $i, login marker" );
2078 $this->assertSame( [], $this->managerPriv->createdAccountAuthenticationRequests,
2079 "Response $i, login marker" );
2082 $this->assertEquals(
$response,
$ret,
"Response $i, response" );
2085 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' ),
2086 "Response $i, session state"
2088 foreach ( $providers
as $p ) {
2089 $this->assertSame(
$response->status, $p->postCalled,
2090 "Response $i, post-auth callback called" );
2093 $this->assertNotNull(
2094 $this->
request->getSession()->getSecret(
'AuthManager::accountCreationState' ),
2095 "Response $i, session state"
2097 foreach (
$ret->neededRequests
as $neededReq ) {
2099 "Response $i, neededRequest action" );
2101 $this->assertEquals(
2102 $ret->neededRequests,
2104 "Response $i, continuation check"
2106 foreach ( $providers
as $p ) {
2107 $this->assertFalse( $p->postCalled,
"Response $i, post-auth callback not called" );
2120 $this->assertSame( $expectLog, $this->logger->getBuffer() );
2124 $dbw->selectField(
'logging',
'MAX(log_id)', [
'log_type' =>
'newusers' ] )
2133 'Pre-creation test fail in pre' => [
2141 'Pre-creation test fail in primary' => [
2149 'Pre-creation test fail in secondary' => [
2157 'Failure in primary' => [
2158 $good, $good, $good,
2165 'All primary abstain' => [
2166 $good, $good, $good,
2175 'Primary UI, then redirect, then fail' => [
2176 $good, $good, $good,
2185 'Primary redirect, then abstain' => [
2186 $good, $good, $good,
2189 [
$req ],
'/foo.html', [
'foo' =>
'bar' ]
2196 new \DomainException(
2197 'MockPrimaryAuthenticationProvider::continuePrimaryAccountCreation() returned ABSTAIN'
2201 'Primary UI, then pass; secondary abstain' => [
2202 $good, $good, $good,
2215 'Primary pass; secondary UI then pass' => [
2216 $good, $good, $good,
2229 'Primary pass; secondary fail' => [
2230 $good, $good, $good,
2238 'created' => new \DomainException(
2239 'MockSecondaryAuthenticationProvider::beginSecondaryAccountCreation() returned FAIL. ' .
2240 'Secondary providers are not allowed to fail account creation, ' .
2241 'that should have been done via testForAccountCreation().'
2255 $username = self::usernameForCreation();
2260 $mock = $this->getMockForAbstractClass(
2261 "MediaWiki\\Auth\\PrimaryAuthenticationProvider", []
2263 $mock->expects( $this->any() )->method(
'getUniqueId' )
2264 ->will( $this->returnValue(
'primary' ) );
2265 $mock->expects( $this->any() )->method(
'testUserForCreation' )
2267 $mock->expects( $this->any() )->method(
'testForAccountCreation' )
2269 $mock->expects( $this->any() )->method(
'accountCreationType' )
2271 $mock->expects( $this->any() )->method(
'testUserExists' )
2272 ->will( $this->returnValue(
false ) );
2273 $mock->expects( $this->any() )->method(
'beginPrimaryAccountCreation' )
2275 $mock->expects( $this->any() )->method(
'finishAccountCreation' )
2276 ->will( $this->returnValue( $logSubtype ) );
2278 $this->primaryauthMocks = [ $mock ];
2280 $this->logger->setCollect(
true );
2282 $this->config->set(
'NewUserLog',
true );
2285 $maxLogId = $dbw->selectField(
'logging',
'MAX(log_id)', [
'log_type' =>
'newusers' ] );
2290 $reasonReq->reason = $this->toString();
2291 $ret = $this->manager->beginAccountCreation(
2292 $creator, [ $userReq, $reasonReq ],
'http://localhost/'
2298 $this->assertNotEquals( 0,
$user->getId(),
'sanity check' );
2299 $this->assertNotEquals( $creator->getId(),
$user->getId(),
'sanity check' );
2302 $rows = iterator_to_array( $dbw->select(
2306 'log_id > ' . (
int)$maxLogId,
2307 'log_type' =>
'newusers'
2313 $this->assertCount( 1, $rows );
2316 $this->assertSame( $logSubtype ?: ( $isAnon ?
'create' :
'create2' ), $entry->getSubtype() );
2318 $isAnon ?
$user->getId() : $creator->getId(),
2319 $entry->getPerformer()->getId()
2322 $isAnon ?
$user->getName() : $creator->getName(),
2323 $entry->getPerformer()->getName()
2325 $this->assertSame(
$user->getUserPage()->getFullText(), $entry->getTarget()->getFullText() );
2326 $this->assertSame( [
'4::userid' =>
$user->getId() ], $entry->getParameters() );
2327 $this->assertSame( $this->toString(), $entry->getComment() );
2335 [
false,
'byemail' ],
2346 $workaroundPHPUnitBug =
false;
2348 $username = self::usernameForCreation();
2352 $wgGroupPermissions[
'*'][
'createaccount'] =
true;
2353 $wgGroupPermissions[
'*'][
'autocreateaccount'] =
false;
2356 $this->
setMwGlobals( [
'wgMainCacheType' => __METHOD__ ] );
2360 foreach ( [
'pre',
'primary',
'secondary' ]
as $key ) {
2361 $class = ucfirst( $key ) .
'AuthenticationProvider';
2362 $mocks[
$key] = $this->getMockForAbstractClass(
2363 "MediaWiki\\Auth\\$class", [],
"Mock$class"
2365 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
2366 ->will( $this->returnValue( $key ) );
2370 $callback = $this->callback(
function (
$user )
use ( &
$username, &$workaroundPHPUnitBug ) {
2374 $mocks[
'pre']->expects( $this->exactly( 12 ) )->method(
'testUserForCreation' )
2376 ->will( $this->onConsecutiveCalls(
2386 $mocks[
'primary']->expects( $this->any() )->method(
'accountCreationType' )
2388 $mocks[
'primary']->expects( $this->any() )->method(
'testUserExists' )
2389 ->will( $this->returnValue(
true ) );
2390 $mocks[
'primary']->expects( $this->exactly( 9 ) )->method(
'testUserForCreation' )
2392 ->will( $this->onConsecutiveCalls(
2400 $mocks[
'primary']->expects( $this->exactly( 3 ) )->method(
'autoCreatedAccount' )
2403 $mocks[
'secondary']->expects( $this->exactly( 8 ) )->method(
'testUserForCreation' )
2405 ->will( $this->onConsecutiveCalls(
2413 $mocks[
'secondary']->expects( $this->exactly( 3 ) )->method(
'autoCreatedAccount' )
2416 $this->preauthMocks = [ $mocks[
'pre'] ];
2417 $this->primaryauthMocks = [ $mocks[
'primary'] ];
2418 $this->secondaryauthMocks = [ $mocks[
'secondary'] ];
2420 $session = $this->
request->getSession();
2422 $logger = new \TestLogger(
true,
function ( $m ) {
2423 $m = str_replace(
'MediaWiki\\Auth\\AuthManager::autoCreateUser: ',
'', $m );
2426 $this->manager->setLogger(
$logger );
2430 $this->manager->autoCreateUser(
$user,
'InvalidSource',
true );
2431 $this->fail(
'Expected exception not thrown' );
2433 $this->assertSame(
'Unknown auto-creation source: InvalidSource', $ex->getMessage() );
2439 $this->
hook(
'LocalUserCreated', $this->never() );
2441 $this->
unhook(
'LocalUserCreated' );
2443 $expect->warning(
'userexists' );
2444 $this->assertEquals( $expect,
$ret );
2445 $this->assertNotEquals( 0,
$user->getId() );
2446 $this->assertSame(
'UTSysop',
$user->getName() );
2447 $this->assertEquals(
$user->getId(), $session->getUser()->getId() );
2448 $this->assertSame( [
2449 [ LogLevel::DEBUG,
'{username} already exists locally' ],
2455 $this->
hook(
'LocalUserCreated', $this->never() );
2457 $this->
unhook(
'LocalUserCreated' );
2459 $expect->warning(
'userexists' );
2460 $this->assertEquals( $expect,
$ret );
2461 $this->assertNotEquals( 0,
$user->getId() );
2462 $this->assertSame(
'UTSysop',
$user->getName() );
2463 $this->assertEquals( 0, $session->getUser()->getId() );
2464 $this->assertSame( [
2465 [ LogLevel::DEBUG,
'{username} already exists locally' ],
2473 $this->
hook(
'LocalUserCreated', $this->never() );
2475 $this->
unhook(
'LocalUserCreated' );
2477 $this->assertEquals( 0,
$user->getId() );
2479 $this->assertEquals( 0, $session->getUser()->getId() );
2480 $this->assertSame( [
2481 [ LogLevel::DEBUG,
'denied by wfReadOnly(): {reason}' ],
2488 $session->set(
'AuthManager::AutoCreateBlacklist',
'test' );
2490 $this->
hook(
'LocalUserCreated', $this->never() );
2492 $this->
unhook(
'LocalUserCreated' );
2494 $this->assertEquals( 0,
$user->getId() );
2496 $this->assertEquals( 0, $session->getUser()->getId() );
2497 $this->assertSame( [
2498 [ LogLevel::DEBUG,
'blacklisted in session {sessionid}' ],
2505 $this->
hook(
'LocalUserCreated', $this->never() );
2507 $this->
unhook(
'LocalUserCreated' );
2509 $this->assertEquals( 0,
$user->getId() );
2511 $this->assertEquals( 0, $session->getUser()->getId() );
2512 $this->assertSame( [
2513 [ LogLevel::DEBUG,
'blacklisted in session {sessionid}' ],
2520 $this->
hook(
'LocalUserCreated', $this->never() );
2522 $this->
unhook(
'LocalUserCreated' );
2524 $this->assertEquals( 0,
$user->getId() );
2526 $this->assertEquals( 0, $session->getUser()->getId() );
2527 $this->assertSame( [
2528 [ LogLevel::DEBUG,
'name "{username}" is not creatable' ],
2531 $this->assertSame(
'noname', $session->get(
'AuthManager::AutoCreateBlacklist' ) );
2534 $wgGroupPermissions[
'*'][
'createaccount'] =
false;
2535 $wgGroupPermissions[
'*'][
'autocreateaccount'] =
false;
2538 $this->
hook(
'LocalUserCreated', $this->never() );
2540 $this->
unhook(
'LocalUserCreated' );
2542 $this->assertEquals( 0,
$user->getId() );
2544 $this->assertEquals( 0, $session->getUser()->getId() );
2545 $this->assertSame( [
2546 [ LogLevel::DEBUG,
'IP lacks the ability to create or autocreate accounts' ],
2550 'authmanager-autocreate-noperm', $session->get(
'AuthManager::AutoCreateBlacklist' )
2555 $wgGroupPermissions[
'*'][
'createaccount'] =
false;
2556 $wgGroupPermissions[
'*'][
'autocreateaccount'] =
true;
2559 $this->
hook(
'LocalUserCreated', $this->never() );
2561 $this->
unhook(
'LocalUserCreated' );
2564 $wgGroupPermissions[
'*'][
'createaccount'] =
true;
2565 $wgGroupPermissions[
'*'][
'autocreateaccount'] =
false;
2568 $this->
hook(
'LocalUserCreated', $this->never() );
2570 $this->
unhook(
'LocalUserCreated' );
2577 $this->
hook(
'LocalUserCreated', $this->never() );
2582 $this->
unhook(
'LocalUserCreated' );
2584 $this->assertEquals( 0,
$user->getId() );
2586 $this->assertEquals( 0, $session->getUser()->getId() );
2587 $this->assertSame( [
2588 [ LogLevel::DEBUG,
'Could not acquire account creation lock' ],
2595 $this->
hook(
'LocalUserCreated', $this->never() );
2597 $this->
unhook(
'LocalUserCreated' );
2599 $this->assertEquals( 0,
$user->getId() );
2601 $this->assertEquals( 0, $session->getUser()->getId() );
2602 $this->assertSame( [
2603 [ LogLevel::DEBUG,
'Provider denied creation of {username}: {reason}' ],
2606 $this->assertEquals(
2612 $this->
hook(
'LocalUserCreated', $this->never() );
2614 $this->
unhook(
'LocalUserCreated' );
2616 $this->assertEquals( 0,
$user->getId() );
2618 $this->assertEquals( 0, $session->getUser()->getId() );
2619 $this->assertSame( [
2620 [ LogLevel::DEBUG,
'Provider denied creation of {username}: {reason}' ],
2623 $this->assertEquals(
2629 $this->
hook(
'LocalUserCreated', $this->never() );
2631 $this->
unhook(
'LocalUserCreated' );
2633 $this->assertEquals( 0,
$user->getId() );
2635 $this->assertEquals( 0, $session->getUser()->getId() );
2636 $this->assertSame( [
2637 [ LogLevel::DEBUG,
'Provider denied creation of {username}: {reason}' ],
2640 $this->assertEquals(
2647 $cache->set( $backoffKey,
true );
2650 $this->
hook(
'LocalUserCreated', $this->never() );
2652 $this->
unhook(
'LocalUserCreated' );
2654 $this->assertEquals( 0,
$user->getId() );
2656 $this->assertEquals( 0, $session->getUser()->getId() );
2657 $this->assertSame( [
2658 [ LogLevel::DEBUG,
'{username} denied by prior creation attempt failures' ],
2661 $this->assertSame( null, $session->get(
'AuthManager::AutoCreateBlacklist' ) );
2662 $cache->delete( $backoffKey );
2666 $user = $this->getMock(
'User', [
'addToDatabase' ] );
2667 $user->expects( $this->once() )->method(
'addToDatabase' )
2672 $this->assertEquals( 0,
$user->getId() );
2674 $this->assertEquals( 0, $session->getUser()->getId() );
2675 $this->assertSame( [
2676 [ LogLevel::INFO,
'creating new user ({username}) - from: {from}' ],
2677 [ LogLevel::ERROR,
'{username} failed with message {message}' ],
2680 $this->assertSame( null, $session->get(
'AuthManager::AutoCreateBlacklist' ) );
2685 $this->assertFalse( $cache->get( $backoffKey ),
'sanity check' );
2687 $user = $this->getMock(
'User', [
'addToDatabase' ] );
2688 $user->expects( $this->once() )->method(
'addToDatabase' )
2689 ->will( $this->throwException(
new \
Exception(
'Excepted' ) ) );
2693 $this->fail(
'Expected exception not thrown' );
2695 $this->assertSame(
'Excepted', $ex->getMessage() );
2697 $this->assertEquals( 0,
$user->getId() );
2698 $this->assertEquals( 0, $session->getUser()->getId() );
2699 $this->assertSame( [
2700 [ LogLevel::INFO,
'creating new user ({username}) - from: {from}' ],
2701 [ LogLevel::ERROR,
'{username} failed with exception {exception}' ],
2704 $this->assertSame( null, $session->get(
'AuthManager::AutoCreateBlacklist' ) );
2705 $this->assertNotEquals(
false, $cache->get( $backoffKey ) );
2706 $cache->delete( $backoffKey );
2710 $user = $this->getMock(
'User', [
'addToDatabase' ] );
2711 $user->expects( $this->once() )->method(
'addToDatabase' )
2712 ->will( $this->returnCallback(
function ()
use (
$username ) {
2714 $this->assertTrue(
$status->isOK(),
'sanity check' );
2715 return \Status::newFatal(
'userexists' );
2720 $expect->warning(
'userexists' );
2721 $this->assertEquals( $expect,
$ret );
2722 $this->assertNotEquals( 0,
$user->getId() );
2724 $this->assertEquals(
$user->getId(), $session->getUser()->getId() );
2725 $this->assertSame( [
2726 [ LogLevel::INFO,
'creating new user ({username}) - from: {from}' ],
2727 [ LogLevel::INFO,
'{username} already exists locally (race)' ],
2730 $this->assertSame( null, $session->get(
'AuthManager::AutoCreateBlacklist' ) );
2734 $username = self::usernameForCreation();
2736 $this->
hook(
'AuthPluginAutoCreate', $this->once() )
2737 ->with( $callback );
2739 get_class( $wgHooks[
'AuthPluginAutoCreate'][0] ) .
'::onAuthPluginAutoCreate)' );
2740 $this->
hook(
'LocalUserCreated', $this->once() )
2741 ->with( $callback, $this->equalTo(
true ) );
2743 $this->
unhook(
'LocalUserCreated' );
2744 $this->
unhook(
'AuthPluginAutoCreate' );
2746 $this->assertNotEquals( 0,
$user->getId() );
2748 $this->assertEquals(
$user->getId(), $session->getUser()->getId() );
2749 $this->assertSame( [
2750 [ LogLevel::INFO,
'creating new user ({username}) - from: {from}' ],
2755 $maxLogId = $dbw->selectField(
'logging',
'MAX(log_id)', [
'log_type' =>
'newusers' ] );
2757 $username = self::usernameForCreation();
2759 $this->
hook(
'LocalUserCreated', $this->once() )
2760 ->with( $callback, $this->equalTo(
true ) );
2762 $this->
unhook(
'LocalUserCreated' );
2764 $this->assertNotEquals( 0,
$user->getId() );
2766 $this->assertEquals( 0, $session->getUser()->getId() );
2767 $this->assertSame( [
2768 [ LogLevel::INFO,
'creating new user ({username}) - from: {from}' ],
2773 $dbw->selectField(
'logging',
'MAX(log_id)', [
'log_type' =>
'newusers' ] )
2776 $this->config->set(
'NewUserLog',
true );
2778 $username = self::usernameForCreation();
2785 $rows = iterator_to_array( $dbw->select(
2789 'log_id > ' . (
int)$maxLogId,
2790 'log_type' =>
'newusers'
2796 $this->assertCount( 1, $rows );
2799 $this->assertSame(
'autocreate', $entry->getSubtype() );
2800 $this->assertSame(
$user->getId(), $entry->getPerformer()->getId() );
2801 $this->assertSame(
$user->getName(), $entry->getPerformer()->getName() );
2802 $this->assertSame(
$user->getUserPage()->getFullText(), $entry->getTarget()->getFullText() );
2803 $this->assertSame( [
'4::userid' =>
$user->getId() ], $entry->getParameters() );
2805 $workaroundPHPUnitBug =
true;
2817 $req->expects( $this->any() )->method(
'getUniqueId' )
2818 ->will( $this->returnValue(
$key ) );
2823 $cmpReqs =
function ( $a, $b ) {
2824 $ret = strcmp( get_class( $a ), get_class( $b ) );
2826 $ret = strcmp( $a->key, $b->key );
2834 foreach ( [
'pre',
'primary',
'secondary' ]
as $key ) {
2835 $class = ucfirst( $key ) .
'AuthenticationProvider';
2836 $mocks[
$key] = $this->getMockForAbstractClass(
2837 "MediaWiki\\Auth\\$class", [],
"Mock$class"
2839 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
2840 ->will( $this->returnValue( $key ) );
2841 $mocks[
$key]->expects( $this->any() )->method(
'getAuthenticationRequests' )
2842 ->will( $this->returnCallback(
function (
$action )
use ( $key, $makeReq ) {
2843 return [ $makeReq(
"$key-$action" ), $makeReq(
'generic' ) ];
2845 $mocks[
$key]->expects( $this->any() )->method(
'providerAllowsAuthenticationDataChange' )
2846 ->will( $this->returnValue( $good ) );
2855 $class =
'PrimaryAuthenticationProvider';
2856 $mocks[
"primary-$type"] = $this->getMockForAbstractClass(
2857 "MediaWiki\\Auth\\$class", [],
"Mock$class"
2859 $mocks[
"primary-$type"]->expects( $this->any() )->method(
'getUniqueId' )
2860 ->will( $this->returnValue(
"primary-$type" ) );
2861 $mocks[
"primary-$type"]->expects( $this->any() )->method(
'accountCreationType' )
2862 ->will( $this->returnValue( $type ) );
2863 $mocks[
"primary-$type"]->expects( $this->any() )->method(
'getAuthenticationRequests' )
2864 ->will( $this->returnCallback(
function (
$action )
use ( $type, $makeReq ) {
2865 return [ $makeReq(
"primary-$type-$action" ), $makeReq(
'generic' ) ];
2867 $mocks[
"primary-$type"]->expects( $this->any() )
2868 ->method(
'providerAllowsAuthenticationDataChange' )
2869 ->will( $this->returnValue( $good ) );
2870 $this->primaryauthMocks[] = $mocks[
"primary-$type"];
2873 $mocks[
'primary2'] = $this->getMockForAbstractClass(
2876 $mocks[
'primary2']->expects( $this->any() )->method(
'getUniqueId' )
2877 ->will( $this->returnValue(
'primary2' ) );
2878 $mocks[
'primary2']->expects( $this->any() )->method(
'accountCreationType' )
2880 $mocks[
'primary2']->expects( $this->any() )->method(
'getAuthenticationRequests' )
2881 ->will( $this->returnValue( [] ) );
2882 $mocks[
'primary2']->expects( $this->any() )
2883 ->method(
'providerAllowsAuthenticationDataChange' )
2884 ->will( $this->returnCallback(
function (
$req )
use ( $good ) {
2887 $this->primaryauthMocks[] = $mocks[
'primary2'];
2889 $this->preauthMocks = [ $mocks[
'pre'] ];
2890 $this->secondaryauthMocks = [ $mocks[
'secondary'] ];
2894 if ( isset( $state[
'continueRequests'] ) ) {
2895 $state[
'continueRequests'] = array_map( $makeReq, $state[
'continueRequests'] );
2898 $this->
request->getSession()->setSecret(
'AuthManager::authnState', $state );
2900 $this->
request->getSession()->setSecret(
'AuthManager::accountCreationState', $state );
2902 $this->
request->getSession()->setSecret(
'AuthManager::accountLinkState', $state );
2906 $expectReqs = array_map( $makeReq, $expect );
2911 $expectReqs[] =
$req;
2915 $expectReqs[] =
$req;
2919 $expectReqs[] =
$req;
2921 usort( $expectReqs, $cmpReqs );
2923 $actual = $this->manager->getAuthenticationRequests(
$action );
2924 foreach ( $actual
as $req ) {
2928 usort( $actual, $cmpReqs );
2930 $this->assertEquals( $expectReqs, $actual );
2937 $expectReqs[] =
$req;
2938 usort( $expectReqs, $cmpReqs );
2941 foreach ( $actual
as $req ) {
2945 usort( $actual, $cmpReqs );
2947 $this->assertEquals( $expectReqs, $actual );
2955 [
'pre-login',
'primary-none-login',
'primary-create-login',
2956 'primary-link-login',
'secondary-login',
'generic' ],
2960 [
'pre-create',
'primary-none-create',
'primary-create-create',
2961 'primary-link-create',
'secondary-create',
'generic' ],
2965 [
'primary-link-link',
'generic' ],
2969 [
'primary-none-change',
'primary-create-change',
'primary-link-change',
2970 'secondary-change' ],
2974 [
'primary-none-remove',
'primary-create-remove',
'primary-link-remove',
2975 'secondary-remove' ],
2979 [
'primary-link-remove' ],
2987 $reqs = [
'continue-login',
'foo',
'bar' ],
2989 'continueRequests' => $reqs,
2998 $reqs = [
'continue-create',
'foo',
'bar' ],
3000 'continueRequests' => $reqs,
3009 $reqs = [
'continue-link',
'foo',
'bar' ],
3011 'continueRequests' => $reqs,
3018 $makeReq =
function (
$key, $required ) {
3020 $req->expects( $this->any() )->method(
'getUniqueId' )
3021 ->will( $this->returnValue(
$key ) );
3024 $req->required = $required;
3027 $cmpReqs =
function ( $a, $b ) {
3028 $ret = strcmp( get_class( $a ), get_class( $b ) );
3030 $ret = strcmp( $a->key, $b->key );
3038 $primary1->expects( $this->any() )->method(
'getUniqueId' )
3039 ->will( $this->returnValue(
'primary1' ) );
3040 $primary1->expects( $this->any() )->method(
'accountCreationType' )
3042 $primary1->expects( $this->any() )->method(
'getAuthenticationRequests' )
3043 ->will( $this->returnCallback(
function (
$action )
use ( $makeReq ) {
3055 $primary2->expects( $this->any() )->method(
'getUniqueId' )
3056 ->will( $this->returnValue(
'primary2' ) );
3057 $primary2->expects( $this->any() )->method(
'accountCreationType' )
3059 $primary2->expects( $this->any() )->method(
'getAuthenticationRequests' )
3060 ->will( $this->returnCallback(
function (
$action )
use ( $makeReq ) {
3069 $secondary->expects( $this->any() )->method(
'getUniqueId' )
3070 ->will( $this->returnValue(
'secondary' ) );
3071 $secondary->expects( $this->any() )->method(
'getAuthenticationRequests' )
3072 ->will( $this->returnCallback(
function (
$action )
use ( $makeReq ) {
3083 $this->primaryauthMocks = [ $primary1, $primary2 ];
3084 $this->secondaryauthMocks = [ $secondary ];
3099 usort( $actual, $cmpReqs );
3100 usort( $expected, $cmpReqs );
3101 $this->assertEquals( $expected, $actual );
3103 $this->primaryauthMocks = [ $primary1 ];
3104 $this->secondaryauthMocks = [ $secondary ];
3117 usort( $actual, $cmpReqs );
3118 usort( $expected, $cmpReqs );
3119 $this->assertEquals( $expected, $actual );
3124 foreach ( [
'primary',
'secondary' ]
as $key ) {
3125 $class = ucfirst( $key ) .
'AuthenticationProvider';
3126 $mocks[
$key] = $this->getMockForAbstractClass(
3127 "MediaWiki\\Auth\\$class", [],
"Mock$class"
3129 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
3130 ->will( $this->returnValue( $key ) );
3131 $mocks[
$key]->expects( $this->any() )->method(
'providerAllowsPropertyChange' )
3132 ->will( $this->returnCallback(
function ( $prop )
use ( $key ) {
3133 return $prop !==
$key;
3137 $this->primaryauthMocks = [ $mocks[
'primary'] ];
3138 $this->secondaryauthMocks = [ $mocks[
'secondary'] ];
3141 $this->assertTrue( $this->manager->allowsPropertyChange(
'foo' ) );
3142 $this->assertFalse( $this->manager->allowsPropertyChange(
'primary' ) );
3143 $this->assertFalse( $this->manager->allowsPropertyChange(
'secondary' ) );
3147 $username = self::usernameForCreation();
3152 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'primary' ) );
3153 $mock->expects( $this->any() )->method(
'beginPrimaryAuthentication' )
3155 $mock->expects( $this->any() )->method(
'accountCreationType' )
3157 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
true ) );
3158 $mock->expects( $this->any() )->method(
'testUserForCreation' )
3162 $mock2->expects( $this->any() )->method(
'getUniqueId' )
3163 ->will( $this->returnValue(
'secondary' ) );
3164 $mock2->expects( $this->any() )->method(
'beginSecondaryAuthentication' )->will(
3169 $mock2->expects( $this->any() )->method(
'continueSecondaryAuthentication' )
3171 $mock2->expects( $this->any() )->method(
'testUserForCreation' )
3174 $this->primaryauthMocks = [ $mock ];
3175 $this->secondaryauthMocks = [ $mock2 ];
3177 $this->manager->setLogger(
new \Psr\Log\NullLogger() );
3178 $session = $this->
request->getSession();
3188 $this->
hook(
'UserLoggedIn', $this->never() );
3189 $this->
hook(
'LocalUserCreated', $this->once() )->with( $callback, $this->equalTo(
true ) );
3190 $ret = $this->manager->beginAuthentication( [],
'http://localhost/' );
3191 $this->
unhook(
'LocalUserCreated' );
3192 $this->
unhook(
'UserLoggedIn' );
3197 $this->assertSame( 0, $session->getUser()->getId() );
3199 $this->
hook(
'UserLoggedIn', $this->once() )->with( $callback );
3200 $this->
hook(
'LocalUserCreated', $this->never() );
3201 $ret = $this->manager->continueAuthentication( [] );
3202 $this->
unhook(
'LocalUserCreated' );
3203 $this->
unhook(
'UserLoggedIn' );
3206 $this->assertSame( $id, $session->getUser()->getId() );
3210 $username = self::usernameForCreation();
3212 $mock = $this->getMockForAbstractClass(
3214 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'primary' ) );
3215 $mock->expects( $this->any() )->method(
'beginPrimaryAuthentication' )
3217 $mock->expects( $this->any() )->method(
'accountCreationType' )
3219 $mock->expects( $this->any() )->method(
'testUserExists' )->will( $this->returnValue(
true ) );
3220 $mock->expects( $this->any() )->method(
'testUserForCreation' )
3223 $this->primaryauthMocks = [ $mock ];
3225 $this->manager->setLogger(
new \Psr\Log\NullLogger() );
3226 $session = $this->
request->getSession();
3229 $this->assertSame( 0, $session->getUser()->getId(),
3234 $this->
hook(
'UserLoggedIn', $this->never() );
3235 $this->
hook(
'LocalUserCreated', $this->never() );
3236 $ret = $this->manager->beginAuthentication( [],
'http://localhost/' );
3237 $this->
unhook(
'LocalUserCreated' );
3238 $this->
unhook(
'UserLoggedIn' );
3240 $this->assertSame(
'authmanager-authn-autocreate-failed',
$ret->message->getKey() );
3243 $this->assertSame( 0, $session->getUser()->getId() );
3249 $this->assertNull( $this->manager->getAuthenticationSessionData(
'foo' ) );
3250 $this->manager->setAuthenticationSessionData(
'foo',
'foo!' );
3251 $this->manager->setAuthenticationSessionData(
'bar',
'bar!' );
3252 $this->assertSame(
'foo!', $this->manager->getAuthenticationSessionData(
'foo' ) );
3253 $this->assertSame(
'bar!', $this->manager->getAuthenticationSessionData(
'bar' ) );
3254 $this->manager->removeAuthenticationSessionData(
'foo' );
3255 $this->assertNull( $this->manager->getAuthenticationSessionData(
'foo' ) );
3256 $this->assertSame(
'bar!', $this->manager->getAuthenticationSessionData(
'bar' ) );
3257 $this->manager->removeAuthenticationSessionData(
'bar' );
3258 $this->assertNull( $this->manager->getAuthenticationSessionData(
'bar' ) );
3260 $this->manager->setAuthenticationSessionData(
'foo',
'foo!' );
3261 $this->manager->setAuthenticationSessionData(
'bar',
'bar!' );
3262 $this->manager->removeAuthenticationSessionData( null );
3263 $this->assertNull( $this->manager->getAuthenticationSessionData(
'foo' ) );
3264 $this->assertNull( $this->manager->getAuthenticationSessionData(
'bar' ) );
3275 foreach ( $types
as $type => $can ) {
3277 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
$type ) );
3278 $mock->expects( $this->any() )->method(
'accountCreationType' )
3279 ->will( $this->returnValue(
$type ) );
3280 $this->primaryauthMocks = [ $mock ];
3282 $this->assertSame( $can, $this->manager->canCreateAccounts(),
$type );
3290 $this->
request->getSession()->setSecret(
'AuthManager::accountLinkState',
'test' );
3292 $this->manager->beginAccountLink(
$user, [],
'http://localhost/' );
3293 $this->fail(
'Expected exception not thrown' );
3295 $this->assertEquals(
'Account linking is not possible', $ex->getMessage() );
3297 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ) );
3300 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
3301 $mock->expects( $this->any() )->method(
'accountCreationType' )
3303 $this->primaryauthMocks = [ $mock ];
3306 $ret = $this->manager->beginAccountLink(
new \
User, [],
'http://localhost/' );
3308 $this->assertSame(
'noname',
$ret->message->getKey() );
3310 $ret = $this->manager->beginAccountLink(
3314 $this->assertSame(
'authmanager-userdoesnotexist', $ret->message->getKey() );
3322 'userid' =>
$user->getId(),
3323 'username' =>
$user->getName(),
3328 $this->manager->continueAccountLink( [] );
3329 $this->fail(
'Expected exception not thrown' );
3331 $this->assertEquals(
'Account linking is not possible', $ex->getMessage() );
3335 $mock->expects( $this->any() )->method(
'getUniqueId' )->will( $this->returnValue(
'X' ) );
3336 $mock->expects( $this->any() )->method(
'accountCreationType' )
3338 $mock->expects( $this->any() )->method(
'beginPrimaryAccountLink' )->will(
3341 $this->primaryauthMocks = [ $mock ];
3344 $this->
request->getSession()->setSecret(
'AuthManager::accountLinkState', null );
3345 $ret = $this->manager->continueAccountLink( [] );
3347 $this->assertSame(
'authmanager-link-not-in-progress',
$ret->message->getKey() );
3349 $this->
request->getSession()->setSecret(
'AuthManager::accountLinkState',
3350 [
'username' =>
$user->getName() .
'<>' ] + $session );
3351 $ret = $this->manager->continueAccountLink( [] );
3353 $this->assertSame(
'noname',
$ret->message->getKey() );
3354 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ) );
3356 $id =
$user->getId();
3357 $this->
request->getSession()->setSecret(
'AuthManager::accountLinkState',
3358 [
'userid' => $id + 1 ] + $session );
3360 $ret = $this->manager->continueAccountLink( [] );
3361 $this->fail(
'Expected exception not thrown' );
3363 $this->assertEquals(
3364 "User \"{$user->getName()}\" is valid, but ID $id != " . ( $id + 1 ) .
'!',
3368 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ) );
3386 $req->primary = $primaryResponses;
3389 foreach ( [
'pre',
'primary' ]
as $key ) {
3390 $class = ucfirst( $key ) .
'AuthenticationProvider';
3391 $mocks[
$key] = $this->getMockForAbstractClass(
3392 "MediaWiki\\Auth\\$class", [],
"Mock$class"
3394 $mocks[
$key]->expects( $this->any() )->method(
'getUniqueId' )
3395 ->will( $this->returnValue( $key ) );
3397 for ( $i = 2; $i <= 3; $i++ ) {
3398 $mocks[$key . $i] = $this->getMockForAbstractClass(
3399 "MediaWiki\\Auth\\$class", [],
"Mock$class"
3401 $mocks[$key . $i]->expects( $this->any() )->method(
'getUniqueId' )
3402 ->will( $this->returnValue( $key . $i ) );
3406 $mocks[
'pre']->expects( $this->any() )->method(
'testForAccountLink' )
3407 ->will( $this->returnCallback(
3411 $this->assertSame(
$user->getId(), $u->getId() );
3412 $this->assertSame(
$user->getName(), $u->getName() );
3417 $mocks[
'pre2']->expects( $this->atMost( 1 ) )->method(
'testForAccountLink' )
3420 $mocks[
'primary']->expects( $this->any() )->method(
'accountCreationType' )
3422 $ct = count(
$req->primary );
3423 $callback = $this->returnCallback(
function ( $u, $reqs )
use (
$user,
$req ) {
3424 $this->assertSame(
$user->getId(), $u->getId() );
3425 $this->assertSame(
$user->getName(), $u->getName() );
3427 foreach ( $reqs
as $r ) {
3428 $this->assertSame(
$user->getName(), $r->username );
3429 $foundReq = $foundReq || get_class( $r ) === get_class(
$req );
3431 $this->assertTrue( $foundReq,
'$reqs contains $req' );
3432 return array_shift(
$req->primary );
3434 $mocks[
'primary']->expects( $this->exactly( min( 1, $ct ) ) )
3435 ->method(
'beginPrimaryAccountLink' )
3436 ->will( $callback );
3437 $mocks[
'primary']->expects( $this->exactly( max( 0, $ct - 1 ) ) )
3438 ->method(
'continuePrimaryAccountLink' )
3439 ->will( $callback );
3442 $mocks[
'primary2']->expects( $this->any() )->method(
'accountCreationType' )
3444 $mocks[
'primary2']->expects( $this->atMost( 1 ) )->method(
'beginPrimaryAccountLink' )
3445 ->will( $this->returnValue( $abstain ) );
3446 $mocks[
'primary2']->expects( $this->never() )->method(
'continuePrimaryAccountLink' );
3447 $mocks[
'primary3']->expects( $this->any() )->method(
'accountCreationType' )
3449 $mocks[
'primary3']->expects( $this->never() )->method(
'beginPrimaryAccountLink' );
3450 $mocks[
'primary3']->expects( $this->never() )->method(
'continuePrimaryAccountLink' );
3452 $this->preauthMocks = [ $mocks[
'pre'], $mocks[
'pre2'] ];
3453 $this->primaryauthMocks = [ $mocks[
'primary3'], $mocks[
'primary2'], $mocks[
'primary'] ];
3454 $this->logger = new \TestLogger(
true,
function ( $message, $level ) {
3455 return $level === LogLevel::DEBUG ? null : $message;
3459 $constraint = \PHPUnit_Framework_Assert::logicalOr(
3463 $providers = array_merge( $this->preauthMocks, $this->primaryauthMocks );
3464 foreach ( $providers
as $p ) {
3465 $p->postCalled =
false;
3466 $p->expects( $this->atMost( 1 ) )->method(
'postAccountLink' )
3468 $this->assertInstanceOf(
'User',
$user );
3469 $this->assertSame(
'UTSysop',
$user->getName() );
3471 $this->assertThat(
$response->status, $constraint );
3479 foreach ( $managerResponses
as $i =>
$response ) {
3483 $expectLog[] = [ LogLevel::INFO,
'Account linked to {user} by primary' ];
3489 $ret = $this->manager->beginAccountLink(
$user, [
$req ],
'http://localhost/' );
3491 $ret = $this->manager->continueAccountLink( [
$req ] );
3494 $this->fail(
'Expected exception not thrown',
"Response $i" );
3500 $this->assertEquals(
$response->getMessage(), $ex->getMessage(),
"Response $i, exception" );
3501 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ),
3502 "Response $i, exception, session state" );
3506 $this->assertSame(
'http://localhost/',
$req->returnToUrl );
3509 $this->assertEquals(
$response,
$ret,
"Response $i, response" );
3513 $this->assertNull( $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ),
3514 "Response $i, session state" );
3515 foreach ( $providers
as $p ) {
3516 $this->assertSame(
$response->status, $p->postCalled,
3517 "Response $i, post-auth callback called" );
3520 $this->assertNotNull(
3521 $this->
request->getSession()->getSecret(
'AuthManager::accountLinkState' ),
3522 "Response $i, session state"
3524 foreach (
$ret->neededRequests
as $neededReq ) {
3526 "Response $i, neededRequest action" );
3528 $this->assertEquals(
3529 $ret->neededRequests,
3531 "Response $i, continuation check"
3533 foreach ( $providers
as $p ) {
3534 $this->assertFalse( $p->postCalled,
"Response $i, post-auth callback not called" );
3541 $this->assertSame( $expectLog, $this->logger->getBuffer() );
3549 'Pre-link test fail in pre' => [
3556 'Failure in primary' => [
3563 'All primary abstain' => [
3572 'Primary UI, then redirect, then fail' => [
3581 'Primary redirect, then abstain' => [
3585 [
$req ],
'/foo.html', [
'foo' =>
'bar' ]
3591 new \DomainException(
3592 'MockPrimaryAuthenticationProvider::continuePrimaryAccountLink() returned ABSTAIN'
3596 'Primary UI, then pass' => [
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
the array() calling protocol came about after MediaWiki 1.4rc1.
static wrap($sv)
Succinct helper method to wrap a StatusValue.
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static newFatal($message)
Factory function for fatal errors.
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 & $ret
processing should stop and the error should be shown to the user * false
static getLocalClusterInstance()
Get the main cluster-local cache object.
$wgHooks['ArticleShow'][]
this hook is for auditing only $response
when a variable name is used in a it is silently declared as a new local masking the global
static newFatal($message)
Factory function for fatal errors.
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break anything
see documentation in includes Linker php for Linker::makeImageLink & $time
get($name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
static BagOStuff[] $instances
Map of (id => BagOStuff)
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
static setPasswordForUser(User $user, $password)
Set the password on a testing user.
static getMain()
Static methods.
static newFromTarget($specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing 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 unsetoffset-wrap String Wrap the message in html(usually something like"<
static newGood($value=null)
Factory function for good results.
getLanguage()
Get the Language object.
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
static getSelectQueryData()
Returns array of information that is needed for querying log entries.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $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
this hook is for auditing only $req
this hook is for auditing only or null if authentication failed before getting that far $username
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
static idFromName($name, $flags=self::READ_NORMAL)
Get database id given a user name.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
static newFromRow($row)
Constructs new LogEntry from database result row.
static consume(ScopedCallback &$sc=null)
Trigger a scoped callback and destroy it.
wfMemcKey()
Make a cache key for the local wiki.
</td >< td > &</td >< td > t want your writing to be edited mercilessly and redistributed at will
static newFromObject($object)
Return the same object, without access restrictions.
this hook is for auditing only etc instead of letting the login form give the generic error message that the account does not exist For when the account has been renamed or deleted or an array to pass a message key and parameters create2 Corresponds to logging log_action database field and which is displayed in the UI similar to $comment this hook should only be used to add variables that depend on the current page request
static factory($code)
Get a cached or new language object for a given language code.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
static newGood($value=null)
Factory function for good results.
Allows to change the fields on the form that will be generated $name