Updated RST documentation
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / controller / A1MediatorControllerTest.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.io.IOException;
23 import java.lang.invoke.MethodHandles;
24 import java.net.URI;
25
26 import org.junit.Assert;
27 import org.junit.jupiter.api.Assertions;
28 import org.junit.jupiter.api.Test;
29 import org.oransc.ric.portal.dashboard.config.A1MediatorMockConfiguration;
30 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.http.HttpEntity;
34 import org.springframework.http.HttpMethod;
35 import org.springframework.http.ResponseEntity;
36
37 import com.fasterxml.jackson.databind.JsonNode;
38 import com.fasterxml.jackson.databind.ObjectMapper;
39
40 public class A1MediatorControllerTest extends AbstractControllerTest {
41
42         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43
44         @Test
45         public void versionTest() {
46                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, A1MediatorController.VERSION_METHOD);
47                 logger.info("Invoking {}", uri);
48                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
49                 Assertions.assertFalse(st.getData().toString().isEmpty());
50         }
51
52         @Test
53         public void getTest() throws IOException {
54                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, A1MediatorController.PP_POLICIES,
55                                 A1MediatorMockConfiguration.AC_CONTROL_NAME);
56                 logger.info("Invoking {}", uri);
57                 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
58                                 String.class);
59                 Assertions.assertTrue(response.getStatusCode().is2xxSuccessful());
60                 Assert.assertFalse(response.getBody().isEmpty());
61         }
62
63         @Test
64         public void putTest() throws IOException {
65                 ObjectMapper mapper = new ObjectMapper();
66                 JsonNode body = mapper.readTree("{ \"policy\" : true }");
67                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, A1MediatorController.PP_POLICIES,
68                                 A1MediatorMockConfiguration.AC_CONTROL_NAME);
69                 HttpEntity<JsonNode> entity = new HttpEntity<>(body);
70                 logger.info("Invoking {}", uri);
71                 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.PUT, entity,
72                                 Void.class);
73                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
74         }
75
76 }