1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 02:36:38 +02:00

[ticket/15294] Minor code adjusting

PHPBB3-15294
This commit is contained in:
rxu
2019-11-05 20:42:59 +07:00
parent 56bff6380e
commit 7ea063100e
3 changed files with 51 additions and 51 deletions

View File

@@ -47,32 +47,32 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
$config['session_length'] = 3600;
$this->check_expired_sessions_recent(
array(
array(
[
[
'session_user_id' => 4,
'recent_time' => 1500000000,
),
array(
],
[
'session_user_id' => 5,
'recent_time' => 1500000000,
),
),
],
],
'Before test, should get recent expired sessions only.'
);
$this->check_user_session_data(
array(
array(
[
[
'username_clean' => 'bar',
'user_lastvisit' => 1400000000,
'user_lastpage' => 'oldpage_user_bar.php',
),
array(
],
[
'username_clean' => 'foo',
'user_lastvisit' => 1400000000,
'user_lastpage' => 'oldpage_user_foo.php',
),
),
],
],
'Before test, users session data is not updated yet.'
);
@@ -80,23 +80,23 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
$config['captcha_plugin'] = 'core.captcha.plugins.nogd';
$this->session->session_gc();
$this->check_expired_sessions_recent(
array(),
[],
'After garbage collection, all expired sessions should be removed.'
);
$this->check_user_session_data(
array(
array(
[
[
'username_clean' => 'bar',
'user_lastvisit' => '1500000000',
'user_lastpage' => 'newpage_user_bar.php',
),
array(
],
[
'username_clean' => 'foo',
'user_lastvisit' => '1500000000',
'user_lastpage' => 'newpage_user_foo.php',
),
),
],
],
'After garbage collection, users session data should be updated to the recent expired sessions data.'
);
}
@@ -104,28 +104,28 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
public function test_cleanup_all()
{
$this->check_sessions_equals(
array(
array(
[
[
'session_id' => 'anon_session00000000000000000000',
'session_user_id' => 1,
),
array(
],
[
'session_id' => 'bar_session000000000000000000000',
'session_user_id' => 4,
),
array(
],
[
'session_id' => 'bar_session000000000000000000002',
'session_user_id' => 4,
),
array(
],
[
'session_id' => 'foo_session000000000000000000000',
'session_user_id' => 5,
),
array(
],
[
'session_id' => 'foo_session000000000000000000002',
'session_user_id' => 5,
),
),
],
],
'Before test, should have some sessions.'
);
// Set session length so it clears all
@@ -135,7 +135,7 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
$config['captcha_plugin'] = 'core.captcha.plugins.nogd';
$this->session->session_gc();
$this->check_sessions_equals(
array(),
[],
'After setting session time to 0, should remove all.'
);
}