cbafba42cd59ccb3c8b2442f140c955d8dc57999
[nonrtric.git] / dashboard / a1-controller-client / src / test / java / org / oransc / ric / portal / dashboard / a1controller / client / test / A1ControllerClientTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.a1controller.client.test;
21
22 import java.lang.invoke.MethodHandles;
23 import org.junit.jupiter.api.Assertions;
24 import org.junit.jupiter.api.Test;
25 import org.oransc.ric.a1controller.client.api.A1ControllerApi;
26 import org.oransc.ric.a1controller.client.invoker.ApiClient;
27 import org.oransc.ric.a1controller.client.model.InputNRRidPTidPIidPISchema;
28 import org.oransc.ric.a1controller.client.model.InputNRRidPTidPIidPISchemaInput;
29 import org.oransc.ric.a1controller.client.model.InputNRRidPTidPIidSchema;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.web.client.RestClientException;
33
34 /**
35  * Demonstrates use of the generated A1 controller client.
36  *
37  * The tests fail because no server is available.
38  */
39 public class A1ControllerClientTest {
40
41     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
42
43         @Test
44         public void demo() {
45                 ApiClient apiClient = new ApiClient();
46                 apiClient.setBasePath("http://localhost:30099/");
47                 A1ControllerApi a1Api = new A1ControllerApi(apiClient);
48                 try {
49                         Object o = a1Api.a1ControllerGetPolicyInstance(new InputNRRidPTidPIidSchema());
50                         logger.info(
51                                         "getPolicy answered code {}, content {} ", apiClient.getStatusCode().toString(), o.toString());
52                         Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful());
53                 } catch (RestClientException e) {
54                         logger.error("getPolicy failed: {}", e.toString());
55                 }
56                 try {
57                         String policy = "{}";
58                         InputNRRidPTidPIidPISchema body = new InputNRRidPTidPIidPISchema();
59                         InputNRRidPTidPIidPISchemaInput input = new InputNRRidPTidPIidPISchemaInput();
60                         input.setNearRtRicId("1");
61                         input.setPolicyTypeId(1);
62                         input.setPolicyInstanceId("1");
63                         input.setPolicyInstance("{}");
64                         body.setInput(input);
65                         a1Api.a1ControllerCreatePolicyInstance(body);
66                         logger.info("putPolicy answered: {}", apiClient.getStatusCode().toString());
67                         Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful());
68                 } catch (RestClientException e) {
69                         logger.error("getPolicy failed: {}", e.toString());
70                 }
71         }
72 }