use of org.apache.cxf.jaxrs.model.UserApplication in project cxf by apache.
the class AbstractOpenApiServiceDescriptionTest method doTestApiListingIsProperlyReturnedJSON.
protected void doTestApiListingIsProperlyReturnedJSON(final WebClient client, boolean useXForwarded, String basePath) throws Exception {
if (useXForwarded) {
client.header("USE_XFORWARDED", true);
}
try {
String swaggerJson = client.get(String.class);
UserApplication ap = OpenApiParseUtils.getUserApplicationFromJson(swaggerJson);
assertNotNull(ap);
if (basePath == null) {
assertEquals(useXForwarded ? "/reverse" : "/", ap.getBasePath());
} else {
assertEquals(basePath, ap.getBasePath());
}
List<UserResource> urs = ap.getResources();
assertNotNull(urs);
assertEquals(1, urs.size());
UserResource r = urs.get(0);
Map<String, UserOperation> map = r.getOperationsAsMap();
assertEquals(3, map.size());
UserOperation getBooksOp = map.get("getBooks");
assertEquals(HttpMethod.GET, getBooksOp.getVerb());
assertEquals(getApplicationPath() + "/bookstore", getBooksOp.getPath());
// see https://github.com/swagger-api/swagger-core/issues/2646
if (getBooksOp.getProduces() != null) {
assertEquals(MediaType.APPLICATION_JSON, getBooksOp.getProduces());
}
List<Parameter> getBooksOpParams = getBooksOp.getParameters();
assertEquals(1, getBooksOpParams.size());
assertEquals(ParameterType.QUERY, getBooksOpParams.get(0).getType());
UserOperation getBookOp = map.get("getBook");
assertEquals(HttpMethod.GET, getBookOp.getVerb());
assertEquals(getApplicationPath() + "/bookstore/{id}", getBookOp.getPath());
assertEquals(MediaType.APPLICATION_JSON, getBookOp.getProduces());
List<Parameter> getBookOpParams = getBookOp.getParameters();
assertEquals(1, getBookOpParams.size());
assertEquals(ParameterType.PATH, getBookOpParams.get(0).getType());
UserOperation deleteOp = map.get("delete");
assertEquals(HttpMethod.DELETE, deleteOp.getVerb());
assertEquals(getApplicationPath() + "/bookstore/{id}", deleteOp.getPath());
List<Parameter> delOpParams = deleteOp.getParameters();
assertEquals(1, delOpParams.size());
assertEquals(ParameterType.PATH, delOpParams.get(0).getType());
assertThat(swaggerJson, CoreMatchers.containsString(CONTACT));
assertThat(swaggerJson, CoreMatchers.containsString(TITLE));
assertThat(swaggerJson, CoreMatchers.containsString(DESCRIPTION));
assertThat(swaggerJson, CoreMatchers.containsString(LICENSE));
assertThat(swaggerJson, CoreMatchers.containsString(LICENSE_URL));
assertThat(swaggerJson, CoreMatchers.containsString(SECURITY_DEFINITION_NAME));
} finally {
client.close();
}
}
use of org.apache.cxf.jaxrs.model.UserApplication in project cxf by apache.
the class SwaggerParseUtilsTest method testConvertSimpleDocToUserApp.
@Test
public void testConvertSimpleDocToUserApp() {
UserApplication ap = SwaggerParseUtils.getUserApplication("/swagger20.json");
assertNotNull(ap);
assertEquals("/services/helloservice", ap.getBasePath());
Map<String, UserResource> map = ap.getResourcesAsMap();
assertEquals(2, map.size());
UserResource ur = map.get("sayHello");
assertNotNull(ur);
assertEquals("/", ur.getPath());
assertEquals(1, ur.getOperations().size());
UserOperation op = ur.getOperations().get(0);
assertEquals("sayHello", op.getName());
assertEquals("/sayHello/{a}", op.getPath());
assertEquals("GET", op.getVerb());
assertEquals("text/plain", op.getProduces());
assertEquals(1, op.getParameters().size());
Parameter param1 = op.getParameters().get(0);
assertEquals("a", param1.getName());
assertEquals(ParameterType.PATH, param1.getType());
assertEquals(String.class, param1.getJavaType());
UserResource ur2 = map.get("sayHello2");
assertNotNull(ur2);
assertEquals("/", ur2.getPath());
assertEquals(1, ur2.getOperations().size());
UserOperation op2 = ur2.getOperations().get(0);
assertEquals("sayHello", op2.getName());
assertEquals("/sayHello2/{a}", op2.getPath());
assertEquals("GET", op2.getVerb());
assertEquals("text/plain", op2.getProduces());
assertEquals(1, op2.getParameters().size());
Parameter param2 = op.getParameters().get(0);
assertEquals("a", param2.getName());
assertEquals(ParameterType.PATH, param2.getType());
assertEquals(String.class, param2.getJavaType());
}
use of org.apache.cxf.jaxrs.model.UserApplication in project cxf by apache.
the class OpenApiParseUtils method getUserApplicationFromJson.
public static UserApplication getUserApplicationFromJson(String json, ParseConfiguration cfg) {
JsonMapObjectReaderWriter reader = new JsonMapObjectReaderWriter();
Map<String, Object> map = reader.fromJson(json);
UserApplication app = new UserApplication();
app.setBasePath("/");
List<Map<String, Object>> servers = CastUtils.cast((List<?>) map.get("servers"));
if (servers != null && !servers.isEmpty()) {
final String url = (String) servers.get(0).get("url");
if (url != null) {
app.setBasePath(url);
}
}
Map<String, List<UserOperation>> userOpsMap = new LinkedHashMap<String, List<UserOperation>>();
Set<String> tags = new HashSet<>();
List<Map<String, Object>> tagsProp = CastUtils.cast((List<?>) map.get("tags"));
if (tagsProp != null) {
for (Map<String, Object> tagProp : tagsProp) {
tags.add((String) tagProp.get("name"));
}
} else {
tags.add("");
}
for (String tag : tags) {
userOpsMap.put(tag, new LinkedList<UserOperation>());
}
Map<String, Map<String, Object>> paths = CastUtils.cast((Map<?, ?>) map.get("paths"));
for (Map.Entry<String, Map<String, Object>> pathEntry : paths.entrySet()) {
String operPath = pathEntry.getKey();
Map<String, Object> operations = pathEntry.getValue();
for (Map.Entry<String, Object> operEntry : operations.entrySet()) {
UserOperation userOp = new UserOperation();
userOp.setVerb(operEntry.getKey().toUpperCase());
Map<String, Object> oper = CastUtils.cast((Map<?, ?>) operEntry.getValue());
userOp.setPath(operPath);
userOp.setName((String) oper.get("operationId"));
Map<String, Object> responses = CastUtils.cast((Map<?, ?>) oper.get("responses"));
if (responses != null) {
userOp.setProduces(listToString(responses.entrySet().stream().map(entry -> CastUtils.cast((Map<?, ?>) entry.getValue())).map(value -> CastUtils.cast((Map<?, ?>) value.get("content"))).filter(Objects::nonNull).flatMap(content -> content.keySet().stream().map(type -> (String) type)).collect(Collectors.toList())));
}
Map<String, Object> payloads = CastUtils.cast((Map<?, ?>) oper.get("requestBody"));
if (payloads != null) {
userOp.setConsumes(listToString(payloads.entrySet().stream().map(entry -> CastUtils.cast((Map<?, ?>) entry.getValue())).map(value -> CastUtils.cast((Map<?, ?>) value.get("content"))).filter(Objects::nonNull).flatMap(content -> content.keySet().stream().map(type -> (String) type)).collect(Collectors.toList())));
}
List<Parameter> userOpParams = new LinkedList<Parameter>();
List<Map<String, Object>> params = CastUtils.cast((List<?>) oper.get("parameters"));
if (params != null) {
for (Map<String, Object> param : params) {
String name = (String) param.get("name");
// "query", "header", "path" or "cookie".
String paramType = (String) param.get("in");
ParameterType pType = null;
if ("query".equals(paramType)) {
pType = ParameterType.QUERY;
} else if ("header".equals(paramType)) {
pType = ParameterType.HEADER;
} else if ("path".equals(paramType)) {
pType = ParameterType.PATH;
} else if ("cookie".equals(paramType)) {
pType = ParameterType.COOKIE;
} else {
pType = ParameterType.REQUEST_BODY;
}
Parameter userParam = new Parameter(pType, name);
setJavaType(userParam, (String) param.get("type"));
userOpParams.add(userParam);
}
}
if (!userOpParams.isEmpty()) {
userOp.setParameters(userOpParams);
}
List<String> opTags = CastUtils.cast((List<?>) oper.get("tags"));
if (opTags == null) {
opTags = Collections.singletonList("");
}
for (String opTag : opTags) {
userOpsMap.get(opTag).add(userOp);
}
}
}
List<UserResource> resources = new LinkedList<UserResource>();
for (Map.Entry<String, List<UserOperation>> entry : userOpsMap.entrySet()) {
UserResource ur = new UserResource();
ur.setPath("/");
ur.setOperations(entry.getValue());
ur.setName(entry.getKey());
resources.add(ur);
}
app.setResources(resources);
return app;
}
use of org.apache.cxf.jaxrs.model.UserApplication in project cxf by apache.
the class SwaggerParseUtils method getUserApplicationFromJson.
public static UserApplication getUserApplicationFromJson(String json, ParseConfiguration cfg) {
JsonMapObjectReaderWriter reader = new JsonMapObjectReaderWriter();
Map<String, Object> map = reader.fromJson(json);
UserApplication app = new UserApplication();
String relativePath = (String) map.get("basePath");
app.setBasePath(StringUtils.isEmpty(relativePath) ? "/" : relativePath);
Map<String, List<UserOperation>> userOpsMap = new LinkedHashMap<String, List<UserOperation>>();
Set<String> tags = new HashSet<>();
List<Map<String, Object>> tagsProp = CastUtils.cast((List<?>) map.get("tags"));
if (tagsProp != null) {
for (Map<String, Object> tagProp : tagsProp) {
tags.add((String) tagProp.get("name"));
}
} else {
tags.add("");
}
for (String tag : tags) {
userOpsMap.put(tag, new LinkedList<UserOperation>());
}
Map<String, Map<String, Object>> paths = CastUtils.cast((Map<?, ?>) map.get("paths"));
for (Map.Entry<String, Map<String, Object>> pathEntry : paths.entrySet()) {
String operPath = pathEntry.getKey();
Map<String, Object> operations = pathEntry.getValue();
for (Map.Entry<String, Object> operEntry : operations.entrySet()) {
UserOperation userOp = new UserOperation();
userOp.setVerb(operEntry.getKey().toUpperCase());
Map<String, Object> oper = CastUtils.cast((Map<?, ?>) operEntry.getValue());
userOp.setPath(operPath);
userOp.setName((String) oper.get("operationId"));
List<String> opProduces = CastUtils.cast((List<?>) oper.get("produces"));
userOp.setProduces(listToString(opProduces));
List<String> opConsumes = CastUtils.cast((List<?>) oper.get("consumes"));
userOp.setConsumes(listToString(opConsumes));
List<Parameter> userOpParams = new LinkedList<Parameter>();
List<Map<String, Object>> params = CastUtils.cast((List<?>) oper.get("parameters"));
for (Map<String, Object> param : params) {
String name = (String) param.get("name");
// "query", "header", "path", "formData" or "body"
String paramType = (String) param.get("in");
ParameterType pType = "body".equals(paramType) ? ParameterType.REQUEST_BODY : "formData".equals(paramType) ? ParameterType.FORM : ParameterType.valueOf(paramType.toUpperCase());
Parameter userParam = new Parameter(pType, name);
setJavaType(userParam, (String) param.get("type"));
userOpParams.add(userParam);
}
if (!userOpParams.isEmpty()) {
userOp.setParameters(userOpParams);
}
List<String> opTags = CastUtils.cast((List<?>) oper.get("tags"));
if (opTags == null) {
opTags = Collections.singletonList("");
}
for (String opTag : opTags) {
userOpsMap.get(opTag).add(userOp);
}
}
}
List<UserResource> resources = new LinkedList<UserResource>();
for (Map.Entry<String, List<UserOperation>> entry : userOpsMap.entrySet()) {
UserResource ur = new UserResource();
ur.setPath("/");
ur.setOperations(entry.getValue());
ur.setName(entry.getKey());
resources.add(ur);
}
app.setResources(resources);
return app;
}
use of org.apache.cxf.jaxrs.model.UserApplication in project cxf by apache.
the class SwaggerParseUtilsTest method testConvertPetShopDocToUserApp.
@Test
public void testConvertPetShopDocToUserApp() {
UserApplication ap = SwaggerParseUtils.getUserApplication("/swagger2petShop.json");
assertNotNull(ap);
assertEquals("/v2", ap.getBasePath());
Map<String, UserResource> map = ap.getResourcesAsMap();
assertEquals(3, map.size());
UserResource pet = map.get("pet");
verifyPetResource(pet);
UserResource user = map.get("user");
verifyPetUserResource(user);
UserResource store = map.get("store");
verifyPetStoreResource(store);
}
Aggregations