mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-21 21:57:47 +00:00
33 lines
894 B
Bash
Executable File
33 lines
894 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 Memcached"
|
|
# 1st Try
|
|
if ! curl -sS localhost/db_memcd.php | tac | tac | grep -q 'devilbox-version'; then
|
|
sleep 1
|
|
if ! curl -sS localhost/db_memcd.php | tac | tac | grep -q 'devilbox-version'; then
|
|
sleep 1
|
|
if ! curl -sS localhost/db_memcd.php | tac | tac | grep -q 'devilbox-version'; then
|
|
printf "\r[FAIL] devilbox-version key in Memcached\n"
|
|
curl -sS localhost/db_memcd.php || true
|
|
exit 1
|
|
else
|
|
printf "\r[OK] devilbox-version key in Memcached (3 rounds)\n"
|
|
fi
|
|
else
|
|
printf "\r[OK] devilbox-version key in Memcached (2 rounds)\n"
|
|
fi
|
|
else
|
|
printf "\r[OK] devilbox-version key in Memcached (1 round)\n"
|
|
fi
|