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
|
<?php
namespace Kanboard\Core\Http;
require_once __DIR__.'/../../Base.php';
function setcookie($name, $value = "", $expire = 0, $path = "", $domain = "", $secure = false, $httponly = false)
{
return RememberMeCookieTest::$functions->setcookie($name, $value, $expire, $path, $domain, $secure, $httponly);
}
class RememberMeCookieTest extends \Base
{
public static $functions;
public function setUp()
{
parent::setup();
self::$functions = $this
->getMockBuilder('stdClass')
->setMethods(array(
'setcookie',
))
->getMock();
}
public function tearDown()
{
parent::tearDown();
self::$functions = null;
}
public function testEncode()
{
$cookie = new RememberMeCookie($this->container);
$this->assertEquals('a|b', $cookie->encode('a', 'b'));
}
public function testDecode()
{
$cookie = new RememberMeCookie($this->container);
$this->assertEquals(array('token' => 'a', 'sequence' => 'b'), $cookie->decode('a|b'));
}
public function testHasCookie()
{
$this->container['request'] = new Request($this->container, array(), array(), array(), array(), array());
$cookie = new RememberMeCookie($this->container);
$this->assertFalse($cookie->hasCookie());
$this->container['request'] = new Request($this->container, array(), array(), array(), array(), array(RememberMeCookie::COOKIE_NAME => 'miam'));
$this->assertTrue($cookie->hasCookie());
}
public function testWrite()
{
self::$functions
->expects($this->once())
->method('setcookie')
->with(
RememberMeCookie::COOKIE_NAME,
'myToken|mySequence',
1234,
'',
'',
false,
true
)
->will($this->returnValue(true));
$cookie = new RememberMeCookie($this->container);
$this->assertTrue($cookie->write('myToken', 'mySequence', 1234));
}
public function testRead()
{
$this->container['request'] = new Request($this->container, array(), array(), array(), array(), array());
$cookie = new RememberMeCookie($this->container);
$this->assertFalse($cookie->read());
$this->container['request'] = new Request($this->container, array(), array(), array(), array(), array(RememberMeCookie::COOKIE_NAME => 'T|S'));
$this->assertEquals(array('token' => 'T', 'sequence' => 'S'), $cookie->read());
}
public function testRemove()
{
self::$functions
->expects($this->once())
->method('setcookie')
->with(
RememberMeCookie::COOKIE_NAME,
'',
time() - 3600,
'',
'',
false,
true
)
->will($this->returnValue(true));
$cookie = new RememberMeCookie($this->container);
$this->assertTrue($cookie->remove());
}
}
|