-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathReaderTest.php
369 lines (333 loc) · 9.93 KB
/
ReaderTest.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
<?php
class ReaderTest extends \PHPUnit\Framework\TestCase
{
public function testReadJson()
{
$openapi = \cebe\openapi\Reader::readFromJson(<<<JSON
{
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
}
}
JSON
);
$this->assertApiContent($openapi);
}
public function testReadYaml()
{
$openapi = \cebe\openapi\Reader::readFromYaml(<<<YAML
openapi: 3.0.0
info:
title: "Test API"
version: "1.0.0"
paths:
/somepath:
YAML
);
$this->assertApiContent($openapi);
}
/**
* Test if reading YAML file with anchors works
*/
public function testReadYamlWithAnchors()
{
$openApiFile = __DIR__ . '/spec/data/traits-mixins.yaml';
$openapi = \cebe\openapi\Reader::readFromYamlFile($openApiFile);
$this->assertApiContent($openapi);
$putOperation = $openapi->paths['/foo']->put;
$this->assertEquals('create foo', $putOperation->description);
$this->assertTrue($putOperation->responses->hasResponse('200'));
$this->assertTrue($putOperation->responses->hasResponse('404'));
$this->assertTrue($putOperation->responses->hasResponse('428'));
$this->assertTrue($putOperation->responses->hasResponse('default'));
$respOk = $putOperation->responses->getResponse('200');
$this->assertEquals('request succeeded', $respOk->description);
$this->assertEquals('the request id', $respOk->headers['X-Request-Id']->description);
$resp404 = $putOperation->responses->getResponse('404');
$this->assertEquals('resource not found', $resp404->description);
$this->assertEquals('the request id', $resp404->headers['X-Request-Id']->description);
$resp428 = $putOperation->responses->getResponse('428');
$this->assertEquals('resource not found', $resp428->description);
$this->assertEquals('the request id', $resp428->headers['X-Request-Id']->description);
$respDefault = $putOperation->responses->getResponse('default');
$this->assertEquals('resource not found', $respDefault->description);
$this->assertEquals('the request id', $respDefault->headers['X-Request-Id']->description);
$foo = $openapi->components->schemas['Foo'];
$this->assertArrayHasKey('uuid', $foo->properties);
$this->assertArrayHasKey('name', $foo->properties);
$this->assertArrayHasKey('id', $foo->properties);
$this->assertArrayHasKey('description', $foo->properties);
$this->assertEquals('uuid of the resource', $foo->properties['uuid']->description);
}
private function assertApiContent(\cebe\openapi\spec\OpenApi $openapi)
{
$result = $openapi->validate();
$this->assertEquals([], $openapi->getErrors());
$this->assertTrue($result);
$this->assertEquals("3.0.0", $openapi->openapi);
$this->assertEquals("Test API", $openapi->info->title);
$this->assertEquals("1.0.0", $openapi->info->version);
}
/**
* @see https://github.com/symfony/symfony/issues/34805
*/
public function testSymfonyYamlBugHunt()
{
$openApiFile = __DIR__ . '/../vendor/oai/openapi-specification/examples/v3.0/uspto.yaml';
$openapi = \cebe\openapi\Reader::readFromYamlFile($openApiFile);
$inlineYamlExample = $openapi->paths['/']->get->responses['200']->content['application/json']->example;
if (method_exists($this, 'assertIsArray')) {
$this->assertIsArray($inlineYamlExample);
} else {
$this->assertInternalType('array', $inlineYamlExample);
}
$expectedArray = json_decode(<<<JSON
{
"total": 2,
"apis": [
{
"apiKey": "oa_citations",
"apiVersionNumber": "v1",
"apiUrl": "https://developer.uspto.gov/ds-api/oa_citations/v1/fields",
"apiDocumentationUrl": "https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json"
},
{
"apiKey": "cancer_moonshot",
"apiVersionNumber": "v1",
"apiUrl": "https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields",
"apiDocumentationUrl": "https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json"
}
]
}
JSON
, true);
$this->assertEquals($expectedArray, $inlineYamlExample);
}
public function testForceUniqueOperationIdJSON(){
//Duplicate
$api = \cebe\openapi\Reader::readFromJson(<<<JSON
{
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/path": {
"get": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
},
"post": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}
JSON);
$this->assertFalse($api->validate());
//Non duplicate
$api = \cebe\openapi\Reader::readFromJson(<<<JSON
{
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/path": {
"get": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
},
"post": {
"operationId": "op2",
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}
JSON);
$this->assertTrue($api->validate());
}
//Different Paths
public function testForceUniqueOperationIdInDifferentPathsJSON(){
//Duplicate
$api = \cebe\openapi\Reader::readFromJson(<<<JSON
{
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/path1": {
"get": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/path2": {
"get": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}
JSON);
$this->assertFalse($api->validate());
// Non duplicate
$api = \cebe\openapi\Reader::readFromJson(<<<JSON
{
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/path1": {
"get": {
"operationId": "op1",
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/path2": {
"post": {
"operationId": "op2",
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}
JSON);
// $this->assertTrue($api->validate());
}
//The same paths
public function testForceUniqueOperationIdYAML(){
//Duplicate
$openapi = \cebe\openapi\Reader::readFromYaml(<<<YAML
openapi: 3.0.0
info:
title: "Test API"
version: "1.0.0"
paths:
/path:
get:
operationId: op1
responses:
'200':
description: Validation error
post:
operationId: op1
responses:
'200':
description: Validation error
YAML);
$this->assertFalse($openapi->validate());
//Non Duplicate
$openapi = \cebe\openapi\Reader::readFromYaml(<<<YAML
openapi: 3.0.0
info:
title: "Test API"
version: "1.0.0"
paths:
/path:
get:
operationId: op1
responses:
'200':
description: Validation error
post:
operationId: op2
responses:
'200':
description: Validation error
YAML);
$this->assertTrue($openapi->validate());
}
//Duplicate Different paths
public function testForceUniqueOperationIdInDifferentPathsYAML(){
//Duplicate
$openapi = \cebe\openapi\Reader::readFromYaml(<<<YAML
openapi: 3.0.0
info:
title: "Test API"
version: "1.0.0"
paths:
/path1:
get:
operationId: op1
responses:
'200':
description: Validation error
/path2:
get:
operationId: op1
responses:
'200':
description: Validation error
YAML);
$this->assertFalse($openapi->validate());
//Non Duplicate
$openapi = \cebe\openapi\Reader::readFromYaml(<<<YAML
openapi: 3.0.0
info:
title: "Test API"
version: "1.0.0"
paths:
/path1:
get:
operationId: op1
responses:
'200':
description: Validation error
/path2:
get:
operationId: op2
responses:
'200':
description: Validation error
YAML);
$this->assertTrue($openapi->validate());
}
// TODO test invalid JSON
// TODO test invalid YAML
}