From 17e81f2cd1843f01838245eae7b5ed5edf83d6be Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 09:30:55 +0200 Subject: Adding upstream version 0.12.1+dfsg. Signed-off-by: Daniel Baumann --- interop/run_endpoint.sh | 86 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 interop/run_endpoint.sh (limited to 'interop/run_endpoint.sh') diff --git a/interop/run_endpoint.sh b/interop/run_endpoint.sh new file mode 100644 index 0000000..780c825 --- /dev/null +++ b/interop/run_endpoint.sh @@ -0,0 +1,86 @@ +#!/bin/bash + +# Set up the routing needed for the simulation +/setup.sh + +# The following variables are available for use: +# - ROLE contains the role of this execution context, client or server +# - SERVER_PARAMS contains user-supplied command line parameters +# - CLIENT_PARAMS contains user-supplied command line parameters + +case $TESTCASE in + versionnegotiation|handshake|transfer|retry|resumption|http3|multiconnect|zerortt|chacha20|keyupdate|ecn|v2) + : + ;; + *) + exit 127 + ;; +esac + +LOG=/logs/log.txt + +if [ "$ROLE" == "client" ]; then + # Wait for the simulator to start up. + /wait-for-it.sh sim:57832 -s -t 30 + REQS=($REQUESTS) + SERVER=$(echo ${REQS[0]} | sed -re 's|^https://([^/:]+)(:[0-9]+)?/.*$|\1|') + if [ "$TESTCASE" == "http3" ]; then + CLIENT_BIN="/usr/local/bin/client" + else + CLIENT_BIN="/usr/local/bin/h09client" + fi + CLIENT_ARGS="$SERVER 443 --download /downloads -s --no-quic-dump --no-http-dump --exit-on-all-streams-close --qlog-dir $QLOGDIR --cc bbr2" + if [ "$TESTCASE" == "versionnegotiation" ]; then + CLIENT_ARGS="$CLIENT_ARGS -v 0xaaaaaaaa" + else + CLIENT_ARGS="$CLIENT_ARGS -v 0x1" + fi + if [ "$TESTCASE" == "chacha20" ]; then + CLIENT_ARGS="$CLIENT_ARGS --ciphers=TLS_CHACHA20_POLY1305_SHA256" + fi + if [ "$TESTCASE" == "keyupdate" ]; then + CLIENT_ARGS="$CLIENT_ARGS --delay-stream 10ms --key-update 1ms" + fi + if [ "$TESTCASE" == "v2" ]; then + CLIENT_ARGS="$CLIENT_ARGS --other-versions v2draft,v1" + fi + if [ "$TESTCASE" == "ecn" ]; then + CLIENT_ARGS="$CLIENT_ARGS --no-pmtud" + fi + if [ "$TESTCASE" == "resumption" ] || [ "$TESTCASE" == "zerortt" ]; then + CLIENT_ARGS="$CLIENT_ARGS --session-file session.txt --tp-file tp.txt" + if [ "$TESTCASE" == "resumption" ]; then + CLIENT_ARGS="$CLIENT_ARGS --disable-early-data" + fi + REQUESTS=${REQS[0]} + $CLIENT_BIN $CLIENT_ARGS $REQUESTS $CLIENT_PARAMS &> $LOG + REQUESTS=${REQS[@]:1} + $CLIENT_BIN $CLIENT_ARGS $REQUESTS $CLIENT_PARAMS &>> $LOG + elif [ "$TESTCASE" == "multiconnect" ]; then + CLIENT_ARGS="$CLIENT_ARGS --timeout=180s --handshake-timeout=180s" + for REQ in $REQUESTS; do + echo "multiconnect REQ: $REQ" >> $LOG + $CLIENT_BIN $CLIENT_ARGS $REQ $CLIENT_PARAMS &>> $LOG + done + else + $CLIENT_BIN $CLIENT_ARGS $REQUESTS $CLIENT_PARAMS &> $LOG + fi +elif [ "$ROLE" == "server" ]; then + if [ "$TESTCASE" == "http3" ]; then + SERVER_BIN="/usr/local/bin/server" + else + SERVER_BIN="/usr/local/bin/h09server" + fi + SERVER_ARGS="/certs/priv.key /certs/cert.pem -s -d /www --qlog-dir $QLOGDIR --cc bbr2" + if [ "$TESTCASE" == "retry" ]; then + SERVER_ARGS="$SERVER_ARGS -V" + elif [ "$TESTCASE" == "multiconnect" ]; then + SERVER_ARGS="$SERVER_ARGS --timeout=180s --handshake-timeout=180s" + elif [ "$TESTCASE" == "v2" ]; then + SERVER_ARGS="$SERVER_ARGS --preferred-versions v2draft" + elif [ "$TESTCASE" == "ecn" ]; then + SERVER_ARGS="$SERVER_ARGS --no-pmtud" + fi + + $SERVER_BIN '*' 443 $SERVER_ARGS $SERVER_PARAMS &> $LOG +fi -- cgit v1.2.3