Require RIC instance key in controller methods
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / controller / AdminControllerTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 import org.junit.jupiter.api.Assertions;
29 import org.junit.jupiter.api.Test;
30 import org.onap.portalsdk.core.restful.domain.EcompUser;
31 import org.oransc.ric.portal.dashboard.DashboardConstants;
32 import org.oransc.ric.portal.dashboard.model.ErrorTransport;
33 import org.oransc.ric.portal.dashboard.model.RicInstanceKeyName;
34 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37 import org.springframework.core.ParameterizedTypeReference;
38 import org.springframework.http.HttpMethod;
39 import org.springframework.http.ResponseEntity;
40
41 public class AdminControllerTest extends AbstractControllerTest {
42
43         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
44
45         @Test
46         public void versionTest() {
47                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.VERSION_METHOD);
48                 logger.info("Invoking {}", uri);
49                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
50                 Assertions.assertFalse(st.getData().toString().isEmpty());
51         }
52
53         @Test
54         public void healthTest() {
55                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.HEALTH_METHOD);
56                 logger.info("Invoking {}", uri);
57                 ResponseEntity<Void> voidResponse = restTemplate.getForEntity(uri, Void.class);
58                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
59         }
60
61         @Test
62         public void getInstancesTest() {
63                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.INSTANCE_METHOD);
64                 logger.info("Invoking {}", uri);
65                 ResponseEntity<List<RicInstanceKeyName>> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET,
66                                 null, new ParameterizedTypeReference<List<RicInstanceKeyName>>() {
67                                 });
68                 Assertions.assertFalse(response.getBody().isEmpty());
69         }
70
71         @Test
72         public void getUsersTest() {
73                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.USER_METHOD);
74                 logger.info("Invoking {}", uri);
75                 ResponseEntity<List<EcompUser>> response = testRestTemplateAdminRole().exchange(uri, HttpMethod.GET, null,
76                                 new ParameterizedTypeReference<List<EcompUser>>() {
77                                 });
78                 Assertions.assertFalse(response.getBody().isEmpty());
79         }
80
81         @Test
82         public void getUsersTestRoleAuthFail() {
83                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.USER_METHOD);
84                 logger.info("Invoking {}", uri);
85                 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
86                                 String.class);
87                 Assertions.assertTrue(response.getStatusCode().is4xxClientError());
88         }
89
90         @Test
91         public void getxAppMetricsUrlTest() {
92                 Map<String, String> metricsQueryParms = new HashMap<String, String>();
93                 metricsQueryParms.put("app", DashboardConstants.APP_NAME_AC);
94                 URI uri = buildUri(metricsQueryParms, AdminController.CONTROLLER_PATH, AdminController.XAPPMETRICS_METHOD);
95                 logger.debug("Invoking {}", uri);
96                 ResponseEntity<SuccessTransport> successResponse = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET,
97                                 null, SuccessTransport.class);
98                 Assertions.assertFalse(successResponse.getBody().getData().toString().isEmpty());
99                 Assertions.assertTrue(successResponse.getStatusCode().is2xxSuccessful());
100         }
101
102         @Test
103         public void getxAppMetricsUrlTestFail() {
104                 Map<String, String> metricsQueryParms = new HashMap<String, String>();
105                 // Providing a bogus value for application name in query parameter to test
106                 // failure
107                 metricsQueryParms.put("app", "ABCD");
108                 URI uri = buildUri(metricsQueryParms, AdminController.CONTROLLER_PATH, AdminController.XAPPMETRICS_METHOD);
109                 logger.debug("Invoking {}", uri);
110                 ResponseEntity<ErrorTransport> errorResponse = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET,
111                                 null, ErrorTransport.class);
112                 logger.debug("{}", errorResponse.getBody().getError().toString());
113                 Assertions.assertTrue(errorResponse.getStatusCode().is4xxClientError());
114         }
115
116 }