summaryrefslogtreecommitdiff
path: root/tools/unit_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-xtools/unit_tests.py53
1 files changed, 33 insertions, 20 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py
index 62844fc09..b9be48436 100755
--- a/tools/unit_tests.py
+++ b/tools/unit_tests.py
@@ -1,6 +1,32 @@
#!/usr/bin/env python
-from util import run
+import util
import sys
+import subprocess
+import re
+
+
+def run_unit_test(deno_exe, permStr, flags=[]):
+ cmd = [deno_exe, "--reload", "js/unit_tests.ts", permStr] + flags
+ process = subprocess.Popen(
+ cmd,
+ bufsize=1,
+ universal_newlines=True,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.STDOUT)
+ (actual, expected) = util.parse_unit_test_output(process.stdout, True)
+ process.wait()
+ errcode = process.returncode
+ if errcode != 0:
+ sys.exit(errcode)
+ if actual == None and expected == None:
+ raise AssertionError("Bad js/unit_test.ts output")
+ if expected != actual:
+ print "expected", expected, "actual", actual
+ raise AssertionError("expected tests did not equal actual")
+ process.wait()
+ errcode = process.returncode
+ if errcode != 0:
+ sys.exit(errcode)
# We want to test many ops in deno which have different behavior depending on
@@ -10,25 +36,12 @@ import sys
# tests by the special string. permW0N0 means allow-write but not allow-net.
# See js/test_util.ts for more details.
def unit_tests(deno_exe):
- run([deno_exe, "--reload", "js/unit_tests.ts", "permW0N0E0"])
- run([
- deno_exe, "--reload", "js/unit_tests.ts", "permW1N0E0", "--allow-write"
- ])
- run([
- deno_exe, "--reload", "js/unit_tests.ts", "permW0N1E0", "--allow-net"
- ])
- run([
- deno_exe, "--reload", "js/unit_tests.ts", "permW0N0E1", "--allow-env"
- ])
- run([
- deno_exe,
- "--reload",
- "js/unit_tests.ts",
- "permW1N1E1",
- "--allow-write",
- "--allow-net",
- "--allow-env",
- ])
+ run_unit_test(deno_exe, "permW0N0E0")
+ run_unit_test(deno_exe, "permW1N0E0", ["--allow-write"])
+ run_unit_test(deno_exe, "permW0N1E0", ["--allow-net"])
+ run_unit_test(deno_exe, "permW0N0E1", ["--allow-env"])
+ # TODO We might accidentally miss some. We should be smarter about which we
+ # run. Maybe we can use the "filtered out" number to check this.
if __name__ == '__main__':