forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponseTraitTest.php
More file actions
294 lines (239 loc) · 9.38 KB
/
Copy pathResponseTraitTest.php
File metadata and controls
294 lines (239 loc) · 9.38 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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php namespace CodeIgniter\API;
use CodeIgniter\API\ResponseTrait;
use CodeIgniter\Controller;
use CodeIgniter\HTTP\MockIncomingRequest;
use CodeIgniter\HTTP\MockResponse;
use CodeIgniter\HTTP\URI;
class ResponseTraitTest extends \CIUnitTestCase
{
protected $request;
protected $response;
protected function makeController(array $userConfig = [], string $uri = 'http://example.com', array $userHeaders = [])
{
$config = [
'baseURL' => 'http://example.com',
'uriProtocol' => 'REQUEST_URI',
'defaultLocale' => 'en',
'negotiateLocale' => false,
'supportedLocales' => ['en'],
'CSPEnabled' => false,
'cookiePrefix' => '',
'cookieDomain' => '',
'cookiePath' => '/',
'cookieSecure' => false,
'cookieHTTPOnly' => false,
'proxyIPs' => []
];
$config = array_merge($config, $userConfig);
$this->request = new MockIncomingRequest((object)$config, new URI($uri), null);
$this->response = new MockResponse((object)$config);
// Insert headers into request.
$headers = [
'Accept' => 'text/html'
];
$headers = array_merge($headers, $userHeaders);
foreach ($headers as $key => $value)
{
$this->request->setHeader($key, $value);
}
// Create the controller class finally.
$controller = new class($this->request, $this->response)
{
use ResponseTrait;
protected $request;
protected $response;
public function __construct($request, $response)
{
$this->request = $request;
$this->response = $response;
}
};
return $controller;
}
//--------------------------------------------------------------------
public function testRespondSets404WithNoData()
{
$controller = $this->makeController();
$controller->respond(null, null);
$this->assertEquals(404, $this->response->getStatusCode());
$this->assertNull($this->response->getBody());
}
//--------------------------------------------------------------------
public function testRespondSetsStatusWithEmptyData()
{
$controller = $this->makeController();
$controller->respond(null, 201);
$this->assertEquals(201, $this->response->getStatusCode());
$this->assertNull($this->response->getBody());
}
//--------------------------------------------------------------------
public function testRespondSetsCorrectBodyAndStatus()
{
$controller = $this->makeController();
$controller->respond('something', 201);
$this->assertEquals(201, $this->response->getStatusCode());
$this->assertEquals('something', $this->response->getBody());
$this->assertTrue(strpos($this->response->getHeaderLine('Content-Type'), 'text/html') === 0);
$this->assertEquals('Created', $this->response->getReason());
}
//--------------------------------------------------------------------
public function testRespondWithCustomReason()
{
$controller = $this->makeController();
$controller->respond('something', 201, 'A Custom Reason');
$this->assertEquals(201, $this->response->getStatusCode());
$this->assertEquals('A Custom Reason', $this->response->getReason());
}
public function testFailSingleMessage()
{
$controller = $this->makeController();
$controller->fail('Failure to Launch', 500, 'WHAT!', 'A Custom Reason');
// Will use the JSON formatter by default
$expected = [
'status' => 500,
'error' => 'WHAT!',
'messages' => [
'Failure to Launch'
]
];
$this->assertTrue(strpos($this->response->getHeaderLine('Content-Type'), 'application/json') === 0);
$this->assertEquals(json_encode($expected), $this->response->getBody());
$this->assertEquals(500, $this->response->getStatusCode());
$this->assertEquals('A Custom Reason', $this->response->getReason());
}
public function testCreated()
{
$controller = $this->makeController();
$controller->respondCreated(['id' => 3], 'A Custom Reason');
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(201, $this->response->getStatusCode());
$this->assertEquals(json_encode(['id' => 3]), $this->response->getBody());
}
public function testDeleted()
{
$controller = $this->makeController();
$controller->respondDeleted(['id' => 3], 'A Custom Reason');
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(200, $this->response->getStatusCode());
$this->assertEquals(json_encode(['id' => 3]), $this->response->getBody());
}
public function testUnauthorized()
{
$controller = $this->makeController();
$controller->failUnauthorized('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 401,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(401, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testForbidden()
{
$controller = $this->makeController();
$controller->failForbidden('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 403,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(403, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testNotFound()
{
$controller = $this->makeController();
$controller->failNotFound('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 404,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(404, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testValidationError()
{
$controller = $this->makeController();
$controller->failValidationError('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 400,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(400, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testResourceExists()
{
$controller = $this->makeController();
$controller->failResourceExists('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 409,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(409, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testResourceGone()
{
$controller = $this->makeController();
$controller->failResourceGone('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 410,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(410, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testTooManyRequests()
{
$controller = $this->makeController();
$controller->failTooManyRequests('Nope', 'FAT CHANCE', 'A Custom Reason');
$expected = [
'status' => 429,
'error' => 'FAT CHANCE',
'messages' => [
'Nope'
]
];
$this->assertEquals('A Custom Reason', $this->response->getReason());
$this->assertEquals(429, $this->response->getStatusCode());
$this->assertEquals(json_encode($expected), $this->response->getBody());
}
public function testServerError()
{
$controller = $this->makeController();
$controller->failServerError('Nope.', 'FAT-CHANCE', 'A custom reason.');
$this::assertEquals('A custom reason.', $this->response->getReason());
$this::assertEquals(500, $this->response->getStatusCode());
$this::assertEquals(json_encode([
'status' => 500,
'error' => 'FAT-CHANCE',
'messages' => [
'Nope.'
]
]), $this->response->getBody());
}
}