diff options
-rw-r--r-- | controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java | 11 | ||||
-rw-r--r-- | pom.xml | 2 |
2 files changed, 5 insertions, 8 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 @@ -47,7 +47,7 @@ <!-- Project common dependency versions --> <version.policy.common>1.6.2</version.policy.common> <policy.models.version>2.2.1</policy.models.version> - <version.policy.drools-pdp>1.6.0-SNAPSHOT</version.policy.drools-pdp> + <version.policy.drools-pdp>1.6.0</version.policy.drools-pdp> </properties> <build> |