2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 AT&T Intellectual Property and Nokia
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
20 package org.oransc.ric.portal.dashboard.controller;
22 import java.lang.invoke.MethodHandles;
24 import java.util.List;
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;
36 public class AdminControllerTest extends AbstractControllerTest {
38 private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
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());
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());
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>>() {
63 Assertions.assertFalse(response.getBody().isEmpty());
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,
72 Assertions.assertTrue(response.getStatusCode().is4xxClientError());