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-05-30 16:40:40 -04:00
|
|
|
import unittest
|
2019-06-03 12:35:55 -04:00
|
|
|
from test_util import DenoTestCase, run_tests
|
2019-05-30 16:40:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestBenchmark(DenoTestCase):
|
|
|
|
def test_strace_parse(self):
|
|
|
|
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
|
|
|
|
|
|
|
|
def test_max_mem_parse(self):
|
|
|
|
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
|
|
|
|
|
|
|
|
def test_binary_size(self):
|
|
|
|
binary_size_dict = benchmark.get_binary_sizes(self.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
|
|
|
|
|
|
|
|
@unittest.skipIf("linux" not in sys.platform,
|
|
|
|
"strace only supported on linux")
|
|
|
|
def test_strace(self):
|
|
|
|
new_data = {}
|
|
|
|
benchmark.run_strace_benchmarks(self.deno_exe, new_data)
|
|
|
|
assert "thread_count" in new_data
|
|
|
|
assert "syscall_count" in new_data
|
|
|
|
|
|
|
|
s = new_data["thread_count"]
|
|
|
|
assert "hello" in s
|
|
|
|
assert s["hello"] > 1
|
|
|
|
|
|
|
|
s = new_data["syscall_count"]
|
|
|
|
assert "hello" in s
|
|
|
|
assert s["hello"] > 1
|
2019-04-16 13:57:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-05-30 16:40:40 -04:00
|
|
|
# FIME this doesn't appear to be the case.
|
|
|
|
# This test assumes tools/http_server.py is running in the background.
|
2019-06-03 12:35:55 -04:00
|
|
|
run_tests()
|