Require RIC instance key in controller methods
[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
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.DashboardConstants;
30 import org.oransc.ric.portal.dashboard.config.A1MediatorMockConfiguration;
31 import org.oransc.ric.portal.dashboard.config.RICInstanceMockConfiguration;
32 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.http.HttpEntity;
36 import org.springframework.http.HttpMethod;
37 import org.springframework.http.ResponseEntity;
38
39 import com.fasterxml.jackson.databind.JsonNode;
40 import com.fasterxml.jackson.databind.ObjectMapper;
41
42 public class A1MediatorControllerTest extends AbstractControllerTest {
43
44         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
45
46         @Test
47         public void versionTest() {
48                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, DashboardConstants.VERSION_METHOD);
49                 logger.info("Invoking {}", uri);
50                 SuccessTransport st = restTemplate.getForObject(uri, SuccessTransport.class);
51                 Assertions.assertFalse(st.getData().toString().isEmpty());
52         }
53
54         @Test
55         public void getTest() throws IOException {
56                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, DashboardConstants.RIC_INSTANCE_KEY,
57                                 RICInstanceMockConfiguration.INSTANCE_KEY_1, A1MediatorController.PP_POLICIES,
58                                 A1MediatorMockConfiguration.AC_CONTROL_NAME);
59                 logger.info("Invoking {}", uri);
60                 ResponseEntity<String> response = testRestTemplateStandardRole().exchange(uri, HttpMethod.GET, null,
61                                 String.class);
62                 Assertions.assertTrue(response.getStatusCode().is2xxSuccessful());
63                 Assert.assertFalse(response.getBody().isEmpty());
64         }
65
66         @Test
67         public void putTest() throws IOException {
68                 URI uri = buildUri(null, A1MediatorController.CONTROLLER_PATH, DashboardConstants.RIC_INSTANCE_KEY,
69                                 RICInstanceMockConfiguration.INSTANCE_KEY_1, A1MediatorController.PP_POLICIES,
70                                 A1MediatorMockConfiguration.AC_CONTROL_NAME);
71                 ObjectMapper mapper = new ObjectMapper();
72                 JsonNode body = mapper.readTree("{ \"policy\" : true }");
73                 HttpEntity<JsonNode> entity = new HttpEntity<>(body);
74                 logger.info("Invoking {} with body {}", uri, body);
75                 ResponseEntity<Void> voidResponse = testRestTemplateAdminRole().exchange(uri, HttpMethod.PUT, entity,
76                                 Void.class);
77                 Assertions.assertTrue(voidResponse.getStatusCode().is2xxSuccessful());
78         }
79
80 }