-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathApiAttributesTest.php
419 lines (386 loc) · 14.9 KB
/
ApiAttributesTest.php
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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Attribute\MapQueryString;
use Symfony\Component\HttpKernel\Attribute\MapRequestPayload;
use Symfony\Component\Validator\Constraints as Assert;
class ApiAttributesTest extends AbstractWebTestCase
{
/**
* @dataProvider mapQueryStringProvider
*/
public function testMapQueryString(array $query, string $expectedResponse, int $expectedStatusCode)
{
$client = self::createClient(['test_case' => 'ApiAttributesTest']);
$client->request('GET', '/map-query-string.json', $query);
$response = $client->getResponse();
if ($expectedResponse) {
self::assertJsonStringEqualsJsonString($expectedResponse, $response->getContent());
} else {
self::assertEmpty($response->getContent());
}
self::assertSame($expectedStatusCode, $response->getStatusCode());
}
public static function mapQueryStringProvider(): iterable
{
yield 'empty' => [
'query' => [],
'expectedResponse' => '',
'expectedStatusCode' => 204,
];
yield 'valid' => [
'query' => ['filter' => ['status' => 'approved', 'quantity' => '4']],
'expectedResponse' => <<<'JSON'
{
"filter": {
"status": "approved",
"quantity": 4
}
}
JSON,
'expectedStatusCode' => 200,
];
yield 'invalid' => [
'query' => ['filter' => ['status' => 'approved', 'quantity' => '200']],
'expectedResponse' => <<<'JSON'
{
"type": "https:\/\/fanyv88.com:443\/https\/symfony.com\/errors\/validation",
"title": "Validation Failed",
"status": 404,
"detail": "filter.quantity: This value should be less than 10.",
"violations": [
{
"propertyPath": "filter.quantity",
"title": "This value should be less than 10.",
"template": "This value should be less than {{ compared_value }}.",
"parameters": {
"{{ value }}": "200",
"{{ compared_value }}": "10",
"{{ compared_value_type }}": "int"
},
"type": "urn:uuid:079d7420-2d13-460c-8756-de810eeb37d2"
}
]
}
JSON,
'expectedStatusCode' => 404,
];
}
/**
* @dataProvider mapRequestPayloadProvider
*/
public function testMapRequestPayload(string $format, array $parameters, ?string $content, string $expectedResponse, int $expectedStatusCode)
{
$client = self::createClient(['test_case' => 'ApiAttributesTest']);
[$acceptHeader, $assertion] = [
'html' => ['text/html', self::assertStringContainsString(...)],
'json' => ['application/json', self::assertJsonStringEqualsJsonString(...)],
'xml' => ['text/xml', self::assertXmlStringEqualsXmlString(...)],
'dummy' => ['application/dummy', self::assertStringContainsString(...)],
][$format];
$client->request(
'POST',
'/map-request-body.'.$format,
$parameters,
[],
['HTTP_ACCEPT' => $acceptHeader, 'CONTENT_TYPE' => $acceptHeader],
$content
);
$response = $client->getResponse();
$responseContent = $response->getContent();
if ($expectedResponse) {
$assertion($expectedResponse, $responseContent);
} else {
self::assertSame('', $responseContent);
}
self::assertSame($expectedStatusCode, $response->getStatusCode());
}
public static function mapRequestPayloadProvider(): iterable
{
yield 'empty' => [
'format' => 'json',
'parameters' => [],
'content' => '',
'expectedResponse' => '',
'expectedStatusCode' => 204,
];
yield 'valid json' => [
'format' => 'json',
'parameters' => [],
'content' => <<<'JSON'
{
"comment": "Hello everyone!",
"approved": false
}
JSON,
'expectedResponse' => <<<'JSON'
{
"comment": "Hello everyone!",
"approved": false
}
JSON,
'expectedStatusCode' => 200,
];
yield 'malformed json' => [
'format' => 'json',
'parameters' => [],
'content' => <<<'JSON'
{
"comment": "Hello everyone!",
"approved": false,
}
JSON,
'expectedResponse' => <<<'JSON'
{
"type": "https:\/\/fanyv88.com:443\/https\/tools.ietf.org\/html\/rfc2616#section-10",
"title": "An error occurred",
"status": 400,
"detail": "Bad Request"
}
JSON,
'expectedStatusCode' => 400,
];
yield 'unsupported format' => [
'format' => 'dummy',
'parameters' => [],
'content' => 'Hello',
'expectedResponse' => '415 Unsupported Media Type',
'expectedStatusCode' => 415,
];
yield 'valid xml' => [
'format' => 'xml',
'parameters' => [],
'content' => <<<'XML'
<request>
<comment>Hello everyone!</comment>
<approved>true</approved>
</request>
XML,
'expectedResponse' => <<<'XML'
<response>
<comment>Hello everyone!</comment>
<approved>1</approved>
</response>
XML,
'expectedStatusCode' => 200,
];
yield 'invalid type' => [
'format' => 'json',
'parameters' => [],
'content' => <<<'JSON'
{
"comment": "Hello everyone!",
"approved": "string instead of bool"
}
JSON,
'expectedResponse' => <<<'JSON'
{
"type": "https:\/\/fanyv88.com:443\/https\/symfony.com\/errors\/validation",
"title": "Validation Failed",
"status": 422,
"detail": "approved: This value should be of type bool.",
"violations": [
{
"propertyPath": "approved",
"title": "This value should be of type bool.",
"template": "This value should be of type {{ type }}.",
"parameters": {
"{{ type }}": "bool"
}
}
]
}
JSON,
'expectedStatusCode' => 422,
];
yield 'validation error json' => [
'format' => 'json',
'parameters' => [],
'content' => <<<'JSON'
{
"comment": "",
"approved": true
}
JSON,
'expectedResponse' => <<<'JSON'
{
"type": "https:\/\/fanyv88.com:443\/https\/symfony.com\/errors\/validation",
"title": "Validation Failed",
"status": 422,
"detail": "comment: This value should not be blank.\ncomment: This value is too short. It should have 10 characters or more.",
"violations": [
{
"propertyPath": "comment",
"title": "This value should not be blank.",
"template": "This value should not be blank.",
"parameters": {
"{{ value }}": "\"\""
},
"type": "urn:uuid:c1051bb4-d103-4f74-8988-acbcafc7fdc3"
},
{
"propertyPath": "comment",
"title": "This value is too short. It should have 10 characters or more.",
"template": "This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.",
"parameters": {
"{{ value }}": "\"\"",
"{{ limit }}": "10",
"{{ value_length }}": "0"
},
"type": "urn:uuid:9ff3fdc4-b214-49db-8718-39c315e33d45"
}
]
}
JSON,
'expectedStatusCode' => 422,
];
yield 'validation error xml' => [
'format' => 'xml',
'parameters' => [],
'content' => <<<'XML'
<request>
<comment>H</comment>
<approved>false</approved>
</request>
XML,
'expectedResponse' => <<<'XML'
<?xml version="1.0"?>
<response>
<type>https://symfony.com/errors/validation</type>
<title>Validation Failed</title>
<status>422</status>
<detail>comment: This value is too short. It should have 10 characters or more.</detail>
<violations>
<propertyPath>comment</propertyPath>
<title>This value is too short. It should have 10 characters or more.</title>
<template>This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.</template>
<parameters>
<item key="{{ value }}">"H"</item>
<item key="{{ limit }}">10</item>
<item key="{{ value_length }}">1</item>
</parameters>
<type>urn:uuid:9ff3fdc4-b214-49db-8718-39c315e33d45</type>
</violations>
</response>
XML,
'expectedStatusCode' => 422,
];
yield 'valid input' => [
'format' => 'json',
'input' => ['comment' => 'Hello everyone!', 'approved' => '0'],
'content' => null,
'expectedResponse' => <<<'JSON'
{
"comment": "Hello everyone!",
"approved": false
}
JSON,
'expectedStatusCode' => 200,
];
yield 'validation error input' => [
'format' => 'json',
'input' => ['comment' => '', 'approved' => '1'],
'content' => null,
'expectedResponse' => <<<'JSON'
{
"type": "https:\/\/fanyv88.com:443\/https\/symfony.com\/errors\/validation",
"title": "Validation Failed",
"status": 422,
"detail": "comment: This value should not be blank.\ncomment: This value is too short. It should have 10 characters or more.",
"violations": [
{
"propertyPath": "comment",
"title": "This value should not be blank.",
"template": "This value should not be blank.",
"parameters": {
"{{ value }}": "\"\""
},
"type": "urn:uuid:c1051bb4-d103-4f74-8988-acbcafc7fdc3"
},
{
"propertyPath": "comment",
"title": "This value is too short. It should have 10 characters or more.",
"template": "This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.",
"parameters": {
"{{ value }}": "\"\"",
"{{ limit }}": "10",
"{{ value_length }}": "0"
},
"type": "urn:uuid:9ff3fdc4-b214-49db-8718-39c315e33d45"
}
]
}
JSON,
'expectedStatusCode' => 422,
];
}
}
class WithMapQueryStringController
{
public function __invoke(#[MapQueryString] ?QueryString $query): Response
{
if (!$query) {
return new Response('', Response::HTTP_NO_CONTENT);
}
return new JsonResponse(
['filter' => ['status' => $query->filter->status, 'quantity' => $query->filter->quantity]],
);
}
}
class WithMapRequestPayloadController
{
public function __invoke(#[MapRequestPayload] ?RequestBody $body, Request $request): Response
{
if ('json' === $request->getPreferredFormat('json')) {
if (!$body) {
return new Response('', Response::HTTP_NO_CONTENT);
}
return new JsonResponse(['comment' => $body->comment, 'approved' => $body->approved]);
}
return new Response(
<<<XML
<response>
<comment>{$body->comment}</comment>
<approved>{$body->approved}</approved>
</response>
XML
);
}
}
class QueryString
{
public function __construct(
#[Assert\Valid]
public readonly Filter $filter,
) {
}
}
class Filter
{
public function __construct(
public readonly string $status,
#[Assert\LessThan(10)]
public readonly int $quantity,
) {
}
}
class RequestBody
{
public function __construct(
#[Assert\NotBlank]
#[Assert\Length(min: 10)]
public readonly string $comment,
public readonly bool $approved,
) {
}
}