Merge pull request #98 from akimd/shellcheck

tests: please shellcheck
This commit is contained in:
Mano Marks 2017-12-14 10:14:27 -08:00 committed by GitHub
commit 762543a06d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,20 @@
#!/bin/sh #!/bin/sh
while ! timeout 1 bash -c "echo > /dev/tcp/vote/80"; do sleep 1; done
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 curl -sS -X POST --data "vote=b" http://vote > /dev/null
sleep 10 sleep 10
if phantomjs render.js http://result | grep -q '1 vote'; then if phantomjs render.js http://result | grep -q '1 vote'; then
echo -e "\e[42m------------" echo -e "\\e[42m------------"
echo -e "\e[92mTests passed" echo -e "\\e[92mTests passed"
echo -e "\e[42m------------" echo -e "\\e[42m------------"
exit 0 exit 0
fi else
echo -e "\e[41m------------" echo -e "\\e[41m------------"
echo -e "\e[91mTests failed" echo -e "\\e[91mTests failed"
echo -e "\e[41m------------" echo -e "\\e[41m------------"
exit 1 exit 1
fi