9a310bc2524625ead63baee8d9f3e248b5c8edbf
[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  * 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.oransc.ric.portal.dashboard.xappmgr.client.test;
21
22 import org.junit.jupiter.api.Test;
23 import org.oransc.ric.xappmgr.client.api.DefaultApi;
24 import org.oransc.ric.xappmgr.client.invoker.ApiClient;
25 import org.oransc.ric.xappmgr.client.model.AllXapps;
26 import org.oransc.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  * The ugly name "DefaultApi" is generated because the spec lacks appropriate
35  * tags on the operation, also see
36  * https://stackoverflow.com/questions/38293236/swagger-swagger-codegen-maven-plugin-generate-default-api-interface
37  */
38 public class XappManagerClientTest {
39
40         @Test
41         public void demo() {
42                 ApiClient apiClient = new ApiClient();
43                 apiClient.setBasePath("http://localhost:30099/");
44                 DefaultApi apiInstance = new DefaultApi(apiClient);
45                 try {
46                         apiInstance.getHealth();
47                         System.out.println("getHealth answered: " + apiClient.getStatusCode().toString());
48                 } catch (RestClientException e) {
49                         System.err.println("getHealth failed: " + e.toString());
50                 }
51                 try {
52                         AllXapps allXapps = apiInstance.getAllXapps();
53                         System.out.println("getAllXapps answered: " + apiClient.getStatusCode().toString());
54                         System.out.println("xApp count: " + allXapps.size());
55                         for (Xapp x : allXapps)
56                                 System.out.println("xApp: " + x.toString());
57                 } catch (RestClientException e) {
58                         System.err.println("getAllXapps failed: " + e.toString());
59                 }
60         }
61
62 }