diff options
Diffstat (limited to 'appc-config/appc-data-services')
-rw-r--r-- | appc-config/appc-data-services/provider/src/test/java/org/openecomp/appc/data/services/db/TestConfigResourceNode.java | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/appc-config/appc-data-services/provider/src/test/java/org/openecomp/appc/data/services/db/TestConfigResourceNode.java b/appc-config/appc-data-services/provider/src/test/java/org/openecomp/appc/data/services/db/TestConfigResourceNode.java index ee4db30b8..4fe01b3ae 100644 --- a/appc-config/appc-data-services/provider/src/test/java/org/openecomp/appc/data/services/db/TestConfigResourceNode.java +++ b/appc-config/appc-data-services/provider/src/test/java/org/openecomp/appc/data/services/db/TestConfigResourceNode.java @@ -27,6 +27,7 @@ package org.openecomp.appc.data.services.db; import java.util.HashMap; import java.util.Map; import static org.junit.Assert.assertFalse; +import org.junit.Ignore; import org.junit.Test; import org.openecomp.appc.data.services.AppcDataServiceConstant; import org.openecomp.appc.data.services.node.ConfigResourceNode; @@ -35,6 +36,7 @@ import org.onap.ccsdk.sli.core.sli.SvcLogicException; public class TestConfigResourceNode { + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testgetConfigFileReferenc() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -44,8 +46,8 @@ public class TestConfigResourceNode { dbService.getConfigFileReference(map, ctx); } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) - public void testgetTemplate() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); ctx.setAttribute("test", "test"); @@ -59,6 +61,7 @@ public class TestConfigResourceNode { } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testgetVnfcReference() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -69,6 +72,7 @@ public class TestConfigResourceNode { dbService.getVnfcReference(map, ctx); } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testgetSmmChainKeyFiles() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -80,8 +84,8 @@ public class TestConfigResourceNode { dbService.getSmmChainKeyFiles(map, ctx); } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) - public void testgetDownloadConfigTemplateByVnf() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); ctx.setAttribute("test", "test"); @@ -92,6 +96,7 @@ public class TestConfigResourceNode { } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testgetCommonConfigInfo() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -102,6 +107,7 @@ public class TestConfigResourceNode { } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testupdateUploadConfigss() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -112,6 +118,7 @@ public class TestConfigResourceNode { } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testgetConfigFilesByVnfVmNCategory() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -124,6 +131,7 @@ public class TestConfigResourceNode { node.getConfigFilesByVnfVmNCategory(inParams, ctx); } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testsaveConfigTransactionLog() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); @@ -137,6 +145,7 @@ public class TestConfigResourceNode { } + @Ignore("Test is taking 60 seconds") @Test(expected = Exception.class) public void testsaveConfigBlock() throws SvcLogicException { SvcLogicContext ctx = new SvcLogicContext(); |