Merge "Fix \n handling for HTMLUsersMultiselectField"
[lhc/web/wiklou.git] / tests / phpunit / includes / auth / LocalPasswordPrimaryAuthenticationProviderTest.php
1 <?php
2
3 namespace MediaWiki\Auth;
4
5 use MediaWiki\MediaWikiServices;
6 use Wikimedia\TestingAccessWrapper;
7
8 /**
9 * @group AuthManager
10 * @group Database
11 * @covers MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider
12 */
13 class LocalPasswordPrimaryAuthenticationProviderTest extends \MediaWikiTestCase {
14
15 private $manager = null;
16 private $config = null;
17 private $validity = null;
18
19 /**
20 * Get an instance of the provider
21 *
22 * $provider->checkPasswordValidity is mocked to return $this->validity,
23 * because we don't need to test that here.
24 *
25 * @param bool $loginOnly
26 * @return LocalPasswordPrimaryAuthenticationProvider
27 */
28 protected function getProvider( $loginOnly = false ) {
29 if ( !$this->config ) {
30 $this->config = new \HashConfig();
31 }
32 $config = new \MultiConfig( [
33 $this->config,
34 MediaWikiServices::getInstance()->getMainConfig()
35 ] );
36
37 if ( !$this->manager ) {
38 $this->manager = new AuthManager( new \FauxRequest(), $config );
39 }
40 $this->validity = \Status::newGood();
41
42 $provider = $this->getMockBuilder( LocalPasswordPrimaryAuthenticationProvider::class )
43 ->setMethods( [ 'checkPasswordValidity' ] )
44 ->setConstructorArgs( [ [ 'loginOnly' => $loginOnly ] ] )
45 ->getMock();
46 $provider->expects( $this->any() )->method( 'checkPasswordValidity' )
47 ->will( $this->returnCallback( function () {
48 return $this->validity;
49 } ) );
50 $provider->setConfig( $config );
51 $provider->setLogger( new \Psr\Log\NullLogger() );
52 $provider->setManager( $this->manager );
53
54 return $provider;
55 }
56
57 public function testBasics() {
58 $user = $this->getMutableTestUser()->getUser();
59 $userName = $user->getName();
60 $lowerInitialUserName = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
61
62 $provider = new LocalPasswordPrimaryAuthenticationProvider();
63
64 $this->assertSame(
65 PrimaryAuthenticationProvider::TYPE_CREATE,
66 $provider->accountCreationType()
67 );
68
69 $this->assertTrue( $provider->testUserExists( $userName ) );
70 $this->assertTrue( $provider->testUserExists( $lowerInitialUserName ) );
71 $this->assertFalse( $provider->testUserExists( 'DoesNotExist' ) );
72 $this->assertFalse( $provider->testUserExists( '<invalid>' ) );
73
74 $provider = new LocalPasswordPrimaryAuthenticationProvider( [ 'loginOnly' => true ] );
75
76 $this->assertSame(
77 PrimaryAuthenticationProvider::TYPE_NONE,
78 $provider->accountCreationType()
79 );
80
81 $this->assertTrue( $provider->testUserExists( $userName ) );
82 $this->assertFalse( $provider->testUserExists( 'DoesNotExist' ) );
83
84 $req = new PasswordAuthenticationRequest;
85 $req->action = AuthManager::ACTION_CHANGE;
86 $req->username = '<invalid>';
87 $provider->providerChangeAuthenticationData( $req );
88 }
89
90 public function testTestUserCanAuthenticate() {
91 $user = $this->getMutableTestUser()->getUser();
92 $userName = $user->getName();
93 $dbw = wfGetDB( DB_MASTER );
94
95 $provider = $this->getProvider();
96
97 $this->assertFalse( $provider->testUserCanAuthenticate( '<invalid>' ) );
98
99 $this->assertFalse( $provider->testUserCanAuthenticate( 'DoesNotExist' ) );
100
101 $this->assertTrue( $provider->testUserCanAuthenticate( $userName ) );
102 $lowerInitialUserName = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
103 $this->assertTrue( $provider->testUserCanAuthenticate( $lowerInitialUserName ) );
104
105 $dbw->update(
106 'user',
107 [ 'user_password' => \PasswordFactory::newInvalidPassword()->toString() ],
108 [ 'user_name' => $userName ]
109 );
110 $this->assertFalse( $provider->testUserCanAuthenticate( $userName ) );
111
112 // Really old format
113 $dbw->update(
114 'user',
115 [ 'user_password' => '0123456789abcdef0123456789abcdef' ],
116 [ 'user_name' => $userName ]
117 );
118 $this->assertTrue( $provider->testUserCanAuthenticate( $userName ) );
119 }
120
121 public function testSetPasswordResetFlag() {
122 // Set instance vars
123 $this->getProvider();
124
125 /// @todo: Because we're currently using User, which uses the global config...
126 $this->setMwGlobals( [ 'wgPasswordExpireGrace' => 100 ] );
127
128 $this->config->set( 'PasswordExpireGrace', 100 );
129 $this->config->set( 'InvalidPasswordReset', true );
130
131 $provider = new LocalPasswordPrimaryAuthenticationProvider();
132 $provider->setConfig( $this->config );
133 $provider->setLogger( new \Psr\Log\NullLogger() );
134 $provider->setManager( $this->manager );
135 $providerPriv = TestingAccessWrapper::newFromObject( $provider );
136
137 $user = $this->getMutableTestUser()->getUser();
138 $userName = $user->getName();
139 $dbw = wfGetDB( DB_MASTER );
140 $row = $dbw->selectRow(
141 'user',
142 '*',
143 [ 'user_name' => $userName ],
144 __METHOD__
145 );
146
147 $this->manager->removeAuthenticationSessionData( null );
148 $row->user_password_expires = wfTimestamp( TS_MW, time() + 200 );
149 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
150 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
151
152 $this->manager->removeAuthenticationSessionData( null );
153 $row->user_password_expires = wfTimestamp( TS_MW, time() - 200 );
154 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
155 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
156 $this->assertNotNull( $ret );
157 $this->assertSame( 'resetpass-expired', $ret->msg->getKey() );
158 $this->assertTrue( $ret->hard );
159
160 $this->manager->removeAuthenticationSessionData( null );
161 $row->user_password_expires = wfTimestamp( TS_MW, time() - 1 );
162 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
163 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
164 $this->assertNotNull( $ret );
165 $this->assertSame( 'resetpass-expired-soft', $ret->msg->getKey() );
166 $this->assertFalse( $ret->hard );
167
168 $this->manager->removeAuthenticationSessionData( null );
169 $row->user_password_expires = null;
170 $status = \Status::newGood();
171 $status->error( 'testing' );
172 $providerPriv->setPasswordResetFlag( $userName, $status, $row );
173 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
174 $this->assertNotNull( $ret );
175 $this->assertSame( 'resetpass-validity-soft', $ret->msg->getKey() );
176 $this->assertFalse( $ret->hard );
177 }
178
179 public function testAuthentication() {
180 $testUser = $this->getMutableTestUser();
181 $userName = $testUser->getUser()->getName();
182
183 $dbw = wfGetDB( DB_MASTER );
184 $id = \User::idFromName( $userName );
185
186 $req = new PasswordAuthenticationRequest();
187 $req->action = AuthManager::ACTION_LOGIN;
188 $reqs = [ PasswordAuthenticationRequest::class => $req ];
189
190 $provider = $this->getProvider();
191
192 // General failures
193 $this->assertEquals(
194 AuthenticationResponse::newAbstain(),
195 $provider->beginPrimaryAuthentication( [] )
196 );
197
198 $req->username = 'foo';
199 $req->password = null;
200 $this->assertEquals(
201 AuthenticationResponse::newAbstain(),
202 $provider->beginPrimaryAuthentication( $reqs )
203 );
204
205 $req->username = null;
206 $req->password = 'bar';
207 $this->assertEquals(
208 AuthenticationResponse::newAbstain(),
209 $provider->beginPrimaryAuthentication( $reqs )
210 );
211
212 $req->username = '<invalid>';
213 $req->password = 'WhoCares';
214 $ret = $provider->beginPrimaryAuthentication( $reqs );
215 $this->assertEquals(
216 AuthenticationResponse::newAbstain(),
217 $provider->beginPrimaryAuthentication( $reqs )
218 );
219
220 $req->username = 'DoesNotExist';
221 $req->password = 'DoesNotExist';
222 $ret = $provider->beginPrimaryAuthentication( $reqs );
223 $this->assertEquals(
224 AuthenticationResponse::newAbstain(),
225 $provider->beginPrimaryAuthentication( $reqs )
226 );
227
228 // Validation failure
229 $req->username = $userName;
230 $req->password = $testUser->getPassword();
231 $this->validity = \Status::newFatal( 'arbitrary-failure' );
232 $ret = $provider->beginPrimaryAuthentication( $reqs );
233 $this->assertEquals(
234 AuthenticationResponse::FAIL,
235 $ret->status
236 );
237 $this->assertEquals(
238 'arbitrary-failure',
239 $ret->message->getKey()
240 );
241
242 // Successful auth
243 $this->manager->removeAuthenticationSessionData( null );
244 $this->validity = \Status::newGood();
245 $this->assertEquals(
246 AuthenticationResponse::newPass( $userName ),
247 $provider->beginPrimaryAuthentication( $reqs )
248 );
249 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
250
251 // Successful auth after normalizing name
252 $this->manager->removeAuthenticationSessionData( null );
253 $this->validity = \Status::newGood();
254 $req->username = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
255 $this->assertEquals(
256 AuthenticationResponse::newPass( $userName ),
257 $provider->beginPrimaryAuthentication( $reqs )
258 );
259 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
260 $req->username = $userName;
261
262 // Successful auth with reset
263 $this->manager->removeAuthenticationSessionData( null );
264 $this->validity->error( 'arbitrary-warning' );
265 $this->assertEquals(
266 AuthenticationResponse::newPass( $userName ),
267 $provider->beginPrimaryAuthentication( $reqs )
268 );
269 $this->assertNotNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
270
271 // Wrong password
272 $this->validity = \Status::newGood();
273 $req->password = 'Wrong';
274 $ret = $provider->beginPrimaryAuthentication( $reqs );
275 $this->assertEquals(
276 AuthenticationResponse::FAIL,
277 $ret->status
278 );
279 $this->assertEquals(
280 'wrongpassword',
281 $ret->message->getKey()
282 );
283
284 // Correct handling of legacy encodings
285 $password = ':B:salt:' . md5( 'salt-' . md5( "\xe1\xe9\xed\xf3\xfa" ) );
286 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
287 $req->password = 'áéíóú';
288 $ret = $provider->beginPrimaryAuthentication( $reqs );
289 $this->assertEquals(
290 AuthenticationResponse::FAIL,
291 $ret->status
292 );
293 $this->assertEquals(
294 'wrongpassword',
295 $ret->message->getKey()
296 );
297
298 $this->config->set( 'LegacyEncoding', true );
299 $this->assertEquals(
300 AuthenticationResponse::newPass( $userName ),
301 $provider->beginPrimaryAuthentication( $reqs )
302 );
303
304 $req->password = 'áéíóú Wrong';
305 $ret = $provider->beginPrimaryAuthentication( $reqs );
306 $this->assertEquals(
307 AuthenticationResponse::FAIL,
308 $ret->status
309 );
310 $this->assertEquals(
311 'wrongpassword',
312 $ret->message->getKey()
313 );
314
315 // Correct handling of really old password hashes
316 $this->config->set( 'PasswordSalt', false );
317 $password = md5( 'FooBar' );
318 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
319 $req->password = 'FooBar';
320 $this->assertEquals(
321 AuthenticationResponse::newPass( $userName ),
322 $provider->beginPrimaryAuthentication( $reqs )
323 );
324
325 $this->config->set( 'PasswordSalt', true );
326 $password = md5( "$id-" . md5( 'FooBar' ) );
327 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
328 $req->password = 'FooBar';
329 $this->assertEquals(
330 AuthenticationResponse::newPass( $userName ),
331 $provider->beginPrimaryAuthentication( $reqs )
332 );
333 }
334
335 /**
336 * @dataProvider provideProviderAllowsAuthenticationDataChange
337 * @param string $type
338 * @param string $user
339 * @param \Status $validity Result of the password validity check
340 * @param \StatusValue $expect1 Expected result with $checkData = false
341 * @param \StatusValue $expect2 Expected result with $checkData = true
342 */
343 public function testProviderAllowsAuthenticationDataChange( $type, $user, \Status $validity,
344 \StatusValue $expect1, \StatusValue $expect2
345 ) {
346 if ( $type === PasswordAuthenticationRequest::class ) {
347 $req = new $type();
348 } elseif ( $type === PasswordDomainAuthenticationRequest::class ) {
349 $req = new $type( [] );
350 } else {
351 $req = $this->createMock( $type );
352 }
353 $req->action = AuthManager::ACTION_CHANGE;
354 $req->username = $user;
355 $req->password = 'NewPassword';
356 $req->retype = 'NewPassword';
357
358 $provider = $this->getProvider();
359 $this->validity = $validity;
360 $this->assertEquals( $expect1, $provider->providerAllowsAuthenticationDataChange( $req, false ) );
361 $this->assertEquals( $expect2, $provider->providerAllowsAuthenticationDataChange( $req, true ) );
362
363 $req->retype = 'BadRetype';
364 $this->assertEquals(
365 $expect1,
366 $provider->providerAllowsAuthenticationDataChange( $req, false )
367 );
368 $this->assertEquals(
369 $expect2->getValue() === 'ignored' ? $expect2 : \StatusValue::newFatal( 'badretype' ),
370 $provider->providerAllowsAuthenticationDataChange( $req, true )
371 );
372
373 $provider = $this->getProvider( true );
374 $this->assertEquals(
375 \StatusValue::newGood( 'ignored' ),
376 $provider->providerAllowsAuthenticationDataChange( $req, true ),
377 'loginOnly mode should claim to ignore all changes'
378 );
379 }
380
381 public static function provideProviderAllowsAuthenticationDataChange() {
382 $err = \StatusValue::newGood();
383 $err->error( 'arbitrary-warning' );
384
385 return [
386 [ AuthenticationRequest::class, 'UTSysop', \Status::newGood(),
387 \StatusValue::newGood( 'ignored' ), \StatusValue::newGood( 'ignored' ) ],
388 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::newGood(),
389 \StatusValue::newGood(), \StatusValue::newGood() ],
390 [ PasswordAuthenticationRequest::class, 'uTSysop', \Status::newGood(),
391 \StatusValue::newGood(), \StatusValue::newGood() ],
392 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::wrap( $err ),
393 \StatusValue::newGood(), $err ],
394 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::newFatal( 'arbitrary-error' ),
395 \StatusValue::newGood(), \StatusValue::newFatal( 'arbitrary-error' ) ],
396 [ PasswordAuthenticationRequest::class, 'DoesNotExist', \Status::newGood(),
397 \StatusValue::newGood(), \StatusValue::newGood( 'ignored' ) ],
398 [ PasswordDomainAuthenticationRequest::class, 'UTSysop', \Status::newGood(),
399 \StatusValue::newGood( 'ignored' ), \StatusValue::newGood( 'ignored' ) ],
400 ];
401 }
402
403 /**
404 * @dataProvider provideProviderChangeAuthenticationData
405 * @param callable|bool $usernameTransform
406 * @param string $type
407 * @param bool $loginOnly
408 * @param bool $changed
409 */
410 public function testProviderChangeAuthenticationData(
411 $usernameTransform, $type, $loginOnly, $changed ) {
412 $testUser = $this->getMutableTestUser();
413 $user = $testUser->getUser()->getName();
414 if ( is_callable( $usernameTransform ) ) {
415 $user = call_user_func( $usernameTransform, $user );
416 }
417 $cuser = ucfirst( $user );
418 $oldpass = $testUser->getPassword();
419 $newpass = 'NewPassword';
420
421 $dbw = wfGetDB( DB_MASTER );
422 $oldExpiry = $dbw->selectField( 'user', 'user_password_expires', [ 'user_name' => $cuser ] );
423
424 $this->mergeMwGlobalArrayValue( 'wgHooks', [
425 'ResetPasswordExpiration' => [ function ( $user, &$expires ) {
426 $expires = '30001231235959';
427 } ]
428 ] );
429
430 $provider = $this->getProvider( $loginOnly );
431
432 // Sanity check
433 $loginReq = new PasswordAuthenticationRequest();
434 $loginReq->action = AuthManager::ACTION_LOGIN;
435 $loginReq->username = $user;
436 $loginReq->password = $oldpass;
437 $loginReqs = [ PasswordAuthenticationRequest::class => $loginReq ];
438 $this->assertEquals(
439 AuthenticationResponse::newPass( $cuser ),
440 $provider->beginPrimaryAuthentication( $loginReqs ),
441 'Sanity check'
442 );
443
444 if ( $type === PasswordAuthenticationRequest::class ) {
445 $changeReq = new $type();
446 } else {
447 $changeReq = $this->createMock( $type );
448 }
449 $changeReq->action = AuthManager::ACTION_CHANGE;
450 $changeReq->username = $user;
451 $changeReq->password = $newpass;
452 $provider->providerChangeAuthenticationData( $changeReq );
453
454 if ( $loginOnly && $changed ) {
455 $old = 'fail';
456 $new = 'fail';
457 $expectExpiry = null;
458 } elseif ( $changed ) {
459 $old = 'fail';
460 $new = 'pass';
461 $expectExpiry = '30001231235959';
462 } else {
463 $old = 'pass';
464 $new = 'fail';
465 $expectExpiry = $oldExpiry;
466 }
467
468 $loginReq->password = $oldpass;
469 $ret = $provider->beginPrimaryAuthentication( $loginReqs );
470 if ( $old === 'pass' ) {
471 $this->assertEquals(
472 AuthenticationResponse::newPass( $cuser ),
473 $ret,
474 'old password should pass'
475 );
476 } else {
477 $this->assertEquals(
478 AuthenticationResponse::FAIL,
479 $ret->status,
480 'old password should fail'
481 );
482 $this->assertEquals(
483 'wrongpassword',
484 $ret->message->getKey(),
485 'old password should fail'
486 );
487 }
488
489 $loginReq->password = $newpass;
490 $ret = $provider->beginPrimaryAuthentication( $loginReqs );
491 if ( $new === 'pass' ) {
492 $this->assertEquals(
493 AuthenticationResponse::newPass( $cuser ),
494 $ret,
495 'new password should pass'
496 );
497 } else {
498 $this->assertEquals(
499 AuthenticationResponse::FAIL,
500 $ret->status,
501 'new password should fail'
502 );
503 $this->assertEquals(
504 'wrongpassword',
505 $ret->message->getKey(),
506 'new password should fail'
507 );
508 }
509
510 $this->assertSame(
511 $expectExpiry,
512 wfTimestampOrNull(
513 TS_MW,
514 $dbw->selectField( 'user', 'user_password_expires', [ 'user_name' => $cuser ] )
515 )
516 );
517 }
518
519 public static function provideProviderChangeAuthenticationData() {
520 return [
521 [ false, AuthenticationRequest::class, false, false ],
522 [ false, PasswordAuthenticationRequest::class, false, true ],
523 [ false, AuthenticationRequest::class, true, false ],
524 [ false, PasswordAuthenticationRequest::class, true, true ],
525 [ 'ucfirst', PasswordAuthenticationRequest::class, false, true ],
526 [ 'ucfirst', PasswordAuthenticationRequest::class, true, true ],
527 ];
528 }
529
530 public function testTestForAccountCreation() {
531 $user = \User::newFromName( 'foo' );
532 $req = new PasswordAuthenticationRequest();
533 $req->action = AuthManager::ACTION_CREATE;
534 $req->username = 'Foo';
535 $req->password = 'Bar';
536 $req->retype = 'Bar';
537 $reqs = [ PasswordAuthenticationRequest::class => $req ];
538
539 $provider = $this->getProvider();
540 $this->assertEquals(
541 \StatusValue::newGood(),
542 $provider->testForAccountCreation( $user, $user, [] ),
543 'No password request'
544 );
545
546 $this->assertEquals(
547 \StatusValue::newGood(),
548 $provider->testForAccountCreation( $user, $user, $reqs ),
549 'Password request, validated'
550 );
551
552 $req->retype = 'Baz';
553 $this->assertEquals(
554 \StatusValue::newFatal( 'badretype' ),
555 $provider->testForAccountCreation( $user, $user, $reqs ),
556 'Password request, bad retype'
557 );
558 $req->retype = 'Bar';
559
560 $this->validity->error( 'arbitrary warning' );
561 $expect = \StatusValue::newGood();
562 $expect->error( 'arbitrary warning' );
563 $this->assertEquals(
564 $expect,
565 $provider->testForAccountCreation( $user, $user, $reqs ),
566 'Password request, not validated'
567 );
568
569 $provider = $this->getProvider( true );
570 $this->validity->error( 'arbitrary warning' );
571 $this->assertEquals(
572 \StatusValue::newGood(),
573 $provider->testForAccountCreation( $user, $user, $reqs ),
574 'Password request, not validated, loginOnly'
575 );
576 }
577
578 public function testAccountCreation() {
579 $user = \User::newFromName( 'Foo' );
580
581 $req = new PasswordAuthenticationRequest();
582 $req->action = AuthManager::ACTION_CREATE;
583 $reqs = [ PasswordAuthenticationRequest::class => $req ];
584
585 $provider = $this->getProvider( true );
586 try {
587 $provider->beginPrimaryAccountCreation( $user, $user, [] );
588 $this->fail( 'Expected exception was not thrown' );
589 } catch ( \BadMethodCallException $ex ) {
590 $this->assertSame(
591 'Shouldn\'t call this when accountCreationType() is NONE', $ex->getMessage()
592 );
593 }
594
595 try {
596 $provider->finishAccountCreation( $user, $user, AuthenticationResponse::newPass() );
597 $this->fail( 'Expected exception was not thrown' );
598 } catch ( \BadMethodCallException $ex ) {
599 $this->assertSame(
600 'Shouldn\'t call this when accountCreationType() is NONE', $ex->getMessage()
601 );
602 }
603
604 $provider = $this->getProvider( false );
605
606 $this->assertEquals(
607 AuthenticationResponse::newAbstain(),
608 $provider->beginPrimaryAccountCreation( $user, $user, [] )
609 );
610
611 $req->username = 'foo';
612 $req->password = null;
613 $this->assertEquals(
614 AuthenticationResponse::newAbstain(),
615 $provider->beginPrimaryAccountCreation( $user, $user, $reqs )
616 );
617
618 $req->username = null;
619 $req->password = 'bar';
620 $this->assertEquals(
621 AuthenticationResponse::newAbstain(),
622 $provider->beginPrimaryAccountCreation( $user, $user, $reqs )
623 );
624
625 $req->username = 'foo';
626 $req->password = 'bar';
627
628 $expect = AuthenticationResponse::newPass( 'Foo' );
629 $expect->createRequest = clone $req;
630 $expect->createRequest->username = 'Foo';
631 $this->assertEquals( $expect, $provider->beginPrimaryAccountCreation( $user, $user, $reqs ) );
632
633 // We have to cheat a bit to avoid having to add a new user to
634 // the database to test the actual setting of the password works right
635 $dbw = wfGetDB( DB_MASTER );
636
637 $user = \User::newFromName( 'UTSysop' );
638 $req->username = $user->getName();
639 $req->password = 'NewPassword';
640 $expect = AuthenticationResponse::newPass( 'UTSysop' );
641 $expect->createRequest = $req;
642
643 $res2 = $provider->beginPrimaryAccountCreation( $user, $user, $reqs );
644 $this->assertEquals( $expect, $res2, 'Sanity check' );
645
646 $ret = $provider->beginPrimaryAuthentication( $reqs );
647 $this->assertEquals( AuthenticationResponse::FAIL, $ret->status, 'sanity check' );
648
649 $this->assertNull( $provider->finishAccountCreation( $user, $user, $res2 ) );
650 $ret = $provider->beginPrimaryAuthentication( $reqs );
651 $this->assertEquals( AuthenticationResponse::PASS, $ret->status, 'new password is set' );
652 }
653
654 }