Files
Archive/mieru/test/deploy/basic/test_udp.sh
T
2025-10-28 19:41:18 +01:00

173 lines
4.3 KiB
Bash
Executable File

#!/bin/bash
# Copyright (C) 2022 mieru authors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# Make sure this script has executable permission:
# git update-index --chmod=+x <file>
# Load test library.
source ./libtest.sh
# Update mieru server with UDP config.
./mita apply config server_udp.json
if [[ "$?" -ne 0 ]]; then
echo "command 'mita apply config server_udp.json' failed"
exit 1
fi
echo "mieru server config:"
./mita describe config
# Start mieru server proxy.
./mita start
if [[ "$?" -ne 0 ]]; then
echo "command 'mita start' failed"
exit 1
fi
./mita profile cpu start /test/mita.udp.cpu.gz
# Update mieru client with UDP config.
./mieru apply config client_udp.json
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru apply config client_udp.json' failed"
exit 1
fi
echo "mieru client config:"
./mieru describe config
# Start mieru client.
./mieru start
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru start' failed"
exit 1
fi
./mieru profile cpu start /test/mieru.udp.cpu.gz
# Start testing.
sleep 2
echo ">>> socks5 - new connections - UDP <<<"
./sockshttpclient -dst_host=127.0.0.1 -dst_port=8080 \
-local_proxy_host=127.0.0.1 -local_proxy_port=1080 \
-test_case=new_conn -num_request=3000
if [ "$?" -ne "0" ]; then
print_mieru_client_log
print_mieru_client_thread_dump
print_mieru_server_thread_dump
echo "UDP - test socks5 new_conn failed."
exit 1
fi
sleep 1
echo ">>> http - new connections - UDP <<<"
./sockshttpclient -proxy_mode=http -dst_host=127.0.0.1 -dst_port=8080 \
-local_http_host=127.0.0.1 -local_http_port=8808 \
-test_case=new_conn -num_request=1000
if [ "$?" -ne "0" ]; then
print_mieru_client_log
print_mieru_client_thread_dump
print_mieru_server_thread_dump
echo "UDP - test HTTP new_conn failed."
exit 1
fi
sleep 1
echo ">>> socks5 - reuse one connection - UDP <<<"
./sockshttpclient -dst_host=127.0.0.1 -dst_port=8080 \
-local_proxy_host=127.0.0.1 -local_proxy_port=1080 \
-test_case=reuse_conn -test_time_sec=30
if [ "$?" -ne "0" ]; then
print_mieru_client_log
print_mieru_client_thread_dump
print_mieru_server_thread_dump
echo "UDP - test socks5 reuse_conn failed."
exit 1
fi
# Collect profile with UDP.
./mieru profile cpu stop
./mita profile cpu stop
./mieru get heap-profile /test/mieru.udp.heap.gz
./mita get heap-profile /test/mita.udp.heap.gz
# Print metrics and memory statistics.
./mita get users
sleep 1
print_mieru_client_metrics
sleep 1
print_mieru_server_metrics
sleep 1
# Stop mieru client.
./mieru stop
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru stop' failed"
exit 1
fi
sleep 1
print_mieru_client_log
delete_mieru_client_log
sleep 1
# Update mieru client with UDP config handshake no wait mode.
./mieru apply config client_udp_no_wait.json
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru apply config client_udp_no_wait.json' failed"
exit 1
fi
echo "mieru client config:"
./mieru describe config
# Start mieru client.
./mieru start
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru start' failed"
exit 1
fi
# Start testing.
sleep 2
echo ">>> socks5 - new connections - UDP - handshake no wait <<<"
./sockshttpclient -dst_host=127.0.0.1 -dst_port=8080 \
-local_proxy_host=127.0.0.1 -local_proxy_port=1080 \
-test_case=new_conn -num_request=3000
if [ "$?" -ne "0" ]; then
print_mieru_client_log
print_mieru_client_thread_dump
print_mieru_server_thread_dump
echo "UDP - test socks5 new_conn (handshake no wait) failed."
exit 1
fi
# Stop mieru client.
./mieru stop
if [[ "$?" -ne 0 ]]; then
echo "command 'mieru stop' failed"
exit 1
fi
sleep 1
# Stop mieru server proxy.
./mita stop
if [[ "$?" -ne 0 ]]; then
echo "command 'mita stop' failed"
exit 1
fi
sleep 1
print_mieru_client_log
delete_mieru_client_log
sleep 1