added test cases to TestDGGeneralDBService.java 11/59411/3
authorSandeep J <sandeejh@in.ibm.com>
Tue, 7 Aug 2018 10:15:05 +0000 (15:45 +0530)
committerTakamune Cho <tc012c@att.com>
Wed, 8 Aug 2018 13:21:52 +0000 (13:21 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I309985d0b7d9cbfa60d3e1082afd84aaf9631ef1
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-config/appc-data-services/provider/src/test/java/org/onap/appc/data/services/db/TestDGGeneralDBService.java

index 875c68b..d1c7fdb 100644 (file)
@@ -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());
+    }
 }