frp/hack/run-e2e.sh

35 lines
837 B
Bash
Raw Normal View History

#!/bin/sh
2020-06-02 22:48:55 +08:00
SCRIPT=$(readlink -f "$0")
ROOT=$(unset CDPATH && cd "$(dirname "$SCRIPT")/.." && pwd)
2020-06-02 22:48:55 +08:00
ginkgo_command=$(which ginkgo 2>/dev/null)
if [ -z "$ginkgo_command" ]; then
2020-06-02 22:48:55 +08:00
echo "ginkgo not found, try to install..."
2024-04-09 11:39:21 +08:00
go install github.com/onsi/ginkgo/v2/ginkgo@v2.17.1
2020-06-02 22:48:55 +08:00
fi
2020-09-07 14:57:23 +08:00
debug=false
if [ "x${DEBUG}" = "xtrue" ]; then
2020-09-07 14:57:23 +08:00
debug=true
fi
2021-06-18 16:48:36 +08:00
logLevel=debug
if [ "${LOG_LEVEL}" ]; then
logLevel="${LOG_LEVEL}"
2021-06-18 16:48:36 +08:00
fi
frpcPath=${ROOT}/bin/frpc
if [ "${FRPC_PATH}" ]; then
frpcPath="${FRPC_PATH}"
fi
frpsPath=${ROOT}/bin/frps
if [ "${FRPS_PATH}" ]; then
frpsPath="${FRPS_PATH}"
fi
2023-12-21 22:46:08 +08:00
concurrency="16"
if [ "${CONCURRENCY}" ]; then
concurrency="${CONCURRENCY}"
fi
ginkgo -nodes=${concurrency} --poll-progress-after=60s ${ROOT}/test/e2e -- -frpc-path=${frpcPath} -frps-path=${frpsPath} -log-level=${logLevel} -debug=${debug}