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.
79 lines
2.0 KiB
79 lines
2.0 KiB
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import, division, print_function, \
|
|
with_statement
|
|
|
|
import sys
|
|
import os
|
|
import signal
|
|
import select
|
|
import time
|
|
from subprocess import Popen, PIPE
|
|
|
|
sys.path.insert(0, './')
|
|
|
|
if sys.argv[-3] == '-c':
|
|
client_config = sys.argv[-1]
|
|
server_config = sys.argv[-2]
|
|
elif sys.argv[-2] == '-c':
|
|
client_config = sys.argv[-1]
|
|
server_config = sys.argv[-1]
|
|
else:
|
|
raise Exception('usage: test.py -c server_conf [client_conf]')
|
|
|
|
p1 = Popen(['python', 'shadowsocks/server.py', '-c', server_config],
|
|
stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
|
|
p2 = Popen(['python', 'shadowsocks/local.py', '-c', client_config],
|
|
stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
|
|
p3 = None
|
|
|
|
try:
|
|
local_ready = False
|
|
server_ready = False
|
|
fdset = [p1.stdout, p2.stdout, p1.stderr, p2.stderr]
|
|
while True:
|
|
r, w, e = select.select(fdset, [], fdset)
|
|
if e:
|
|
break
|
|
|
|
for fd in r:
|
|
line = fd.readline()
|
|
if bytes != str:
|
|
line = str(line, 'utf8')
|
|
sys.stdout.write(line)
|
|
if line.find('starting local') >= 0:
|
|
local_ready = True
|
|
if line.find('starting server') >= 0:
|
|
server_ready = True
|
|
|
|
if local_ready and server_ready and p3 is None:
|
|
time.sleep(1)
|
|
|
|
break
|
|
|
|
p3 = Popen(['curl', 'http://www.example.com/', '-v', '-L',
|
|
'--socks5-hostname', '127.0.0.1:1081'], close_fds=True)
|
|
if p3 is not None:
|
|
r = p3.wait()
|
|
if r != 0:
|
|
sys.exit(r)
|
|
else:
|
|
sys.exit(1)
|
|
|
|
p4 = Popen(['socksify', 'dig', '@8.8.8.8', 'www.google.com'],
|
|
close_fds=True)
|
|
if p4 is not None:
|
|
r = p4.wait()
|
|
if r != 0:
|
|
sys.exit(r)
|
|
else:
|
|
sys.exit(1)
|
|
print('test passed')
|
|
|
|
finally:
|
|
for p in [p1, p2]:
|
|
try:
|
|
os.kill(p.pid, signal.SIGTERM)
|
|
except OSError:
|
|
pass
|
|
|