From 67f01b2c8d785fecfbc1a3f42abf756ef6a673c2 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Fri, 22 Nov 2024 15:33:27 +0100 Subject: Add resiliency test for the GraphChecker - introduce IntegrationTest class for Junit 5 based tests that use the spring context - add resiliency test to test GraphChecker behaviour for interrupted network connections to cassandra - leverage testcontainers to run against a cassandra container and toxiproxy Issue-ID: AAI-4070 Change-Id: I2485b5240950ded6201942459f6fcdb4971e43d9 Signed-off-by: Fiete Ostkamp --- aai-core/pom.xml | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) (limited to 'aai-core/pom.xml') diff --git a/aai-core/pom.xml b/aai-core/pom.xml index 8adda4b8..29b8cf90 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -33,8 +33,6 @@ limitations under the License. aai-core jar - 4.3.24.RELEASE - 0.50 3.4.0 @@ -60,7 +58,6 @@ limitations under the License. onap - 4.3.24.RELEASE onap N/A aai-schema/src/main/resources/${aai.release}/oxm @@ -189,6 +186,11 @@ limitations under the License. janusgraph-inmemory test + + org.janusgraph + janusgraph-cql + test + com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider @@ -374,6 +376,36 @@ limitations under the License. lombok provided + + org.testcontainers + testcontainers + ${testcontainers.version} + test + + + junit + junit + + + + + org.testcontainers + junit-jupiter + ${testcontainers.version} + test + + + org.testcontainers + cassandra + ${testcontainers.version} + test + + + org.testcontainers + toxiproxy + ${testcontainers.version} + test + -- cgit 1.2.3-korg