mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
[feature/auth-refactor] Fix two session tests broken by changes
PHPBB3-9734
This commit is contained in:
parent
4afdd650cd
commit
19bbf7b7de
2 changed files with 26 additions and 0 deletions
|
@ -53,7 +53,20 @@ class phpbb_session_continue_test extends phpbb_database_test_case
|
||||||
*/
|
*/
|
||||||
public function test_session_begin_valid_session($session_id, $user_id, $user_agent, $ip, $expected_sessions, $expected_cookies, $message)
|
public function test_session_begin_valid_session($session_id, $user_id, $user_agent, $ip, $expected_sessions, $expected_cookies, $message)
|
||||||
{
|
{
|
||||||
|
global $phpbb_container, $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
$db = $this->new_dbal();
|
$db = $this->new_dbal();
|
||||||
|
$config = new phpbb_config(array());
|
||||||
|
$request = $this->getMock('phpbb_request');
|
||||||
|
$user = $this->getMock('phpbb_user');
|
||||||
|
|
||||||
|
$auth_provider = new phpbb_auth_provider_db($db, $config, $request, $user, $phpbb_root_path, $phpEx);
|
||||||
|
$phpbb_container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
|
||||||
|
$phpbb_container->expects($this->any())
|
||||||
|
->method('get')
|
||||||
|
->with('auth.provider.db')
|
||||||
|
->will($this->returnValue($auth_provider));
|
||||||
|
|
||||||
$session_factory = new phpbb_session_testable_factory;
|
$session_factory = new phpbb_session_testable_factory;
|
||||||
$session_factory->set_cookies(array(
|
$session_factory->set_cookies(array(
|
||||||
'_sid' => $session_id,
|
'_sid' => $session_id,
|
||||||
|
|
|
@ -20,7 +20,20 @@ class phpbb_session_init_test extends phpbb_database_test_case
|
||||||
|
|
||||||
public function test_login_session_create()
|
public function test_login_session_create()
|
||||||
{
|
{
|
||||||
|
global $phpbb_container, $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
$db = $this->new_dbal();
|
$db = $this->new_dbal();
|
||||||
|
$config = new phpbb_config(array());
|
||||||
|
$request = $this->getMock('phpbb_request');
|
||||||
|
$user = $this->getMock('phpbb_user');
|
||||||
|
|
||||||
|
$auth_provider = new phpbb_auth_provider_db($db, $config, $request, $user, $phpbb_root_path, $phpEx);
|
||||||
|
$phpbb_container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
|
||||||
|
$phpbb_container->expects($this->any())
|
||||||
|
->method('get')
|
||||||
|
->with('auth.provider.db')
|
||||||
|
->will($this->returnValue($auth_provider));
|
||||||
|
|
||||||
$session_factory = new phpbb_session_testable_factory;
|
$session_factory = new phpbb_session_testable_factory;
|
||||||
|
|
||||||
$session = $session_factory->get_session($db);
|
$session = $session_factory->get_session($db);
|
||||||
|
|
Loading…
Add table
Reference in a new issue