018350d65c11623666a7c52956233f3fae0dbf99
[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 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 import java.util.List;
25
26 import org.junit.jupiter.api.Assertions;
27 import org.junit.jupiter.api.Test;
28 import org.oransc.ric.portal.dashboard.model.DashboardUser;
29 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.core.ParameterizedTypeReference;
33 import org.springframework.http.HttpMethod;
34 import org.springframework.http.ResponseEntity;
35
36 public class AdminControllerTest extends AbstractControllerTest {
37
38         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
39
40         @Test
41         public void versionTest() {
42                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.VERSION_METHOD);
43                 logger.info("Invoking {}", uri);
44                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
45                 Assertions.assertFalse(st.getData().toString().isEmpty());
46         }
47
48         @Test
49         public void healthTest() {
50                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.HEALTH_METHOD);
51                 logger.info("Invoking {}", uri);
52                 ResponseEntity<Void> voidResponse = restTemplate.getForEntity(uri, Void.class);
53                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
54         }
55
56         @Test
57         public void getUsersTest() {
58                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.USER_METHOD);
59                 logger.info("Invoking {}", uri);
60                 ResponseEntity<List<DashboardUser>> response = testRestTemplateAdminRole().exchange(uri, HttpMethod.GET, null,
61                                 new ParameterizedTypeReference<List<DashboardUser>>() {
62                                 });
63                 Assertions.assertFalse(response.getBody().isEmpty());
64         }
65
66         @Test
67         public void getUsersTestRoleAuthFail() {
68                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.USER_METHOD);
69                 logger.info("Invoking {}", uri);
70                 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
71                                 String.class);
72                 Assertions.assertTrue(response.getStatusCode().is4xxClientError());
73         }
74
75 }