g3/scripts/coverage/g3proxy/0023_audit_user/testcases.sh
Zhang Jingqiang f89893f7ef
Some checks failed
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
Sphinx-Doc / build (g3tiles) (push) Has been cancelled
Sphinx-Doc / build (g3keymess) (push) Has been cancelled
Sphinx-Doc / build (g3proxy) (push) Has been cancelled
Sphinx-Doc / build (g3statsd) (push) Has been cancelled
g3-icap-client: allow to disable preview
2025-05-21 15:03:29 +08:00

17 lines
345 B
Bash

#!/bin/sh
for user in t1:toor t2:toor t3:toor
do
HTTP_PROXY="http://${user}@127.0.0.1:8080"
test_http_proxy_http_forward
# test_http_proxy_ftp_over_http
test_http_proxy_https_connect
test_http_proxy_https_forward
test_http_proxy_h2
SOCKS5_PROXY="socks5h://${user}@127.0.0.1:1080"
test_socks5_proxy_http
# test_socks5_proxy_dns
done