diff options
author | amshegokar <AS00500801@techmahindra.com> | 2018-03-26 13:56:40 +0530 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-03-26 20:22:14 +0000 |
commit | 152f0bde91a69c33bc4dba873f5c2a4789655c71 (patch) | |
tree | f95fa06ec0e32f077ee3296d275367e3d4f9f8cd /appc-sdc-listener | |
parent | b85aa6a7d42f70811f86f2f750c29395ce8dbd08 (diff) |
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 <AS00500801@techmahindra.com>
Diffstat (limited to 'appc-sdc-listener')
2 files changed, 152 insertions, 0 deletions
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<String> parents=new ArrayList<String>(); + 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()); + } +} |