use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method testBasicInput.
@Test
public void testBasicInput() {
OpenAPI openAPI = new OpenAPI();
openAPI.setComponents(new Components());
Schema user = new Schema();
user.addProperties("name", new StringSchema());
openAPI.path("/foo/baz", new PathItem().post(new Operation().requestBody(new RequestBody().content(new Content().addMediaType("*/*", new MediaType().schema(new Schema().$ref("User")))))));
openAPI.getComponents().addSchemas("User", user);
new InlineModelResolver().flatten(openAPI);
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method resolveInlineRequestBody_maxTwoPathParts.
@Test
public void resolveInlineRequestBody_maxTwoPathParts() throws Exception {
OpenAPI openAPI = new OpenAPI();
ObjectSchema objectSchema = new ObjectSchema();
objectSchema.addProperties("street", new StringSchema());
Schema schema = new Schema();
schema.addProperties("address", objectSchema);
schema.addProperties("name", new StringSchema());
MediaType mediaType = new MediaType();
mediaType.setSchema(schema);
Content content = new Content();
content.addMediaType("*/*", mediaType);
RequestBody requestBody = new RequestBody();
requestBody.setContent(content);
Operation operation = new Operation();
operation.setRequestBody(requestBody);
PathItem pathItem = new PathItem();
pathItem.setGet(operation);
openAPI.path("/api/cloud/greet/hello", pathItem);
new InlineModelResolver().flatten(openAPI);
Operation getOperation = openAPI.getPaths().get("/api/cloud/greet/hello").getGet();
RequestBody body = getOperation.getRequestBody();
assertTrue(body.getContent().get("*/*").getSchema().get$ref() != null);
Schema bodySchema = openAPI.getComponents().getSchemas().get("greet_hello_body");
assertTrue(bodySchema instanceof Schema);
assertNotNull(bodySchema.getProperties().get("address"));
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method testInlineResponseModelWithTitle.
@Test
public void testInlineResponseModelWithTitle() throws Exception {
OpenAPI openAPI = new OpenAPI();
String responseTitle = "GetBarResponse";
StringSchema stringSchema1 = new StringSchema();
ObjectSchema objectSchema1 = new ObjectSchema();
objectSchema1.setTitle(responseTitle);
objectSchema1.addProperties("name", stringSchema1);
MediaType mediaType1 = new MediaType();
mediaType1.setSchema(objectSchema1);
Content content1 = new Content();
content1.addMediaType("*/*", mediaType1);
ApiResponse response1 = new ApiResponse();
response1.setDescription("it works!");
response1.setContent(content1);
ApiResponses responses1 = new ApiResponses();
responses1.addApiResponse("200", response1);
Operation operation1 = new Operation();
operation1.setResponses(responses1);
PathItem pathItem1 = new PathItem();
pathItem1.setGet(operation1);
openAPI.path("/foo/bar", pathItem1);
StringSchema stringSchema2 = new StringSchema();
ObjectSchema objectSchema2 = new ObjectSchema();
objectSchema2.addProperties("name", stringSchema2);
objectSchema2.addExtension("x-foo", "bar");
MediaType mediaType2 = new MediaType();
mediaType2.setSchema(objectSchema2);
Content content2 = new Content();
content2.addMediaType("*/*", mediaType2);
ApiResponse response2 = new ApiResponse();
response2.setDescription("it works!");
response2.setContent(content2);
ApiResponses responses2 = new ApiResponses();
responses2.addApiResponse("200", response2);
Operation operation2 = new Operation();
operation2.setResponses(responses2);
PathItem pathItem2 = new PathItem();
pathItem2.setGet(operation2);
openAPI.path("/foo/baz", pathItem2);
new InlineModelResolver().flatten(openAPI);
Map<String, ApiResponse> responses = openAPI.getPaths().get("/foo/bar").getGet().getResponses();
ApiResponse response = responses.get("200");
assertNotNull(response);
assertTrue(response.getContent().get("*/*").getSchema().get$ref() != null);
Schema model = openAPI.getComponents().getSchemas().get(responseTitle);
assertTrue(model.getProperties().size() == 1);
assertNotNull(model.getProperties().get("name"));
assertTrue(model.getProperties().get("name") instanceof StringSchema);
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method resolveInlineArrayResponseWithTitle.
@Test
public void resolveInlineArrayResponseWithTitle() throws Exception {
OpenAPI openAPI = new OpenAPI();
ApiResponse apiResponse = new ApiResponse();
apiResponse.addExtension("x-foo", "bar");
apiResponse.description("it works!");
Map<String, Schema> properties = new HashMap<>();
properties.put("name", new StringSchema());
apiResponse.content(new Content().addMediaType("*/*", new MediaType().schema(new ArraySchema().items(new ObjectSchema().title("FooBar").properties(properties)))));
openAPI.path("/foo/baz", new PathItem().get(new Operation().responses(new ApiResponses().addApiResponse("200", apiResponse))));
new InlineModelResolver().flatten(openAPI);
ApiResponse response = openAPI.getPaths().get("/foo/baz").getGet().getResponses().get("200");
assertNotNull(response);
assertNotNull(response.getContent().get("*/*").getSchema());
Schema responseProperty = response.getContent().get("*/*").getSchema();
// no need to flatten more
assertTrue(responseProperty instanceof ArraySchema);
ArraySchema ap = (ArraySchema) responseProperty;
Schema p = ap.getItems();
assertNotNull(p);
assertEquals(p.get$ref(), "#/components/schemas/" + "FooBar");
Schema inline = openAPI.getComponents().getSchemas().get("FooBar");
assertNotNull(inline);
assertTrue(inline instanceof Schema);
assertNotNull(inline.getProperties().get("name"));
assertTrue(inline.getProperties().get("name") instanceof StringSchema);
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method testArbitraryObjectBodyParamWithArray.
@Test
public void testArbitraryObjectBodyParamWithArray() {
OpenAPI openAPI = new OpenAPI();
openAPI.path("/hello", new PathItem().get(new Operation().requestBody(new RequestBody().content(new Content().addMediaType("*/*", new MediaType().schema(new ArraySchema().items(new ObjectSchema())))))));
new InlineModelResolver().flatten(openAPI);
RequestBody requestBody = openAPI.getPaths().get("/hello").getGet().getRequestBody();
Schema schema = requestBody.getContent().get("*/*").getSchema();
assertTrue(schema instanceof ArraySchema);
ArraySchema arraySchema = (ArraySchema) schema;
Schema inner = arraySchema.getItems();
assertTrue(inner instanceof ObjectSchema);
ObjectSchema property = (ObjectSchema) inner;
assertNotNull(property);
assertNull(property.getProperties());
}
Aggregations