forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponseSendTest.php
More file actions
137 lines (114 loc) · 3.41 KB
/
Copy pathResponseSendTest.php
File metadata and controls
137 lines (114 loc) · 3.41 KB
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
<?php
namespace CodeIgniter\HTTP;
use Config\App;
/**
* This test suite has been created separately from
* TestCaseTest because it messes with output
* buffering from PHPUnit, and the individual
* test cases need to be run as separate processes.
*/
class ResponseSendTest extends \CIUnitTestCase
{
/**
* These need to be run as a separate process, since phpunit
* has already captured the "normal" output, and we will get
* a "Cannot modify headers" message if we try to change
* headers or cookies now.
*
* Furthermore, these tests needs to flush the output buffering
* that might be in progress, and start our own output buffer
* capture.
*
* The tests includes a basic sanity check, to make sure that
* the body we thought would be sent actually was.
*/
//--------------------------------------------------------------------
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testHeadersMissingDate()
{
$response = new Response(new App());
$response->pretend(false);
$body = 'Hello';
$response->setBody($body);
$response->setCookie('foo', 'bar');
$this->assertTrue($response->hasCookie('foo'));
$this->assertTrue($response->hasCookie('foo', 'bar'));
// Drop the date header, to make sure it gets put back in
$response->removeHeader('Date');
// send it
ob_start();
$response->send();
$buffer = ob_clean();
if (ob_get_level() > 0)
{
ob_end_clean();
}
// and what actually got sent?
$this->assertHeaderEmitted('Date:');
}
//--------------------------------------------------------------------
/**
* This test does not test that CSP is handled properly -
* it makes sure that sending gives CSP a chance to do its thing.
*
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testHeadersWithCSP()
{
$config = new App();
$config->CSPEnabled = true;
$response = new Response($config);
$response->pretend(false);
$body = 'Hello';
$response->setBody($body);
$response->setCookie('foo', 'bar');
$this->assertTrue($response->hasCookie('foo'));
$this->assertTrue($response->hasCookie('foo', 'bar'));
// send it
ob_start();
$response->send();
$buffer = ob_clean();
if (ob_get_level() > 0)
{
ob_end_clean();
}
// and what actually got sent?; test both ways
$this->assertHeaderEmitted('Content-Security-Policy:');
}
//--------------------------------------------------------------------
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
// Make sure cookies are set by RedirectResponse this way
// See https://github.com/codeigniter4/CodeIgniter4/issues/1393
public function testRedirectResponseCookies()
{
$login_time = time();
$response = new Response(new App());
$response->pretend(false);
$routes = service('routes');
$routes->add('user/login', 'Auth::verify', ['as' => 'login']);
$answer1 = $response->redirect('/login')
->setCookie('foo', 'bar', YEAR)
->setCookie('login_time', $login_time, YEAR);
$this->assertTrue($answer1->hasCookie('foo', 'bar'));
$this->assertTrue($answer1->hasCookie('login_time'));
$response->setBody('Hello');
// send it
ob_start();
$response->send();
$buffer = ob_clean();
if (ob_get_level() > 0)
{
ob_end_clean();
}
// and what actually got sent?
$this->assertHeaderEmitted('Set-Cookie: foo=bar;');
$this->assertHeaderEmitted('Set-Cookie: login_time');
}
}