forked from josantonius/php-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSessionTest.php
270 lines (217 loc) · 5.44 KB
/
SessionTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<?php
/**
* PHP library for handling sessions.
*
* @author Josantonius <[email protected]>
* @copyright 2017 - 2018 (c) Josantonius - PHP-Session
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
* @link https://github.com/Josantonius/PHP-Session
* @since 1.1.3
*/
namespace Josantonius\Session;
use PHPUnit\Framework\TestCase;
/**
* Tests class for Session library.
*
* @since 1.1.3
*/
class SessionTest extends TestCase
{
/**
* Session instance.
*
* @since 1.1.5
*
* @var object
*/
protected $Session;
/**
* Set up.
*
* @since 1.1.5
*/
public function setUp()
{
parent::setUp();
$this->Session = new Session;
}
/**
* Check if it is an instance of Session.
*
* @since 1.1.5
*/
public function testIsInstanceOfSession()
{
$this->assertInstanceOf('Josantonius\Session\Session', $this->Session);
}
/**
* Set prefix for sessions.
*/
public function testSetPrefix()
{
$session = $this->Session;
$this->assertTrue($session::setPrefix('ses_'));
}
/**
* Get prefix for sessions.
*
* @since 1.1.6
*/
public function testGetPrefix()
{
$session = $this->Session;
$session::setPrefix('ses_');
$this->assertSame('ses_', $session::getPrefix());
}
/**
* Start session.
*
* @runInSeparateProcess
*/
public function testInit()
{
$session = $this->Session;
$this->assertTrue($session::init());
$this->assertFalse($session::init());
}
/**
* Start session with a max lifetime.
*
* @runInSeparateProcess
*/
public function testInitLifeTime()
{
$session = $this->Session;
$this->assertTrue($session::init(10));
$this->assertFalse($session::init(10));
}
/**
* Add value to a session.
*/
public function testSet()
{
$session = $this->Session;
$this->assertTrue($session::set('name', 'Joseph'));
}
/**
* Add multiple value to sessions.
*/
public function testSetMultiple()
{
$session = $this->Session;
$data = [
'name' => 'Joseph',
'age' => '28',
'business' => ['name' => 'Company'],
];
$this->assertTrue($session::set($data));
}
/**
* Extract session item, delete session item and finally return the item.
*/
public function testPull()
{
$session = $this->Session;
$this->assertContains('28', $session::pull('age'));
}
/**
* Extract inexistent session item.
*/
public function testPullNonExistent()
{
$session = $this->Session;
$this->assertNull($session::pull('???'));
}
/**
* Get item from session.
*/
public function testGet()
{
$session = $this->Session;
$this->assertContains('Joseph', $session::get('name'));
}
/**
* Get inexistent session item from session.
*/
public function testGetNonExistent()
{
$session = $this->Session;
$this->assertNull($session::get('age'));
}
/**
* Get item from session entering two indexes.
*/
public function testGetWithSecondKey()
{
$session = $this->Session;
$this->assertContains('Company', $session::get('business', 'name'));
}
/**
* Get inexistent item from session entering two indexes.
*/
public function testGetWithSecondKeyNonExistent()
{
$session = $this->Session;
$this->assertNull($session::get('???', '???'));
}
/**
* Return the session array.
*/
public function testGetAll()
{
$session = $this->Session;
$this->assertInternalType('array', $session::get());
}
/**
* Get session id.
*/
public function testId()
{
$session = $this->Session;
$this->assertInternalType('string', $session::id());
}
/**
* Regenerate session_id.
*
* @runInSeparateProcess
*/
public function testRegenerate()
{
$session = $this->Session;
$this->assertTrue($session::init());
$this->assertInternalType('string', $session::regenerate());
}
/**
* Validate that the id was regenerate.
*
* @runInSeparateProcess
*/
public function testValidateRegenerateId()
{
$session = $this->Session;
$this->assertTrue($session::init());
$actualID = $session::id();
$this->assertInternalType('string', $actualID);
$newID = $session::regenerate();
$this->assertInternalType('string', $newID);
$this->assertNotSame($actualID, $newID);
}
/**
* Destroys one key session.
*
* @runInSeparateProcess
*/
public function testDestroy()
{
$session = $this->Session;
$this->assertTrue($session::init());
$this->assertTrue($session::set('name', 'Joseph'));
$this->assertContains('Joseph', $session::get('name'));
$this->assertTrue($session::destroy('name'));
$this->assertNull($session::get('name'));
$this->assertTrue($session::destroy('ses_', true));
$this->assertTrue($session::set('name', 'Joseph'));
$this->assertTrue($session::destroy('name', true));
$this->assertTrue($session::destroy());
}
}