Move mock configurations to test area
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / controller / AnrXappControllerTest.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.lang.invoke.MethodHandles;
23 import java.net.URI;
24
25 import org.junit.jupiter.api.Assertions;
26 import org.junit.jupiter.api.Test;
27 import org.oransc.ric.anrxapp.client.model.GgNodeBTable;
28 import org.oransc.ric.anrxapp.client.model.NeighborCellRelationMod;
29 import org.oransc.ric.anrxapp.client.model.NeighborCellRelationTable;
30 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.http.HttpEntity;
34 import org.springframework.http.HttpMethod;
35 import org.springframework.http.ResponseEntity;
36
37 public class AnrXappControllerTest extends AbstractControllerTest {
38
39         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
40
41         @Test
42         public void versionTest() {
43                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.VERSION_METHOD);
44                 logger.info("Invoking {}", uri);
45                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
46                 Assertions.assertFalse(st.getData().toString().isEmpty());
47         }
48
49         @Test
50         public void healthAliveTest() {
51                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.HEALTH_ALIVE_METHOD);
52                 logger.info("Invoking {}", uri);
53                 ResponseEntity<Void> voidResponse = restTemplate.getForEntity(uri, Void.class);
54                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
55         }
56
57         @Test
58         public void healthReadyTest() {
59                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.HEALTH_READY_METHOD);
60                 logger.info("Invoking {}", uri);
61                 ResponseEntity<Void> voidResponse = restTemplate.getForEntity(uri, Void.class);
62                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
63         }
64
65         @Test
66         public void gnodebsTest() {
67                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.GNODEBS_METHOD);
68                 logger.info("Invoking {}", uri);
69                 GgNodeBTable list = testRestTemplateStandardRole().getForObject(uri, GgNodeBTable.class);
70                 Assertions.assertFalse(list.getGNodeBIds().isEmpty());
71         }
72
73         @Test
74         public void ncrtGetTest() {
75                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.NCRT_METHOD);
76                 logger.info("Invoking {}", uri);
77                 NeighborCellRelationTable table = testRestTemplateStandardRole().getForObject(uri,
78                                 NeighborCellRelationTable.class);
79                 Assertions.assertFalse(table.getNcrtRelations().isEmpty());
80         }
81
82         @Test
83         public void ncrtPutTest() {
84                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.NCRT_METHOD,
85                                 AnrXappController.PP_SERVING, "serving", AnrXappController.PP_NEIGHBOR, "neighbor");
86                 logger.info("Invoking {}", uri);
87                 HttpEntity<NeighborCellRelationMod> entity = new HttpEntity<>(new NeighborCellRelationMod());
88                 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.PUT, entity,
89                                 Void.class);
90                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
91         }
92
93         @Test
94         public void ncrtDeleteTest() {
95                 URI uri = buildUri(null, AnrXappController.CONTROLLER_PATH, AnrXappController.NCRT_METHOD,
96                                 AnrXappController.PP_SERVING, "serving", AnrXappController.PP_NEIGHBOR, "neighbor");
97                 logger.info("Invoking {}", uri);
98                 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.DELETE, null,
99                                 Void.class);
100                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
101         }
102
103 }