Try to improve tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
kleph 2020-04-08 20:54:38 +02:00
parent 6ae863148f
commit ff0bca9421
2 changed files with 14 additions and 2 deletions

View file

@ -18,9 +18,9 @@ def index(hours=None, minutes=None):
if not hours:
hours = 17
if hours and not minutes:
minutes = 30
else:
minutes = 0
else:
minutes = 30
data = render_template('beer.html', hours=hours, minutes=minutes)
return data

View file

@ -5,6 +5,18 @@ else
fi
echo "testing URL: ${TEST_URL}"
while :
do
status_code=$(curl -o /dev/null -s -w '%{http_code}' ${TEST_URL})
echo "status code: ${status_code}"
[[ ${status_code} -eq 200 ]] && break
[[ ${i} -gt 5 ]] && exit 1
echo "service not ready or in error"
sleep 5
i=$(( i+1 ))
done
CURL_OPTS='-s'
# default
curl ${CURL_OPTS} ${TEST_URL} | grep -q 'setHours( 17, 30);'