From 9527f582f62b1cfeda7ba93035ea27376a40b97e Mon Sep 17 00:00:00 2001 From: "Balaji, Ramya (rb111y)" Date: Tue, 13 Mar 2018 16:58:23 -0400 Subject: Directed Graph & Associated code changes Changes to DGs for A&AI processing and for formatting controller template id if passed in input. Issue-ID: APPC-690, APPC-691 Change-Id: I3019d093f8327839aa286a5784fcc96bde0fb0d6 Signed-off-by: Balaji, Ramya (rb111y) --- .../appc/aai/client/node/TestAAIResourceNode.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'appc-outbound/appc-aai-client/provider/src/test') diff --git a/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/node/TestAAIResourceNode.java b/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/node/TestAAIResourceNode.java index e509a3403..f82370f1f 100644 --- a/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/node/TestAAIResourceNode.java +++ b/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/node/TestAAIResourceNode.java @@ -285,4 +285,30 @@ Map inParams =new HashMap(); assertEquals(ctx.getAttribute("test.vm.vnfc.vnfc-function-code"), "vnfcFuncCode2"); assertEquals(ctx.getAttribute("test.vm.vnfc.vnfc-group-notation"), "vnfcGrpNot2"); } + + @Test + public final void testGetFormattedValue() throws Exception{ + MockAAIResourceNode aairn = new MockAAIResourceNode(); + SvcLogicContext ctx = new SvcLogicContext(); + Map inParams = new HashMap(); + inParams.put(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX, "test"); + inParams.put("inputParameter", "Some/Value/With/ Many Spaces"); + aairn.getFormattedValue(inParams, ctx); + assertEquals(ctx.getAttribute("template-model-id"),"Some_Value_With_ManySpaces"); + + } + + @Test + public final void testProcessCheckForVfModule() throws Exception{ + MockAAIResourceNode aairn = new MockAAIResourceNode(); + SvcLogicContext ctx = new SvcLogicContext(); + Map inParams = new HashMap(); + inParams.put(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX, "test"); + inParams.put("inputParameter", "Some/Value/With/ Many Spaces"); + ctx.setAttribute("test.vnf.vm-with-no-vnfcs-count-vf-module", "0"); + ctx.setAttribute("test.vnf.vm-count-for-vf-module", "2"); + aairn.processCheckForVfModule("vfmoduleId1", ctx, "test.", 2); + + + } } -- cgit 1.2.3-korg