beer/staging_tests.sh
kleph f5632bffbe
All checks were successful
continuous-integration/drone/push Build is passing
[CI] Add sample staging tests
2020-03-03 00:19:59 +01:00

22 lines
517 B
Bash

if [ ${BRANCH} == 'master' ]; then
TEST_URL='http://beer.k3s.kleph.eu'
else
TEST_URL='http://staging.beer.k3s.kleph.eu'
fi
CURL_OPTS='-s'
# default
curl ${CURL_OPTS} ${TEST_URL} | grep -q 'setHours( 17, 0);'
[ $? -ne 0 ] && exit 1
# set 1 parameter
hours=18
curl ${CURL_OPTS} ${TEST_URL}/${hours} | grep -q "setHours( ${hours}, 0);"
[ $? -ne 0 ] && exit 1
# set 2 parameters
minutes=30
curl ${CURL_OPTS} ${TEST_URL}/${hours}/${minutes} | grep -q "setHours( ${hours}, ${minutes});"
[ $? -ne 0 ] && exit 1
exit 0