a459375216c9f3c858df430d8c7c02bb907037cd
[portal/ric-dashboard.git] / dashboard / app-mgr-client / src / test / java / org / oransc / ric / portal / dashboard / appmgr / client / test / AppManagerClientTest.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.appmgr.client.test;
21
22 import org.junit.jupiter.api.Assertions;
23 import org.junit.jupiter.api.Test;
24 import org.oransc.ric.plt.appmgr.client.api.HealthApi;
25 import org.oransc.ric.plt.appmgr.client.api.XappApi;
26 import org.oransc.ric.plt.appmgr.client.invoker.ApiClient;
27 import org.oransc.ric.plt.appmgr.client.model.AllDeployedXapps;
28 import org.oransc.ric.plt.appmgr.client.model.Xapp;
29 import org.springframework.web.client.RestClientException;
30
31 /**
32  * Demonstrates use of the generated xApp manager client.
33  * 
34  * The test fails because no server is available.
35  */
36 public class AppManagerClientTest {
37
38         @Test
39         public void demo() {
40                 ApiClient apiClient = new ApiClient();
41                 apiClient.setBasePath("http://localhost:30099/");
42                 try {
43                         HealthApi healthApi = new HealthApi(apiClient);
44                         healthApi.getHealthAlive();
45                         System.out.println("getHealthAlive answered: " + apiClient.getStatusCode().toString());
46                         Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful());
47                 } catch (RestClientException e) {
48                         System.err.println("getHealthAlive failed: " + e.toString());
49                 }
50                 try {
51                         XappApi xappApi = new XappApi(apiClient);
52                         AllDeployedXapps allXapps = xappApi.getAllXapps();
53                         System.out.println("getAllXapps answered: " + apiClient.getStatusCode().toString());
54                         Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful());
55                         System.out.println("xApp count: " + allXapps.size());
56                         for (Xapp x : allXapps)
57                                 System.out.println("xApp: " + x.toString());
58                 } catch (RestClientException e) {
59                         System.err.println("getAllXapps failed: " + e.toString());
60                 }
61         }
62
63 }