From 152f0bde91a69c33bc4dba873f5c2a4789655c71 Mon Sep 17 00:00:00 2001 From: amshegokar Date: Mon, 26 Mar 2018 13:56:40 +0530 Subject: [PATCH 1/1] Unit test coverage Unit test coverage for: 1. Vnfc.java 2. SDCReference.java Sonar-Link: https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-sdc-listener-bundle%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fsdc%2Fartifacts%2Fobject Change-Id: I34c15904bc0df7c537ad448b748add847ab863bd Issue-ID: APPC-786 Signed-off-by: amshegokar --- .../sdc/artifacts/object/SDCReferenceTest.java | 88 ++++++++++++++++++++++ .../onap/appc/sdc/artifacts/object/VnfcTest.java | 64 ++++++++++++++++ 2 files changed, 152 insertions(+) create mode 100644 appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/SDCReferenceTest.java create mode 100644 appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/VnfcTest.java diff --git a/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/SDCReferenceTest.java b/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/SDCReferenceTest.java new file mode 100644 index 000000000..34bdbeee8 --- /dev/null +++ b/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/SDCReferenceTest.java @@ -0,0 +1,88 @@ +/* +* ============LICENSE_START======================================================= +* ONAP : APPC +* ================================================================================ +* Copyright 2018 TechMahindra +*================================================================================= +* 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.onap.appc.sdc.artifacts.object; + +import static org.junit.Assert.assertNotEquals; +import static org.junit.Assert.assertTrue; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class SDCReferenceTest { + private SDCReference sDCReference; + + @Before + public void setUp() { + sDCReference = new SDCReference(); + } + @Test + public void testGetVnfType() { + sDCReference.setVnfType("vnfType"); + Assert.assertNotNull(sDCReference.getVnfType()); + Assert.assertEquals("vnfType", sDCReference.getVnfType()); + } + + @Test + public void testGetVnfcType() { + sDCReference.setVnfcType("vnfcType"); + Assert.assertNotNull(sDCReference.getVnfcType()); + Assert.assertEquals("vnfcType", sDCReference.getVnfcType()); + } + + @Test + public void testGetFileCategory() { + sDCReference.setFileCategory("fileCategory"); + Assert.assertNotNull(sDCReference.getFileCategory()); + Assert.assertEquals("fileCategory", sDCReference.getFileCategory()); + } + + @Test + public void testGetAction() { + sDCReference.setAction("action"); + Assert.assertNotNull(sDCReference.getAction()); + Assert.assertEquals("action", sDCReference.getAction()); + } + + @Test + public void testGetArtifactType() { + sDCReference.setArtifactType("artifactType"); + Assert.assertNotNull(sDCReference.getArtifactType()); + Assert.assertEquals("artifactType", sDCReference.getArtifactType()); + } + + @Test + public void testGetArtifactName() { + sDCReference.setArtifactName("artifactName"); + Assert.assertNotNull(sDCReference.getArtifactName()); + Assert.assertEquals("artifactName", sDCReference.getArtifactName()); + } + + @Test + public void testToString_ReturnNonEmptyString() { + assertNotEquals(sDCReference.toString(), ""); + assertNotEquals(sDCReference.toString(), null); + } + + @Test + public void testToString_ContainsString() { + assertTrue(sDCReference.toString().contains("vnfType")); + } +} diff --git a/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/VnfcTest.java b/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/VnfcTest.java new file mode 100644 index 000000000..e47755419 --- /dev/null +++ b/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/VnfcTest.java @@ -0,0 +1,64 @@ +/* +* ============LICENSE_START======================================================= +* ONAP : APPC +* ================================================================================ +* Copyright 2018 TechMahindra +*================================================================================= +* 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.onap.appc.sdc.artifacts.object; + +import java.util.ArrayList; +import java.util.List; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class VnfcTest { + + private Vnfc vnfc; + @Before + public void setUp() { + vnfc=new Vnfc(); + } + + @Test + public void testGetVnfcType() { + vnfc.setVnfcType("VnfcType"); + Assert.assertNotNull(vnfc.getVnfcType()); + Assert.assertEquals("VnfcType", vnfc.getVnfcType()); + } + @Test + public void testIsmandatory() { + vnfc.setMandatory(true); + Assert.assertNotNull(vnfc.isMandatory()); + Assert.assertEquals(true, vnfc.isMandatory()); + } + @Test + public void testResilienceType() { + vnfc.setResilienceType("resilienceType"); + Assert.assertNotNull(vnfc.getResilienceType()); + Assert.assertEquals("resilienceType", vnfc.getResilienceType()); + } + @Test + public void testGetParents() { + List parents=new ArrayList(); + parents.add("parrent1"); + parents.add("parrent2"); + vnfc.setParents(parents); + Assert.assertNotNull(vnfc.getParents()); + Assert.assertEquals(true, vnfc.getParents().contains("parrent2")); + Assert.assertFalse(vnfc.getParents().isEmpty()); + } +} -- 2.16.6