added test case to TestCompareNodeCli.java 49/57149/5
authorSandeep J <sandeejh@in.ibm.com>
Mon, 23 Jul 2018 11:02:19 +0000 (16:32 +0530)
committerTakamune Cho <tc012c@att.com>
Tue, 24 Jul 2018 15:07:19 +0000 (15:07 +0000)
added test case to increase code coverage. A part of the else block in
compare method of CompareNode.java was not being covered. Getting
covered now with this test case.

Issue-ID: APPC-1086
Change-Id: I2821ec0c5d9203f5c76e6a091c6734f41333d638
Signed-off-by: Sandeep Jha<sandeejh@in.ibm.com>
appc-config/appc-config-audit/provider/src/test/java/org/onap/sdnc/config/audit/node/TestCompareNodeCli.java

index 48349c8..bd28ef7 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * Modifications Copyright (C) 2018 IBM
+ * =============================================================================
  * 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
@@ -32,6 +34,7 @@ import org.slf4j.LoggerFactory;
 
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
+import static org.junit.Assert.assertEquals;
 
 public class TestCompareNodeCli {
     private static final Logger log = LoggerFactory.getLogger(TestCompareNodeCli.class);
@@ -47,6 +50,16 @@ public class TestCompareNodeCli {
         cmp.compare(testMap, ctx);
         assert (ctx.getAttribute("STATUS").equals("SUCCESS"));
     }
+    
+    @Test
+    public void TestCompareCliForNoPayload() throws SvcLogicException {
+        SvcLogicContext ctx = new SvcLogicContext();
+        HashMap<String, String> testMap = new HashMap<String, String>();
+        CompareNode cmp = new CompareNode();
+        testMap.put("compareDataType", "Cli");
+        cmp.compare(testMap, ctx);
+        assertEquals ("FAILURE",ctx.getAttribute("STATUS"));
+    }
 
     @Test
     public void TestCompareCliFordifferentPayload() throws SvcLogicException {