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
|
<?php
namespace Jasny\Controller\Session;
use Jasny\Controller\Session\Flash;
/**
* @covers Jasny\Controller\Session\Flash
*/
class FlashTest extends \PHPUnit_Framework_TestCase
{
public function testGetEmpty()
{
$session = [];
$flash = new Flash($session);
$this->assertFalse($flash->isIssued(), "Flash should not be issued");
$this->assertEmpty($flash->get(), "Flash should be empty");
$this->assertEmpty($flash->getType(), "Flash type should not be set");
$this->assertEquals('', $flash->getMessage(), "Message should be empty");
$this->assertEquals('', (string)$flash, "Flash should be empty");
$this->assertArrayNotHasKey('flash', $session); // Calling get will clear the session data
}
public function testGetWithExistingFlash()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$this->assertTrue($flash->isIssued());
$this->assertEquals((object)['type' => 'notice', 'message' => 'Foo bar zoo'], $flash->get());
$this->assertEquals('notice', $flash->getType());
$this->assertEquals('Foo bar zoo', $flash->getMessage());
$this->assertEquals('Foo bar zoo', (string)$flash);
$this->assertArrayNotHasKey('flash', $session);
}
public function testExistingFlashWithoutGet()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$this->assertTrue($flash->isIssued());
$this->assertArrayHasKey('flash', $session);
$this->assertEquals(['type' => 'notice', 'message' => 'Foo bar zoo'], $session['flash']);
}
public function testSetFlash()
{
$session = [];
$flash = new Flash($session);
$flash->set('info', 'just smile');
$this->assertEquals(['flash' => ['type' => 'info', 'message' => 'just smile']], $session);
$this->assertEquals((object)['type' => 'info', 'message' => 'just smile'], $flash->get());
}
public function testClear()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$flash->clear();
$this->assertEmpty($flash->get());
$this->assertEmpty($session);
}
public function testClearAfterGet()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$this->assertEquals((object)['type' => 'notice', 'message' => 'Foo bar zoo'], $flash->get());
$flash->clear();
$this->assertEmpty($flash->get());
$this->assertEmpty($session);
}
public function testClearAfterSet()
{
$session = [];
$flash = new Flash($session);
$flash->set('info', 'just smile');
$this->assertEquals(['flash' => ['type' => 'info', 'message' => 'just smile']], $session);
$flash->clear();
$this->assertFalse($flash->isIssued());
$this->assertEmpty($session);
}
public function testReissueAfterGet()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$this->assertEquals((object)['type' => 'notice', 'message' => 'Foo bar zoo'], $flash->get());
$this->assertEmpty($session);
$flash->reissue();
$this->assertArrayHasKey('flash', $session);
$this->assertEquals(['flash' => ['type' => 'notice', 'message' => 'Foo bar zoo']], $session);
}
public function testReissueBeforeGet()
{
$session = [
'flash' => [
'type' => 'notice',
'message' => 'Foo bar zoo'
]
];
$flash = new Flash($session);
$flash->reissue();
$this->assertEquals((object)['type' => 'notice', 'message' => 'Foo bar zoo'], $flash->get());
$this->assertArrayHasKey('flash', $session);
$this->assertEquals(['flash' => ['type' => 'notice', 'message' => 'Foo bar zoo']], $session);
}
}
|