f0ba8b58b8341f61b7b9aa9eb388493344430f93
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / test / 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.test.controller;
21
22 import java.io.IOException;
23 import java.lang.invoke.MethodHandles;
24 import java.net.URI;
25 import org.junit.jupiter.api.Assertions;
26 import org.junit.jupiter.api.Test;
27
28 import org.oransc.ric.portal.dashboard.controller.AcXappController;
29 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.http.HttpEntity;
33 import org.springframework.http.HttpMethod;
34 import org.springframework.http.ResponseEntity;
35
36 import com.fasterxml.jackson.databind.JsonNode;
37 import com.fasterxml.jackson.databind.ObjectMapper;
38
39 public class AcXappControllerTest extends AbstractControllerTest {
40
41         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
42
43         @Test
44         public void versionTest() {
45                 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.VERSION_METHOD);
46                 logger.info("Invoking {}", uri);
47                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
48                 Assertions.assertFalse(st.getData().toString().isEmpty());
49         }
50
51         @Test
52         public void getTest() throws IOException {
53                 // Always returns 501; surprised that no exception is thrown.
54                 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.ADMCTRL_METHOD);
55                 logger.info("Invoking {}", uri);
56                 ResponseEntity<String> response = restTemplate.exchange(uri, HttpMethod.GET, null, 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 = restTemplate.exchange(uri, HttpMethod.PUT, entity, Void.class);
68                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
69         }
70
71 }