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.io.IOException;
23 import java.lang.invoke.MethodHandles;
26 import org.junit.jupiter.api.Assertions;
27 import org.junit.jupiter.api.Test;
28 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.http.HttpEntity;
32 import org.springframework.http.HttpMethod;
33 import org.springframework.http.ResponseEntity;
35 import com.fasterxml.jackson.databind.JsonNode;
36 import com.fasterxml.jackson.databind.ObjectMapper;
38 public class AcXappControllerTest extends AbstractControllerTest {
40 private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43 public void versionTest() {
44 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.VERSION_METHOD);
45 logger.info("Invoking {}", uri);
46 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
47 Assertions.assertFalse(st.getData().toString().isEmpty());
51 public void getTest() throws IOException {
52 // Always returns 501; surprised that no exception is thrown.
53 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.POLICY_METHOD);
54 logger.info("Invoking {}", uri);
55 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
57 Assertions.assertTrue(response.getStatusCode().is5xxServerError());
61 public void putTest() throws IOException {
62 ObjectMapper mapper = new ObjectMapper();
63 JsonNode body = mapper.readTree("{ \"policy\" : true }");
64 URI uri = buildUri(null, AcXappController.CONTROLLER_PATH, AcXappController.POLICY_METHOD);
65 HttpEntity<JsonNode> entity = new HttpEntity<>(body);
66 logger.info("Invoking {}", uri);
67 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.PUT, entity,
69 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());