Merge pull request 'default-hour' (#14) from default-hour into master
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
commit
e86991fe75
2 changed files with 19 additions and 4 deletions
|
@ -15,10 +15,13 @@ app.url_map.strict_slashes = False
|
|||
@app.route('/<int(min=0, max=23):hours>/<int(min=0, max=59):minutes>')
|
||||
def index(hours=None, minutes=None):
|
||||
""" main and only app """
|
||||
if not hours:
|
||||
hours = 17
|
||||
|
||||
if hours:
|
||||
if not minutes:
|
||||
minutes = 0
|
||||
else:
|
||||
hours = 17
|
||||
minutes = 30
|
||||
|
||||
data = render_template('beer.html', hours=hours, minutes=minutes)
|
||||
return data
|
||||
|
|
|
@ -5,9 +5,21 @@ 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, 0);'
|
||||
curl ${CURL_OPTS} ${TEST_URL} | grep -q 'setHours( 17, 30);'
|
||||
[ $? -ne 0 ] && echo "Failed with default" && exit 1
|
||||
|
||||
# set 1 parameter
|
||||
|
|
Loading…
Reference in a new issue