3 namespace MediaWiki\Session
;
13 * @covers MediaWiki\Session\SessionManager
15 class SessionManagerTest
extends MediaWikiTestCase
{
17 protected $config, $logger, $store;
19 protected function getManager() {
20 \ObjectCache
::$instances['testSessionStore'] = new TestBagOStuff();
21 $this->config
= new \
HashConfig( [
22 'LanguageCode' => 'en',
23 'SessionCacheType' => 'testSessionStore',
24 'ObjectCacheSessionExpiry' => 100,
25 'SessionProviders' => [
26 [ 'class' => 'DummySessionProvider' ],
29 $this->logger
= new \
TestLogger( false, function ( $m ) {
30 return substr( $m, 0, 15 ) === 'SessionBackend ' ?
null : $m;
32 $this->store
= new TestBagOStuff();
34 return new SessionManager( [
35 'config' => $this->config
,
36 'logger' => $this->logger
,
37 'store' => $this->store
,
41 protected function objectCacheDef( $object ) {
42 return [ 'factory' => function () use ( $object ) {
47 public function testSingleton() {
48 $reset = TestUtils
::setSessionManagerSingleton( null );
50 $singleton = SessionManager
::singleton();
51 $this->assertInstanceOf( SessionManager
::class, $singleton );
52 $this->assertSame( $singleton, SessionManager
::singleton() );
55 public function testGetGlobalSession() {
56 $context = \RequestContext
::getMain();
58 if ( !PHPSessionHandler
::isInstalled() ) {
59 PHPSessionHandler
::install( SessionManager
::singleton() );
61 $rProp = new \
ReflectionProperty( PHPSessionHandler
::class, 'instance' );
62 $rProp->setAccessible( true );
63 $handler = \TestingAccessWrapper
::newFromObject( $rProp->getValue() );
64 $oldEnable = $handler->enable
;
65 $reset[] = new \Wikimedia\
ScopedCallback( function () use ( $handler, $oldEnable ) {
66 if ( $handler->enable
) {
67 session_write_close();
69 $handler->enable
= $oldEnable;
71 $reset[] = TestUtils
::setSessionManagerSingleton( $this->getManager() );
73 $handler->enable
= true;
74 $request = new \
FauxRequest();
75 $context->setRequest( $request );
76 $id = $request->getSession()->getId();
79 $session = SessionManager
::getGlobalSession();
80 $this->assertSame( $id, $session->getId() );
82 session_id( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' );
83 $session = SessionManager
::getGlobalSession();
84 $this->assertSame( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', $session->getId() );
85 $this->assertSame( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', $request->getSession()->getId() );
87 session_write_close();
88 $handler->enable
= false;
89 $request = new \
FauxRequest();
90 $context->setRequest( $request );
91 $id = $request->getSession()->getId();
94 $session = SessionManager
::getGlobalSession();
95 $this->assertSame( $id, $session->getId() );
97 session_id( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' );
98 $session = SessionManager
::getGlobalSession();
99 $this->assertSame( $id, $session->getId() );
100 $this->assertSame( $id, $request->getSession()->getId() );
103 public function testConstructor() {
104 $manager = \TestingAccessWrapper
::newFromObject( $this->getManager() );
105 $this->assertSame( $this->config
, $manager->config
);
106 $this->assertSame( $this->logger
, $manager->logger
);
107 $this->assertSame( $this->store
, $manager->store
);
109 $manager = \TestingAccessWrapper
::newFromObject( new SessionManager() );
110 $this->assertSame( \RequestContext
::getMain()->getConfig(), $manager->config
);
112 $manager = \TestingAccessWrapper
::newFromObject( new SessionManager( [
113 'config' => $this->config
,
115 $this->assertSame( \ObjectCache
::$instances['testSessionStore'], $manager->store
);
118 'config' => '$options[\'config\'] must be an instance of Config',
119 'logger' => '$options[\'logger\'] must be an instance of LoggerInterface',
120 'store' => '$options[\'store\'] must be an instance of BagOStuff',
121 ] as $key => $error ) {
123 new SessionManager( [ $key => new \stdClass
] );
124 $this->fail( 'Expected exception not thrown' );
125 } catch ( \InvalidArgumentException
$ex ) {
126 $this->assertSame( $error, $ex->getMessage() );
131 public function testGetSessionForRequest() {
132 $manager = $this->getManager();
133 $request = new \
FauxRequest();
134 $request->unpersist1
= false;
135 $request->unpersist2
= false;
139 $idEmpty = 'empty-session-------------------';
141 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
143 [ 'provideSessionInfo', 'newSessionInfo', '__toString', 'describe', 'unpersistSession' ]
146 $provider1 = $providerBuilder->getMock();
147 $provider1->expects( $this->any() )->method( 'provideSessionInfo' )
148 ->with( $this->identicalTo( $request ) )
149 ->will( $this->returnCallback( function ( $request ) {
150 return $request->info1
;
152 $provider1->expects( $this->any() )->method( 'newSessionInfo' )
153 ->will( $this->returnCallback( function () use ( $idEmpty, $provider1 ) {
154 return new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
155 'provider' => $provider1,
161 $provider1->expects( $this->any() )->method( '__toString' )
162 ->will( $this->returnValue( 'Provider1' ) );
163 $provider1->expects( $this->any() )->method( 'describe' )
164 ->will( $this->returnValue( '#1 sessions' ) );
165 $provider1->expects( $this->any() )->method( 'unpersistSession' )
166 ->will( $this->returnCallback( function ( $request ) {
167 $request->unpersist1
= true;
170 $provider2 = $providerBuilder->getMock();
171 $provider2->expects( $this->any() )->method( 'provideSessionInfo' )
172 ->with( $this->identicalTo( $request ) )
173 ->will( $this->returnCallback( function ( $request ) {
174 return $request->info2
;
176 $provider2->expects( $this->any() )->method( '__toString' )
177 ->will( $this->returnValue( 'Provider2' ) );
178 $provider2->expects( $this->any() )->method( 'describe' )
179 ->will( $this->returnValue( '#2 sessions' ) );
180 $provider2->expects( $this->any() )->method( 'unpersistSession' )
181 ->will( $this->returnCallback( function ( $request ) {
182 $request->unpersist2
= true;
185 $this->config
->set( 'SessionProviders', [
186 $this->objectCacheDef( $provider1 ),
187 $this->objectCacheDef( $provider2 ),
190 // No provider returns info
191 $request->info1
= null;
192 $request->info2
= null;
193 $session = $manager->getSessionForRequest( $request );
194 $this->assertInstanceOf( Session
::class, $session );
195 $this->assertSame( $idEmpty, $session->getId() );
196 $this->assertFalse( $request->unpersist1
);
197 $this->assertFalse( $request->unpersist2
);
199 // Both providers return info, picks best one
200 $request->info1
= new SessionInfo( SessionInfo
::MIN_PRIORITY +
1, [
201 'provider' => $provider1,
202 'id' => ( $id1 = $manager->generateSessionId() ),
206 $request->info2
= new SessionInfo( SessionInfo
::MIN_PRIORITY +
2, [
207 'provider' => $provider2,
208 'id' => ( $id2 = $manager->generateSessionId() ),
212 $session = $manager->getSessionForRequest( $request );
213 $this->assertInstanceOf( Session
::class, $session );
214 $this->assertSame( $id2, $session->getId() );
215 $this->assertFalse( $request->unpersist1
);
216 $this->assertFalse( $request->unpersist2
);
218 $request->info1
= new SessionInfo( SessionInfo
::MIN_PRIORITY +
2, [
219 'provider' => $provider1,
220 'id' => ( $id1 = $manager->generateSessionId() ),
224 $request->info2
= new SessionInfo( SessionInfo
::MIN_PRIORITY +
1, [
225 'provider' => $provider2,
226 'id' => ( $id2 = $manager->generateSessionId() ),
230 $session = $manager->getSessionForRequest( $request );
231 $this->assertInstanceOf( Session
::class, $session );
232 $this->assertSame( $id1, $session->getId() );
233 $this->assertFalse( $request->unpersist1
);
234 $this->assertFalse( $request->unpersist2
);
237 $request->info1
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
238 'provider' => $provider1,
239 'id' => ( $id1 = $manager->generateSessionId() ),
241 'userInfo' => UserInfo
::newAnonymous(),
244 $request->info2
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
245 'provider' => $provider2,
246 'id' => ( $id2 = $manager->generateSessionId() ),
248 'userInfo' => UserInfo
::newAnonymous(),
252 $manager->getSessionForRequest( $request );
253 $this->fail( 'Expcected exception not thrown' );
254 } catch ( \OverflowException
$ex ) {
255 $this->assertStringStartsWith(
256 'Multiple sessions for this request tied for top priority: ',
259 $this->assertCount( 2, $ex->sessionInfos
);
260 $this->assertContains( $request->info1
, $ex->sessionInfos
);
261 $this->assertContains( $request->info2
, $ex->sessionInfos
);
263 $this->assertFalse( $request->unpersist1
);
264 $this->assertFalse( $request->unpersist2
);
267 $request->info1
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
268 'provider' => $provider2,
269 'id' => ( $id1 = $manager->generateSessionId() ),
273 $request->info2
= null;
275 $manager->getSessionForRequest( $request );
276 $this->fail( 'Expcected exception not thrown' );
277 } catch ( \UnexpectedValueException
$ex ) {
279 'Provider1 returned session info for a different provider: ' . $request->info1
,
283 $this->assertFalse( $request->unpersist1
);
284 $this->assertFalse( $request->unpersist2
);
286 // Unusable session info
287 $this->logger
->setCollect( true );
288 $request->info1
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
289 'provider' => $provider1,
290 'id' => ( $id1 = $manager->generateSessionId() ),
292 'userInfo' => UserInfo
::newFromName( 'UTSysop', false ),
295 $request->info2
= new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
296 'provider' => $provider2,
297 'id' => ( $id2 = $manager->generateSessionId() ),
301 $session = $manager->getSessionForRequest( $request );
302 $this->assertInstanceOf( Session
::class, $session );
303 $this->assertSame( $id2, $session->getId() );
304 $this->logger
->setCollect( false );
305 $this->assertTrue( $request->unpersist1
);
306 $this->assertFalse( $request->unpersist2
);
307 $request->unpersist1
= false;
309 $this->logger
->setCollect( true );
310 $request->info1
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
311 'provider' => $provider1,
312 'id' => ( $id1 = $manager->generateSessionId() ),
316 $request->info2
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
317 'provider' => $provider2,
318 'id' => ( $id2 = $manager->generateSessionId() ),
320 'userInfo' => UserInfo
::newFromName( 'UTSysop', false ),
323 $session = $manager->getSessionForRequest( $request );
324 $this->assertInstanceOf( Session
::class, $session );
325 $this->assertSame( $id1, $session->getId() );
326 $this->logger
->setCollect( false );
327 $this->assertFalse( $request->unpersist1
);
328 $this->assertTrue( $request->unpersist2
);
329 $request->unpersist2
= false;
331 // Unpersisted session ID
332 $request->info1
= new SessionInfo( SessionInfo
::MAX_PRIORITY
, [
333 'provider' => $provider1,
334 'id' => ( $id1 = $manager->generateSessionId() ),
335 'persisted' => false,
336 'userInfo' => UserInfo
::newFromName( 'UTSysop', true ),
339 $request->info2
= null;
340 $session = $manager->getSessionForRequest( $request );
341 $this->assertInstanceOf( Session
::class, $session );
342 $this->assertSame( $id1, $session->getId() );
343 $this->assertTrue( $request->unpersist1
); // The saving of the session does it
344 $this->assertFalse( $request->unpersist2
);
346 $this->assertTrue( $session->isPersistent(), 'sanity check' );
349 public function testGetSessionById() {
350 $manager = $this->getManager();
352 $manager->getSessionById( 'bad' );
353 $this->fail( 'Expected exception not thrown' );
354 } catch ( \InvalidArgumentException
$ex ) {
355 $this->assertSame( 'Invalid session ID', $ex->getMessage() );
358 // Unknown session ID
359 $id = $manager->generateSessionId();
360 $session = $manager->getSessionById( $id, true );
361 $this->assertInstanceOf( Session
::class, $session );
362 $this->assertSame( $id, $session->getId() );
364 $id = $manager->generateSessionId();
365 $this->assertNull( $manager->getSessionById( $id, false ) );
367 // Known but unloadable session ID
368 $this->logger
->setCollect( true );
369 $id = $manager->generateSessionId();
370 $this->store
->setSession( $id, [ 'metadata' => [
371 'userId' => User
::idFromName( 'UTSysop' ),
372 'userToken' => 'bad',
375 $this->assertNull( $manager->getSessionById( $id, true ) );
376 $this->assertNull( $manager->getSessionById( $id, false ) );
377 $this->logger
->setCollect( false );
380 $this->store
->setSession( $id, [] );
381 $session = $manager->getSessionById( $id, false );
382 $this->assertInstanceOf( Session
::class, $session );
383 $this->assertSame( $id, $session->getId() );
385 // Store isn't checked if the session is already loaded
386 $this->store
->setSession( $id, [ 'metadata' => [
387 'userId' => User
::idFromName( 'UTSysop' ),
388 'userToken' => 'bad',
390 $session2 = $manager->getSessionById( $id, false );
391 $this->assertInstanceOf( Session
::class, $session2 );
392 $this->assertSame( $id, $session2->getId() );
393 unset( $session, $session2 );
394 $this->logger
->setCollect( true );
395 $this->assertNull( $manager->getSessionById( $id, true ) );
396 $this->logger
->setCollect( false );
398 // Failure to create an empty session
399 $manager = $this->getManager();
400 $provider = $this->getMockBuilder( 'DummySessionProvider' )
401 ->setMethods( [ 'provideSessionInfo', 'newSessionInfo', '__toString' ] )
403 $provider->expects( $this->any() )->method( 'provideSessionInfo' )
404 ->will( $this->returnValue( null ) );
405 $provider->expects( $this->any() )->method( 'newSessionInfo' )
406 ->will( $this->returnValue( null ) );
407 $provider->expects( $this->any() )->method( '__toString' )
408 ->will( $this->returnValue( 'MockProvider' ) );
409 $this->config
->set( 'SessionProviders', [
410 $this->objectCacheDef( $provider ),
412 $this->logger
->setCollect( true );
413 $this->assertNull( $manager->getSessionById( $id, true ) );
414 $this->logger
->setCollect( false );
416 [ LogLevel
::ERROR
, 'Failed to create empty session: {exception}' ]
417 ], $this->logger
->getBuffer() );
420 public function testGetEmptySession() {
421 $manager = $this->getManager();
422 $pmanager = \TestingAccessWrapper
::newFromObject( $manager );
423 $request = new \
FauxRequest();
425 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
426 ->setMethods( [ 'provideSessionInfo', 'newSessionInfo', '__toString' ] );
432 $provider1 = $providerBuilder->getMock();
433 $provider1->expects( $this->any() )->method( 'provideSessionInfo' )
434 ->will( $this->returnValue( null ) );
435 $provider1->expects( $this->any() )->method( 'newSessionInfo' )
436 ->with( $this->callback( function ( $id ) use ( &$expectId ) {
437 return $id === $expectId;
439 ->will( $this->returnCallback( function () use ( &$info1 ) {
442 $provider1->expects( $this->any() )->method( '__toString' )
443 ->will( $this->returnValue( 'MockProvider1' ) );
445 $provider2 = $providerBuilder->getMock();
446 $provider2->expects( $this->any() )->method( 'provideSessionInfo' )
447 ->will( $this->returnValue( null ) );
448 $provider2->expects( $this->any() )->method( 'newSessionInfo' )
449 ->with( $this->callback( function ( $id ) use ( &$expectId ) {
450 return $id === $expectId;
452 ->will( $this->returnCallback( function () use ( &$info2 ) {
455 $provider1->expects( $this->any() )->method( '__toString' )
456 ->will( $this->returnValue( 'MockProvider2' ) );
458 $this->config
->set( 'SessionProviders', [
459 $this->objectCacheDef( $provider1 ),
460 $this->objectCacheDef( $provider2 ),
468 $manager->getEmptySession();
469 $this->fail( 'Expected exception not thrown' );
470 } catch ( \UnexpectedValueException
$ex ) {
472 'No provider could provide an empty session!',
479 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
480 'provider' => $provider1,
481 'id' => 'empty---------------------------',
486 $session = $manager->getEmptySession();
487 $this->assertInstanceOf( Session
::class, $session );
488 $this->assertSame( 'empty---------------------------', $session->getId() );
491 $expectId = 'expected------------------------';
492 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
493 'provider' => $provider1,
499 $session = $pmanager->getEmptySessionInternal( null, $expectId );
500 $this->assertInstanceOf( Session
::class, $session );
501 $this->assertSame( $expectId, $session->getId() );
504 $expectId = 'expected-----------------------2';
505 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
506 'provider' => $provider1,
507 'id' => "un$expectId",
513 $pmanager->getEmptySessionInternal( null, $expectId );
514 $this->fail( 'Expected exception not thrown' );
515 } catch ( \UnexpectedValueException
$ex ) {
517 'MockProvider1 returned empty session info with a wrong id: ' .
518 "un$expectId != $expectId",
524 $expectId = 'expected-----------------------2';
525 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
526 'provider' => $provider1,
532 $pmanager->getEmptySessionInternal( null, $expectId );
533 $this->fail( 'Expected exception not thrown' );
534 } catch ( \UnexpectedValueException
$ex ) {
536 'MockProvider1 returned empty session info with id flagged unsafe',
543 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
544 'provider' => $provider2,
545 'id' => 'empty---------------------------',
551 $manager->getEmptySession();
552 $this->fail( 'Expected exception not thrown' );
553 } catch ( \UnexpectedValueException
$ex ) {
555 'MockProvider1 returned an empty session info for a different provider: ' . $info1,
560 // Highest priority wins
562 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY +
1, [
563 'provider' => $provider1,
564 'id' => 'empty1--------------------------',
568 $info2 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
569 'provider' => $provider2,
570 'id' => 'empty2--------------------------',
574 $session = $manager->getEmptySession();
575 $this->assertInstanceOf( Session
::class, $session );
576 $this->assertSame( 'empty1--------------------------', $session->getId() );
579 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY +
1, [
580 'provider' => $provider1,
581 'id' => 'empty1--------------------------',
585 $info2 = new SessionInfo( SessionInfo
::MIN_PRIORITY +
2, [
586 'provider' => $provider2,
587 'id' => 'empty2--------------------------',
591 $session = $manager->getEmptySession();
592 $this->assertInstanceOf( Session
::class, $session );
593 $this->assertSame( 'empty2--------------------------', $session->getId() );
595 // Tied priorities throw an exception
597 $info1 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
598 'provider' => $provider1,
599 'id' => 'empty1--------------------------',
601 'userInfo' => UserInfo
::newAnonymous(),
604 $info2 = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
605 'provider' => $provider2,
606 'id' => 'empty2--------------------------',
608 'userInfo' => UserInfo
::newAnonymous(),
612 $manager->getEmptySession();
613 $this->fail( 'Expected exception not thrown' );
614 } catch ( \UnexpectedValueException
$ex ) {
615 $this->assertStringStartsWith(
616 'Multiple empty sessions tied for top priority: ',
623 $pmanager->getEmptySessionInternal( null, 'bad' );
624 $this->fail( 'Expected exception not thrown' );
625 } catch ( \InvalidArgumentException
$ex ) {
626 $this->assertSame( 'Invalid session ID', $ex->getMessage() );
629 // Session already exists
630 $expectId = 'expected-----------------------3';
631 $this->store
->setSessionMeta( $expectId, [
632 'provider' => 'MockProvider2',
638 $pmanager->getEmptySessionInternal( null, $expectId );
639 $this->fail( 'Expected exception not thrown' );
640 } catch ( \InvalidArgumentException
$ex ) {
641 $this->assertSame( 'Session ID already exists', $ex->getMessage() );
645 public function testInvalidateSessionsForUser() {
646 $user = User
::newFromName( 'UTSysop' );
647 $manager = $this->getManager();
649 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
650 ->setMethods( [ 'invalidateSessionsForUser', '__toString' ] );
652 $provider1 = $providerBuilder->getMock();
653 $provider1->expects( $this->once() )->method( 'invalidateSessionsForUser' )
654 ->with( $this->identicalTo( $user ) );
655 $provider1->expects( $this->any() )->method( '__toString' )
656 ->will( $this->returnValue( 'MockProvider1' ) );
658 $provider2 = $providerBuilder->getMock();
659 $provider2->expects( $this->once() )->method( 'invalidateSessionsForUser' )
660 ->with( $this->identicalTo( $user ) );
661 $provider2->expects( $this->any() )->method( '__toString' )
662 ->will( $this->returnValue( 'MockProvider2' ) );
664 $this->config
->set( 'SessionProviders', [
665 $this->objectCacheDef( $provider1 ),
666 $this->objectCacheDef( $provider2 ),
669 $oldToken = $user->getToken( true );
670 $manager->invalidateSessionsForUser( $user );
671 $this->assertNotEquals( $oldToken, $user->getToken() );
674 public function testGetVaryHeaders() {
675 $manager = $this->getManager();
677 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
678 ->setMethods( [ 'getVaryHeaders', '__toString' ] );
680 $provider1 = $providerBuilder->getMock();
681 $provider1->expects( $this->once() )->method( 'getVaryHeaders' )
682 ->will( $this->returnValue( [
684 'Bar' => [ 'X', 'Bar1' ],
687 $provider1->expects( $this->any() )->method( '__toString' )
688 ->will( $this->returnValue( 'MockProvider1' ) );
690 $provider2 = $providerBuilder->getMock();
691 $provider2->expects( $this->once() )->method( 'getVaryHeaders' )
692 ->will( $this->returnValue( [
694 'Bar' => [ 'X', 'Bar2' ],
695 'Quux' => [ 'Quux' ],
697 $provider2->expects( $this->any() )->method( '__toString' )
698 ->will( $this->returnValue( 'MockProvider2' ) );
700 $this->config
->set( 'SessionProviders', [
701 $this->objectCacheDef( $provider1 ),
702 $this->objectCacheDef( $provider2 ),
707 'Bar' => [ 'X', 'Bar1', 3 => 'Bar2' ],
708 'Quux' => [ 'Quux' ],
712 $this->assertEquals( $expect, $manager->getVaryHeaders() );
714 // Again, to ensure it's cached
715 $this->assertEquals( $expect, $manager->getVaryHeaders() );
718 public function testGetVaryCookies() {
719 $manager = $this->getManager();
721 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
722 ->setMethods( [ 'getVaryCookies', '__toString' ] );
724 $provider1 = $providerBuilder->getMock();
725 $provider1->expects( $this->once() )->method( 'getVaryCookies' )
726 ->will( $this->returnValue( [ 'Foo', 'Bar' ] ) );
727 $provider1->expects( $this->any() )->method( '__toString' )
728 ->will( $this->returnValue( 'MockProvider1' ) );
730 $provider2 = $providerBuilder->getMock();
731 $provider2->expects( $this->once() )->method( 'getVaryCookies' )
732 ->will( $this->returnValue( [ 'Foo', 'Baz' ] ) );
733 $provider2->expects( $this->any() )->method( '__toString' )
734 ->will( $this->returnValue( 'MockProvider2' ) );
736 $this->config
->set( 'SessionProviders', [
737 $this->objectCacheDef( $provider1 ),
738 $this->objectCacheDef( $provider2 ),
741 $expect = [ 'Foo', 'Bar', 'Baz' ];
743 $this->assertEquals( $expect, $manager->getVaryCookies() );
745 // Again, to ensure it's cached
746 $this->assertEquals( $expect, $manager->getVaryCookies() );
749 public function testGetProviders() {
750 $realManager = $this->getManager();
751 $manager = \TestingAccessWrapper
::newFromObject( $realManager );
753 $this->config
->set( 'SessionProviders', [
754 [ 'class' => 'DummySessionProvider' ],
756 $providers = $manager->getProviders();
757 $this->assertArrayHasKey( 'DummySessionProvider', $providers );
758 $provider = \TestingAccessWrapper
::newFromObject( $providers['DummySessionProvider'] );
759 $this->assertSame( $manager->logger
, $provider->logger
);
760 $this->assertSame( $manager->config
, $provider->config
);
761 $this->assertSame( $realManager, $provider->getManager() );
763 $this->config
->set( 'SessionProviders', [
764 [ 'class' => 'DummySessionProvider' ],
765 [ 'class' => 'DummySessionProvider' ],
767 $manager->sessionProviders
= null;
769 $manager->getProviders();
770 $this->fail( 'Expected exception not thrown' );
771 } catch ( \UnexpectedValueException
$ex ) {
773 'Duplicate provider name "DummySessionProvider"',
779 public function testShutdown() {
780 $manager = \TestingAccessWrapper
::newFromObject( $this->getManager() );
781 $manager->setLogger( new \Psr\Log\
NullLogger() );
783 $mock = $this->getMock( 'stdClass', [ 'shutdown' ] );
784 $mock->expects( $this->once() )->method( 'shutdown' );
786 $manager->allSessionBackends
= [ $mock ];
787 $manager->shutdown();
790 public function testGetSessionFromInfo() {
791 $manager = \TestingAccessWrapper
::newFromObject( $this->getManager() );
792 $request = new \
FauxRequest();
794 $id = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
796 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
797 'provider' => $manager->getProvider( 'DummySessionProvider' ),
800 'userInfo' => UserInfo
::newFromName( 'UTSysop', true ),
803 \TestingAccessWrapper
::newFromObject( $info )->idIsSafe
= true;
804 $session1 = \TestingAccessWrapper
::newFromObject(
805 $manager->getSessionFromInfo( $info, $request )
807 $session2 = \TestingAccessWrapper
::newFromObject(
808 $manager->getSessionFromInfo( $info, $request )
811 $this->assertSame( $session1->backend
, $session2->backend
);
812 $this->assertNotEquals( $session1->index
, $session2->index
);
813 $this->assertSame( $session1->getSessionId(), $session2->getSessionId() );
814 $this->assertSame( $id, $session1->getId() );
816 \TestingAccessWrapper
::newFromObject( $info )->idIsSafe
= false;
817 $session3 = $manager->getSessionFromInfo( $info, $request );
818 $this->assertNotSame( $id, $session3->getId() );
821 public function testBackendRegistration() {
822 $manager = $this->getManager();
824 $session = $manager->getSessionForRequest( new \FauxRequest
);
825 $backend = \TestingAccessWrapper
::newFromObject( $session )->backend
;
826 $sessionId = $session->getSessionId();
827 $id = (string)$sessionId;
829 $this->assertSame( $sessionId, $manager->getSessionById( $id, true )->getSessionId() );
831 $manager->changeBackendId( $backend );
832 $this->assertSame( $sessionId, $session->getSessionId() );
833 $this->assertNotEquals( $id, (string)$sessionId );
834 $id = (string)$sessionId;
836 $this->assertSame( $sessionId, $manager->getSessionById( $id, true )->getSessionId() );
838 // Destruction of the session here causes the backend to be deregistered
842 $manager->changeBackendId( $backend );
843 $this->fail( 'Expected exception not thrown' );
844 } catch ( \InvalidArgumentException
$ex ) {
846 'Backend was not registered with this SessionManager', $ex->getMessage()
851 $manager->deregisterSessionBackend( $backend );
852 $this->fail( 'Expected exception not thrown' );
853 } catch ( \InvalidArgumentException
$ex ) {
855 'Backend was not registered with this SessionManager', $ex->getMessage()
859 $session = $manager->getSessionById( $id, true );
860 $this->assertSame( $sessionId, $session->getSessionId() );
863 public function testGenerateSessionId() {
864 $manager = $this->getManager();
866 $id = $manager->generateSessionId();
867 $this->assertTrue( SessionManager
::validateSessionId( $id ), "Generated ID: $id" );
870 public function testPreventSessionsForUser() {
871 $manager = $this->getManager();
873 $providerBuilder = $this->getMockBuilder( 'DummySessionProvider' )
874 ->setMethods( [ 'preventSessionsForUser', '__toString' ] );
876 $provider1 = $providerBuilder->getMock();
877 $provider1->expects( $this->once() )->method( 'preventSessionsForUser' )
878 ->with( $this->equalTo( 'UTSysop' ) );
879 $provider1->expects( $this->any() )->method( '__toString' )
880 ->will( $this->returnValue( 'MockProvider1' ) );
882 $this->config
->set( 'SessionProviders', [
883 $this->objectCacheDef( $provider1 ),
886 $this->assertFalse( $manager->isUserSessionPrevented( 'UTSysop' ) );
887 $manager->preventSessionsForUser( 'UTSysop' );
888 $this->assertTrue( $manager->isUserSessionPrevented( 'UTSysop' ) );
891 public function testLoadSessionInfoFromStore() {
892 $manager = $this->getManager();
893 $logger = new \
TestLogger( true );
894 $manager->setLogger( $logger );
895 $request = new \
FauxRequest();
897 // TestingAccessWrapper can't handle methods with reference arguments, sigh.
898 $rClass = new \
ReflectionClass( $manager );
899 $rMethod = $rClass->getMethod( 'loadSessionInfoFromStore' );
900 $rMethod->setAccessible( true );
901 $loadSessionInfoFromStore = function ( &$info ) use ( $rMethod, $manager, $request ) {
902 return $rMethod->invokeArgs( $manager, [ &$info, $request ] );
905 $userInfo = UserInfo
::newFromName( 'UTSysop', true );
906 $unverifiedUserInfo = UserInfo
::newFromName( 'UTSysop', false );
908 $id = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
910 'userId' => $userInfo->getId(),
911 'userName' => $userInfo->getName(),
912 'userToken' => $userInfo->getToken( true ),
913 'provider' => 'Mock',
916 $builder = $this->getMockBuilder( SessionProvider
::class )
917 ->setMethods( [ '__toString', 'mergeMetadata', 'refreshSessionInfo' ] );
919 $provider = $builder->getMockForAbstractClass();
920 $provider->setManager( $manager );
921 $provider->expects( $this->any() )->method( 'persistsSessionId' )
922 ->will( $this->returnValue( true ) );
923 $provider->expects( $this->any() )->method( 'canChangeUser' )
924 ->will( $this->returnValue( true ) );
925 $provider->expects( $this->any() )->method( 'refreshSessionInfo' )
926 ->will( $this->returnValue( true ) );
927 $provider->expects( $this->any() )->method( '__toString' )
928 ->will( $this->returnValue( 'Mock' ) );
929 $provider->expects( $this->any() )->method( 'mergeMetadata' )
930 ->will( $this->returnCallback( function ( $a, $b ) {
931 if ( $b === [ 'Throw' ] ) {
932 throw new MetadataMergeException( 'no merge!' );
937 $provider2 = $builder->getMockForAbstractClass();
938 $provider2->setManager( $manager );
939 $provider2->expects( $this->any() )->method( 'persistsSessionId' )
940 ->will( $this->returnValue( false ) );
941 $provider2->expects( $this->any() )->method( 'canChangeUser' )
942 ->will( $this->returnValue( false ) );
943 $provider2->expects( $this->any() )->method( '__toString' )
944 ->will( $this->returnValue( 'Mock2' ) );
945 $provider2->expects( $this->any() )->method( 'refreshSessionInfo' )
946 ->will( $this->returnCallback( function ( $info, $request, &$metadata ) {
947 $metadata['changed'] = true;
951 $provider3 = $builder->getMockForAbstractClass();
952 $provider3->setManager( $manager );
953 $provider3->expects( $this->any() )->method( 'persistsSessionId' )
954 ->will( $this->returnValue( true ) );
955 $provider3->expects( $this->any() )->method( 'canChangeUser' )
956 ->will( $this->returnValue( true ) );
957 $provider3->expects( $this->once() )->method( 'refreshSessionInfo' )
958 ->will( $this->returnValue( false ) );
959 $provider3->expects( $this->any() )->method( '__toString' )
960 ->will( $this->returnValue( 'Mock3' ) );
962 \TestingAccessWrapper
::newFromObject( $manager )->sessionProviders
= [
963 (string)$provider => $provider,
964 (string)$provider2 => $provider2,
965 (string)$provider3 => $provider3,
968 // No metadata, basic usage
969 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
970 'provider' => $provider,
972 'userInfo' => $userInfo
974 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
975 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
976 $this->assertFalse( $info->isIdSafe() );
977 $this->assertSame( [], $logger->getBuffer() );
979 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
980 'provider' => $provider,
981 'userInfo' => $userInfo
983 $this->assertTrue( $info->isIdSafe(), 'sanity check' );
984 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
985 $this->assertTrue( $info->isIdSafe() );
986 $this->assertSame( [], $logger->getBuffer() );
988 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
989 'provider' => $provider2,
991 'userInfo' => $userInfo
993 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
994 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
995 $this->assertTrue( $info->isIdSafe() );
996 $this->assertSame( [], $logger->getBuffer() );
998 // Unverified user, no metadata
999 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1000 'provider' => $provider,
1002 'userInfo' => $unverifiedUserInfo
1004 $this->assertSame( $unverifiedUserInfo, $info->getUserInfo() );
1005 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1006 $this->assertSame( [
1009 'Session "{session}": Unverified user provided and no metadata to auth it',
1011 ], $logger->getBuffer() );
1012 $logger->clearBuffer();
1014 // No metadata, missing data
1015 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1017 'userInfo' => $userInfo
1019 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1020 $this->assertSame( [
1021 [ LogLevel
::WARNING
, 'Session "{session}": Null provider and no metadata' ],
1022 ], $logger->getBuffer() );
1023 $logger->clearBuffer();
1025 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1026 'provider' => $provider,
1029 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1030 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1031 $this->assertInstanceOf( UserInfo
::class, $info->getUserInfo() );
1032 $this->assertTrue( $info->getUserInfo()->isVerified() );
1033 $this->assertTrue( $info->getUserInfo()->isAnon() );
1034 $this->assertFalse( $info->isIdSafe() );
1035 $this->assertSame( [], $logger->getBuffer() );
1037 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1038 'provider' => $provider2,
1041 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1042 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1043 $this->assertSame( [
1044 [ LogLevel
::INFO
, 'Session "{session}": No user provided and provider cannot set user' ]
1045 ], $logger->getBuffer() );
1046 $logger->clearBuffer();
1048 // Incomplete/bad metadata
1049 $this->store
->setRawSession( $id, true );
1050 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1051 $this->assertSame( [
1052 [ LogLevel
::WARNING
, 'Session "{session}": Bad data' ],
1053 ], $logger->getBuffer() );
1054 $logger->clearBuffer();
1056 $this->store
->setRawSession( $id, [ 'data' => [] ] );
1057 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1058 $this->assertSame( [
1059 [ LogLevel
::WARNING
, 'Session "{session}": Bad data structure' ],
1060 ], $logger->getBuffer() );
1061 $logger->clearBuffer();
1063 $this->store
->deleteSession( $id );
1064 $this->store
->setRawSession( $id, [ 'metadata' => $metadata ] );
1065 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1066 $this->assertSame( [
1067 [ LogLevel
::WARNING
, 'Session "{session}": Bad data structure' ],
1068 ], $logger->getBuffer() );
1069 $logger->clearBuffer();
1071 $this->store
->setRawSession( $id, [ 'metadata' => $metadata, 'data' => true ] );
1072 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1073 $this->assertSame( [
1074 [ LogLevel
::WARNING
, 'Session "{session}": Bad data structure' ],
1075 ], $logger->getBuffer() );
1076 $logger->clearBuffer();
1078 $this->store
->setRawSession( $id, [ 'metadata' => true, 'data' => [] ] );
1079 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1080 $this->assertSame( [
1081 [ LogLevel
::WARNING
, 'Session "{session}": Bad data structure' ],
1082 ], $logger->getBuffer() );
1083 $logger->clearBuffer();
1085 foreach ( $metadata as $key => $dummy ) {
1087 unset( $tmp[$key] );
1088 $this->store
->setRawSession( $id, [ 'metadata' => $tmp, 'data' => [] ] );
1089 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1090 $this->assertSame( [
1091 [ LogLevel
::WARNING
, 'Session "{session}": Bad metadata' ],
1092 ], $logger->getBuffer() );
1093 $logger->clearBuffer();
1096 // Basic usage with metadata
1097 $this->store
->setRawSession( $id, [ 'metadata' => $metadata, 'data' => [] ] );
1098 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1099 'provider' => $provider,
1101 'userInfo' => $userInfo
1103 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1104 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1105 $this->assertTrue( $info->isIdSafe() );
1106 $this->assertSame( [], $logger->getBuffer() );
1108 // Mismatched provider
1109 $this->store
->setSessionMeta( $id, [ 'provider' => 'Bad' ] +
$metadata );
1110 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1111 'provider' => $provider,
1113 'userInfo' => $userInfo
1115 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1116 $this->assertSame( [
1117 [ LogLevel
::WARNING
, 'Session "{session}": Wrong provider Bad !== Mock' ],
1118 ], $logger->getBuffer() );
1119 $logger->clearBuffer();
1122 $this->store
->setSessionMeta( $id, [ 'provider' => 'Bad' ] +
$metadata );
1123 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1125 'userInfo' => $userInfo
1127 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1128 $this->assertSame( [
1129 [ LogLevel
::WARNING
, 'Session "{session}": Unknown provider Bad' ],
1130 ], $logger->getBuffer() );
1131 $logger->clearBuffer();
1134 $this->store
->setSessionMeta( $id, $metadata );
1135 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1137 'userInfo' => $userInfo
1139 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1140 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1141 $this->assertTrue( $info->isIdSafe() );
1142 $this->assertSame( [], $logger->getBuffer() );
1144 // Bad user metadata
1145 $this->store
->setSessionMeta( $id, [ 'userId' => -1, 'userToken' => null ] +
$metadata );
1146 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1147 'provider' => $provider,
1150 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1151 $this->assertSame( [
1152 [ LogLevel
::ERROR
, 'Session "{session}": {exception}' ],
1153 ], $logger->getBuffer() );
1154 $logger->clearBuffer();
1156 $this->store
->setSessionMeta(
1157 $id, [ 'userId' => 0, 'userName' => '<X>', 'userToken' => null ] +
$metadata
1159 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1160 'provider' => $provider,
1163 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1164 $this->assertSame( [
1165 [ LogLevel
::ERROR
, 'Session "{session}": {exception}', ],
1166 ], $logger->getBuffer() );
1167 $logger->clearBuffer();
1169 // Mismatched user by ID
1170 $this->store
->setSessionMeta(
1171 $id, [ 'userId' => $userInfo->getId() +
1, 'userToken' => null ] +
$metadata
1173 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1174 'provider' => $provider,
1176 'userInfo' => $userInfo
1178 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1179 $this->assertSame( [
1180 [ LogLevel
::WARNING
, 'Session "{session}": User ID mismatch, {uid_a} !== {uid_b}' ],
1181 ], $logger->getBuffer() );
1182 $logger->clearBuffer();
1184 // Mismatched user by name
1185 $this->store
->setSessionMeta(
1186 $id, [ 'userId' => 0, 'userName' => 'X', 'userToken' => null ] +
$metadata
1188 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1189 'provider' => $provider,
1191 'userInfo' => $userInfo
1193 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1194 $this->assertSame( [
1195 [ LogLevel
::WARNING
, 'Session "{session}": User name mismatch, {uname_a} !== {uname_b}' ],
1196 ], $logger->getBuffer() );
1197 $logger->clearBuffer();
1199 // ID matches, name doesn't
1200 $this->store
->setSessionMeta(
1201 $id, [ 'userId' => $userInfo->getId(), 'userName' => 'X', 'userToken' => null ] +
$metadata
1203 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1204 'provider' => $provider,
1206 'userInfo' => $userInfo
1208 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1209 $this->assertSame( [
1212 'Session "{session}": User ID matched but name didn\'t (rename?), {uname_a} !== {uname_b}'
1214 ], $logger->getBuffer() );
1215 $logger->clearBuffer();
1217 // Mismatched anon user
1218 $this->store
->setSessionMeta(
1219 $id, [ 'userId' => 0, 'userName' => null, 'userToken' => null ] +
$metadata
1221 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1222 'provider' => $provider,
1224 'userInfo' => $userInfo
1226 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1227 $this->assertSame( [
1230 'Session "{session}": Metadata has an anonymous user, ' .
1231 'but a non-anon user was provided',
1233 ], $logger->getBuffer() );
1234 $logger->clearBuffer();
1236 // Lookup user by ID
1237 $this->store
->setSessionMeta( $id, [ 'userToken' => null ] +
$metadata );
1238 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1239 'provider' => $provider,
1242 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1243 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1244 $this->assertSame( $userInfo->getId(), $info->getUserInfo()->getId() );
1245 $this->assertTrue( $info->isIdSafe() );
1246 $this->assertSame( [], $logger->getBuffer() );
1248 // Lookup user by name
1249 $this->store
->setSessionMeta(
1250 $id, [ 'userId' => 0, 'userName' => 'UTSysop', 'userToken' => null ] +
$metadata
1252 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1253 'provider' => $provider,
1256 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1257 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1258 $this->assertSame( $userInfo->getId(), $info->getUserInfo()->getId() );
1259 $this->assertTrue( $info->isIdSafe() );
1260 $this->assertSame( [], $logger->getBuffer() );
1262 // Lookup anonymous user
1263 $this->store
->setSessionMeta(
1264 $id, [ 'userId' => 0, 'userName' => null, 'userToken' => null ] +
$metadata
1266 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1267 'provider' => $provider,
1270 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1271 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1272 $this->assertTrue( $info->getUserInfo()->isAnon() );
1273 $this->assertTrue( $info->isIdSafe() );
1274 $this->assertSame( [], $logger->getBuffer() );
1276 // Unverified user with metadata
1277 $this->store
->setSessionMeta( $id, $metadata );
1278 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1279 'provider' => $provider,
1281 'userInfo' => $unverifiedUserInfo
1283 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1284 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1285 $this->assertTrue( $info->getUserInfo()->isVerified() );
1286 $this->assertSame( $unverifiedUserInfo->getId(), $info->getUserInfo()->getId() );
1287 $this->assertSame( $unverifiedUserInfo->getName(), $info->getUserInfo()->getName() );
1288 $this->assertTrue( $info->isIdSafe() );
1289 $this->assertSame( [], $logger->getBuffer() );
1291 // Unverified user with metadata
1292 $this->store
->setSessionMeta( $id, $metadata );
1293 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1294 'provider' => $provider,
1296 'userInfo' => $unverifiedUserInfo
1298 $this->assertFalse( $info->isIdSafe(), 'sanity check' );
1299 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1300 $this->assertTrue( $info->getUserInfo()->isVerified() );
1301 $this->assertSame( $unverifiedUserInfo->getId(), $info->getUserInfo()->getId() );
1302 $this->assertSame( $unverifiedUserInfo->getName(), $info->getUserInfo()->getName() );
1303 $this->assertTrue( $info->isIdSafe() );
1304 $this->assertSame( [], $logger->getBuffer() );
1307 $this->store
->setSessionMeta( $id, [ 'userToken' => 'Bad' ] +
$metadata );
1308 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1309 'provider' => $provider,
1311 'userInfo' => $userInfo
1313 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1314 $this->assertSame( [
1315 [ LogLevel
::WARNING
, 'Session "{session}": User token mismatch' ],
1316 ], $logger->getBuffer() );
1317 $logger->clearBuffer();
1319 // Provider metadata
1320 $this->store
->setSessionMeta( $id, [ 'provider' => 'Mock2' ] +
$metadata );
1321 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1322 'provider' => $provider2,
1324 'userInfo' => $userInfo,
1325 'metadata' => [ 'Info' ],
1327 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1328 $this->assertSame( [ 'Info', 'changed' => true ], $info->getProviderMetadata() );
1329 $this->assertSame( [], $logger->getBuffer() );
1331 $this->store
->setSessionMeta( $id, [ 'providerMetadata' => [ 'Saved' ] ] +
$metadata );
1332 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1333 'provider' => $provider,
1335 'userInfo' => $userInfo,
1337 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1338 $this->assertSame( [ 'Saved' ], $info->getProviderMetadata() );
1339 $this->assertSame( [], $logger->getBuffer() );
1341 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1342 'provider' => $provider,
1344 'userInfo' => $userInfo,
1345 'metadata' => [ 'Info' ],
1347 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1348 $this->assertSame( [ 'Merged' ], $info->getProviderMetadata() );
1349 $this->assertSame( [], $logger->getBuffer() );
1351 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1352 'provider' => $provider,
1354 'userInfo' => $userInfo,
1355 'metadata' => [ 'Throw' ],
1357 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1358 $this->assertSame( [
1361 'Session "{session}": Metadata merge failed: {exception}',
1363 ], $logger->getBuffer() );
1364 $logger->clearBuffer();
1366 // Remember from session
1367 $this->store
->setSessionMeta( $id, $metadata );
1368 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1369 'provider' => $provider,
1372 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1373 $this->assertFalse( $info->wasRemembered() );
1374 $this->assertSame( [], $logger->getBuffer() );
1376 $this->store
->setSessionMeta( $id, [ 'remember' => true ] +
$metadata );
1377 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1378 'provider' => $provider,
1381 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1382 $this->assertTrue( $info->wasRemembered() );
1383 $this->assertSame( [], $logger->getBuffer() );
1385 $this->store
->setSessionMeta( $id, [ 'remember' => false ] +
$metadata );
1386 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1387 'provider' => $provider,
1389 'userInfo' => $userInfo
1391 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1392 $this->assertTrue( $info->wasRemembered() );
1393 $this->assertSame( [], $logger->getBuffer() );
1395 // forceHTTPS from session
1396 $this->store
->setSessionMeta( $id, $metadata );
1397 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1398 'provider' => $provider,
1400 'userInfo' => $userInfo
1402 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1403 $this->assertFalse( $info->forceHTTPS() );
1404 $this->assertSame( [], $logger->getBuffer() );
1406 $this->store
->setSessionMeta( $id, [ 'forceHTTPS' => true ] +
$metadata );
1407 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1408 'provider' => $provider,
1410 'userInfo' => $userInfo
1412 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1413 $this->assertTrue( $info->forceHTTPS() );
1414 $this->assertSame( [], $logger->getBuffer() );
1416 $this->store
->setSessionMeta( $id, [ 'forceHTTPS' => false ] +
$metadata );
1417 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1418 'provider' => $provider,
1420 'userInfo' => $userInfo,
1421 'forceHTTPS' => true
1423 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1424 $this->assertTrue( $info->forceHTTPS() );
1425 $this->assertSame( [], $logger->getBuffer() );
1427 // "Persist" flag from session
1428 $this->store
->setSessionMeta( $id, $metadata );
1429 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1430 'provider' => $provider,
1432 'userInfo' => $userInfo
1434 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1435 $this->assertFalse( $info->wasPersisted() );
1436 $this->assertSame( [], $logger->getBuffer() );
1438 $this->store
->setSessionMeta( $id, [ 'persisted' => true ] +
$metadata );
1439 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1440 'provider' => $provider,
1442 'userInfo' => $userInfo
1444 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1445 $this->assertTrue( $info->wasPersisted() );
1446 $this->assertSame( [], $logger->getBuffer() );
1448 $this->store
->setSessionMeta( $id, [ 'persisted' => false ] +
$metadata );
1449 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1450 'provider' => $provider,
1452 'userInfo' => $userInfo,
1455 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1456 $this->assertTrue( $info->wasPersisted() );
1457 $this->assertSame( [], $logger->getBuffer() );
1459 // Provider refreshSessionInfo() returning false
1460 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1461 'provider' => $provider3,
1463 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1464 $this->assertSame( [], $logger->getBuffer() );
1468 $data = [ 'foo' => 1 ];
1469 $this->store
->setSession( $id, [ 'metadata' => $metadata, 'data' => $data ] );
1470 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1471 'provider' => $provider,
1473 'userInfo' => $userInfo
1475 $this->mergeMwGlobalArrayValue( 'wgHooks', [
1476 'SessionCheckInfo' => [ function ( &$reason, $i, $r, $m, $d ) use (
1477 $info, $metadata, $data, $request, &$called
1479 $this->assertSame( $info->getId(), $i->getId() );
1480 $this->assertSame( $info->getProvider(), $i->getProvider() );
1481 $this->assertSame( $info->getUserInfo(), $i->getUserInfo() );
1482 $this->assertSame( $request, $r );
1483 $this->assertEquals( $metadata, $m );
1484 $this->assertEquals( $data, $d );
1489 $this->assertFalse( $loadSessionInfoFromStore( $info ) );
1490 $this->assertTrue( $called );
1491 $this->assertSame( [
1492 [ LogLevel
::WARNING
, 'Session "{session}": Hook aborted' ],
1493 ], $logger->getBuffer() );
1494 $logger->clearBuffer();
1495 $this->mergeMwGlobalArrayValue( 'wgHooks', [ 'SessionCheckInfo' => [] ] );
1497 // forceUse deletes bad backend data
1498 $this->store
->setSessionMeta( $id, [ 'userToken' => 'Bad' ] +
$metadata );
1499 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, [
1500 'provider' => $provider,
1502 'userInfo' => $userInfo,
1505 $this->assertTrue( $loadSessionInfoFromStore( $info ) );
1506 $this->assertFalse( $this->store
->getSession( $id ) );
1507 $this->assertSame( [
1508 [ LogLevel
::WARNING
, 'Session "{session}": User token mismatch' ],
1509 ], $logger->getBuffer() );
1510 $logger->clearBuffer();