Add unit test for query vnfm by ID.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.externalservice.aai;
17
18 import org.glassfish.jersey.client.ClientConfig;
19 import org.onap.aai.esr.common.MsbConfig;
20 import org.onap.aai.esr.entity.aai.EsrEmsDetail;
21 import org.onap.aai.esr.entity.aai.EsrThirdpartySdncDetail;
22 import org.onap.aai.esr.entity.aai.EsrVnfmDetail;
23 import org.onap.aai.esr.exception.ExtsysException;
24
25 import com.eclipsesource.jaxrs.consumer.ConsumerFactory;
26
27 public class ExternalSystemProxy {
28
29   public static boolean isTest = false;
30   private static IExternalSystem externalSystemproxy;
31   private static String transactionId = "9999";
32   private static String fromAppId = "esr-server";
33   private static String authorization = AaiCommon.getAuthenticationCredentials();
34   static {
35     ClientConfig config = new ClientConfig();
36     externalSystemproxy = ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddr(),
37         config, IExternalSystem.class);
38   }
39
40   public static void registerVnfm(String vnfmId, EsrVnfmDetail esrVnfmDetail)
41       throws ExtsysException {
42     if (isTest) {
43
44     } else {
45       ClientConfig config = new ClientConfig(new VnfmRegisterProvider());
46       IExternalSystem registerVnfmServiceproxy = ConsumerFactory
47           .createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
48       try {
49         registerVnfmServiceproxy.registerVNFM(transactionId, fromAppId, authorization, vnfmId,
50             esrVnfmDetail);
51       } catch (Exception e) {
52         throw new ExtsysException("PUT VNFM to A&AI failed.", e);
53       }
54     }
55   }
56   
57   public static String queryVnfmDetail(String vnfmId) throws ExtsysException {
58     if(isTest) {
59       String esrVnfmDetailStr = "{\"vnfm-id\":\"123456\","
60           + "\"vim-id\":\"987654\","
61           + "\"certificate-url\":\"http://11.22.33.44:5000/v3\","
62           + "\"esr-system-info-list\":{"
63           + "\"esr-system-info\":[{"
64           + "\"esr-system-info-id\":\"qwerty\","
65           + "\"system-name\":\"ONAP VNFM\","
66           + "\"type\":\"vnfm\","
67           + "\"vendor\":\"zte\","
68           + "\"version\":\"v1\","
69           + "\"service-url\":\"http://10.11.22.33:8000\","
70           + "\"user-name\":\"onap\","
71           + "\"password\":\"987654\","
72           + "\"system-type\":\"VNFM\"}]}}";
73       return esrVnfmDetailStr;
74     }
75     try {
76       return externalSystemproxy.queryVNFMDetail(transactionId, fromAppId, authorization, vnfmId);
77     } catch (Exception e) {
78       throw new ExtsysException("Query VNFM detail from A&AI failed.", e);
79     }
80   }
81   
82   public static String queryVnfmList() throws ExtsysException {
83     try {
84       return externalSystemproxy.queryVNFMList(transactionId, fromAppId, authorization);
85     } catch (Exception e) {
86       throw new ExtsysException("Query VNFM list from A&AI failed.", e);
87     }
88   }
89   
90   public static void deleteVnfm(String vnfmId, String resourceVersion) throws ExtsysException {
91     try {
92       externalSystemproxy.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion);
93     } catch (Exception e) {
94       throw new ExtsysException("Delete VNFM from A&AI failed.", e);
95     }
96   }
97   
98   public static void registerSdnc(String thirdpartySdncId, EsrThirdpartySdncDetail esrSdncDetail) throws ExtsysException {
99     ClientConfig config = new ClientConfig(new ThirdpartySdncRegisterProvider());
100     IExternalSystem registerSdncServiceproxy = ConsumerFactory
101         .createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
102     try {
103       registerSdncServiceproxy.registerThirdpartySdnc(transactionId, fromAppId, authorization, thirdpartySdncId,
104           esrSdncDetail);
105     } catch (Exception e) {
106       throw new ExtsysException("PUT thirdparty SDNC to A&AI failed.", e);
107     }
108   }
109   
110   public static String queryThirdpartySdncDetail(String thirdpartySdncId) throws ExtsysException {
111     try {
112       return externalSystemproxy.queryThirdpartySdncDetail(transactionId, fromAppId, authorization, thirdpartySdncId);
113     } catch (Exception e) {
114       throw new ExtsysException("Query thirdparty SDNC detail from A&AI failed.", e);
115     }
116   }
117   
118   public static String querySdncList() throws ExtsysException {
119     try {
120       return externalSystemproxy.queryThirdpartySdncList(transactionId, fromAppId, authorization);
121     } catch (Exception e) {
122       throw new ExtsysException("Query thirdparty SDNC list from A&AI failed.", e);
123     }
124   }
125   
126   public static void deleteThirdpartySdnc(String sdncId, String resourceVersion) throws ExtsysException {
127     try {
128       externalSystemproxy.deleteThirdpartySdnc(transactionId, fromAppId, authorization, sdncId, resourceVersion);
129     } catch (Exception e) {
130       throw new ExtsysException("Delete thirdparty SDNC from A&AI failed.", e);
131     }
132   }
133   
134   public static void registerEms(String emsId, EsrEmsDetail emsDetail) throws ExtsysException {
135     ClientConfig config = new ClientConfig(new EmsRegisterProvider());
136     IExternalSystem registerEmsServiceproxy = ConsumerFactory
137         .createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
138     try {
139       registerEmsServiceproxy.registerEMS(transactionId, fromAppId, authorization, emsId,
140           emsDetail);
141     } catch (Exception e) {
142       throw new ExtsysException("PUT EMS to A&AI failed.", e);
143     }
144   }
145   
146   public static String queryEmsDetail(String emsId) throws ExtsysException {
147     try {
148       return externalSystemproxy.queryEMSDetail(transactionId, fromAppId, authorization, emsId);
149     } catch (Exception e) {
150       throw new ExtsysException("Query EMS detail from A&AI failed.", e);
151     }
152   }
153   
154   public static String queryEmsList() throws ExtsysException {
155     try {
156       return externalSystemproxy.queryEMSList(transactionId, fromAppId, authorization);
157     } catch (Exception e) {
158       throw new ExtsysException("Query EMS list from A&AI failed.", e);
159     }
160   }
161   
162   public static void deleteEms(String emsId, String resourceVersion) throws ExtsysException {
163     try {
164       externalSystemproxy.deleteEMS(transactionId, fromAppId, authorization, emsId, resourceVersion);
165     } catch (Exception e) {
166       throw new ExtsysException("Delete EMS from A&AI failed.", e);
167     }
168   }
169 }