added test case to TestPropertyDefinitionNode.java 41/60141/4
authorSandeep J <sandeejh@in.ibm.com>
Sun, 12 Aug 2018 13:13:11 +0000 (18:43 +0530)
committerTakamune Cho <tc012c@att.com>
Fri, 17 Aug 2018 00:32:20 +0000 (00:32 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: If07e7542e7f9eeebd4d7956227128106d77457cb
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java

index dbadef8..cd2e864 100644 (file)
@@ -34,7 +34,6 @@ import java.util.HashMap;
 import java.util.Map;
 import org.apache.commons.io.IOUtils;
 import org.apache.commons.lang.StringUtils;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
@@ -64,6 +63,19 @@ public class TestPropertyDefinitionNode {
                 ParamsHandlerConstant.OUTPUT_STATUS_SUCCESS);
 
     }
+    
+    @Test(expected= SvcLogicException.class)
+    public void testInProcessMissingParamKeysForEmptyPdContent() throws Exception {
+        PropertyDefinitionNode propertyDefinitionNode = new PropertyDefinitionNode();
+        Map<String, String> inParams = new HashMap<String, String>();
+        inParams.put(ParamsHandlerConstant.INPUT_PARAM_RESPONSE_PRIFIX, "test");
+        String jsonData = IOUtils.toString(TestPropertyDefinitionNode.class.getClassLoader()
+                .getResourceAsStream("parser/request-param.json"), Charset.defaultCharset());
+        inParams.put(ParamsHandlerConstant.INPUT_PARAM_JSON_DATA, jsonData);
+
+        SvcLogicContext ctx = new SvcLogicContext();
+        propertyDefinitionNode.processMissingParamKeys(inParams, ctx);
+     }
 
     @Test
     public void testProcessExternalSystemParamKeys() throws Exception {