ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilSessionTest.php
Go to the documentation of this file.
1<?php
2/*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22*/
23
29{
30 protected $backupGlobals = false;
31
32 protected function setUp()
33 {
34 include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
35 ilUnitUtil::performInitialisation();
36 }
37
41 public function testBasicSessionBehaviour()
42 {
43 global $DIC;
44
45 $ilUser = $DIC['ilUser'];
46
47 include_once("./Services/Authentication/classes/class.ilSession.php");
48 $result = "";
49 ilSession::_writeData("123456", "Testdata");
50 if (ilSession::_exists("123456")) {
51 $result .= "exists-";
52 }
53 if (ilSession::_getData("123456") == "Testdata") {
54 $result .= "write-get-";
55 }
56 $duplicate = ilSession::_duplicate("123456");
57 if (ilSession::_getData($duplicate) == "Testdata") {
58 $result .= "duplicate-";
59 }
60 ilSession::_destroy("123456");
61 if (!ilSession::_exists("123456")) {
62 $result .= "destroy-";
63 }
65 if (ilSession::_exists($duplicate)) {
66 $result .= "destroyExp-";
67 }
68
70 if (!ilSession::_exists($duplicate)) {
71 $result .= "destroyByUser-";
72 }
73 $this->assertEquals("exists-write-get-duplicate-destroy-destroyExp-destroyByUser-", $result);
74 }
75
80 {
81 global $DIC;
82
83 $ilUser = $DIC['ilUser'];
84
85 include_once("./include/inc.pwassist_session_handler.php");
86
87 $result = "";
88
89 // write session
90 db_pwassist_session_write("12345", 60, $ilUser->getId());
91
92 // find
94 if ($res["pwassist_id"] == "12345") {
95 $result .= "find-";
96 }
97
98 // read
100 if ($res["user_id"] == $ilUser->getId()) {
101 $result .= "read-";
102 }
103
104 // destroy
107 if (!$res) {
108 $result .= "destroy-";
109 }
110
112
113 $this->assertEquals("find-read-destroy-", $result);
114 }
115}
$result
An exception for terminatinating execution or to throw for unit testing.
Class ilSessionTest @group needsInstalledILIAS.
testPasswordAssisstanceSession()
@group IL_Init
testBasicSessionBehaviour()
@group IL_Init
static _exists($a_session_id)
Check whether session exists.
static _writeData($a_session_id, $a_data)
Write session data.
static _destroyExpiredSessions()
Destroy expired sessions.
static _destroy($a_session_id, $a_closing_context=null, $a_expired_at=null)
Destroy session.
static _destroyByUserId($a_user_id)
Destroy session.
static _getData($a_session_id)
Get session data from table.
static _duplicate($a_session_id)
Duplicate session.
db_pwassist_session_destroy($pwassist_id)
destroy session
db_pwassist_session_find($user_id)
db_pwassist_session_write($pwassist_id, $maxlifetime, $user_id)
Writes serialized session data to the database.
db_pwassist_session_read($pwassist_id)
db_pwassist_session_gc()
removes all expired sessions
global $DIC
Definition: saml.php:7
foreach($_POST as $key=> $value) $res
$ilUser
Definition: imgupload.php:18