2013-07-12 13:04:37 -07:00
|
|
|
<?php
|
|
|
|
/**
|
2014-05-27 20:18:06 +02:00
|
|
|
*
|
|
|
|
* This file is part of the phpBB Forum Software package.
|
|
|
|
*
|
|
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
*
|
|
|
|
* For full copyright and license information, please see
|
|
|
|
* the docs/CREDITS.txt file.
|
|
|
|
*
|
|
|
|
*/
|
2013-07-12 13:04:37 -07:00
|
|
|
|
|
|
|
require_once dirname(__FILE__) . '/../test_framework/phpbb_session_test_case.php';
|
|
|
|
|
|
|
|
class phpbb_session_garbage_collection_test extends phpbb_session_test_case
|
|
|
|
{
|
|
|
|
public $session;
|
|
|
|
|
|
|
|
public function getDataSet()
|
|
|
|
{
|
2013-07-22 13:51:06 -07:00
|
|
|
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/sessions_garbage.xml');
|
2013-07-12 13:04:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->session = $this->session_factory->get_session($this->db);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_cleanup_all()
|
|
|
|
{
|
2013-07-22 17:39:45 -07:00
|
|
|
$this->check_sessions_equals(
|
2013-07-12 13:04:37 -07:00
|
|
|
array(
|
2013-07-22 17:39:45 -07:00
|
|
|
array(
|
2013-07-12 13:04:37 -07:00
|
|
|
'session_id' => 'anon_session00000000000000000000',
|
|
|
|
'session_user_id' => 1,
|
|
|
|
),
|
2013-07-22 17:39:45 -07:00
|
|
|
array(
|
2013-07-12 13:04:37 -07:00
|
|
|
'session_id' => 'bar_session000000000000000000000',
|
|
|
|
'session_user_id' => 4,
|
2013-07-22 17:39:45 -07:00
|
|
|
),
|
|
|
|
),
|
2013-07-12 13:04:37 -07:00
|
|
|
'Before test, should have some sessions.'
|
|
|
|
);
|
|
|
|
// Set session length so it clears all
|
|
|
|
global $config;
|
|
|
|
$config['session_length'] = 0;
|
|
|
|
// There is an error unless the captcha plugin is set
|
|
|
|
$config['captcha_plugin'] = 'phpbb_captcha_nogd';
|
|
|
|
$this->session->session_gc();
|
2013-07-22 17:39:45 -07:00
|
|
|
$this->check_sessions_equals(
|
2013-07-12 13:04:37 -07:00
|
|
|
array(),
|
|
|
|
'After setting session time to 0, should remove all.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|