blob: 4f0708533116a0407dabf37f6b45e2c60a5d56d4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicecomb.swagger.invocation.response;
import org.apache.servicecomb.swagger.generator.SwaggerGenerator;
import org.junit.Test;
import com.fasterxml.jackson.databind.JavaType;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import io.swagger.annotations.ResponseHeader;
import io.swagger.models.Operation;
import io.swagger.models.Swagger;
import org.junit.jupiter.api.Assertions;
public class TestResponsesMeta {
static class ResponseMetaImpl {
@ApiResponses({@ApiResponse(code = 400, response = String.class, message = ""),
@ApiResponse(
code = 401,
response = long.class,
message = "",
responseHeaders = {@ResponseHeader(name = "h1", response = int.class)})
})
public int add(int x, int y) {
return x + y;
}
}
@Test
public void test() {
Swagger swagger = SwaggerGenerator.generate(ResponseMetaImpl.class);
Operation operation = swagger.getPath("/add").getPost();
ResponsesMeta meta = new ResponsesMeta();
meta.init(swagger, operation);
JavaType resp = meta.findResponseType(200);
Assertions.assertEquals(Integer.class, resp.getRawClass());
resp = meta.findResponseType(201);
Assertions.assertEquals(Integer.class, resp.getRawClass());
resp = meta.findResponseType(400);
Assertions.assertEquals(String.class, resp.getRawClass());
resp = meta.findResponseType(401);
Assertions.assertEquals(Long.class, resp.getRawClass());
resp = meta.findResponseType(500);
// changed to Object for new version to keep user defined error data not lose and can be parsed.
Assertions.assertEquals(Object.class, resp.getRawClass());
}
}