mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-20 13:23:07 +00:00
32 lines
873 B
Bash
Executable File
32 lines
873 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
#
|
|
# NOTE: Parsing curl to tac to circumnvent "failed writing body"
|
|
# https://stackoverflow.com/questions/16703647/why-curl-return-and-error-23-failed-writing-body
|
|
#
|
|
|
|
|
|
printf "[TEST] devilbox-version key in Redis"
|
|
# 1st Try
|
|
if ! curl -sS localhost/db_redis.php | tac | tac | grep -q 'devilbox-version'; then
|
|
sleep 1
|
|
if ! curl -sS localhost/db_redis.php | tac | tac | grep -q 'devilbox-version'; then
|
|
sleep 1
|
|
if ! curl -sS localhost/db_redis.php | tac | tac | grep -q 'devilbox-version'; then
|
|
printf "\r[FAIL] devilbox-version key in Redis\n"
|
|
curl -sS localhost/db_redis.php || true
|
|
exit 1
|
|
else
|
|
printf "\r[OK] devilbox-version key in Redis (3 rounds)\n"
|
|
fi
|
|
else
|
|
printf "\r[OK] devilbox-version key in Redis (2 rounds)\n"
|
|
fi
|
|
else
|
|
printf "\r[OK] devilbox-version key in Redis (1 round)\n"
|
|
fi
|