blob: 538a703b51a173775adec473879bcfdf700ad199 [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.it.testcase;
import org.apache.servicecomb.it.extend.engine.GateRestTemplate;
import org.apache.servicecomb.it.extend.engine.ITSCBRestTemplate;
import org.apache.servicecomb.it.junit.ITJUnitUtils;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
public class TestRestController {
private static ITSCBRestTemplate restControllerSchemaClient = new ITSCBRestTemplate
("org.apache.servicecomb.it.schema.RestControllerSchema");
private static ITSCBRestTemplate restControllerEmptyMappingSchemaClient = new ITSCBRestTemplate
("org.apache.servicecomb.it.schema.RestControllerEmptyMappingSchema");
private static ITSCBRestTemplate restControllerWithRequestMappingSchemaClient = new ITSCBRestTemplate
("org.apache.servicecomb.it.schema.RestControllerWithRequestMappingSchema");
private static ITSCBRestTemplate restControllerWithRestSchemaSchemaClient = new ITSCBRestTemplate
("RestControllerWithRestSchemaSchema");
private static GateRestTemplate restControllerSchemaClientEdge = GateRestTemplate
.createEdgeRestTemplate("org.apache.servicecomb.it.schema.RestControllerSchema");
@Test
public void restControllerSchemaClient() {
Assertions.assertEquals("/", restControllerSchemaClient.getBasePath());
int result = restControllerSchemaClient.getForObject("/restControllerSchemaQuery?input=2", int.class);
Assertions.assertEquals(2, result);
}
@Test
public void restControllerSchemaClientRestControllerSchemaQueries() {
if ("rest".equals(ITJUnitUtils.getTransport())) {
System.out.println("restControllerSchemaClientRestControllerSchemaQueries run with REST.");
String result = restControllerSchemaClient.getForObject("/v1/restControllerSchemaQueries?a=2", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
result = restControllerSchemaClient.getForObject("/v1/restControllerSchemaQueries?a=2&b=3", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2&b=3", result);
result = restControllerSchemaClient.getForObject("/v1/restControllerSchemaQueries?a=2&b=3&c=4", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2&b=3&c=4", result);
result = restControllerSchemaClient.getForObject("/v1/restControllerSchemaQueries?a=2&&&", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
System.out.println("restControllerSchemaClientRestControllerSchemaQueries run with REST edge.");
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?b=3", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?b=3", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?b=3", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?b=3", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2&b=3&c=4", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2&b=3&c=4", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2&b=3&c=4", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2&b=3&c=4", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2&&&", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
result = restControllerSchemaClientEdge.getForObject("/v1/restControllerSchemaQueries?a=2&&&", String.class);
Assertions.assertEquals("/v1/restControllerSchemaQueries?a=2", result);
} else {
System.out.println("restControllerSchemaClientRestControllerSchemaQueries not run with." + ITJUnitUtils.getTransport());
}
}
@Test
public void restControllerEmptyMappingSchemaClient() {
// empty path default to class name(@RequestMapping(path = "")). Shall we change this behavior in future?
Assertions.assertEquals("/RestControllerEmptyMappingSchema", restControllerEmptyMappingSchemaClient.getBasePath());
int result = restControllerEmptyMappingSchemaClient
.getForObject("/restControllerEmptyMappingSchemaQuery?input=2", int.class);
Assertions.assertEquals(2, result);
}
@Test
public void restControllerWithRequestMappingSchemaClient() {
Assertions.assertEquals("/restControllerWithRequest", restControllerWithRequestMappingSchemaClient.getBasePath());
int result = restControllerWithRequestMappingSchemaClient
.getForObject("/restControllerWithRequestMappingSchemaQuery?input=2", int.class);
Assertions.assertEquals(2, result);
}
@Test
public void restControllerWithRestSchemaSchemaClient() {
Assertions.assertEquals("/restControllerWithRestSchemaSchema", restControllerWithRestSchemaSchemaClient.getBasePath());
int result = restControllerWithRestSchemaSchemaClient
.getForObject("/restControllerWithRestSchemaSchemaQuery?input=2", int.class);
Assertions.assertEquals(2, result);
}
}