aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config/appc-flow-controller
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2017-11-30 14:25:00 -0800
committerSkip Wonnell <skip@att.com>2017-12-04 15:10:07 +0000
commite7db07433274257a7b792d1b3cf0da0026fd1d6e (patch)
tree18e0151f73d6ff9e1ed505a50a3432bb3dcd24fe /appc-config/appc-flow-controller
parentd9667ceb3b0c424256ec71ccf50a457eb4395a29 (diff)
Correcting or skipping tests
These tests seem to be designed to timeout and fail. The resulting exception is either caught or put as an expectation of the test. The tests do not actually test anything and are causing 30 minutes of build delay. Change-Id: I177839c0f08f2c4bd8895e0626f49476b4ed7e85 Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-276
Diffstat (limited to 'appc-config/appc-flow-controller')
-rw-r--r--appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java5
-rw-r--r--appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlNodeTest.java6
-rw-r--r--appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java3
3 files changed, 13 insertions, 1 deletions
diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java
index fa297734b..079f65668 100644
--- a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java
@@ -32,6 +32,7 @@ import java.util.Map;
import org.junit.Assert;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
@@ -102,6 +103,7 @@ QueryStatus dblibSvc ;
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public final void testGetDesignTimeFlowModel() throws Exception {
SvcLogicContext localContext = new SvcLogicContext();
@@ -114,6 +116,7 @@ QueryStatus dblibSvc ;
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public final void testLoadSequenceIntoDB() throws SvcLogicException {
@@ -146,6 +149,7 @@ QueryStatus dblibSvc ;
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public final void testGetDependencyInfo() throws SvcLogicException {
SvcLogicContext localContext = new SvcLogicContext();
@@ -155,6 +159,7 @@ QueryStatus dblibSvc ;
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public final void testGetCapabilitiesData() throws SvcLogicException {
SvcLogicContext localContext = new SvcLogicContext();
diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlNodeTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlNodeTest.java
index 6bb1cb2a4..e53ec249e 100644
--- a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlNodeTest.java
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlNodeTest.java
@@ -37,6 +37,7 @@ import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
+import org.junit.Ignore;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.Mockito;
@@ -64,6 +65,7 @@ public class FlowControlNodeTest {
{
FlowControlDBService dbservice = FlowControlDBService.initialise();
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public final void testProcessFlow() throws Exception {
SvcLogicContext ctx = new SvcLogicContext();
@@ -105,7 +107,8 @@ public class FlowControlNodeTest {
Whitebox.invokeMethod(f, "getInventoryInfo", ctx, vnfid);
}
- @Test(expected=Exception.class)
+ @Ignore("Test is taking 60 seconds")
+ @Test(expected=Exception.class)
public void testprocessFlowSequence() throws Exception
{
Map<String, String> inparams = new HashMap<String,String>();
@@ -143,6 +146,7 @@ public class FlowControlNodeTest {
Whitebox.invokeMethod(f, "collectInputParams",ctx, transaction);
}
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public void testgetDependencyInfo() throws Exception
{
diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java
index ba1cd67a2..45896a4d0 100644
--- a/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java
@@ -26,6 +26,7 @@ import java.util.HashMap;
import java.util.Properties;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
import org.openecomp.appc.flow.controller.node.FlowControlNode;
import org.openecomp.appc.flow.controller.utils.FlowControllerConstants;
@@ -61,6 +62,8 @@ public class TestFlowExecutorNode {
}
}
+
+ @Ignore("Test is taking 60 seconds")
@Test(expected=Exception.class)
public void testFlowExecutorNode() throws Exception {