From 73d1eb965ffa81033864609311a4dbd406c45ad9 Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Tue, 7 Aug 2018 15:45:05 +0530 Subject: added test cases to TestDGGeneralDBService.java to increase code coverage Issue-ID: APPC-1086 Change-Id: I309985d0b7d9cbfa60d3e1082afd84aaf9631ef1 Signed-off-by: Sandeep J --- .../data/services/db/TestDGGeneralDBService.java | 26 +++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'appc-config') diff --git a/appc-config/appc-data-services/provider/src/test/java/org/onap/appc/data/services/db/TestDGGeneralDBService.java b/appc-config/appc-data-services/provider/src/test/java/org/onap/appc/data/services/db/TestDGGeneralDBService.java index 875c68bd7..d1c7fdb7b 100644 --- a/appc-config/appc-data-services/provider/src/test/java/org/onap/appc/data/services/db/TestDGGeneralDBService.java +++ b/appc-config/appc-data-services/provider/src/test/java/org/onap/appc/data/services/db/TestDGGeneralDBService.java @@ -6,7 +6,7 @@ * ================================================================================ * Copyright (C) 2017 Amdocs * ================================================================================ - * Copyright (C) 2018 IBM + * Modification 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. @@ -25,6 +25,7 @@ package org.onap.appc.data.services.db; import static org.junit.Assert.assertEquals; + import java.io.IOException; import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringEscapeUtils; @@ -235,4 +236,27 @@ public class TestDGGeneralDBService { assertEquals(status, QueryStatus.SUCCESS); } + + @Test + public void testGetTemplateByArtifactType() throws Exception { + SvcLogicContext ctx = new SvcLogicContext(); + ctx.setAttribute("vnf-type", "test"); + ctx.setAttribute("request-action", "Configure"); + MockDGGeneralDBService dbService = MockDGGeneralDBService.initialise(); + QueryStatus status = dbService.getTemplateByArtifactType(ctx, "test","XML","APPC-CONFIG"); + assertEquals(QueryStatus.SUCCESS, status); + + } + + @Test + public void testCleanContextPropertyByPrefix() + { + SvcLogicContext ctx = new SvcLogicContext(); + ctx.setAttribute("vnf-type", "test"); + ctx.setAttribute("request-action", "Configure"); + ctx.setAttribute(".vnfc-type", "Configure"); + MockDGGeneralDBService dbService = MockDGGeneralDBService.initialise(); + dbService.cleanContextPropertyByPrefix(ctx, "test"); + assertEquals(2,ctx.getAttributeKeySet().size()); + } } -- cgit 1.2.3-korg