mirror of
https://github.com/bunkerity/bunkerized-nginx
synced 2023-12-13 21:30:18 +01:00
131 lines
3.9 KiB
Bash
Executable file
131 lines
3.9 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "🌍 Building country stack ..."
|
|
|
|
# Starting stack
|
|
docker compose pull bw-docker
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Pull failed ❌"
|
|
exit 1
|
|
fi
|
|
docker compose -f docker-compose.test.yml build
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Build failed ❌"
|
|
exit 1
|
|
fi
|
|
|
|
manual=0
|
|
end=0
|
|
cleanup_stack () {
|
|
exit_code=$?
|
|
if [[ $end -eq 1 || $exit_code = 1 ]] || [[ $end -eq 0 && $exit_code = 0 ]] && [ $manual = 0 ] ; then
|
|
find . -type f -name 'docker-compose.*' -exec sed -i 's@BLACKLIST_COUNTRY: "US"@BLACKLIST_COUNTRY: ""@' {} \;
|
|
find . -type f -name 'docker-compose.*' -exec sed -i 's@WHITELIST_COUNTRY: "FR"@WHITELIST_COUNTRY: ""@' {} \;
|
|
if [[ $end -eq 1 && $exit_code = 0 ]] ; then
|
|
return
|
|
fi
|
|
fi
|
|
|
|
echo "🌍 Cleaning up current stack ..."
|
|
|
|
docker compose down -v --remove-orphans 2>/dev/null
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Down failed ❌"
|
|
exit 1
|
|
fi
|
|
|
|
echo "🌍 Cleaning up current stack done ✅"
|
|
}
|
|
|
|
# Cleanup stack on exit
|
|
trap cleanup_stack EXIT
|
|
|
|
for test in "deactivated" "blacklist" "whitelist"
|
|
do
|
|
if [ "$test" = "deactivated" ] ; then
|
|
echo "🌍 Running tests without the country plugin ..."
|
|
elif [ "$test" = "blacklist" ] ; then
|
|
echo "🌍 Running tests when blacklisting United States ..."
|
|
find . -type f -name 'docker-compose.*' -exec sed -i 's@BLACKLIST_COUNTRY: ""@BLACKLIST_COUNTRY: "US"@' {} \;
|
|
elif [ "$test" = "whitelist" ] ; then
|
|
echo "🌍 Running tests when whitelisting France ..."
|
|
find . -type f -name 'docker-compose.*' -exec sed -i 's@BLACKLIST_COUNTRY: "US"@BLACKLIST_COUNTRY: ""@' {} \;
|
|
find . -type f -name 'docker-compose.*' -exec sed -i 's@WHITELIST_COUNTRY: ""@WHITELIST_COUNTRY: "FR"@' {} \;
|
|
fi
|
|
|
|
echo "🌍 Starting stack ..."
|
|
docker compose up -d 2>/dev/null
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Up failed, retrying ... ⚠️"
|
|
manual=1
|
|
cleanup_stack
|
|
manual=0
|
|
docker compose up -d 2>/dev/null
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Up failed ❌"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Check if stack is healthy
|
|
echo "🌍 Waiting for stack to be healthy ..."
|
|
i=0
|
|
while [ $i -lt 120 ] ; do
|
|
containers=("country-bw-1" "country-bw-scheduler-1")
|
|
healthy="true"
|
|
for container in "${containers[@]}" ; do
|
|
check="$(docker inspect --format "{{json .State.Health }}" $container | grep "healthy")"
|
|
if [ "$check" = "" ] ; then
|
|
healthy="false"
|
|
break
|
|
fi
|
|
done
|
|
if [ "$healthy" = "true" ] ; then
|
|
echo "🌍 Docker stack is healthy ✅"
|
|
break
|
|
fi
|
|
sleep 1
|
|
i=$((i+1))
|
|
done
|
|
if [ $i -ge 120 ] ; then
|
|
docker compose logs
|
|
echo "🌍 Docker stack is not healthy ❌"
|
|
exit 1
|
|
fi
|
|
|
|
# Start tests
|
|
|
|
echo "🌍 Starting the FR container"
|
|
docker compose -f docker-compose.test.yml up tests-fr --abort-on-container-exit --exit-code-from tests-fr 2>/dev/null
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Test \"$test\" failed for the FR container ❌"
|
|
echo "🛡️ Showing BunkerWeb and BunkerWeb Scheduler logs ..."
|
|
docker compose logs bw bw-scheduler
|
|
exit 1
|
|
else
|
|
echo "🌍 Test \"$test\" succeeded for the FR container ✅"
|
|
fi
|
|
|
|
echo "🌍 Starting the US container"
|
|
docker compose -f docker-compose.test.yml up tests-us --abort-on-container-exit --exit-code-from tests-us 2>/dev/null
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo "🌍 Test \"$test\" failed for the US container ❌"
|
|
echo "🛡️ Showing BunkerWeb and BunkerWeb Scheduler logs ..."
|
|
docker compose logs bw bw-scheduler
|
|
exit 1
|
|
else
|
|
echo "🌍 Test \"$test\" succeeded for the US container ✅"
|
|
fi
|
|
|
|
manual=1
|
|
cleanup_stack
|
|
manual=0
|
|
|
|
echo " "
|
|
done
|
|
|
|
end=1
|
|
echo "🌍 Tests are done ! ✅"
|