aboutsummaryrefslogtreecommitdiffstats
path: root/tests/session
diff options
context:
space:
mode:
authorasperous <asperous2@gmail.com>2013-07-13 08:26:46 -0700
committerAndy Chase <asperous2@gmail.com>2013-07-22 11:07:47 -0700
commit25b189d33bbf2b94da6f9f969e8d91ade8eba30a (patch)
tree948498119a10a01570880de3e67bf4afcd2648e8 /tests/session
parent30f198c61a56deb14223a60a8ebf370cc90d9f4b (diff)
downloadforums-25b189d33bbf2b94da6f9f969e8d91ade8eba30a.tar
forums-25b189d33bbf2b94da6f9f969e8d91ade8eba30a.tar.gz
forums-25b189d33bbf2b94da6f9f969e8d91ade8eba30a.tar.bz2
forums-25b189d33bbf2b94da6f9f969e8d91ade8eba30a.tar.xz
forums-25b189d33bbf2b94da6f9f969e8d91ade8eba30a.zip
[ticket/11620] Cleanup creation_test that was renamed on a cherry-pick
PHPBB3-11620
Diffstat (limited to 'tests/session')
-rw-r--r--tests/session/creation_test.php69
1 files changed, 0 insertions, 69 deletions
diff --git a/tests/session/creation_test.php b/tests/session/creation_test.php
deleted file mode 100644
index fde76d6b06..0000000000
--- a/tests/session/creation_test.php
+++ /dev/null
@@ -1,69 +0,0 @@
-<?php
-/**
-*
-* @package testing
-* @copyright (c) 2011 phpBB Group
-* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-*
-*/
-
-require_once dirname(__FILE__) . '/testable_factory.php';
-
-class phpbb_session_creation_test extends phpbb_database_test_case
-{
- public function getDataSet()
- {
- return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/sessions_empty.xml');
- }
-
- // also see security/extract_current_page.php
-
- 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);
- $session->page = array('page' => 'page', 'forum' => 0);
-
- $session->session_create(3);
-
- $sql = 'SELECT session_user_id
- FROM phpbb_sessions';
-
- $this->assertSqlResultEquals(
- array(array('session_user_id' => 3)),
- $sql,
- 'Check if exactly one session for user id 3 was created'
- );
-
- $one_year_in_seconds = 365 * 24 * 60 * 60;
- $cookie_expire = $session->time_now + $one_year_in_seconds;
-
- $session->check_cookies($this, array(
- 'u' => array(null, $cookie_expire),
- 'k' => array(null, $cookie_expire),
- 'sid' => array($session->session_id, $cookie_expire),
- ));
-
- global $SID, $_SID;
- $this->assertEquals($session->session_id, $_SID);
- $this->assertEquals('?sid=' . $session->session_id, $SID);
-
- $session_factory->check($this);
- }
-}
-