From d33d8774104fa838f2856c0f48ffb84eb3d53b78 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sat, 1 Feb 2020 21:22:53 +0100 Subject: added very simple integration test script Signed-off-by: Toni Uhlig --- test/integration_test.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 test/integration_test.sh diff --git a/test/integration_test.sh b/test/integration_test.sh new file mode 100755 index 0000000..e261954 --- /dev/null +++ b/test/integration_test.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +set -e +set -x +set -o pipefail + + +SRC_ROOT=$(realpath $(dirname $0)/..) +PTUNNEL_BIN=${SRC_ROOT}/src/ptunnel-ng + +TUNNEL_TIMEOUT=25 +timeout --foreground -k1 ${TUNNEL_TIMEOUT} \ + valgrind --error-exitcode=1 --exit-on-first-error=yes \ + "${PTUNNEL_BIN}" -v4 -r127.0.0.1 -R3000 >/dev/null & +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 >/dev/null & +PTUNNEL_CLIENT_PID=$! + +timeout --foreground -k1 ${TUNNEL_TIMEOUT} \ + nc -l -p 3000 >/dev/null & +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 3000" || true + +wait ${PTUNNEL_SERVER_PID} || true +wait ${PTUNNEL_CLIENT_PID} || true +wait ${DATA_SERVER_PID} || true + +printf 'done\n' -- cgit v1.2.3