From cb1858f5625ed272cb7aa429fac3b10ecbb9dcd8 Mon Sep 17 00:00:00 2001 From: Seshu-Kumar-M Date: Tue, 3 Oct 2017 19:16:28 +0530 Subject: [PATCH] Adding UT for MSO Vnf Adapter IssueId: SO-176 Change-Id: I66f7a522bdd85c65abba57e2802bb5085b4535a7 Signed-off-by: Seshu-Kumar-M --- adapters/mso-vnf-adapter/pom.xml | 19 ++- .../vnf/test/MsoVnfAdapterAsyncImplTest.java | 131 +++++++++++++++++ .../adapters/vnf/test/MsoVnfAdapterImplTest.java | 156 +++++++++++++++++++++ 3 files changed, 302 insertions(+), 4 deletions(-) create mode 100644 adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterAsyncImplTest.java create mode 100644 adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterImplTest.java diff --git a/adapters/mso-vnf-adapter/pom.xml b/adapters/mso-vnf-adapter/pom.xml index ba0c87ab5e..9c5d74cb81 100644 --- a/adapters/mso-vnf-adapter/pom.xml +++ b/adapters/mso-vnf-adapter/pom.xml @@ -30,7 +30,7 @@ 2.3 - Synch + Synch wsgen @@ -42,7 +42,7 @@ - Asynch + Asynch wsgen @@ -70,7 +70,7 @@ - org.eclipse.m2e @@ -144,7 +144,18 @@ status-control ${project.version} - + + org.jmockit + jmockit + 1.8 + test + + + junit + junit + 4.12 + test + diff --git a/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterAsyncImplTest.java b/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterAsyncImplTest.java new file mode 100644 index 0000000000..b680170abe --- /dev/null +++ b/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterAsyncImplTest.java @@ -0,0 +1,131 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ + +package org.openecomp.mso.adapters.vnf.test; + +import java.util.HashMap; +import java.util.Map; + +import org.junit.Test; +import org.openecomp.mso.adapters.vnf.MsoVnfAdapterAsyncImpl; +import org.openecomp.mso.entity.MsoRequest; +import org.openecomp.mso.openstack.beans.HeatStatus; +import org.openecomp.mso.openstack.beans.StackInfo; +import org.openecomp.mso.openstack.beans.VnfRollback; +import org.openecomp.mso.openstack.exceptions.MsoException; +import org.openecomp.mso.openstack.utils.MsoHeatUtils; + +import mockit.Mock; +import mockit.MockUp; + +public class MsoVnfAdapterAsyncImplTest { + + @Test + public void healthCheckVNFTest() { + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + instance.healthCheckA(); + } + + @Test + public void createVNFTest() { + new MockUp() { + @Mock + public StackInfo queryStack(String cloudSiteId, String tenantId, String stackName) throws MsoException { + StackInfo info = new StackInfo(); + info.setStatus(HeatStatus.CREATED); + return info; + } + }; + + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + try { + + instance.createVnfA("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vnf", "1", "vSAMP12", "VFMOD", + "volumeGroupHeatStackId|1", new HashMap(), Boolean.FALSE, Boolean.TRUE, "messageId", + null, "http://org.openecomp.mso/notify/adapterNotify/updateVnfNotificationRequest"); + } catch (Exception e) { + + } + } + + @Test + public void updateVnfTest() { + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + + Map map = new HashMap<>(); + map.put("key1", "value1"); + try { + instance.updateVnfA("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vnf", "1", "vSAMP12", "VFMOD", + "volumeGroupHeatStackId|1", map, "messageId", msoRequest, + "http://org.openecomp.mso/notify/adapterNotify/updateVnfNotificationRequest"); + } catch (Exception e) { + + } + } + + @Test + public void queryVnfTest() { + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + try { + instance.queryVnfA("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vSAMP12", "messageId", msoRequest, + "http://org.openecomp.mso/notify/adapterNotify/updateVnfNotificationRequest"); + } catch (Exception e) { + + } + } + + @Test + public void deleteVnfTest() { + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + try { + instance.deleteVnfA("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vSAMP12", "messageId", msoRequest, + "http://org.openecomp.mso/notify/adapterNotify/updateVnfNotificationRequest"); + } catch (Exception e) { + + } + } + + @Test + public void rollbackVnfTest() { + MsoVnfAdapterAsyncImpl instance = new MsoVnfAdapterAsyncImpl(); + VnfRollback vnfRollBack = new VnfRollback(); + vnfRollBack.setCloudSiteId("mdt1"); + vnfRollBack.setTenantId("88a6ca3ee0394ade9403f075db23167e"); + vnfRollBack.setVnfId("ff5256d1-5a33-55df-13ab-12abad84e7ff"); + try { + instance.rollbackVnfA(vnfRollBack, "messageId", + "http://org.openecomp.mso/notify/adapterNotify/updateVnfNotificationRequest"); + } catch (Exception e) { + + } + } +} diff --git a/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterImplTest.java b/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterImplTest.java new file mode 100644 index 0000000000..77879089e9 --- /dev/null +++ b/adapters/mso-vnf-adapter/src/test/java/org/openecomp/mso/adapters/vnf/test/MsoVnfAdapterImplTest.java @@ -0,0 +1,156 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ + +package org.openecomp.mso.adapters.vnf.test; + +import java.util.HashMap; +import java.util.Map; + +import javax.xml.ws.Holder; + +import org.junit.Test; +import org.openecomp.mso.adapters.vnf.MsoVnfAdapterImpl; +import org.openecomp.mso.db.catalog.CatalogDatabase; +import org.openecomp.mso.db.catalog.beans.VfModule; +import org.openecomp.mso.db.catalog.beans.VfModuleCustomization; +import org.openecomp.mso.db.catalog.beans.VnfResource; +import org.openecomp.mso.entity.MsoRequest; +import org.openecomp.mso.openstack.beans.HeatStatus; +import org.openecomp.mso.openstack.beans.StackInfo; +import org.openecomp.mso.openstack.beans.VnfRollback; +import org.openecomp.mso.openstack.exceptions.MsoException; +import org.openecomp.mso.openstack.utils.MsoHeatUtils; + +import mockit.Mock; +import mockit.MockUp; + +public class MsoVnfAdapterImplTest { + + @Test + public void healthCheckVNFTest() { + MsoVnfAdapterImpl instance = new MsoVnfAdapterImpl(); + instance.healthCheck(); + } + + @Test + public void createVnfTest() { + + new MockUp() { + @Mock + public StackInfo queryStack(String cloudSiteId, String tenantId, String stackName) throws MsoException { + StackInfo info = new StackInfo(); + info.setStatus(HeatStatus.CREATED); + return info; + } + }; + + MsoVnfAdapterImpl instance = new MsoVnfAdapterImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + + Map map = new HashMap<>(); + map.put("key1", "value1"); + try { + instance.createVfModule("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vnf", "1", "vSAMP12", "VFMOD", + "volumeGroupHeatStackId|1", "baseVfHeatStackId", "88a6ca3ee0394ade9403f075db23167e", map, + Boolean.FALSE, Boolean.TRUE, msoRequest, new Holder<>(), new Holder>(), + new Holder()); + } catch (Exception e) { + + } + } + + @Test + public void updateVnfTest() { + + new MockUp() { + @Mock + public StackInfo queryStack(String cloudSiteId, String tenantId, String stackName) throws MsoException { + StackInfo info = new StackInfo(); + info.setStatus(HeatStatus.CREATED); + return info; + } + }; + + new MockUp() { + @Mock + public VfModuleCustomization getVfModuleCustomizationByModelCustomizationId(String modelCustomizationUuid) { + VfModuleCustomization vfcModule = new VfModuleCustomization(); + VfModule vfm = new VfModule(); + vfm.setVnfResourceModelUUId("88a6ca3ee0394ade9403f075db23167e"); + vfcModule.setVfModule(vfm); + return vfcModule; + } + }; + + new MockUp() { + @Mock + public VnfResource getVnfResourceByModelUuid(String modelUuid) { + VnfResource vnfResource = new VnfResource(); + vnfResource.setAicVersionMin("1"); + vnfResource.setAicVersionMax("2"); + return vnfResource; + } + }; + + MsoVnfAdapterImpl instance = new MsoVnfAdapterImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + + Map map = new HashMap<>(); + map.put("key1", "value1"); + try { + instance.updateVfModule("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vnf", "1", "vSAMP12", "VFMOD", + "volumeGroupHeatStackId|1", "baseVfHeatStackId", "vfModuleStackId", + "88a6ca3ee0394ade9403f075db23167e", map, msoRequest, new Holder>(), + new Holder()); + } catch (Exception e) { + + } + } + + @Test + public void deleteVnfTest() { + new MockUp() { + @Mock + public Map queryStackForOutputs(String cloudSiteId, String tenantId, String stackName) + throws MsoException { + + Map outputs = new HashMap<>(); + outputs.put("Key1", "value1"); + return outputs; + } + }; + + MsoVnfAdapterImpl instance = new MsoVnfAdapterImpl(); + MsoRequest msoRequest = new MsoRequest(); + msoRequest.setRequestId("12345"); + msoRequest.setServiceInstanceId("12345"); + try { + instance.deleteVfModule("mdt1", "88a6ca3ee0394ade9403f075db23167e", "vSAMP12", msoRequest, + new Holder>()); + } catch (Exception e) { + + } + } + +} -- 2.16.6