Move mock configurations to test area
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / controller / AcXappControllerTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard.controller;
21
22 import java.io.IOException;
23 import java.lang.invoke.MethodHandles;
24 import java.net.URI;
25
26 import org.junit.jupiter.api.Assertions;
27 import org.junit.jupiter.api.Test;
28 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.http.HttpEntity;
32 import org.springframework.http.HttpMethod;
33 import org.springframework.http.ResponseEntity;
34
35 import com.fasterxml.jackson.databind.JsonNode;
36 import com.fasterxml.jackson.databind.ObjectMapper;
37
38 public class AcXappControllerTest extends AbstractControllerTest {
39
40         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
41
42         @Test
43         public void versionTest() {
44                 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.VERSION_METHOD);
45                 logger.info("Invoking {}", uri);
46                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
47                 Assertions.assertFalse(st.getData().toString().isEmpty());
48         }
49
50         @Test
51         public void getTest() throws IOException {
52                 // Always returns 501; surprised that no exception is thrown.
53                 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.ADMCTRL_METHOD);
54                 logger.info("Invoking {}", uri);
55                 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
56                                 String.class);
57                 Assertions.assertTrue(response.getStatusCode().is5xxServerError());
58         }
59
60         @Test
61         public void putTest() throws IOException {
62                 ObjectMapper mapper = new ObjectMapper();
63                 JsonNode body = mapper.readTree("{ \"policy\" : true }");
64                 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.ADMCTRL_METHOD);
65                 HttpEntity<JsonNode> entity = new HttpEntity<>(body);
66                 logger.info("Invoking {}", uri);
67                 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.PUT, entity,
68                                 Void.class);
69                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
70         }
71
72 }