2019-04-16 13:57:05 -04:00
|
|
|
#!/usr/bin/env python
|
2019-01-21 14:03:30 -05:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-09-24 18:12:52 -04:00
|
|
|
import sys
|
|
|
|
import os
|
2018-09-24 23:58:18 -04:00
|
|
|
import benchmark
|
2019-04-16 13:57:05 -04:00
|
|
|
from util import build_path, executable_suffix
|
2018-09-24 23:58:18 -04:00
|
|
|
|
|
|
|
|
|
|
|
def strace_parse_test():
|
|
|
|
with open(os.path.join(sys.path[0], "testdata/strace_summary.out"),
|
|
|
|
"r") as f:
|
|
|
|
summary = benchmark.strace_parse(f.read())
|
|
|
|
# first syscall line
|
|
|
|
assert summary["munmap"]["calls"] == 60
|
|
|
|
assert summary["munmap"]["errors"] == 0
|
|
|
|
# line with errors
|
|
|
|
assert summary["mkdir"]["errors"] == 2
|
|
|
|
# last syscall line
|
|
|
|
assert summary["prlimit64"]["calls"] == 2
|
|
|
|
assert summary["prlimit64"]["% time"] == 0
|
|
|
|
# summary line
|
|
|
|
assert summary["total"]["calls"] == 704
|
|
|
|
|
|
|
|
|
2019-04-16 13:57:05 -04:00
|
|
|
def max_mem_parse_test():
|
|
|
|
with open(os.path.join(sys.path[0], "testdata/time.out"), "r") as f:
|
|
|
|
data = f.read()
|
|
|
|
assert benchmark.find_max_mem_in_bytes(data) == 120380 * 1024
|
|
|
|
|
|
|
|
|
2018-09-25 20:08:09 -04:00
|
|
|
def binary_size_test(build_dir):
|
|
|
|
binary_size_dict = benchmark.get_binary_sizes(build_dir)
|
|
|
|
assert binary_size_dict["deno"] > 0
|
|
|
|
assert binary_size_dict["main.js"] > 0
|
|
|
|
assert binary_size_dict["main.js.map"] > 0
|
|
|
|
assert binary_size_dict["snapshot_deno.bin"] > 0
|
|
|
|
|
|
|
|
|
2018-09-24 23:58:18 -04:00
|
|
|
def thread_count_test(deno_path):
|
|
|
|
thread_count_dict = benchmark.run_thread_count_benchmark(deno_path)
|
|
|
|
assert "set_timeout" in thread_count_dict
|
|
|
|
assert thread_count_dict["set_timeout"] > 1
|
|
|
|
|
|
|
|
|
|
|
|
def syscall_count_test(deno_path):
|
|
|
|
syscall_count_dict = benchmark.run_syscall_count_benchmark(deno_path)
|
|
|
|
assert "hello" in syscall_count_dict
|
|
|
|
assert syscall_count_dict["hello"] > 1
|
2018-09-24 18:12:52 -04:00
|
|
|
|
|
|
|
|
2018-09-25 20:08:09 -04:00
|
|
|
def benchmark_test(build_dir, deno_path):
|
2018-09-24 23:58:18 -04:00
|
|
|
strace_parse_test()
|
2018-09-25 20:08:09 -04:00
|
|
|
binary_size_test(build_dir)
|
2019-04-16 13:57:05 -04:00
|
|
|
max_mem_parse_test()
|
2018-09-24 18:12:52 -04:00
|
|
|
if "linux" in sys.platform:
|
2018-09-24 23:58:18 -04:00
|
|
|
thread_count_test(deno_path)
|
|
|
|
syscall_count_test(deno_path)
|
2019-04-16 13:57:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
# This test assumes tools/http_server.py is running in the background.
|
|
|
|
def main():
|
|
|
|
if len(sys.argv) == 2:
|
|
|
|
build_dir = sys.argv[1]
|
|
|
|
elif len(sys.argv) == 1:
|
|
|
|
build_dir = build_path()
|
|
|
|
else:
|
|
|
|
print "Usage: tools/benchmark_test.py [build_dir]"
|
|
|
|
sys.exit(1)
|
|
|
|
deno_exe = os.path.join(build_dir, "deno" + executable_suffix)
|
|
|
|
benchmark_test(build_dir, deno_exe)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|