|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
abstract class HybridSessionAbstractTest extends SapphireTest { |
|
|
|
|
|
|
4
|
|
|
|
|
5
|
|
|
public function setUp() { |
|
6
|
|
|
parent::setUp(); |
|
7
|
|
|
|
|
8
|
|
|
HybridSessionAbstractTest_TestCookieBackend::$override_headers_sent = false; |
|
|
|
|
|
|
9
|
|
|
|
|
10
|
|
|
Injector::nest(); |
|
11
|
|
|
Injector::inst()->registerService( |
|
12
|
|
|
new HybridSessionAbstractTest_TestCookieBackend(), |
|
|
|
|
|
|
13
|
|
|
'HybridSessionStore_Cookie' |
|
14
|
|
|
); |
|
15
|
|
|
|
|
16
|
|
|
SS_Datetime::set_mock_now('2010-03-15 12:00:00'); |
|
17
|
|
|
|
|
18
|
|
|
if(get_class() === get_class($this)) { |
|
19
|
|
|
$this->markTestSkipped("Skipping abstract test"); |
|
|
|
|
|
|
20
|
|
|
$this->skipTest = true; |
|
21
|
|
|
} |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
public function tearDown() { |
|
25
|
|
|
Injector::unnest(); |
|
26
|
|
|
SS_Datetime::clear_mock_now(); |
|
27
|
|
|
|
|
28
|
|
|
parent::tearDown(); |
|
29
|
|
|
} |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* @return HybridSessionStore_Base |
|
33
|
|
|
*/ |
|
34
|
|
|
abstract protected function getStore(); |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* Test how this store handles large volumes of data (>1000 characters) |
|
38
|
|
|
*/ |
|
39
|
|
View Code Duplication |
public function testStoreLargeData() { |
|
|
|
|
|
|
40
|
|
|
$session = uniqid(); |
|
41
|
|
|
$store = $this->getStore(); |
|
42
|
|
|
|
|
43
|
|
|
// Test new session is blank |
|
44
|
|
|
$result = $store->read($session); |
|
45
|
|
|
$this->assertEmpty($result); |
|
|
|
|
|
|
46
|
|
|
|
|
47
|
|
|
// Save data against session |
|
48
|
|
|
$data1 = array( |
|
49
|
|
|
'Large' => str_repeat('A', 600), |
|
50
|
|
|
'Content' => str_repeat('B', 600) |
|
51
|
|
|
); |
|
52
|
|
|
$store->write($session, serialize($data1)); |
|
53
|
|
|
$result = $store->read($session); |
|
54
|
|
|
$this->assertEquals($data1, unserialize($result)); |
|
|
|
|
|
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Test storage of data |
|
59
|
|
|
*/ |
|
60
|
|
|
public function testStoreData() { |
|
61
|
|
|
$session = uniqid(); |
|
62
|
|
|
$store = $this->getStore(); |
|
63
|
|
|
|
|
64
|
|
|
// Test new session is blank |
|
65
|
|
|
$result = $store->read($session); |
|
66
|
|
|
$this->assertEmpty($result); |
|
|
|
|
|
|
67
|
|
|
|
|
68
|
|
|
// Save data against session |
|
69
|
|
|
$data1 = array( |
|
70
|
|
|
'Color' => 'red', |
|
71
|
|
|
'Animal' => 'elephant' |
|
72
|
|
|
); |
|
73
|
|
|
$store->write($session, serialize($data1)); |
|
74
|
|
|
$result = $store->read($session); |
|
75
|
|
|
$this->assertEquals($data1, unserialize($result)); |
|
|
|
|
|
|
76
|
|
|
|
|
77
|
|
|
// Save larger data |
|
78
|
|
|
$data2 = array( |
|
79
|
|
|
'Color' => 'blue', |
|
80
|
|
|
'Animal' => str_repeat('bat', 100) |
|
81
|
|
|
); |
|
82
|
|
|
$store->write($session, serialize($data2)); |
|
83
|
|
|
$result = $store->read($session); |
|
84
|
|
|
$this->assertEquals($data2, unserialize($result)); |
|
|
|
|
|
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Test expiry of data |
|
89
|
|
|
*/ |
|
90
|
|
|
public function testExpiry() { |
|
91
|
|
|
$session1 = uniqid(); |
|
92
|
|
|
$store = $this->getStore(); |
|
93
|
|
|
|
|
94
|
|
|
// Store data now |
|
95
|
|
|
$data1 = array( |
|
96
|
|
|
'Food' => 'Pizza' |
|
97
|
|
|
); |
|
98
|
|
|
$store->write($session1, serialize($data1)); |
|
99
|
|
|
$result1 = $store->read($session1); |
|
100
|
|
|
$this->assertEquals($data1, unserialize($result1)); |
|
|
|
|
|
|
101
|
|
|
|
|
102
|
|
|
// Go to the future and test that the expiry is accurate |
|
103
|
|
|
SS_Datetime::set_mock_now('2040-03-16 12:00:00'); |
|
104
|
|
|
$result2 = $store->read($session1); |
|
105
|
|
|
$this->assertEmpty($result2); |
|
|
|
|
|
|
106
|
|
|
} |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
class HybridSessionAbstractTest_TestCookieBackend extends HybridSessionStore_Cookie { |
|
|
|
|
|
|
110
|
|
|
|
|
111
|
|
|
|
|
112
|
|
|
/** |
|
113
|
|
|
* Override value of 'headers_sent' but only if running tests. |
|
114
|
|
|
* |
|
115
|
|
|
* Set to true or false, or null to not override |
|
116
|
|
|
* |
|
117
|
|
|
* @var string |
|
118
|
|
|
*/ |
|
119
|
|
|
public static $override_headers_sent = null; |
|
120
|
|
|
|
|
121
|
|
|
protected function canWrite() { |
|
122
|
|
|
if(self::$override_headers_sent !== null) { |
|
123
|
|
|
return !self::$override_headers_sent; |
|
124
|
|
|
} |
|
125
|
|
|
parent::canWrite(); |
|
126
|
|
|
} |
|
127
|
|
|
} |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.