aboutsummaryrefslogtreecommitdiffstats
path: root/tests/session/creation_test.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-06-27 01:09:52 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-06-27 01:09:52 +0200
commit95730c1ff10a032b799f01151996fc36aa84db0e (patch)
tree4a59397562cf82d6778f80ec3becbf075f492f0c /tests/session/creation_test.php
parent47241878d01adaa3a169982bc64167342fb7cfd8 (diff)
parent7ba81a293f014f3c6b161672b8fbc27e2075d239 (diff)
downloadforums-95730c1ff10a032b799f01151996fc36aa84db0e.tar
forums-95730c1ff10a032b799f01151996fc36aa84db0e.tar.gz
forums-95730c1ff10a032b799f01151996fc36aa84db0e.tar.bz2
forums-95730c1ff10a032b799f01151996fc36aa84db0e.tar.xz
forums-95730c1ff10a032b799f01151996fc36aa84db0e.zip
Merge remote-tracking branch 'asperous/ticket/11615/creation_test' into develop-olympus
* asperous/ticket/11615/creation_test: [ticket/11615] Fix typo in creation_test [ticket/11615] Remove magic number in creation_test [ticket/11615] Rename class in file to match [ticket/11615] Rename init_test to creation_test for clarity
Diffstat (limited to 'tests/session/creation_test.php')
-rw-r--r--tests/session/creation_test.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/session/creation_test.php b/tests/session/creation_test.php
new file mode 100644
index 0000000000..bef52c6554
--- /dev/null
+++ b/tests/session/creation_test.php
@@ -0,0 +1,57 @@
+<?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__) . '/../mock/cache.php';
+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()
+ {
+ $db = $this->new_dbal();
+ $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);
+ }
+}
+