added svcapi ui and camunda code
[it/otf.git] / otf-service-api / src / test / java / org / oran / otf / api / tests / integration / services / ExecutionServiceRouteIT.java
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 package org.oran.otf.api.tests.integration.services;\r
18 \r
19 import org.oran.otf.api.Application;\r
20 import org.oran.otf.api.tests.shared.MemoryDatabase;\r
21 import io.restassured.RestAssured;\r
22 import org.junit.After;\r
23 import org.junit.AfterClass;\r
24 import org.junit.Before;\r
25 import org.junit.BeforeClass;\r
26 import org.junit.Ignore;\r
27 import org.junit.Test;\r
28 import org.junit.runner.RunWith;\r
29 import org.springframework.boot.test.context.SpringBootTest;\r
30 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;\r
31 import org.springframework.boot.web.server.LocalServerPort;\r
32 import org.springframework.test.context.ActiveProfiles;\r
33 import org.springframework.test.context.TestPropertySource;\r
34 import org.springframework.test.context.junit4.SpringRunner;\r
35 \r
36 @RunWith(SpringRunner.class)\r
37 @SpringBootTest(\r
38     webEnvironment = WebEnvironment.RANDOM_PORT,\r
39     classes = {Application.class}\r
40 )\r
41 @TestPropertySource("classpath:application-test.properties")\r
42 @ActiveProfiles("test")\r
43 public class ExecutionServiceRouteIT {\r
44   @LocalServerPort\r
45   private int port;\r
46 \r
47   @BeforeClass\r
48   public static void setup() throws Exception{\r
49     MemoryDatabase.setup();\r
50   }\r
51   @AfterClass\r
52   public static void cleanup(){\r
53     MemoryDatabase.cleanup();\r
54   }\r
55 \r
56   @Before\r
57   public void setupRestAssured() throws Exception{\r
58     RestAssured.port = port;\r
59     RestAssured.urlEncodingEnabled = false;\r
60     RestAssured.baseURI = "https://localhost";\r
61     RestAssured.basePath="/otf/api/testExecution/v1";\r
62     RestAssured.useRelaxedHTTPSValidation();\r
63   }\r
64 \r
65   @Ignore\r
66   @Test\r
67   public void testExecutionServiceRouteRespondsWith200(){}\r
68   @Test\r
69   public void testExecutionServiceRouteStatusRespondsWithOnNoAuth(){\r
70     RestAssured.given().log().all().header("Accept", "application/json").get("/status/executionId/abced").then().assertThat().statusCode(401);\r
71   }\r
72   @Test\r
73   public void testExecutionServiceRouteExecutionIdRespondsWithOnNoAuth(){\r
74     RestAssured.given().log().all().header("Accept", "application/json").get("/executionId/abced").then().assertThat().statusCode(401);\r
75   }\r
76 \r
77 \r
78 }\r
79 \r