2015-07-11 07:51:30 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-09-10 07:48:38 +02:00
|
|
|
import os
|
|
|
|
import time
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2013-09-22 15:23:47 +02:00
|
|
|
cache_size = 300 # in MiB
|
|
|
|
|
2013-09-10 07:48:38 +02:00
|
|
|
toolset = ''
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
toolset = sys.argv[1]
|
|
|
|
|
2013-10-08 07:10:23 +02:00
|
|
|
ret = os.system('cd ../examples && bjam profile statistics=on %s stage_client_test' % toolset)
|
|
|
|
if ret != 0:
|
|
|
|
print 'ERROR: build failed: %d' % ret
|
|
|
|
sys.exit(1)
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-10-08 07:10:23 +02:00
|
|
|
ret = os.system('cd ../examples && bjam release %s stage_connection_tester' % toolset)
|
2013-09-10 07:48:38 +02:00
|
|
|
if ret != 0:
|
|
|
|
print 'ERROR: build failed: %d' % ret
|
|
|
|
sys.exit(1)
|
|
|
|
|
2013-10-08 07:10:23 +02:00
|
|
|
try: os.remove('.ses_state')
|
2014-01-28 04:23:44 +01:00
|
|
|
except Exception, e: print e
|
|
|
|
try: shutil.rmtree('.resume')
|
|
|
|
except Exception, e: print e
|
|
|
|
try: shutil.rmtree('cpu_benchmark')
|
|
|
|
except Exception, e: print e
|
2013-10-08 07:10:23 +02:00
|
|
|
|
2013-09-10 07:48:38 +02:00
|
|
|
if not os.path.exists('cpu_benchmark.torrent'):
|
|
|
|
ret = os.system('../examples/connection_tester gen-torrent -s 10000 -n 15 -t cpu_benchmark.torrent')
|
|
|
|
if ret != 0:
|
|
|
|
print 'ERROR: connection_tester failed: %d' % ret
|
|
|
|
sys.exit(1)
|
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
try: shutil.rmtree('t')
|
2013-09-10 07:48:38 +02:00
|
|
|
except: pass
|
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
def run_test(name, test_cmd, client_arg, num_peers):
|
|
|
|
output_dir = 'logs_%s' % name
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
try: shutil.rmtree(output_dir)
|
|
|
|
except: pass
|
2013-09-10 23:04:56 +02:00
|
|
|
try: os.mkdir(output_dir)
|
|
|
|
except: pass
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
port = (int(time.time()) % 50000) + 2000
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
try: shutil.rmtree('session_stats')
|
|
|
|
except: pass
|
|
|
|
try: shutil.rmtree('session_stats_report')
|
|
|
|
except: pass
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
start = time.time();
|
2014-07-06 21:18:00 +02:00
|
|
|
client_cmd = '../examples/client_test -p %d cpu_benchmark.torrent -k -z -H -X -q 120 %s -h -c %d -T %d -C %d -f %s/events.log' \
|
2013-10-08 07:10:23 +02:00
|
|
|
% (port, client_arg, num_peers*2, num_peers*2, cache_size * 16, output_dir)
|
2013-09-10 23:04:56 +02:00
|
|
|
test_cmd = '../examples/connection_tester %s -c %d -d 127.0.0.1 -p %d -t cpu_benchmark.torrent' % (test_cmd, num_peers, port)
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
client_out = open('%s/client.out' % output_dir, 'w+')
|
|
|
|
test_out = open('%s/test.out' % output_dir, 'w+')
|
|
|
|
print client_cmd
|
|
|
|
c = subprocess.Popen(client_cmd.split(' '), stdout=client_out, stderr=client_out, stdin=subprocess.PIPE)
|
|
|
|
time.sleep(2)
|
|
|
|
print test_cmd
|
|
|
|
t = subprocess.Popen(test_cmd.split(' '), stdout=test_out, stderr=test_out)
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
t.wait()
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
end = time.time();
|
2013-09-10 07:48:38 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
try: c.communicate('q')
|
|
|
|
except: pass
|
2013-10-08 07:10:23 +02:00
|
|
|
c.wait()
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
client_out.close();
|
|
|
|
test_out.close();
|
|
|
|
|
2013-09-10 23:04:56 +02:00
|
|
|
print 'runtime %d seconds' % (end - start)
|
|
|
|
print 'analyzing proile...'
|
|
|
|
os.system('gprof ../examples/client_test >%s/gprof.out' % output_dir)
|
|
|
|
print 'generating profile graph...'
|
2013-09-22 15:23:47 +02:00
|
|
|
os.system('python gprof2dot.py --strip <%s/gprof.out | dot -Tpng -o %s/cpu_profile.png' % (output_dir, output_dir))
|
2013-09-10 23:04:56 +02:00
|
|
|
|
|
|
|
os.system('python parse_session_stats.py session_stats/*.log')
|
|
|
|
try: shutil.move('session_stats_report', '%s/session_stats_report' % output_dir)
|
|
|
|
except: pass
|
|
|
|
try: shutil.move('session_stats', '%s/session_stats' % output_dir)
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
run_test('download', 'upload', '', 50)
|
2013-09-22 15:23:47 +02:00
|
|
|
run_test('upload', 'download', '-G', 20)
|
2013-09-10 07:48:38 +02:00
|
|
|
|