diff options
author | David Robillard <d@drobilla.net> | 2023-03-27 15:42:23 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-02 20:04:02 -0400 |
commit | 68c1a2e677775e489cff4beb38ef17c1efeae4e3 (patch) | |
tree | 3ea9c5e9e98ef2c581849a6cb160a7f1c91559b0 /test/serd_test_util | |
parent | b2402da734bf1e71d597d949571fb14810aa3d61 (diff) | |
download | serd-68c1a2e677775e489cff4beb38ef17c1efeae4e3.tar.gz serd-68c1a2e677775e489cff4beb38ef17c1efeae4e3.tar.bz2 serd-68c1a2e677775e489cff4beb38ef17c1efeae4e3.zip |
Factor out common test runner utilities
Diffstat (limited to 'test/serd_test_util')
-rw-r--r-- | test/serd_test_util/__init__.py | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/test/serd_test_util/__init__.py b/test/serd_test_util/__init__.py new file mode 100644 index 00000000..844c454c --- /dev/null +++ b/test/serd_test_util/__init__.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 + +# Copyright 2022-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: ISC + +"""Utilities for data-driven tests.""" + +import datetime +import difflib +import os +import re +import subprocess +import sys +import urllib.parse + + +class Results: + """Counts of test executions and failures.""" + + def __init__(self): + self.n_tests = 0 + self.n_failures = 0 + + def test_passed(self): + """Record a successful test.""" + self.n_tests += 1 + + def test_failed(self): + """Record a failed test.""" + self.n_tests += 1 + self.n_failures += 1 + + def check(self, condition, message=None): + """Check a test condition and update counts accordingly.""" + if not condition: + self.test_failed() + if message is not None: + error(message) + else: + self.test_passed() + + +def error(message): + """Log an error message to stderr.""" + + sys.stderr.write("error: ") + sys.stderr.write(message) + + +def print_result_summary(results): + """Print test result summary to stdout or stderr as appropriate.""" + + if results.n_tests <= 0: + error("No tests found\n") + return -1 + + failed, total = (results.n_failures, results.n_tests) + if failed == 0: + sys.stdout.write("All {} tests passed\n".format(total)) + else: + error("{}/{} tests failed\n".format(failed, total)) + + return failed + + +def uri_path(uri): + """Return the path component of a URI.""" + + path = urllib.parse.urlparse(uri).path + drive = os.path.splitdrive(path[1:])[0] + return path if not drive else path[1:] + + +def earl_assertion(test, passed, asserter): + """Return a Turtle description of an assertion for the test report.""" + + asserter_str = "" + if asserter is not None: + asserter_str = "\n\tearl:assertedBy <%s> ;" % asserter + + return """ +[] +\ta earl:Assertion ;%s +\tearl:subject <http://drobilla.net/sw/serd> ; +\tearl:test <%s> ; +\tearl:result [ +\t\ta earl:TestResult ; +\t\tearl:outcome %s ; +\t\tdc:date "%s"^^xsd:dateTime +\t] . +""" % ( + asserter_str, + test, + "earl:passed" if passed else "earl:failed", + datetime.datetime.now().replace(microsecond=0).isoformat(), + ) + + +def load_rdf(filename, base_uri, command_prefix): + """Load an RDF file as dictionaries via serdi (only supports URIs).""" + + rdf_type = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" + model = {} + instances = {} + + cmd = command_prefix + [filename, base_uri] + proc = subprocess.run( + cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, check=True + ) + for line in proc.stdout.splitlines(): + matches = re.match( + r"<([^ ]*)> <([^ ]*)> <([^ ]*)> \.", line.decode("utf-8") + ) + if matches: + s, p, o = (matches.group(1), matches.group(2), matches.group(3)) + if s not in model: + model[s] = {p: [o]} + elif p not in model[s]: + model[s][p] = [o] + else: + model[s][p].append(o) + + if p == rdf_type: + if o not in instances: + instances[o] = set([s]) + else: + instances[o].update([s]) + + return model, instances + + +def lines_equal(from_lines, to_lines, from_filename, to_filename): + """Return true if from_lines equals to_lines, or print a diff.""" + + same = True + for line in difflib.unified_diff( + from_lines, + to_lines, + fromfile=os.path.abspath(from_filename), + tofile=os.path.abspath(to_filename), + ): + sys.stderr.write(line) + same = False + + return same |