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