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