You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
399 B
24 lines
399 B
#!/bin/bash
|
|
|
|
PYTHON="coverage run -p -a"
|
|
URL=http://127.0.0.1/file
|
|
|
|
mkdir -p tmp
|
|
|
|
$PYTHON shadowsocks/local.py -c tests/aes.json &
|
|
LOCAL=$!
|
|
|
|
$PYTHON shadowsocks/server.py -c tests/aes.json &
|
|
SERVER=$!
|
|
|
|
sleep 3
|
|
|
|
time curl -o tmp/expected $URL
|
|
time curl -o tmp/result --socks5-hostname 127.0.0.1:1081 $URL
|
|
|
|
kill -s SIGINT $LOCAL
|
|
kill -s SIGINT $SERVER
|
|
|
|
sleep 2
|
|
|
|
diff tmp/expected tmp/result || exit 1
|
|
|