3 namespace MediaWiki\Session
;
10 * @covers MediaWiki\Session\PHPSessionHandler
12 class PHPSessionHandlerTest
extends MediaWikiTestCase
{
14 private function getResetter( &$rProp = null ) {
17 // Ignore "headers already sent" warnings during this test
18 set_error_handler( function ( $errno, $errstr ) use ( &$warnings ) {
19 if ( preg_match( '/headers already sent/', $errstr ) ) {
24 $reset[] = new \
ScopedCallback( 'restore_error_handler' );
26 $rProp = new \
ReflectionProperty( 'MediaWiki\\Session\\PHPSessionHandler', 'instance' );
27 $rProp->setAccessible( true );
28 if ( $rProp->getValue() ) {
29 $old = \TestingAccessWrapper
::newFromObject( $rProp->getValue() );
30 $oldManager = $old->manager
;
31 $oldStore = $old->store
;
32 $oldLogger = $old->logger
;
33 $reset[] = new \
ScopedCallback(
34 array( 'MediaWiki\\Session\\PHPSessionHandler', 'install' ),
35 array( $oldManager, $oldStore, $oldLogger )
42 public function testEnableFlags() {
43 $handler = \TestingAccessWrapper
::newFromObject(
44 $this->getMockBuilder( 'MediaWiki\\Session\\PHPSessionHandler' )
46 ->disableOriginalConstructor()
50 $rProp = new \
ReflectionProperty( 'MediaWiki\\Session\\PHPSessionHandler', 'instance' );
51 $rProp->setAccessible( true );
52 $reset = new \
ScopedCallback( array( $rProp, 'setValue' ), array( $rProp->getValue() ) );
53 $rProp->setValue( $handler );
55 $handler->setEnableFlags( 'enable' );
56 $this->assertTrue( $handler->enable
);
57 $this->assertFalse( $handler->warn
);
58 $this->assertTrue( PHPSessionHandler
::isEnabled() );
60 $handler->setEnableFlags( 'warn' );
61 $this->assertTrue( $handler->enable
);
62 $this->assertTrue( $handler->warn
);
63 $this->assertTrue( PHPSessionHandler
::isEnabled() );
65 $handler->setEnableFlags( 'disable' );
66 $this->assertFalse( $handler->enable
);
67 $this->assertFalse( PHPSessionHandler
::isEnabled() );
69 $rProp->setValue( null );
70 $this->assertFalse( PHPSessionHandler
::isEnabled() );
73 public function testInstall() {
74 $reset = $this->getResetter( $rProp );
75 $rProp->setValue( null );
77 session_write_close();
78 ini_set( 'session.use_cookies', 1 );
79 ini_set( 'session.use_trans_sid', 1 );
81 $store = new \
HashBagOStuff();
82 $logger = new \
TestLogger();
83 $manager = new SessionManager( array(
88 $this->assertFalse( PHPSessionHandler
::isInstalled() );
89 PHPSessionHandler
::install( $manager );
90 $this->assertTrue( PHPSessionHandler
::isInstalled() );
92 $this->assertFalse( wfIniGetBool( 'session.use_cookies' ) );
93 $this->assertFalse( wfIniGetBool( 'session.use_trans_sid' ) );
95 $this->assertNotNull( $rProp->getValue() );
96 $priv = \TestingAccessWrapper
::newFromObject( $rProp->getValue() );
97 $this->assertSame( $manager, $priv->manager
);
98 $this->assertSame( $store, $priv->store
);
99 $this->assertSame( $logger, $priv->logger
);
103 * @dataProvider provideHandlers
104 * @param string $handler php serialize_handler to use
106 public function testSessionHandling( $handler ) {
107 $this->hideDeprecated( '$_SESSION' );
108 $reset[] = $this->getResetter( $rProp );
110 $this->setMwGlobals( array(
111 'wgSessionProviders' => array( array( 'class' => 'DummySessionProvider' ) ),
112 'wgObjectCacheSessionExpiry' => 2,
115 $store = new \
HashBagOStuff();
116 $logger = new \
TestLogger( true, function ( $m ) {
117 return preg_match( '/^SessionBackend a{32} /', $m ) ?
null : $m;
119 $manager = new SessionManager( array(
123 PHPSessionHandler
::install( $manager );
124 $wrap = \TestingAccessWrapper
::newFromObject( $rProp->getValue() );
125 $reset[] = new \
ScopedCallback(
126 array( $wrap, 'setEnableFlags' ),
127 array( $wrap->enable ?
$wrap->warn ?
'warn' : 'enable' : 'disable' )
129 $wrap->setEnableFlags( 'warn' );
131 \MediaWiki\
suppressWarnings();
132 ini_set( 'session.serialize_handler', $handler );
133 \MediaWiki\restoreWarnings
();
134 if ( ini_get( 'session.serialize_handler' ) !== $handler ) {
135 $this->markTestSkipped( "Cannot set session.serialize_handler to \"$handler\"" );
138 // Session IDs for testing
139 $sessionA = str_repeat( 'a', 32 );
140 $sessionB = str_repeat( 'b', 32 );
141 $sessionC = str_repeat( 'c', 32 );
143 // Set up garbage data in the session
144 $_SESSION['AuthenticationSessionTest'] = 'bogus';
146 session_id( $sessionA );
148 $this->assertSame( array(), $_SESSION );
149 $this->assertSame( $sessionA, session_id() );
151 // Set some data in the session so we can see if it works.
153 $_SESSION['AuthenticationSessionTest'] = $rand;
154 $expect = array( 'AuthenticationSessionTest' => $rand );
155 session_write_close();
156 $this->assertSame( array(
157 array( LogLevel
::WARNING
, 'Something wrote to $_SESSION!' ),
158 ), $logger->getBuffer() );
160 // Screw up $_SESSION so we can tell the difference between "this
161 // worked" and "this did nothing"
162 $_SESSION['AuthenticationSessionTest'] = 'bogus';
164 // Re-open the session and see that data was actually reloaded
166 $this->assertSame( $expect, $_SESSION );
168 // Make sure session_reset() works too.
169 if ( function_exists( 'session_reset' ) ) {
170 $_SESSION['AuthenticationSessionTest'] = 'bogus';
172 $this->assertSame( $expect, $_SESSION );
176 session_write_close();
177 ini_set( 'session.gc_divisor', 1 );
178 ini_set( 'session.gc_probability', 1 );
181 $this->assertSame( array(), $_SESSION );
183 // Re-fill the session, then test that session_destroy() works.
184 $_SESSION['AuthenticationSessionTest'] = $rand;
185 session_write_close();
187 $this->assertSame( $expect, $_SESSION );
189 session_id( $sessionA );
191 $this->assertSame( array(), $_SESSION );
192 session_write_close();
194 // Test that our session handler won't clone someone else's session
195 session_id( $sessionB );
197 $this->assertSame( $sessionB, session_id() );
198 $_SESSION['id'] = 'B';
199 session_write_close();
201 session_id( $sessionC );
203 $this->assertSame( array(), $_SESSION );
204 $_SESSION['id'] = 'C';
205 session_write_close();
207 session_id( $sessionB );
209 $this->assertSame( array( 'id' => 'B' ), $_SESSION );
210 session_write_close();
212 session_id( $sessionC );
214 $this->assertSame( array( 'id' => 'C' ), $_SESSION );
217 session_id( $sessionB );
219 $this->assertSame( array( 'id' => 'B' ), $_SESSION );
221 // Test merging between Session and $_SESSION
222 session_write_close();
224 $session = $manager->getEmptySession();
225 $session->set( 'Unchanged', 'setup' );
226 $session->set( 'Unchanged, null', null );
227 $session->set( 'Changed in $_SESSION', 'setup' );
228 $session->set( 'Changed in Session', 'setup' );
229 $session->set( 'Changed in both', 'setup' );
230 $session->set( 'Deleted in Session', 'setup' );
231 $session->set( 'Deleted in $_SESSION', 'setup' );
232 $session->set( 'Deleted in both', 'setup' );
233 $session->set( 'Deleted in Session, changed in $_SESSION', 'setup' );
234 $session->set( 'Deleted in $_SESSION, changed in Session', 'setup' );
238 session_id( $session->getId() );
240 $session->set( 'Added in Session', 'Session' );
241 $session->set( 'Added in both', 'Session' );
242 $session->set( 'Changed in Session', 'Session' );
243 $session->set( 'Changed in both', 'Session' );
244 $session->set( 'Deleted in $_SESSION, changed in Session', 'Session' );
245 $session->remove( 'Deleted in Session' );
246 $session->remove( 'Deleted in both' );
247 $session->remove( 'Deleted in Session, changed in $_SESSION' );
249 $_SESSION['Added in $_SESSION'] = '$_SESSION';
250 $_SESSION['Added in both'] = '$_SESSION';
251 $_SESSION['Changed in $_SESSION'] = '$_SESSION';
252 $_SESSION['Changed in both'] = '$_SESSION';
253 $_SESSION['Deleted in Session, changed in $_SESSION'] = '$_SESSION';
254 unset( $_SESSION['Deleted in $_SESSION'] );
255 unset( $_SESSION['Deleted in both'] );
256 unset( $_SESSION['Deleted in $_SESSION, changed in Session'] );
257 session_write_close();
259 $this->assertEquals( array(
260 'Added in Session' => 'Session',
261 'Added in $_SESSION' => '$_SESSION',
262 'Added in both' => 'Session',
263 'Unchanged' => 'setup',
264 'Unchanged, null' => null,
265 'Changed in Session' => 'Session',
266 'Changed in $_SESSION' => '$_SESSION',
267 'Changed in both' => 'Session',
268 'Deleted in Session, changed in $_SESSION' => '$_SESSION',
269 'Deleted in $_SESSION, changed in Session' => 'Session',
270 ), iterator_to_array( $session ) );
273 $session->set( 42, 'forty-two' );
274 $session->set( 'forty-two', 42 );
275 $session->set( 'wrong', 43 );
280 $this->assertArrayHasKey( 'forty-two', $_SESSION );
281 $this->assertSame( 42, $_SESSION['forty-two'] );
282 $this->assertArrayHasKey( 'wrong', $_SESSION );
283 unset( $_SESSION['wrong'] );
284 session_write_close();
286 $this->assertEquals( array(
289 ), iterator_to_array( $session ) );
291 // Test that write doesn't break if the session is invalid
292 $session = $manager->getEmptySession();
294 session_id( $session->getId() );
296 $this->mergeMwGlobalArrayValue( 'wgHooks', array(
297 'SessionCheckInfo' => array( function ( &$reason ) {
302 $this->assertNull( $manager->getSessionById( $session->getId(), true ), 'sanity check' );
303 session_write_close();
304 $this->mergeMwGlobalArrayValue( 'wgHooks', array(
305 'SessionCheckInfo' => array(),
307 $this->assertNotNull( $manager->getSessionById( $session->getId(), true ), 'sanity check' );
310 public static function provideHandlers() {
313 array( 'php_binary' ),
314 array( 'php_serialize' ),
319 * @dataProvider provideDisabled
320 * @expectedException BadMethodCallException
321 * @expectedExceptionMessage Attempt to use PHP session management
323 public function testDisabled( $method, $args ) {
324 $rProp = new \
ReflectionProperty( 'MediaWiki\\Session\\PHPSessionHandler', 'instance' );
325 $rProp->setAccessible( true );
326 $handler = $this->getMockBuilder( 'MediaWiki\\Session\\PHPSessionHandler' )
328 ->disableOriginalConstructor()
330 \TestingAccessWrapper
::newFromObject( $handler )->setEnableFlags( 'disable' );
331 $oldValue = $rProp->getValue();
332 $rProp->setValue( $handler );
333 $reset = new \
ScopedCallback( array( $rProp, 'setValue' ), array( $oldValue ) );
335 call_user_func_array( array( $handler, $method ), $args );
338 public static function provideDisabled() {
340 array( 'open', array( '', '' ) ),
341 array( 'read', array( '' ) ),
342 array( 'write', array( '', '' ) ),
343 array( 'destroy', array( '' ) ),
348 * @dataProvider provideWrongInstance
349 * @expectedException UnexpectedValueException
350 * @expectedExceptionMessageRegExp /: Wrong instance called!$/
352 public function testWrongInstance( $method, $args ) {
353 $handler = $this->getMockBuilder( 'MediaWiki\\Session\\PHPSessionHandler' )
355 ->disableOriginalConstructor()
357 \TestingAccessWrapper
::newFromObject( $handler )->setEnableFlags( 'enable' );
359 call_user_func_array( array( $handler, $method ), $args );
362 public static function provideWrongInstance() {
364 array( 'open', array( '', '' ) ),
365 array( 'close', array() ),
366 array( 'read', array( '' ) ),
367 array( 'write', array( '', '' ) ),
368 array( 'destroy', array( '' ) ),
369 array( 'gc', array( 0 ) ),