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=8f7cc92d7d801cd2c99cb7f6514eb2a47c48fa81;hb=c0fcc4e347af8ec435cf6e33f50c47a865902f5c;hpb=6362b35e771e397cb9b49fb73a003cad38a5e0cb 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 8f7cc92..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 { @@ -34,65 +35,89 @@ public class ExternalSystemProxyTest { } @Test(expected = ExtsysException.class) - public void testRegisterVnfm() throws ExtsysException{ + 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"); + public void testQueryVnfmDetail() throws ExtsysException { + externalSystemProxy.queryVnfmDetail("vnfm-1"); } @Test(expected = ExtsysException.class) - public void testQueryVnfmList() throws ExtsysException{ - ExternalSystemProxy.queryVnfmList(); + public void testQueryVnfmList() throws ExtsysException { + externalSystemProxy.queryVnfmList(); } @Test(expected = ExtsysException.class) - public void testDeleteVnfm() throws ExtsysException{ - ExternalSystemProxy.deleteVnfm("vnfm-1", "version-1"); + public void testDeleteVnfm() throws ExtsysException { + externalSystemProxy.deleteVnfm("vnfm-1", "version-1"); } @Test(expected = ExtsysException.class) - public void testRegisterSdnc() throws ExtsysException{ + 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"); + public void testQueryThirdpartySdncDetail() throws ExtsysException { + externalSystemProxy.queryThirdpartySdncDetail("sdnc-1"); } @Test(expected = ExtsysException.class) - public void testQuerySdncList() throws ExtsysException{ - ExternalSystemProxy.querySdncList(); + public void testQuerySdncList() throws ExtsysException { + externalSystemProxy.querySdncList(); } @Test(expected = ExtsysException.class) - public void testDeleteThirdpartySdnc() throws ExtsysException{ - ExternalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); + public void testDeleteThirdpartySdnc() throws ExtsysException { + externalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); } @Test(expected = ExtsysException.class) - public void testRegisterEms() throws ExtsysException{ + 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"); + public void testQueryEmsDetail() throws ExtsysException { + externalSystemProxy.queryEmsDetail("ems-1"); } @Test(expected = ExtsysException.class) - public void testQueryEmsList() throws ExtsysException{ - ExternalSystemProxy.queryEmsList(); + public void testQueryEmsList() throws ExtsysException { + externalSystemProxy.queryEmsList(); } @Test(expected = ExtsysException.class) - public void testDeleteEms() throws ExtsysException{ - ExternalSystemProxy.deleteEms("ems-1", "version-1"); + public void testDeleteEms() throws ExtsysException { + externalSystemProxy.deleteEms("ems-1", "version-1"); } }