aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam Fallon <liam.fallon@est.tech>2020-03-25 08:06:19 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-25 08:06:19 +0000
commitb4ff9919d29bcff54f1e1b292b7fd622aac50485 (patch)
tree3702a3d2a0241bc3205ba04f73149bffb9bd1f7d
parent28502ec273a74f7f4a58f88d4e3915e2462ef0ef (diff)
parent97b8b2be89066a45ae934bb820728b71834fb5c3 (diff)
Merge "M2 junit intermittent timeout issue"
-rw-r--r--controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java b/controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java
index 3298d7bde..a35e8c6ae 100644
--- a/controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java
+++ b/controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java
@@ -31,19 +31,16 @@ import static org.onap.policy.m2.test.Util.assertSubset;
import static org.onap.policy.m2.test.Util.json;
import com.google.gson.JsonObject;
-
import java.io.File;
import java.time.Duration;
import java.util.Properties;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
-
import org.awaitility.Durations;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
-
import org.onap.policy.drools.system.PolicyController;
import org.onap.policy.drools.system.PolicyEngineConstants;
import org.onap.policy.drools.util.KieUtils;
@@ -154,7 +151,7 @@ public class AppcLcmTest {
dcae.send(req.msg);
// receive active notification, and restart operation
- awaitAndAssert(5, Durations.TWO_HUNDRED_MILLISECONDS, notification,
+ awaitAndAssert(10, Durations.TWO_HUNDRED_MILLISECONDS, notification,
json("notification", "ACTIVE"));
appcOperation(req, "Restart", 400, "Restart Successful");
@@ -164,7 +161,7 @@ public class AppcLcmTest {
dcae.send(req.msg);
// receive final success notification
- awaitAndAssert(5, Durations.TWO_HUNDRED_MILLISECONDS, notification,
+ awaitAndAssert(10, Durations.TWO_HUNDRED_MILLISECONDS, notification,
json("notification", "FINAL: SUCCESS"));
// sleep to allow DB update
@@ -182,7 +179,7 @@ public class AppcLcmTest {
dcae.send(req.msg);
// active notification, and restart 1 operation
- awaitAndAssert(5, Durations.TWO_HUNDRED_MILLISECONDS, notification,
+ awaitAndAssert(10, Durations.TWO_HUNDRED_MILLISECONDS, notification,
json("notification", "ACTIVE"));
appcOperation(req, "Restart", 450, "Restart 1 Failed");
@@ -196,7 +193,7 @@ public class AppcLcmTest {
dcae.send(req.msg);
// receive final success notification
- awaitAndAssert(5, Durations.TWO_HUNDRED_MILLISECONDS, notification,
+ awaitAndAssert(10, Durations.TWO_HUNDRED_MILLISECONDS, notification,
json("notification", "FINAL: SUCCESS"));
// sleep to allow DB update