-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponseTest.php
More file actions
450 lines (361 loc) · 19.6 KB
/
ResponseTest.php
File metadata and controls
450 lines (361 loc) · 19.6 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<?php
declare(strict_types=1);
namespace TinyBlocks\Http;
use DateTime;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
use TinyBlocks\Http\Internal\Exceptions\BadMethodCall;
use TinyBlocks\Http\Internal\Response\Stream\StreamFactory;
use TinyBlocks\Http\Models\Amount;
use TinyBlocks\Http\Models\Color;
use TinyBlocks\Http\Models\Currency;
use TinyBlocks\Http\Models\Dragon;
use TinyBlocks\Http\Models\Order;
use TinyBlocks\Http\Models\Product;
use TinyBlocks\Http\Models\Products;
use TinyBlocks\Http\Models\Status;
final class ResponseTest extends TestCase
{
public function testResponseOk(): void
{
/** @Given a body with data */
$body = [
'id' => PHP_INT_MAX,
'name' => 'Drakengard Firestorm',
'type' => 'Dragon',
'weight' => 6000.00
];
/** @When we create the HTTP response with this body */
$actual = Response::ok(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 200 */
self::assertSame(Code::OK->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isSuccessCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "OK" */
self::assertSame(Code::OK->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseCreated(): void
{
/** @Given a body with data */
$body = [
'id' => 1,
'name' => 'New Resource',
'type' => 'Item',
'weight' => 100.00
];
/** @When we create the HTTP response with this body */
$actual = Response::created(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 201 */
self::assertSame(Code::CREATED->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isSuccessCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Created" */
self::assertSame(Code::CREATED->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseAccepted(): void
{
/** @Given a body with data */
$body = [
'id' => 1,
'status' => 'Processing'
];
/** @When we create the HTTP response with this body */
$actual = Response::accepted(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 202 */
self::assertSame(Code::ACCEPTED->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isSuccessCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Accepted" */
self::assertSame(Code::ACCEPTED->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseNoContent(): void
{
/** @Given I have no data for the body */
/** @When we create the HTTP response without body */
$actual = Response::noContent();
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should be empty */
self::assertEmpty($actual->getBody()->__toString());
self::assertEmpty($actual->getBody()->getContents());
/** @And the status code should be 204 */
self::assertSame(Code::NO_CONTENT->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isSuccessCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "No Content" */
self::assertSame(Code::NO_CONTENT->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseBadRequest(): void
{
/** @Given a body with error details */
$body = [
'error' => 'Invalid request',
'message' => 'The request body is malformed.'
];
/** @When we create the HTTP response with this body */
$actual = Response::badRequest(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 400 */
self::assertSame(Code::BAD_REQUEST->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Bad Request" */
self::assertSame(Code::BAD_REQUEST->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseUnauthorized(): void
{
/** @Given a body with error details */
$body = [
'error' => 'Unauthorized',
'message' => 'Authentication is required to access this resource.'
];
/** @When we create the HTTP response with this body */
$actual = Response::unauthorized(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 401 */
self::assertSame(Code::UNAUTHORIZED->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Unauthorized" */
self::assertSame(Code::UNAUTHORIZED->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseForbidden(): void
{
/** @Given a body with error details */
$body = [
'error' => 'Forbidden',
'message' => 'You do not have permission to access this resource.'
];
/** @When we create the HTTP response with this body */
$actual = Response::forbidden(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 403 */
self::assertSame(Code::FORBIDDEN->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Forbidden" */
self::assertSame(Code::FORBIDDEN->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseNotFound(): void
{
/** @Given a body with error details */
$body = [
'error' => 'Not found',
'message' => 'The requested resource could not be found.'
];
/** @When we create the HTTP response with this body */
$actual = Response::notFound(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 404 */
self::assertSame(Code::NOT_FOUND->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Not Found" */
self::assertSame(Code::NOT_FOUND->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseConflict(): void
{
/** @Given a body with conflict details */
$body = [
'error' => 'Conflict',
'message' => 'There is a conflict with the current state of the resource.'
];
/** @When we create the HTTP response with this body */
$actual = Response::conflict(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 409 */
self::assertSame(Code::CONFLICT->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Conflict" */
self::assertSame(Code::CONFLICT->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseUnprocessableEntity(): void
{
/** @Given a body with validation errors */
$body = [
'error' => 'Validation Failed',
'message' => 'The input data did not pass validation.'
];
/** @When we create the HTTP response with this body */
$actual = Response::unprocessableEntity(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 422 */
self::assertSame(Code::UNPROCESSABLE_ENTITY->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Unprocessable Entity" */
self::assertSame(Code::UNPROCESSABLE_ENTITY->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
public function testResponseInternalServerError(): void
{
/** @Given a body with error details */
$body = [
'code' => 10000,
'message' => 'An unexpected error occurred on the server.'
];
/** @When we create the HTTP response with this body */
$actual = Response::internalServerError(body: $body);
/** @Then the protocol version should be "1.1" */
self::assertSame('1.1', $actual->getProtocolVersion());
/** @And the body of the response should match the JSON-encoded body */
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->__toString());
self::assertSame(json_encode($body, JSON_PRESERVE_ZERO_FRACTION), $actual->getBody()->getContents());
/** @And the status code should be 500 */
self::assertSame(Code::INTERNAL_SERVER_ERROR->value, $actual->getStatusCode());
self::assertTrue(Code::isValidCode(code: $actual->getStatusCode()));
self::assertTrue(Code::isErrorCode(code: $actual->getStatusCode()));
/** @And the reason phrase should be "Internal Server Error" */
self::assertSame(Code::INTERNAL_SERVER_ERROR->message(), $actual->getReasonPhrase());
/** @And the headers should contain Content-Type as application/json with charset=utf-8 */
self::assertSame(['Content-Type' => ['application/json; charset=utf-8']], $actual->getHeaders());
}
#[DataProvider('bodyProviderData')]
public function testResponseBodySerialization(mixed $body, string $expected): void
{
/** @Given the body contains the provided data */
/** @When we create an HTTP response with the given body */
$actual = Response::ok(body: $body);
/** @Then the body of the response should match the expected output */
self::assertSame($expected, $actual->getBody()->__toString());
self::assertSame($expected, $actual->getBody()->getContents());
}
public function testResponseWithBody(): void
{
/** @Given an HTTP response with without body */
$response = Response::ok(body: null);
/** @When the body of the response is initially empty */
self::assertEmpty($response->getBody()->__toString());
self::assertEmpty($response->getBody()->getContents());
/** @And a new body is set for the response */
$body = 'This is a new body';
$actual = $response->withBody(body: StreamFactory::fromBody(body: $body)->write());
/** @Then the response body should be updated to match the new content */
self::assertSame($body, $actual->getBody()->__toString());
self::assertSame($body, $actual->getBody()->getContents());
}
public function testExceptionWhenBadMethodCallOnWithStatus(): void
{
/** @Given an HTTP response */
$response = Response::noContent();
/** @Then a BadMethodCall exception should be thrown when calling withStatus */
self::expectException(BadMethodCall::class);
self::expectExceptionMessage('Method <withStatus> cannot be used.');
/** @When attempting to call withStatus */
$response->withStatus(code: Code::OK->value);
}
public static function bodyProviderData(): array
{
return [
'UnitEnum' => [
'body' => Color::RED,
'expected' => 'RED'
],
'BackedEnum' => [
'body' => Status::PAID,
'expected' => '1'
],
'Null value' => [
'body' => null,
'expected' => ''
],
'Empty string' => [
'body' => '',
'expected' => ''
],
'Simple object' => [
'body' => new Dragon(name: 'Drakengard Firestorm', weight: 6000.0),
'expected' => '{"name":"Drakengard Firestorm","weight":6000.0}'
],
'Non-empty string' => [
'body' => 'Hello, World!',
'expected' => 'Hello, World!'
],
'Serializer object' => [
'body' => new Order(
id: 1,
products: new Products(elements: [
new Product(name: 'Product One', amount: new Amount(value: 100.50, currency: Currency::USD)),
new Product(name: 'Product Two', amount: new Amount(value: 200.75, currency: Currency::BRL))
])
),
'expected' => '{"id":1,"products":[{"name":"Product One","amount":{"value":100.5,"currency":"USD"}},{"name":"Product Two","amount":{"value":200.75,"currency":"BRL"}}]}'
],
'Boolean true value' => [
'body' => true,
'expected' => 'true'
],
'Boolean false value' => [
'body' => false,
'expected' => 'false'
],
'Large integer value' => [
'body' => PHP_INT_MAX,
'expected' => (string)PHP_INT_MAX
],
'DateTimeInterface value' => [
'body' => new DateTime('2024-12-16'),
'expected' => '[]'
]
];
}
}