@@ -17,6 +17,8 @@ services:
1717 - test-oracle-e2e-testing
1818 - test-ibm-db2-e2e-testing
1919 - test-dynamodb-e2e-testing
20+ - test-redis-e2e-testing
21+ - test-cassandra-e2e-testing
2022 links :
2123 - postgres
2224 - testMySQL-e2e-testing
@@ -25,6 +27,8 @@ services:
2527 - test-oracle-e2e-testing
2628 - test-ibm-db2-e2e-testing
2729 - test-dynamodb-e2e-testing
30+ - test-redis-e2e-testing
31+ - test-cassandra-e2e-testing
2832 command : ["yarn", "start"]
2933 backend_test :
3034 build :
@@ -54,6 +58,8 @@ services:
5458 condition : service_healthy
5559 test-redis-e2e-testing :
5660 condition : service_healthy
61+ test-cassandra-e2e-testing :
62+ condition : service_healthy
5763 command : ["/bin/sh", "-c", "yarn test $EXTRA_ARGS"]
5864 develop :
5965 watch :
@@ -161,6 +167,31 @@ services:
161167 - backend
162168 depends_on :
163169 - backend
170+ test-cassandra-e2e-testing :
171+ image : cassandra:5.0.4
172+ ports :
173+ - 9042:9042
174+ environment :
175+ - CASSANDRA_CLUSTER_NAME=TestCluster
176+ - CASSANDRA_DC=TestDC
177+ - CASSANDRA_RACK=TestRack
178+ restart : always
179+ healthcheck :
180+ test :
181+ [
182+ " CMD" ,
183+ " cqlsh" ,
184+ " -u" ,
185+ " cassandra" ,
186+ " -p" ,
187+ " cassandra" ,
188+ " -e" ,
189+ " describe keyspaces" ,
190+ ]
191+ interval : 30s
192+ timeout : 10s
193+ retries : 5
194+ start_period : 60s
164195
165196 test-redis-e2e-testing :
166197 image : redis:7.0.11
0 commit comments