From 439d6ec3d6dfbea74334beace790f500e61c9b7d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 5 May 2023 12:35:46 -0400 Subject: Add statement filter sink and serd-filter tool --- test/test_patterns.py | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100755 test/test_patterns.py (limited to 'test/test_patterns.py') diff --git a/test/test_patterns.py b/test/test_patterns.py new file mode 100755 index 00000000..50571a92 --- /dev/null +++ b/test/test_patterns.py @@ -0,0 +1,83 @@ +#!/usr/bin/env python3 + +# Copyright 2021-2023 David Robillard +# SPDX-License-Identifier: ISC + +"""Test filtering statements inclusively and exclusively.""" + +import serd_test_util as util + +DOCS = { + "ntriples": """ + . + . +""", + "nquads": """ + . + . +""", +} + +args = util.wrapper_args(__doc__) + + +def check_pattern(syntax, pattern, expected_inclusive, expected_exclusive): + """Run a check with an exclusive pattern.""" + + command = [args.tool, "-I", syntax, pattern] + inclusive = util.command_output(args.wrapper, command, DOCS[syntax]) + assert inclusive == expected_inclusive + + command = [args.tool, "-I", syntax, "-v", pattern] + exclusive = util.command_output(args.wrapper, command, DOCS[syntax]) + assert exclusive == expected_exclusive + + +check_pattern( + "ntriples", + "?s .", + " .\n", + " .\n", +) + +check_pattern( + "ntriples", + " ?p .", + " .\n", + " .\n", +) + +check_pattern( + "ntriples", + " ?o .", + " .\n", + " .\n", +) + +check_pattern( + "nquads", + "?s .", + " .\n", + " .\n", +) + +check_pattern( + "nquads", + " ?p .", + " .\n", + " .\n", +) + +check_pattern( + "nquads", + " ?o .", + " .\n", + " .\n", +) + +check_pattern( + "nquads", + " ?g .", + " .\n", + " .\n", +) -- cgit v1.2.1