be66270f7ba781b7e6bff954352daf95be903f9c
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / test / 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.test.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.controller.AdminController;
29 import org.oransc.ric.portal.dashboard.model.DashboardUser;
30 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.core.ParameterizedTypeReference;
34 import org.springframework.http.HttpMethod;
35 import org.springframework.http.ResponseEntity;
36
37 public class AdminControllerTest 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, AdminController.CONTROLLER_PATH, AdminController.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 healthTest() {
51                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.HEALTH_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 usersTest() {
59                 URI uri = buildUri(null, AdminController.CONTROLLER_PATH, AdminController.USER_METHOD);
60                 logger.info("Invoking {}", uri);
61                 ResponseEntity<List<DashboardUser>> response = restTemplate.exchange(uri, HttpMethod.GET, null,
62                                 new ParameterizedTypeReference<List<DashboardUser>>() {
63                                 });
64                 Assertions.assertFalse(response.getBody().isEmpty());
65         }
66
67 }