musique/scripts/test.py

230 lines
8.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2022-09-25 03:19:00 +02:00
import argparse
import dataclasses
2022-05-22 06:07:24 +02:00
import json
2022-09-25 03:19:00 +02:00
import os
import subprocess
2022-05-22 06:07:24 +02:00
TEST_DIR = "regression-tests"
2022-09-25 03:19:00 +02:00
TEST_DB = "test_db.json"
2022-10-25 16:20:24 +02:00
INTERPRETER = "bin/linux/debug/musique"
2022-09-25 03:19:00 +02:00
@dataclasses.dataclass
class Result:
exit_code: int = 0
stdin_lines: list[str] = dataclasses.field(default_factory=list)
stdout_lines: list[str] = dataclasses.field(default_factory=list)
stderr_lines: list[str] = dataclasses.field(default_factory=list)
@dataclasses.dataclass
class TestCase:
name: str
exit_code: int = 0
stdin_lines: list[str] = dataclasses.field(default_factory=list)
stdout_lines: list[str] = dataclasses.field(default_factory=list)
stderr_lines: list[str] = dataclasses.field(default_factory=list)
def run(self, interpreter: str, source: str, cwd: str):
result = subprocess.run(
2022-10-25 16:20:24 +02:00
args=[interpreter, source, "-q"],
2022-09-25 03:19:00 +02:00
capture_output=True,
cwd=cwd,
text=True
)
return Result(
exit_code=result.returncode,
stdout_lines=result.stdout.splitlines(keepends=False),
stderr_lines=result.stderr.splitlines(keepends=False)
)
def record(self, interpreter: str, source: str, cwd: str):
print(f"Recording case {self.name}")
result = self.run(interpreter, source, cwd)
changes = []
if self.exit_code != result.exit_code: changes.append("exit code")
if self.stderr_lines != result.stderr_lines: changes.append("stderr")
if self.stdout_lines != result.stdout_lines: changes.append("stdout")
if changes:
print(f" changed: {', '.join(changes)}")
self.exit_code, self.stderr_lines, self.stdout_lines = result.exit_code, result.stderr_lines, result.stdout_lines
def test(self, interpreter: str, source: str, cwd: str):
print(f" Testing case {self.name} ", end="")
result = self.run(interpreter, source, cwd)
if self.exit_code == result.exit_code and self.stdout_lines == result.stdout_lines and self.stderr_lines == result.stderr_lines:
print("ok")
return True
print(f"FAILED")
print(f"File: {source}")
if self.exit_code != result.exit_code:
print(f"Different exit code - expected {self.exit_code}, got {result.exit_code}")
for name, expected, actual in [
("standard output", self.stdout_lines, result.stdout_lines),
("standard error", self.stderr_lines, result.stderr_lines)
]:
if expected == actual:
continue
diff_line = None
for i, (exp_line, got_line) in enumerate(zip(expected, actual)):
if exp_line != got_line:
diff_line = i
break
if diff_line is not None:
print(f"First difference at line {diff_line+1} in {name}:")
print(f" Expected: {expected[diff_line]}")
print(f" Got: {actual[diff_line]}")
elif len(expected) > len(actual):
print(f"Expected {name} is {len(expected) - len(actual)} lines longer then actual")
else:
print(f"Actual {name} is {len(actual) - len(expected)} lines longer then expected")
return False
@dataclasses.dataclass
class TestSuite:
name: str
cases: list[TestCase] = dataclasses.field(default_factory=list)
suites = list[TestSuite]()
def suite_case_from_path(path: str) -> tuple[str, str]:
path = os.path.realpath(path)
test_suite, test_case = os.path.split(path)
test_dir, test_suite = os.path.split(test_suite)
_, test_dir = os.path.split(test_dir)
assert test_dir == TEST_DIR, "Provided path doesn't follow required directory structure"
assert test_case.endswith(".mq"), "Test case is not a Musique file"
assert os.path.isfile(path), "Test case is not a file"
return (test_suite, test_case)
def add(path: str) -> list[tuple[TestSuite, TestCase]]:
test_suite, test_case = suite_case_from_path(path)
for suite in suites:
if suite.name == test_suite:
break
else:
print(f"Discovered new test suite: {test_suite}")
suite = TestSuite(name=test_suite)
suites.append(suite)
for case in suite.cases:
if case.name == test_case:
print(f"Test case {test_case} in suite {test_suite} already exists")
return []
case = TestCase(name=test_case)
suite.cases.append(case)
return [(suite, case)]
def update(path: str) -> list[tuple[TestSuite, TestCase]]:
test_suite, test_case = suite_case_from_path(path)
for suite in suites:
if suite.name == test_suite:
break
else:
print(f"Cannot update case {test_case} where suite {test_suite} was not defined yet.")
print("Use --add to add new test case")
return []
for case in suite.cases:
if case.name == test_case:
return [(suite, case)]
print(f"Case {test_case} doesn't exists in suite {test_suite}")
print("Use --add to add new test case")
return []
def traverse(discover: bool, update: bool) -> list[tuple[TestSuite, TestCase]]:
2022-09-25 03:19:00 +02:00
to_record = list[tuple[TestSuite, TestCase]]()
if discover:
for suite_name in os.listdir(testing_dir):
if os.path.isdir(os.path.join(testing_dir, suite_name)) and suite_name not in (suite.name for suite in suites):
print(f"Discovered new test suite: {suite_name}")
suites.append(TestSuite(name=suite_name))
for suite in suites:
suite_path = os.path.join(testing_dir, suite.name)
for case_name in os.listdir(suite_path):
if os.path.isfile(os.path.join(suite_path, case_name)) and case_name not in (case.name for case in suite.cases):
print(f"In suite '{suite.name}' discovered new test case: {case_name}")
case = TestCase(name=case_name)
suite.cases.append(case)
to_record.append((suite, case))
if update:
to_record.extend(((suite, case) for suite in suites for case in suite.cases))
return to_record
2022-09-25 03:19:00 +02:00
def test():
successful, total = 0, 0
for suite in suites:
print(f"Testing suite {suite.name}")
for case in suite.cases:
successful += int(case.test(
interpreter=os.path.join(root, INTERPRETER),
source=os.path.join(testing_dir, suite.name, case.name),
cwd=root
))
total += 1
print(f"Passed {successful} out of {total} ({100 * successful // total}%)")
2022-05-22 06:07:24 +02:00
2022-09-25 03:19:00 +02:00
if __name__ == "__main__":
if not os.path.exists(INTERPRETER):
subprocess.run("make debug", shell=True, check=True)
2022-09-25 03:19:00 +02:00
parser = argparse.ArgumentParser(description="Regression test runner for Musique programming language")
parser.add_argument("-d", "--discover", action="store_true", help="Discover all tests that are not in testing database")
parser.add_argument("--update-all", action="store_true", help="Update all tests", dest="update_all")
parser.add_argument("-a", "--add", action="append", help="Add new test to test suite", default=[])
parser.add_argument("-u", "--update", action="append", help="Update test case", default=[])
2022-09-25 03:19:00 +02:00
args = parser.parse_args()
2022-05-22 06:07:24 +02:00
2022-09-25 03:19:00 +02:00
root = os.path.dirname(os.path.dirname(__file__))
testing_dir = os.path.join(root, TEST_DIR)
2022-09-25 03:19:00 +02:00
test_db_path = os.path.join(testing_dir, TEST_DB)
2022-05-22 06:07:24 +02:00
2022-09-25 03:19:00 +02:00
with open(test_db_path, "r") as f:
for src in json.load(f):
src["cases"] = [TestCase(**case) for case in src["cases"]]
suites.append(TestSuite(**src))
to_record = []
if args.discover or args.update_all:
to_record.extend(traverse(discover=args.discover, update=args.update_all))
elif not (args.add or args.update):
2022-09-25 03:19:00 +02:00
test()
for case in args.add:
to_record.extend(add(case))
for case in args.update:
to_record.extend(update(case))
for (suite, case) in to_record:
case.record(
interpreter=os.path.join(root, INTERPRETER),
source=os.path.join(testing_dir, suite.name, case.name),
cwd=root
)
if to_record:
with open(test_db_path, "w") as f:
json_suites = [dataclasses.asdict(suite) for suite in suites]
json.dump(json_suites, f, indent=2)