use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class ParameterProcessor method processParameter.
public void processParameter(Parameter parameter) {
String $ref = parameter.get$ref();
if ($ref != null) {
RefFormat refFormat = computeRefFormat(parameter.get$ref());
if (isAnExternalRefFormat(refFormat)) {
final String newRef = externalRefProcessor.processRefToExternalParameter($ref, refFormat);
if (newRef != null) {
parameter.set$ref(newRef);
}
}
}
if (parameter.getSchema() != null) {
schemaProcessor.processSchema(parameter.getSchema());
}
if (parameter.getExamples() != null) {
Map<String, Example> examples = parameter.getExamples();
for (String exampleName : examples.keySet()) {
final Example example = examples.get(exampleName);
exampleProcessor.processExample(example);
}
}
Schema schema = null;
if (parameter.getContent() != null) {
Map<String, MediaType> content = parameter.getContent();
for (String mediaName : content.keySet()) {
MediaType mediaType = content.get(mediaName);
if (mediaType.getSchema() != null) {
schema = mediaType.getSchema();
if (schema != null) {
schemaProcessor.processSchema(schema);
}
}
}
}
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class ResponseProcessor method processResponse.
public void processResponse(ApiResponse response) {
if (response.get$ref() != null) {
processReferenceResponse(response);
}
Schema schema = null;
if (response.getContent() != null) {
Map<String, MediaType> content = response.getContent();
for (String mediaName : content.keySet()) {
MediaType mediaType = content.get(mediaName);
if (mediaType.getSchema() != null) {
schema = mediaType.getSchema();
if (schema != null) {
schemaProcessor.processSchema(schema);
}
}
if (mediaType.getExamples() != null) {
for (Example ex : mediaType.getExamples().values()) {
exampleProcessor.processExample(ex);
}
}
}
}
if (response.getHeaders() != null) {
Map<String, Header> headers = response.getHeaders();
for (String headerName : headers.keySet()) {
Header header = headers.get(headerName);
headerProcessor.processHeader(header);
}
}
if (response.getLinks() != null) {
Map<String, Link> links = response.getLinks();
for (String linkName : links.keySet()) {
Link link = links.get(linkName);
linkProcessor.processLink(link);
}
}
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class OpenAPIResolverTest method testResponseRemoteRefs.
private void testResponseRemoteRefs(String remoteRef) {
final OpenAPI swagger = new OpenAPI();
swagger.path("/fun", new PathItem().get(new Operation().responses(new ApiResponses().addApiResponse("200", new ApiResponse().content(new Content().addMediaType("*/*", new MediaType().schema(new Schema().$ref(remoteRef))))))));
final OpenAPI resolved = new OpenAPIResolver(swagger, null).resolve();
final ApiResponse response = swagger.getPaths().get("/fun").getGet().getResponses().get("200");
final Schema ref = response.getContent().get("*/*").getSchema();
assertEquals(ref.get$ref(), "#/components/schemas/Tag");
assertNotNull(swagger.getComponents().getSchemas().get("Tag"));
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class ParameterProcessorTest method testProcessParameters_BodyParameter.
@Test
public void testProcessParameters_BodyParameter(@Injectable final Schema bodyParamSchema) throws Exception {
expectedModelProcessorCreation();
RequestBody bodyParameter = new RequestBody().content(new Content().addMediaType("*/*", new MediaType().schema(bodyParamSchema)));
expectModelProcessorInvoked(bodyParamSchema);
new RequestBodyProcessor(cache, openAPI).processRequestBody(bodyParameter);
new FullVerifications() {
{
}
};
}
use of io.swagger.v3.oas.annotations.media.Content in project swagger-parser by swagger-api.
the class InlineModelResolverTest method testInlineMapResponseWithObjectSchema.
@Test
public void testInlineMapResponseWithObjectSchema() throws Exception {
OpenAPI openAPI = new OpenAPI();
Schema schema = new Schema();
schema.setAdditionalProperties(new ObjectSchema().addProperties("name", new StringSchema()));
schema.addExtension("x-ext", "ext-prop");
ApiResponse apiResponse = new ApiResponse().description("it works!").content(new Content().addMediaType("*/*", new MediaType().schema(schema)));
apiResponse.addExtension("x-foo", "bar");
ApiResponses apiResponses = new ApiResponses().addApiResponse("200", apiResponse);
openAPI.path("/foo/baz", new PathItem().get(new Operation().responses(apiResponses)));
new InlineModelResolver().flatten(openAPI);
ApiResponse response = openAPI.getPaths().get("/foo/baz").getGet().getResponses().get("200");
Schema property = response.getContent().get("*/*").getSchema();
assertTrue(property.getAdditionalProperties() != null);
assertEquals(1, property.getExtensions().size());
assertEquals("ext-prop", property.getExtensions().get("x-ext"));
assertTrue(openAPI.getComponents().getSchemas().size() == 1);
Schema inline = openAPI.getComponents().getSchemas().get("inline_response_map200");
assertTrue(inline instanceof Schema);
assertNotNull(inline.getProperties().get("name"));
assertTrue(inline.getProperties().get("name") instanceof StringSchema);
}
Aggregations