aboutsummaryrefslogtreecommitdiffstats
path: root/test/terse
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-10-21 15:38:10 -0400
committerDavid Robillard <d@drobilla.net>2022-01-28 21:57:07 -0500
commitb404312686874e539b617d1f27ccbaa5a82936af (patch)
treec2fdb2cc046e6da53071629cd1750dcc327e6cd9 /test/terse
parentd4aec28ba8ad24d5aef3ee12beeb1b805148eab1 (diff)
downloadserd-b404312686874e539b617d1f27ccbaa5a82936af.tar.gz
serd-b404312686874e539b617d1f27ccbaa5a82936af.tar.bz2
serd-b404312686874e539b617d1f27ccbaa5a82936af.zip
Replace serdi with more fine-grained tools
Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective.
Diffstat (limited to 'test/terse')
-rw-r--r--test/terse/meson.build29
1 files changed, 18 insertions, 11 deletions
diff --git a/test/terse/meson.build b/test/terse/meson.build
index 538a8d16..b0516fcb 100644
--- a/test/terse/meson.build
+++ b/test/terse/meson.build
@@ -1,16 +1,23 @@
base_uri = 'http://drobilla.net/sw/serd/test/terse/'
+args = [
+ '--osyntax', 'turtle',
+ files('manifest.ttl'),
+ base_uri,
+ '--',
+ '-O', 'terse'
+]
+
+test('terse',
+ run_pipe_suite,
+ args: pipe_test_script_args + args,
+ env: test_env,
+ suite: ['suite', 'extra', 'pipe'],
+ timeout: 240)
+
test('terse',
- run_test_suite,
- args: script_args + [
- '--osyntax', 'turtle',
- files('manifest.ttl'),
- base_uri,
- '--',
- '-o',
- 'terse',
- ],
+ run_sort_suite,
+ args: sort_test_script_args + args,
env: test_env,
- is_parallel: false,
- suite: ['suite', 'extra'],
+ suite: ['suite', 'extra', 'sort'],
timeout: 240)