From 281b9a5f548087749ca89da62086f6ff064c5eff Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Sun, 12 Aug 2018 18:43:11 +0530 Subject: [PATCH] added test case to TestPropertyDefinitionNode.java to increase code coverage Issue-ID: APPC-1086 Change-Id: If07e7542e7f9eeebd4d7956227128106d77457cb Signed-off-by: Sandeep J --- .../config/params/parser/TestPropertyDefinitionNode.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java b/appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java index dbadef85a..cd2e86498 100644 --- a/appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java +++ b/appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java @@ -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 inParams = new HashMap(); + 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 { -- 2.16.6