-
Notifications
You must be signed in to change notification settings - Fork 451
/
JaxrsReaderTest.java
437 lines (371 loc) · 15.1 KB
/
JaxrsReaderTest.java
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
package com.github.kongchen.swagger.docgen.reader;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeInfo.Id;
import io.swagger.models.ComposedModel;
import io.swagger.models.Model;
import io.swagger.models.properties.Property;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import io.swagger.util.Json;
import org.apache.maven.plugin.logging.Log;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.util.DefaultPrettyPrinter;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.jaxrs.ext.SwaggerExtension;
import io.swagger.jaxrs.ext.SwaggerExtensions;
import io.swagger.models.ArrayModel;
import io.swagger.models.Operation;
import io.swagger.models.Swagger;
import io.swagger.models.Tag;
import io.swagger.models.parameters.BodyParameter;
import io.swagger.models.parameters.HeaderParameter;
import io.swagger.models.parameters.Parameter;
import io.swagger.models.parameters.QueryParameter;
import io.swagger.models.parameters.RefParameter;
import net.javacrumbs.jsonunit.JsonAssert;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertFalse;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
public class JaxrsReaderTest {
@Mock
private Log log;
private JaxrsReader reader;
List<SwaggerExtension> extensions = SwaggerExtensions.getExtensions();
@BeforeMethod
public void setup() {
MockitoAnnotations.initMocks(this);
reader = new JaxrsReader(new Swagger(), log);
}
@AfterMethod
public void resetExtenstions() {
SwaggerExtensions.setExtensions(extensions);
}
@Test
public void ignoreClassIfNoApiAnnotation() {
Swagger result = reader.read(NotAnnotatedApi.class);
assertEmptySwaggerResponse(result);
}
@Test
public void ignoreApiIfHiddenAttributeIsTrue() {
Swagger result = reader.read(HiddenApi.class);
assertEmptySwaggerResponse(result);
}
@Test
public void includeApiIfHiddenParameterIsTrueAndApiHiddenAttributeIsTrue() {
Swagger result = reader.read(HiddenApi.class, "", null, true, new String[0], new String[0], new HashMap<String, Tag>(), new ArrayList<Parameter>());
assertNotNull(result, "No Swagger object created");
assertFalse(result.getTags().isEmpty(), "Should contain api tags");
assertFalse(result.getPaths().isEmpty(), "Should contain operation paths");
}
@Test
public void discoverApiOperation() {
Tag expectedTag = new Tag();
expectedTag.name("atag");
Swagger result = reader.read(AnApi.class);
assertSwaggerResponseContents(expectedTag, result);
}
@Test
public void createNewSwaggerInstanceIfNoneProvided() {
JaxrsReader nullReader = new JaxrsReader(null, log);
Tag expectedTag = new Tag();
expectedTag.name("atag");
Swagger result = nullReader.read(AnApi.class);
assertSwaggerResponseContents(expectedTag, result);
}
@Test
public void handleOctetStreamAndByteArray() {
Swagger result = reader.read(AnApiWithOctetStream.class);
io.swagger.models.Path path = result.getPaths().get("/apath/add");
assertNotNull(path, "Expecting to find a path ..");
assertNotNull(path.getPost(), ".. with post opertion ..");
assertNotNull(path.getPost().getConsumes().contains("application/octet-stream"), ".. and with octect-stream consumer.");
assertTrue(path.getPost().getParameters().get(0) instanceof BodyParameter, "The parameter is a body parameter ..");
assertFalse(((BodyParameter) path.getPost().getParameters().get(0)).getSchema() instanceof ArrayModel, " .. and the schema is NOT an ArrayModel");
}
private void assertEmptySwaggerResponse(Swagger result) {
assertNotNull(result, "No Swagger object created");
assertNull(result.getTags(), "Should not have any tags");
assertNull(result.getPaths(), "Should not have any paths");
}
private void assertSwaggerResponseContents(Tag expectedTag, Swagger result) {
assertNotNull(result, "No Swagger object created");
assertFalse(result.getTags().isEmpty(), "Should contain api tags");
assertTrue(result.getTags().contains(expectedTag), "Expected tag missing");
assertFalse(result.getPaths().isEmpty(), "Should contain operation paths");
assertTrue(result.getPaths().containsKey("/apath"), "Path missing from paths map");
io.swagger.models.Path path = result.getPaths().get("/apath");
assertFalse(path.getOperations().isEmpty(), "Should be a get operation");
}
@Test
public void createCommonParameters() throws Exception {
reader = new JaxrsReader(new Swagger(), Mockito.mock(Log.class));
Swagger result = reader.read(CommonParametersApi.class);
Parameter headerParam = result.getParameter("headerParam");
assertTrue(headerParam instanceof HeaderParameter);
Parameter queryParam = result.getParameter("queryParam");
assertTrue(queryParam instanceof QueryParameter);
result = reader.read(ReferenceCommonParametersApi.class);
Operation get = result.getPath("/apath").getGet();
List<Parameter> parameters = get.getParameters();
for (Parameter parameter : parameters) {
assertTrue(parameter instanceof RefParameter);
}
ObjectMapper mapper = Json.mapper();
ObjectWriter jsonWriter = mapper.writer(new DefaultPrettyPrinter());
String json = jsonWriter.writeValueAsString(result);
JsonNode expectJson = mapper.readTree(this.getClass().getResourceAsStream("/expectedOutput/swagger-common-parameters.json"));
JsonAssert.assertJsonEquals(expectJson, json);
}
@Test
public void ignoreCommonParameters() {
reader = new JaxrsReader(new Swagger(), Mockito.mock(Log.class));
Swagger result = reader.read(CommonParametersApiWithPathAnnotation.class);
assertNull(result.getParameter("headerParam"));
assertNull(result.getParameter("queryParam"));
reader = new JaxrsReader(new Swagger(), Mockito.mock(Log.class));
result = reader.read(CommonParametersApiWithMethod.class);
assertNull(result.getParameter("headerParam"));
assertNull(result.getParameter("queryParam"));
}
@Test
public void detectDuplicateCommonParameter() {
Swagger swagger = new Swagger();
reader = new JaxrsReader(swagger, Mockito.mock(Log.class));
reader.read(CommonParametersApi.class);
Exception exception = null;
try {
reader.read(CommonParametersApi.class);
} catch (Exception e) {
exception = e;
}
assertNotNull(exception);
}
@Test
public void handleResponseWithInheritance() {
Swagger result = reader.read(AnApiWithInheritance.class);
Map<String, Model> models = result.getDefinitions();
Map<String, Property> properties = getProperties(models, "SomeResponseWithAbstractInheritance");
assertNotNull(properties);
assertTrue(properties.containsKey("classProperty"));
assertFalse(properties.containsKey("inheritedProperty"));
assertFalse(properties.containsKey("type"));
properties = models.get("SomeResponseBaseClass").getProperties();
assertNotNull(properties);
assertTrue(properties.containsKey("inheritedProperty"));
assertTrue(properties.containsKey("type"));
properties = getProperties(models, "SomeResponseWithInterfaceInheritance");
assertNotNull(properties);
assertTrue(properties.containsKey("classProperty"));
assertFalse(properties.containsKey("inheritedProperty"));
assertFalse(properties.containsKey("type"));
properties = getProperties(models,"SomeResponseInterface");
assertNotNull(properties);
assertTrue(properties.containsKey("inheritedProperty"));
assertTrue(properties.containsKey("type"));
properties = getProperties(models,"SomeResponse");
assertNotNull(properties);
assertTrue(properties.containsKey("classProperty"));
assertTrue(properties.containsKey("type"));
properties = getProperties(models,"SomeOtherResponse");
assertNotNull(properties);
assertTrue(properties.containsKey("classProperty"));
assertTrue(properties.containsKey("type"));
}
private Map<String, Property> getProperties(Map<String, Model> models, String className) {
assertTrue(models.containsKey(className));
Model model = models.get(className);
if (model instanceof ComposedModel) {
ComposedModel composedResponse = (ComposedModel) model;
return composedResponse.getChild().getProperties();
} else {
return model.getProperties();
}
}
public void discoverSubResource() {
Swagger result = reader.read(SomeResource.class);
assertSwaggerPath(result.getPath("/resource/explicit/name").getGet(), result, "/resource/implicit/name");
}
private void assertSwaggerPath(Operation expectedOperation, Swagger result, String expectedPath) {
assertNotNull(result, "No Swagger object created");
assertFalse(result.getPaths().isEmpty(), "Should contain operation paths");
assertTrue(result.getPaths().containsKey(expectedPath), "Expected path missing");
io.swagger.models.Path path = result.getPaths().get(expectedPath);
assertFalse(path.getOperations().isEmpty(), "Should be a get operation");
assertEquals(expectedOperation, path.getGet(), "Should contain operation");
}
@Api(tags = "atag")
@Path("/apath")
static class AnApi {
@ApiOperation(value = "Get a model.")
@GET
public Response getOperation() {
return Response.ok().build();
}
}
@Api(hidden = true, tags = "atag")
@Path("/hidden/path")
static class HiddenApi {
@ApiOperation(value = "Get a model.")
@GET
public Response getOperation() {
return Response.ok().build();
}
}
@Path("/apath")
static class NotAnnotatedApi {
}
@Api
static class CommonParametersApi {
@HeaderParam("headerParam")
public String headerParam;
@QueryParam("queryParam")
public String queryParam;
}
@Api
static class CommonParametersApiWithMethod {
@HeaderParam("headerParam")
public String headerParam;
@QueryParam("queryParam")
public String queryParam;
@GET
public Response getOperation() {
return Response.ok().build();
}
}
@Api
@Path("/apath")
static class CommonParametersApiWithPathAnnotation {
@HeaderParam("headerParam")
public String headerParam;
@QueryParam("queryParam")
public String queryParam;
}
@Api
@Path("/apath")
static class ReferenceCommonParametersApi {
@GET
public Response getOperation(
@HeaderParam("headerParam") String headerParam,
@QueryParam("queryParam") String queryParam) {
return Response.ok().build();
}
}
@Api(value = "v1")
@Path("/apath")
static class AnApiWithOctetStream {
@POST
@Path("/add")
@ApiOperation(value = "Add content")
@Consumes(MediaType.APPLICATION_OCTET_STREAM)
public void addOperation(
@ApiParam(value = "content", required = true, type = "string", format = "byte")
final byte[] content) {
}
}
@Path("/resource")
@Api(tags = "Resource")
static class SomeResource {
@Path("explicit")
public SomeSubResource getSomething() {
// no implementation needed. Method is only for the test cases, so that the return type is captured
return new SomeSubResource();
}
@Path("implicit")
@ApiOperation(value="", response = SomeSubResource.class)
public Object getSomeSub() {
// no implementation needed. Method is only for the test cases, so that the return type is overridden by @ApiOperation.response
return new SomeSubResource();
}
}
static class SomeSubResource {
@Path("name")
@GET
public String getName() {
// no implementation needed. Method is only for the test cases
return toString();
}
}
@Api
@Path("/apath")
static class AnApiWithInheritance {
@GET
public SomeResponseWithAbstractInheritance getOperation() {
return null;
}
@GET
public SomeResponseBaseClass getOperation2() { return null; }
@GET
public SomeResponseWithInterfaceInheritance getOperation3() { return null; }
@GET
public SomeResponseInterface getOperation4() {
return null;
}
@GET
public List<SomeResponse> getOperation5() { return null; }
@GET
public SomeOtherResponse[] getOperation6() { return null; }
}
@JsonTypeInfo(use=Id.NAME, property="type")
static class SomeResponseWithAbstractInheritance extends SomeResponseBaseClass {
public String getClassProperty(){
return null;
}
}
@JsonTypeInfo(use=Id.NAME, property="type")
@JsonSubTypes({
@JsonSubTypes.Type(SomeResponseWithAbstractInheritance.class)
})
static abstract class SomeResponseBaseClass {
public String getInheritedProperty(){
return null;
}
}
@JsonTypeInfo(use=Id.NAME, property="type")
static class SomeResponseWithInterfaceInheritance implements SomeResponseInterface {
public String getClassProperty(){
return null;
}
public String getInheritedProperty(){
return null;
}
}
@JsonTypeInfo(use=Id.NAME, property="type")
@JsonSubTypes({
@JsonSubTypes.Type(SomeResponseWithInterfaceInheritance.class)
})
interface SomeResponseInterface {
String getInheritedProperty();
}
@JsonTypeInfo(use=Id.NAME, property="type")
static class SomeResponse {
public String getClassProperty() { return null; }
}
@JsonTypeInfo(use=Id.NAME, property="type")
static class SomeOtherResponse {
public String getClassProperty() { return null; }
}
}