Unit test coverage 57/38457/2
authoramshegokar <AS00500801@techmahindra.com>
Mon, 26 Mar 2018 08:26:40 +0000 (13:56 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 26 Mar 2018 20:22:14 +0000 (20:22 +0000)
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>
appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/SDCReferenceTest.java [new file with mode: 0644]
appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/artifacts/object/VnfcTest.java [new file with mode: 0644]

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 (file)
index 0000000..34bdbee
--- /dev/null
@@ -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 (file)
index 0000000..e477554
--- /dev/null
@@ -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());
+    }
+}