added test case to TestDGGeneralDBService
[appc.git] / appc-config / appc-data-services / provider / src / test / java / org / onap / appc / data / services / db / TestDGGeneralDBService.java
index 9780961..0af63f3 100644 (file)
@@ -338,4 +338,17 @@ public class TestDGGeneralDBService {
         QueryStatus status= dbService.saveUploadConfig(ctx, "test");
         assertEquals(QueryStatus.SUCCESS, status);
     }
+    
+    @Test
+    public void testUpdateUploadConfig() throws SvcLogicException
+    {
+        SvcLogicContext ctx = new SvcLogicContext();
+        
+        ctx.setAttribute("vnf-type", "test");
+        ctx.setAttribute("vnfc-type", "test");
+        
+        MockDGGeneralDBService dbService =     MockDGGeneralDBService.initialise();
+        QueryStatus status= dbService.updateUploadConfig(ctx, "test",10);
+        assertEquals(QueryStatus.SUCCESS, status);
+    }
 }