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=da5d27eced0f03e889d3b6c3039c4dc4c94d18cd;hb=6f55ca36f0e2a52b33d5a2ea7cf069489951f6ce;hpb=1864177da8c2b3794204c22e0ba1a54320c4281d 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 da5d27e..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 { @@ -54,6 +55,30 @@ public class ExternalSystemProxyTest { 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();