diff options
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-vendor-software-product-lib')
3 files changed, 211 insertions, 0 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentConvertorTest.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentConvertorTest.java new file mode 100644 index 0000000000..bfdadddc98 --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentConvertorTest.java @@ -0,0 +1,69 @@ +/* + * Copyright © 2016-2018 European Support Limited + * + * 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.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.convertor; + +import static org.junit.Assert.assertEquals; + +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ElementInfo; +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ZusammenElement; +import com.amdocs.zusammen.datatypes.Id; +import com.amdocs.zusammen.datatypes.item.Info; +import java.io.ByteArrayInputStream; +import org.junit.Test; +import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentEntity; + +public class ElementToComponentConvertorTest { + + private static final String ENTITY_ID = "entityId1"; + private static final String ENTITY_NAME = "entityTestName"; + private static final String ENTITY_DISPLAY_NAME = "entityTestDisplayName"; + private static final String ENTITY_DESCRIPTION = "entityTestDesc"; + private static final String COMPOSITION_DATA = + "{\"name\":\"entityTestName\",\"description\":\"entityTestDesc\",\"displayName\":\"entityTestDisplayName\"}"; + + private ElementToComponentConvertor converter = new ElementToComponentConvertor(); + + @Test + public void shouldConvertElementToEntitlementPoolEntity() { + ZusammenElement elementToConvert = new ZusammenElement(); + elementToConvert.setData(new ByteArrayInputStream(COMPOSITION_DATA.getBytes())); + elementToConvert.setElementId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + ComponentEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(ENTITY_NAME, result.getComponentCompositionData().getName()); + assertEquals(ENTITY_DISPLAY_NAME, result.getComponentCompositionData().getDisplayName()); + assertEquals(ENTITY_DESCRIPTION, result.getComponentCompositionData().getDescription()); + } + + @Test + public void shouldConvertElementInfoToEntitlementPoolEntity() { + ElementInfo elementToConvert = new ElementInfo(); + elementToConvert.setId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + ComponentEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(ENTITY_NAME, result.getComponentCompositionData().getName()); + assertEquals(ENTITY_DISPLAY_NAME, result.getComponentCompositionData().getDisplayName()); + assertEquals(ENTITY_DESCRIPTION, result.getComponentCompositionData().getDescription()); + } + + private Info createInfo() { + Info info = new Info(); + info.addProperty("compositionData", COMPOSITION_DATA); + return info; + } +} diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentDependencyModelConvertorTest.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentDependencyModelConvertorTest.java new file mode 100644 index 0000000000..1dc5d4ddd4 --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentDependencyModelConvertorTest.java @@ -0,0 +1,69 @@ +/* + * Copyright © 2018 European Support Limited + * + * 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.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.convertor; + +import static org.junit.Assert.assertEquals; + +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ElementInfo; +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ZusammenElement; +import com.amdocs.zusammen.datatypes.Id; +import com.amdocs.zusammen.datatypes.item.Info; +import org.junit.Test; +import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentDependencyModelEntity; + +public class ElementToComponentDependencyModelConvertorTest { + + private static final String ENTITY_ID = "entityId1"; + private static final String SOURCE_ID = "sourceId1"; + private static final String TARGET_ID = "targetId1"; + private static final String RELATION_TYPE = "dependsOn"; + + private ElementToComponentDependencyModelConvertor converter = new ElementToComponentDependencyModelConvertor(); + + + @Test + public void shouldConvertElementToComponentDependencyModelEntity() { + ZusammenElement elementToConvert = new ZusammenElement(); + elementToConvert.setElementId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + ComponentDependencyModelEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(SOURCE_ID, result.getSourceComponentId()); + assertEquals(TARGET_ID, result.getTargetComponentId()); + assertEquals(RELATION_TYPE, result.getRelation()); + } + + @Test + public void shouldConvertElementInfoToComponentDependencyModelEntity() { + ElementInfo elementToConvert = new ElementInfo(); + elementToConvert.setId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + ComponentDependencyModelEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(SOURCE_ID, result.getSourceComponentId()); + assertEquals(TARGET_ID, result.getTargetComponentId()); + assertEquals(RELATION_TYPE, result.getRelation()); + } + + private Info createInfo() { + Info info = new Info(); + info.addProperty("sourcecomponent_id", SOURCE_ID); + info.addProperty("targetcomponent_id", TARGET_ID); + info.addProperty("relation", RELATION_TYPE); + return info; + } +} diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentMonitoringUploadConvertorTest.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentMonitoringUploadConvertorTest.java new file mode 100644 index 0000000000..ec610f958b --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/dao/impl/zusammen/convertor/ElementToComponentMonitoringUploadConvertorTest.java @@ -0,0 +1,73 @@ +/* + * Copyright © 2018 European Support Limited + * + * 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.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.convertor; + +import static org.junit.Assert.assertEquals; + +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ElementInfo; +import com.amdocs.zusammen.adaptor.inbound.api.types.item.ZusammenElement; +import com.amdocs.zusammen.datatypes.Id; +import com.amdocs.zusammen.datatypes.item.Info; +import java.io.IOException; +import java.io.InputStream; +import java.nio.ByteBuffer; +import org.apache.commons.io.IOUtils; +import org.junit.Test; +import org.openecomp.core.utilities.file.FileUtils; +import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentMonitoringUploadEntity; + +public class ElementToComponentMonitoringUploadConvertorTest { + + private static final String ENTITY_ID = "entityId1"; + private static final String ARTIFACT_NAME ="testArtifact.zip"; + + private ElementToComponentMonitoringUploadConvertor converter = new ElementToComponentMonitoringUploadConvertor(); + + + @Test + public void shouldConvertElementToComponentMonitoringUploadEntity() throws IOException { + ZusammenElement elementToConvert = new ZusammenElement(); + elementToConvert.setElementId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + InputStream inputStreamMock = IOUtils.toInputStream("some test data for my input stream", "UTF-8"); + elementToConvert.setData(inputStreamMock); + ComponentMonitoringUploadEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(ARTIFACT_NAME, result.getArtifactName()); + assertEquals("SNMP_TRAP", result.getType().name()); + } + + @Test + public void shouldConvertElementInfoToComponentMonitoringUploadEntity() { + ElementInfo elementToConvert = new ElementInfo(); + elementToConvert.setId(new Id(ENTITY_ID)); + elementToConvert.setInfo(createInfo()); + ComponentMonitoringUploadEntity result = converter.convert(elementToConvert); + assertEquals(ENTITY_ID, result.getId()); + assertEquals(ARTIFACT_NAME, result.getArtifactName()); + assertEquals("SNMP_TRAP", result.getType().name()); + } + + + private Info createInfo() { + Info info = new Info(); + info.setName("SNMP_TRAP"); + info.addProperty("artifactName", ARTIFACT_NAME); + return info; + } + +} |