X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Faai%2FExternalSystemProxyTest.java;h=fbfc68acf42a3c96425ca4e406c94aea4456c61e;hp=09e6318436c6a278ce0e37ada2691b022927a580;hb=6f55ca36f0e2a52b33d5a2ea7cf069489951f6ce;hpb=ed26992f976741031237ead3a5dc0565d4318b05 diff --git a/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java b/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java index 09e6318..fbfc68a 100644 --- a/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java +++ b/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java @@ -21,6 +21,7 @@ import org.onap.aai.esr.common.MsbConfig; import org.onap.aai.esr.entity.aai.EsrEmsDetail; import org.onap.aai.esr.entity.aai.EsrThirdpartySdncDetail; import org.onap.aai.esr.entity.aai.EsrVnfmDetail; +import org.onap.aai.esr.entity.aai.EsrNfvoDetail; import org.onap.aai.esr.exception.ExtsysException; public class ExternalSystemProxyTest { @@ -36,63 +37,87 @@ public class ExternalSystemProxyTest { @Test(expected = ExtsysException.class) public void testRegisterVnfm() throws ExtsysException { EsrVnfmDetail detail = new EsrVnfmDetail(); - ExternalSystemProxy.registerVnfm("vnfm-1", detail); + externalSystemProxy.registerVnfm("vnfm-1", detail); } @Test(expected = ExtsysException.class) public void testQueryVnfmDetail() throws ExtsysException { - ExternalSystemProxy.queryVnfmDetail("vnfm-1"); + externalSystemProxy.queryVnfmDetail("vnfm-1"); } @Test(expected = ExtsysException.class) public void testQueryVnfmList() throws ExtsysException { - ExternalSystemProxy.queryVnfmList(); + externalSystemProxy.queryVnfmList(); } @Test(expected = ExtsysException.class) public void testDeleteVnfm() throws ExtsysException { - ExternalSystemProxy.deleteVnfm("vnfm-1", "version-1"); + externalSystemProxy.deleteVnfm("vnfm-1", "version-1"); } + @Test(expected = ExtsysException.class) + public void testRegisterNfvo() throws ExtsysException { + EsrNfvoDetail detail = new EsrNfvoDetail(); + externalSystemProxy.registerNfvo("nfvo-1", detail); + } + + @Test(expected = ExtsysException.class) + public void testQueryNfvoDetail() throws ExtsysException { + externalSystemProxy.queryNfvoDetail("nfvo-1"); + } + + @Test(expected = ExtsysException.class) + public void testQueryNfvoList() throws ExtsysException { + externalSystemProxy.queryNfvoList(); + } + + @Test(expected = ExtsysException.class) + public void testDeleteNfvo() throws ExtsysException { + externalSystemProxy.deleteNfvo("nfvo-1", "version-1"); + } + + + + @Test(expected = ExtsysException.class) public void testRegisterSdnc() throws ExtsysException { EsrThirdpartySdncDetail detail = new EsrThirdpartySdncDetail(); - ExternalSystemProxy.registerSdnc("sdnc-1", detail); + externalSystemProxy.registerSdnc("sdnc-1", detail); } @Test(expected = ExtsysException.class) public void testQueryThirdpartySdncDetail() throws ExtsysException { - ExternalSystemProxy.queryThirdpartySdncDetail("sdnc-1"); + externalSystemProxy.queryThirdpartySdncDetail("sdnc-1"); } @Test(expected = ExtsysException.class) public void testQuerySdncList() throws ExtsysException { - ExternalSystemProxy.querySdncList(); + externalSystemProxy.querySdncList(); } @Test(expected = ExtsysException.class) public void testDeleteThirdpartySdnc() throws ExtsysException { - ExternalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); + externalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); } @Test(expected = ExtsysException.class) public void testRegisterEms() throws ExtsysException { EsrEmsDetail detail = new EsrEmsDetail(); - ExternalSystemProxy.registerEms("ems-1", detail); + externalSystemProxy.registerEms("ems-1", detail); } @Test(expected = ExtsysException.class) public void testQueryEmsDetail() throws ExtsysException { - ExternalSystemProxy.queryEmsDetail("ems-1"); + externalSystemProxy.queryEmsDetail("ems-1"); } @Test(expected = ExtsysException.class) public void testQueryEmsList() throws ExtsysException { - ExternalSystemProxy.queryEmsList(); + externalSystemProxy.queryEmsList(); } @Test(expected = ExtsysException.class) public void testDeleteEms() throws ExtsysException { - ExternalSystemProxy.deleteEms("ems-1", "version-1"); + externalSystemProxy.deleteEms("ems-1", "version-1"); } }