X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=esr-mgr%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Faai%2FExternalSystemProxyTest.java;fp=esr-mgr%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Faai%2FExternalSystemProxyTest.java;h=8f7cc92d7d801cd2c99cb7f6514eb2a47c48fa81;hb=6362b35e771e397cb9b49fb73a003cad38a5e0cb;hp=0000000000000000000000000000000000000000;hpb=47c1d039207d81c0edd5768ac9a40a525ad796d4;p=aai%2Fesr-server.git 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 new file mode 100644 index 0000000..8f7cc92 --- /dev/null +++ b/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java @@ -0,0 +1,98 @@ +/** + * Copyright 2016-2017 ZTE Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.onap.aai.esr.externalservice.aai; + +import org.junit.Before; +import org.junit.Test; +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.exception.ExtsysException; + +public class ExternalSystemProxyTest { + + ExternalSystemProxy externalSystemProxy; + + @Before + public void init() { + MsbConfig.setMsbServerAddr("http://msb-server"); + externalSystemProxy = new ExternalSystemProxy(); + } + + @Test(expected = ExtsysException.class) + public void testRegisterVnfm() throws ExtsysException{ + EsrVnfmDetail detail = new EsrVnfmDetail(); + ExternalSystemProxy.registerVnfm("vnfm-1", detail); + } + + @Test(expected = ExtsysException.class) + public void testQueryVnfmDetail() throws ExtsysException{ + ExternalSystemProxy.queryVnfmDetail("vnfm-1"); + } + + @Test(expected = ExtsysException.class) + public void testQueryVnfmList() throws ExtsysException{ + ExternalSystemProxy.queryVnfmList(); + } + + @Test(expected = ExtsysException.class) + public void testDeleteVnfm() throws ExtsysException{ + ExternalSystemProxy.deleteVnfm("vnfm-1", "version-1"); + } + + @Test(expected = ExtsysException.class) + public void testRegisterSdnc() throws ExtsysException{ + EsrThirdpartySdncDetail detail = new EsrThirdpartySdncDetail(); + ExternalSystemProxy.registerSdnc("sdnc-1", detail); + } + + @Test(expected = ExtsysException.class) + public void testQueryThirdpartySdncDetail() throws ExtsysException{ + ExternalSystemProxy.queryThirdpartySdncDetail("sdnc-1"); + } + + @Test(expected = ExtsysException.class) + public void testQuerySdncList() throws ExtsysException{ + ExternalSystemProxy.querySdncList(); + } + + @Test(expected = ExtsysException.class) + public void testDeleteThirdpartySdnc() throws ExtsysException{ + ExternalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); + } + + @Test(expected = ExtsysException.class) + public void testRegisterEms() throws ExtsysException{ + EsrEmsDetail detail = new EsrEmsDetail(); + ExternalSystemProxy.registerEms("ems-1",detail); + } + + @Test(expected = ExtsysException.class) + public void testQueryEmsDetail() throws ExtsysException{ + ExternalSystemProxy.queryEmsDetail("ems-1"); + } + + @Test(expected = ExtsysException.class) + public void testQueryEmsList() throws ExtsysException{ + ExternalSystemProxy.queryEmsList(); + } + + @Test(expected = ExtsysException.class) + public void testDeleteEms() throws ExtsysException{ + ExternalSystemProxy.deleteEms("ems-1", "version-1"); + } +}