diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-26 11:31:11 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-26 11:33:17 -0400 |
commit | 19bbf7b7de4a2575405b84c8a253cbf9de315b7c (patch) | |
tree | e8ef70604aedb32a4752b00f1a534d3fe27e23af /tests/session | |
parent | 4afdd650cdea0a09da14e8dff23cee1b30e5980d (diff) | |
download | forums-19bbf7b7de4a2575405b84c8a253cbf9de315b7c.tar forums-19bbf7b7de4a2575405b84c8a253cbf9de315b7c.tar.gz forums-19bbf7b7de4a2575405b84c8a253cbf9de315b7c.tar.bz2 forums-19bbf7b7de4a2575405b84c8a253cbf9de315b7c.tar.xz forums-19bbf7b7de4a2575405b84c8a253cbf9de315b7c.zip |
[feature/auth-refactor] Fix two session tests broken by changes
PHPBB3-9734
Diffstat (limited to 'tests/session')
-rw-r--r-- | tests/session/continue_test.php | 13 | ||||
-rw-r--r-- | tests/session/init_test.php | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/tests/session/continue_test.php b/tests/session/continue_test.php index ad78d92299..e5a7f7a4a1 100644 --- a/tests/session/continue_test.php +++ b/tests/session/continue_test.php @@ -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) { + global $phpbb_container, $phpbb_root_path, $phpEx; + $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->set_cookies(array( '_sid' => $session_id, diff --git a/tests/session/init_test.php b/tests/session/init_test.php index 830de34ed0..43af8c554f 100644 --- a/tests/session/init_test.php +++ b/tests/session/init_test.php @@ -20,7 +20,20 @@ class phpbb_session_init_test extends phpbb_database_test_case public function test_login_session_create() { + global $phpbb_container, $phpbb_root_path, $phpEx; + $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 = $session_factory->get_session($db); |