1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/tools/test.py

115 lines
3 KiB
Python
Raw Normal View History

2018-07-21 19:08:24 -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-07-21 19:08:24 -04:00
# Runs the full test suite.
# Usage: ./tools/test.py out/Debug
import os
import sys
from integration_tests import integration_tests
from deno_dir_test import deno_dir_test
from setup_test import setup_test
from util import build_path, enable_ansi_colors, executable_suffix, run, rmtree
2019-02-08 22:13:04 -05:00
from util import run_output, tests_path, green_ok
from unit_tests import unit_tests
from util_test import util_test
2018-09-24 18:12:52 -04:00
from benchmark_test import benchmark_test
from repl_test import repl_tests
from prefetch_test import prefetch_test
2019-02-01 18:29:00 -05:00
from fmt_test import fmt_test
2018-08-15 19:08:03 -04:00
import subprocess
import http_server
2018-07-21 19:08:24 -04:00
def check_exists(filename):
if not os.path.exists(filename):
print "Required target doesn't exist:", filename
2018-08-09 17:48:17 -04:00
print "Run ./tools/build.py"
2018-07-21 19:08:24 -04:00
sys.exit(1)
2019-02-08 22:13:04 -05:00
def test_no_color(deno_exe):
sys.stdout.write("no_color test...")
sys.stdout.flush()
t = os.path.join(tests_path, "no_color.js")
output = run_output([deno_exe, t], merge_env={"NO_COLOR": "1"})
assert output.strip() == "noColor true"
t = os.path.join(tests_path, "no_color.js")
output = run_output([deno_exe, t])
assert output.strip() == "noColor false"
print green_ok()
2019-02-15 11:22:02 -05:00
def exec_path_test(deno_exe):
cmd = [deno_exe, "tests/exec_path.ts"]
output = run_output(cmd)
assert deno_exe in output.strip()
2018-07-21 19:08:24 -04:00
def main(argv):
2018-08-09 17:48:17 -04:00
if len(argv) == 2:
build_dir = sys.argv[1]
elif len(argv) == 1:
build_dir = build_path()
else:
print "Usage: tools/test.py [build_dir]"
2018-07-21 19:08:24 -04:00
sys.exit(1)
deno_dir = os.path.join(build_dir, ".deno_test")
if os.path.isdir(deno_dir):
rmtree(deno_dir)
os.environ["DENO_DIR"] = deno_dir
enable_ansi_colors()
2018-08-15 19:08:03 -04:00
http_server.spawn()
2018-09-24 18:12:52 -04:00
deno_exe = os.path.join(build_dir, "deno" + executable_suffix)
check_exists(deno_exe)
2019-02-15 11:22:02 -05:00
exec_path_test(deno_exe)
# Internal tools testing
run([
"node", "./node_modules/.bin/ts-node", "--project",
"tools/ts_library_builder/tsconfig.json",
"tools/ts_library_builder/test.ts"
])
setup_test()
util_test()
2018-09-25 20:08:09 -04:00
benchmark_test(build_dir, deno_exe)
2018-07-21 19:08:24 -04:00
test_cc = os.path.join(build_dir, "test_cc" + executable_suffix)
check_exists(test_cc)
run([test_cc])
test_rs = os.path.join(build_dir, "test_rs" + executable_suffix)
check_exists(test_rs)
run([test_rs])
2018-07-21 19:08:24 -04:00
unit_tests(deno_exe)
2018-08-09 17:48:17 -04:00
prefetch_test(deno_exe)
2019-02-01 18:29:00 -05:00
fmt_test(deno_exe)
integration_tests(deno_exe)
2018-07-21 19:08:24 -04:00
2019-02-02 22:05:30 -05:00
# TODO We currently skip testing the prompt and IsTTY in Windows completely.
# Windows does not support the pty module used for testing the permission
# prompt.
if os.name != 'nt':
from permission_prompt_test import permission_prompt_test
2019-02-02 22:05:30 -05:00
from is_tty_test import is_tty_test
permission_prompt_test(deno_exe)
2019-02-02 22:05:30 -05:00
is_tty_test(deno_exe)
repl_tests(deno_exe)
rmtree(deno_dir)
deno_dir_test(deno_exe, deno_dir)
2019-02-08 22:13:04 -05:00
test_no_color(deno_exe)
2018-07-21 19:08:24 -04:00
if __name__ == '__main__':
sys.exit(main(sys.argv))