diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-02-21 21:40:07 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-02-22 19:27:15 +0100 |
commit | a9e24d130d4f67417d9943b09764ad7b56a3ea83 (patch) | |
tree | 35356e8974317df7b7b0007342b3873f7051b5cc /test/integration_test.sh | |
parent | e66ce6f292be86851a7077ed8fe08e36ba46ea05 (diff) |
gitlab-ci: run at least a simple integration test
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'test/integration_test.sh')
-rwxr-xr-x | test/integration_test.sh | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/test/integration_test.sh b/test/integration_test.sh index 165436e..1708216 100755 --- a/test/integration_test.sh +++ b/test/integration_test.sh @@ -6,30 +6,54 @@ set -o pipefail SRC_ROOT=$(realpath $(dirname $0)/..) -PTUNNEL_BIN=${SRC_ROOT}/src/ptunnel-ng +PTUNNEL_BIN=${PTUNNEL_BIN:-${SRC_ROOT}/src/ptunnel-ng} +PTUNNEL_ARGS="${PTUNNEL_ARGS:-}" +VALGRIND_BIN=${VALGRIND_BIN:-valgrind} +VALGRIND_ARGS="--error-exitcode=1 --exit-on-first-error=yes" +if [ "x${DISABLE_VALGRIND}" = xy ]; then + VALGRIND_BIN="" + VALGRIND_ARGS="" +fi + +test -x "${PTUNNEL_BIN}" TUNNEL_TIMEOUT=25 +DATA_TIMEOUT=22 + +echo -n >/tmp/ptunnel-server.log +echo -n >/tmp/ptunnel-client.log + timeout --foreground -k1 ${TUNNEL_TIMEOUT} \ - valgrind --error-exitcode=1 --exit-on-first-error=yes \ - "${PTUNNEL_BIN}" -v4 -r127.0.0.1 -R3000 -l4000 >/tmp/ptunnel-server.log & + ${VALGRIND_BIN} ${VALGRIND_ARGS} \ + "${PTUNNEL_BIN}" -v4 -r127.0.0.1 -R3000 -l4000 ${PTUNNEL_ARGS} -o/tmp/ptunnel-server.log & PTUNNEL_SERVER_PID=$! timeout --foreground -k1 ${TUNNEL_TIMEOUT} \ - valgrind --error-exitcode=1 --exit-on-first-error=yes \ - "${PTUNNEL_BIN}" -v4 -p127.0.0.1 -r127.0.0.1 -R3000 -l4000 >/tmp/ptunnel-client.log & + ${VALGRIND_BIN} ${VALGRIND_ARGS} \ + "${PTUNNEL_BIN}" -v4 -p127.0.0.1 -r127.0.0.1 -R3000 -l4000 ${PTUNNEL_ARGS} -o/tmp/ptunnel-client.log & PTUNNEL_CLIENT_PID=$! -timeout --foreground -k1 ${TUNNEL_TIMEOUT} \ - nc -l -p 3000 >/dev/null & +timeout --foreground -k1 ${DATA_TIMEOUT} \ + nc -l -p 3000 >/dev/null || true & DATA_SERVER_PID=$! sleep 3 -DATA_TIMEOUT=20 timeout --foreground -k1 ${DATA_TIMEOUT} \ sh -c "dd if=/dev/urandom bs=8192 | nc 127.0.0.1 4000" || true -wait ${PTUNNEL_SERVER_PID} || true wait ${PTUNNEL_CLIENT_PID} || true +wait ${PTUNNEL_SERVER_PID} || true wait ${DATA_SERVER_PID} || true +cat /tmp/ptunnel-client.log +cat /tmp/ptunnel-server.log + +cat /tmp/ptunnel-client.log |& grep 'Incoming connection.' +cat /tmp/ptunnel-server.log |& grep 'Starting new session to 127.0.0.1:3000' + +CLIENT_ACK_SERIES=$(cat /tmp/ptunnel-client.log |& grep 'Received ack-series starting at seq' | wc -l) +SERVER_ACK_SERIES=$(cat /tmp/ptunnel-server.log |& grep 'Received ack-series starting at seq' | \ + grep -v 'Received ack-series starting at seq 65535' | wc -l) +test ${CLIENT_ACK_SERIES} -eq ${SERVER_ACK_SERIES} + printf 'done\n' |