cloudnet-compose/result/tests/tests.sh

15 lines
415 B
Bash
Raw Normal View History

2016-06-18 18:14:28 +02:00
#!/bin/sh
while ! timeout 1 bash -c "echo > /dev/tcp/vote/80"; do sleep 1; done
curl -sS -X POST --data "vote=b" http://vote > /dev/null
sleep 10
2016-06-19 20:34:14 +02:00
if phantomjs render.js http://result | grep -q '1 vote'; then
2016-06-18 18:14:28 +02:00
echo -e "\e[42m------------"
echo -e "\e[92mTests passed"
echo -e "\e[42m------------"
exit 0
fi
echo -e "\e[41m------------"
echo -e "\e[91mTests failed"
echo -e "\e[41m------------"
exit 1