blob: 8e11a7a402922c221ab9e9be9ae4fb5b265e1e75 [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.arguments.consumer;
import java.util.HashMap;
import java.util.Map;
import org.apache.servicecomb.swagger.engine.SwaggerConsumer;
import org.apache.servicecomb.swagger.engine.SwaggerEnvironment;
import org.apache.servicecomb.swagger.generator.SwaggerGenerator;
import org.apache.servicecomb.swagger.invocation.SwaggerInvocation;
import org.apache.servicecomb.swagger.invocation.arguments.ArgumentsMapper;
import org.apache.servicecomb.swagger.invocation.schemas.ConsumerAddBodyV2;
import org.apache.servicecomb.swagger.invocation.schemas.ConsumerAddV2;
import org.apache.servicecomb.swagger.invocation.schemas.JaxrsAddBeanParamV2;
import org.apache.servicecomb.swagger.invocation.schemas.JaxrsAddBodyV2;
import org.apache.servicecomb.swagger.invocation.schemas.JaxrsAddV2;
import org.apache.servicecomb.swagger.invocation.schemas.models.AddWrapperV2;
import org.junit.Test;
import io.swagger.models.Swagger;
import org.junit.jupiter.api.Assertions;
@SuppressWarnings("unchecked")
public class TestJaxrsV2V2 {
@Test
public void add_add() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("x", 1);
arguments.put("y", 2);
arguments.put("z", 3);
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertEquals(3, result.size());
Assertions.assertEquals(1, (int) result.get("x"));
Assertions.assertEquals(2, (int) result.get("y"));
Assertions.assertEquals(3, (int) result.get("x-z"));
}
@Test
public void add_addBeanParam() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddBeanParamV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("x", 1);
arguments.put("y", 2);
arguments.put("z", 3);
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertEquals(3, result.size());
Assertions.assertEquals(1, (int) result.get("x"));
Assertions.assertEquals(2, (int) result.get("y"));
Assertions.assertEquals(3, (int) result.get("x-z"));
}
@Test
public void add_addBody() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddBodyV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("x", 1);
arguments.put("y", 2);
arguments.put("z", 3);
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertEquals(1, result.size());
result = (Map<String, Object>) result.get("addBody");
Assertions.assertEquals(3, result.size());
Assertions.assertEquals(1, (int) result.get("x"));
Assertions.assertEquals(2, (int) result.get("y"));
Assertions.assertEquals(3, (int) result.get("x-z"));
}
@Test
public void addBody_add() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddBodyV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("addBody", new AddWrapperV2(1, 2, 3));
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertEquals(3, result.size());
Assertions.assertEquals(1, (int) result.get("x"));
Assertions.assertEquals(2, (int) result.get("y"));
Assertions.assertEquals(3, (int) result.get("x-z"));
}
@Test
public void addBody_addBeanParam() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddBeanParamV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddBodyV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("addBody", new AddWrapperV2(1, 2, 3));
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertEquals(3, result.size());
Assertions.assertEquals(1, (int) result.get("x"));
Assertions.assertEquals(2, (int) result.get("y"));
Assertions.assertEquals(3, (int) result.get("x-z"));
}
@Test
public void addBody_addBody() {
SwaggerEnvironment environment = new SwaggerEnvironment();
Swagger swagger = SwaggerGenerator.generate(JaxrsAddBodyV2.class);
SwaggerConsumer swaggerConsumer = environment.createConsumer(ConsumerAddBodyV2.class, swagger);
ArgumentsMapper mapper = swaggerConsumer.findOperation("add").getArgumentsMapper();
Map<String, Object> arguments = new HashMap<>();
arguments.put("addBody", new AddWrapperV2(1, 2, 3));
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> result = mapper.invocationArgumentToSwaggerArguments(invocation, arguments);
Assertions.assertSame(result.get("addBody"), arguments.get("addBody"));
}
}