M2 junit intermittent timeout issue 97/104297/2
authorJoseph Chou <jc2555@att.com>
Tue, 24 Mar 2020 19:30:25 +0000 (15:30 -0400)
committerJoseph Chou <jc2555@att.com>
Tue, 24 Mar 2020 19:44:13 +0000 (15:44 -0400)
Update code to increase maximum wait time

Issue-ID: POLICY-2435
Change-Id: Ib9d7452743c6cdb39c56f4bbed0fd7fd903dc8bc
Signed-off-by: Joseph Chou <jc2555@att.com>
controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java

index 3298d7b..a35e8c6 100644 (file)
@@ -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