mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
124 lines
2.9 KiB
Bash
Executable File
124 lines
2.9 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
|
|
|
|
echo "mita build info:"
|
|
./mita describe build
|
|
sleep 1
|
|
echo "mieru build info:"
|
|
./mieru describe build
|
|
sleep 1
|
|
|
|
# Update mieru server with mixed config.
|
|
./mita apply config server_mix.json
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo "command 'mita apply config server_mix.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
|
|
|
|
# Update mieru client with mix config.
|
|
./mieru apply config client_mix.json
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo "command 'mieru apply config client_mix.json' failed"
|
|
exit 1
|
|
fi
|
|
sleep 1
|
|
./mieru delete http proxy
|
|
sleep 1
|
|
./mieru delete socks5 authentication
|
|
sleep 1
|
|
./mieru export config simple
|
|
sleep 1
|
|
./mieru export config > client.url.txt
|
|
rm ~/.config/mieru/client.conf.pb
|
|
sleep 1
|
|
echo "mieru client config before import:"
|
|
./mieru describe config
|
|
sleep 1
|
|
echo "mieru client config URL:"
|
|
cat client.url.txt
|
|
sleep 1
|
|
./mieru import config $(cat client.url.txt)
|
|
echo "mieru client config after import:"
|
|
./mieru describe config
|
|
sleep 1
|
|
|
|
# Start mieru client.
|
|
./mieru start
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo "command 'mieru start' failed"
|
|
exit 1
|
|
fi
|
|
|
|
# Start testing.
|
|
sleep 1
|
|
echo ">>> socks5 UDP associate - TCP and UDP <<<"
|
|
./socksudpclient -dst_host=127.0.0.1 -dst_port=9090 \
|
|
-local_proxy_host=127.0.0.1 -local_proxy_port=1080 \
|
|
-interval_ms=10 -num_request=100 -num_conn=60
|
|
if [ "$?" -ne "0" ]; then
|
|
print_mieru_client_log
|
|
print_mieru_client_thread_dump
|
|
print_mieru_server_thread_dump
|
|
echo "Test UDP associate - TCP and UDP failed."
|
|
exit 1
|
|
fi
|
|
|
|
# Collect profile with UDP associate.
|
|
./mieru get heap-profile /test/mieru.associate.heap.gz
|
|
./mita get heap-profile /test/mita.associate.heap.gz
|
|
|
|
# Print metrics and memory statistics.
|
|
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
|
|
|
|
# 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
|