List of Input Parameters for VSP
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / externaltesting-rest / externaltesting-rest-services / src / main / java / org / openecomp / sdcrests / externaltesting / rest / ExternalTesting.java
1 /*
2  * Copyright © 2019 iconectiv
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdcrests.externaltesting.rest;
18
19 import io.swagger.annotations.Api;
20 import org.openecomp.core.externaltesting.api.VtpTestExecutionRequest;
21 import org.springframework.validation.annotation.Validated;
22
23 import javax.ws.rs.*;
24 import javax.ws.rs.core.MediaType;
25 import javax.ws.rs.core.Response;
26 import java.util.List;
27
28
29 @Path("/v1.0/externaltesting")
30 @Produces(MediaType.APPLICATION_JSON)
31 @Consumes(MediaType.APPLICATION_JSON)
32 @Api(value = "External-Testing")
33 @Validated
34
35 public interface ExternalTesting {
36
37   @GET
38   @Path("/config")
39   Response getConfig();
40
41   @GET
42   @Path("/testcasetree")
43   Response getTestCasesAsTree();
44
45   @GET
46   @Path("/endpoints")
47   Response getEndpoints();
48
49   @GET
50   @Path("/endpoints/{endpointId}/scenarios")
51   Response getScenarios(@PathParam("endpointId") String endpointId);
52
53   @GET
54   @Path("/endpoints/{endpointId}/scenarios/{scenario}/testsuites")
55   Response getTestsuites(@PathParam("endpointId") String endpointId, @PathParam("scenario") String scenario);
56
57   @GET
58   @Path("/endpoints/{endpointId}/scenarios/{scenario}/testcases")
59   Response getTestcases(@PathParam("endpointId") String endpointId,
60                         @PathParam("scenario") String scenario);
61
62   @GET
63   @Path("/endpoints/{endpointId}/scenarios/{scenario}/testsuites/{testsuite}/testcases/{testcase}")
64   Response getTestcase(@PathParam("endpointId") String endpointId,
65                        @PathParam("scenario") String scenario,
66                        @PathParam("testsuite") String testsuite,
67                        @PathParam("testcase") String testcase);
68
69   @POST
70   @Path("/endpoints/{endpointId}/executions/{executionId}")
71   Response getExecution(@PathParam("endpointId") String endpointId,
72                         @PathParam("executionId") String executionId);
73
74
75   @POST
76   @Path("/executions")
77   Response execute(List<VtpTestExecutionRequest> req,
78                    @QueryParam("requestId") String requestId);
79
80 }