From 98b85ff3181b175a0e366bdbe883122e3fd34903 Mon Sep 17 00:00:00 2001 From: Leo Antunes Date: Sat, 24 Aug 2019 19:06:02 +0200 Subject: [PATCH] add test for larger clusters --- tests/e2e.sh | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/tests/e2e.sh b/tests/e2e.sh index d8be1c1..7fefcbe 100755 --- a/tests/e2e.sh +++ b/tests/e2e.sh @@ -5,7 +5,7 @@ set -e declare -A started_containers cleanup() { - if [ ! -z "${started_containers[@]}" ]; then + if [ ${#started_containers[@]} -gt 0 ]; then echo "Stopping all remaining containers: ${started_containers[@]}" docker container rm -f ${started_containers[@]} fi @@ -47,6 +47,27 @@ test_3_node_up() { stop_test_container test1-orig } +test_5_node_up() { + run_test_container test1-orig test1 --init + run_test_container test2-orig test2 --join test1-orig + run_test_container test3-orig test3 --join test1-orig + run_test_container test4-orig test4 --join test1-orig + run_test_container test5-orig test5 --join test1-orig + + sleep 5 + + docker exec test1-orig ping -c1 -W1 test2 || (docker logs test1-orig; docker logs test2-orig; false) + docker exec test1-orig ping -c1 -W1 test3 || (docker logs test1-orig; docker logs test3-orig; false) + docker exec test1-orig ping -c1 -W1 test4 || (docker logs test1-orig; docker logs test4-orig; false) + docker exec test1-orig ping -c1 -W1 test5 || (docker logs test1-orig; docker logs test5-orig; false) + + stop_test_container test5-orig + stop_test_container test4-orig + stop_test_container test3-orig + stop_test_container test2-orig + stop_test_container test1-orig +} + test_node_restart() { run_test_container test1-orig test1 --init run_test_container test2-orig test2 --join test1-orig