From 6afe59dc79e71b1aca1ba734b950af18ff503a0a Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 22 Feb 2017 00:17:14 -0800 Subject: add a crude bash test file --- test.sh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 test.sh diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..55fa2c3 --- /dev/null +++ b/test.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +set -e -u -o pipefail + +trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT + +EINSOCK="/tmp/einhyrningsins_tests.sock" +EIN="target/debug/einhyrningsins --socket-path $EINSOCK" +EINCTL="target/debug/einhyrningsinsctl --socket-path $EINSOCK" + +export RUST_BACKTRACE=1 + +echo "### Run through ctl commands" +rm -f $EINSOCK +$EIN -- nc -l 127.0.0.1 9123 > /dev/null & +sleep 0.5 +$EINCTL -e inc > /dev/null +$EINCTL -e upgrade > /dev/null +$EINCTL -e dec > /dev/null +$EINCTL -e status > /dev/null +$EINCTL -e help > /dev/null +$EINCTL -e version > /dev/null +$EINCTL -e die > /dev/null +sleep 1 +jobs > /dev/null +test -z "`jobs`" + +echo "### Graceful shutdown via ctl" +rm -f $EINSOCK +$EIN --bind localhost:9876 -- examples/einhorn_http.py > /dev/null & +sleep 0.5 +$EINCTL -e die > /dev/null +sleep 1 +jobs > /dev/null +test -z "`jobs`" +trap "trap - SIGTERM" SIGINT SIGTERM EXIT -- cgit v1.2.3