X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Faai%2FExternalSystemProxy.java;h=6c34265151a7837c83d5c4517b2bd7d6b3caefac;hp=a4c80eb3ecf17ed7d196eef541c95cd3c84385f4;hb=3ca84f4c73c5996a2cc5d4372d70f1e7bce5cf0f;hpb=84c2147a46842e37c4e73c3bf19af9036371253f diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxy.java b/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxy.java index a4c80eb..6c34265 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxy.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxy.java @@ -55,6 +55,23 @@ public class ExternalSystemProxy { } public static String queryVnfmDetail(String vnfmId) throws ExtsysException { + if(isTest) { + String esrVnfmDetailStr = "{\"vnfm-id\":\"123456\"," + + "\"vim-id\":\"987654\"," + + "\"certificate-url\":\"http://11.22.33.44:5000/v3\"," + + "\"esr-system-info-list\":{" + + "\"esr-system-info\":[{" + + "\"esr-system-info-id\":\"qwerty\"," + + "\"system-name\":\"ONAP VNFM\"," + + "\"type\":\"vnfm\"," + + "\"vendor\":\"zte\"," + + "\"version\":\"v1\"," + + "\"service-url\":\"http://10.11.22.33:8000\"," + + "\"user-name\":\"onap\"," + + "\"password\":\"987654\"," + + "\"system-type\":\"VNFM\"}]}}"; + return esrVnfmDetailStr; + } try { return externalSystemproxy.queryVNFMDetail(transactionId, fromAppId, authorization, vnfmId); } catch (Exception e) { @@ -63,6 +80,14 @@ public class ExternalSystemProxy { } public static String queryVnfmList() throws ExtsysException { + if(isTest) { + String vnfmListStr = "{\"esr-vnfm\": " + + "[{\"vnfm-id\": \"123456\"," + + "\"vim-id\": \"987654\"," + + "\"certificate-url\": \"http://11.22.33.44:5000/v3\"," + + "\"resource-version\": \"1\"}]}"; + return vnfmListStr; + } try { return externalSystemproxy.queryVNFMList(transactionId, fromAppId, authorization); } catch (Exception e) { @@ -71,10 +96,12 @@ public class ExternalSystemProxy { } public static void deleteVnfm(String vnfmId, String resourceVersion) throws ExtsysException { - try { - externalSystemproxy.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion); - } catch (Exception e) { - throw new ExtsysException("Delete VNFM from A&AI failed.", e); + if(!isTest) { + try { + externalSystemproxy.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion); + } catch (Exception e) { + throw new ExtsysException("Delete VNFM from A&AI failed.", e); + } } }