aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-03 19:47:07 +0200
committerDavid Robillard <d@drobilla.net>2019-04-13 19:15:32 +0200
commit63edb5d1665e7b7a9a4750c063d27a8ae7d75a77 (patch)
tree77867d26bffa81fa64f8c6b97798134b0327b4e9 /tests
parent6938e50cc21b5acdfbf526e221ac4823f17dba3a (diff)
downloadserd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.tar.gz
serd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.tar.bz2
serd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.zip
Make statement sink take a statement rather than nodes
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement.
Diffstat (limited to 'tests')
-rw-r--r--tests/serd_test.c31
1 files changed, 12 insertions, 19 deletions
diff --git a/tests/serd_test.c b/tests/serd_test.c
index d9fc1388..2f932f51 100644
--- a/tests/serd_test.c
+++ b/tests/serd_test.c
@@ -68,21 +68,16 @@ typedef struct {
} ReaderTest;
static SerdStatus
-test_sink(void* handle,
- SerdStatementFlags flags,
- const SerdNode* graph,
- const SerdNode* subject,
- const SerdNode* predicate,
- const SerdNode* object)
+test_sink(void* handle,
+ SerdStatementFlags flags,
+ const SerdStatement* statement)
{
(void)flags;
- (void)subject;
- (void)predicate;
- (void)object;
+ (void)statement;
ReaderTest* rt = (ReaderTest*)handle;
++rt->n_statements;
- rt->graph = graph;
+ rt->graph = serd_statement_get_graph(statement);
return SERD_SUCCESS;
}
@@ -502,9 +497,8 @@ main(void)
{ s, p, NULL },
{ NULL, NULL, NULL } };
for (unsigned i = 0; i < sizeof(junk) / (sizeof(SerdNode*) * 5); ++i) {
- assert(iface->statement(
- iface->handle, 0, NULL,
- junk[i][0], junk[i][1], junk[i][2]));
+ assert(serd_sink_write(
+ iface, 0, junk[i][0], junk[i][1], junk[i][2], 0));
}
SerdNode* urn_Type = serd_node_new_uri("urn:Type");
@@ -522,24 +516,23 @@ main(void)
{ s, p, o },
{ s, p, o } };
for (unsigned i = 0; i < sizeof(good) / (sizeof(SerdNode*) * 5); ++i) {
- assert(!iface->statement(
- iface->handle, 0, NULL, good[i][0], good[i][1], good[i][2]));
+ assert(!serd_sink_write(
+ iface, 0, good[i][0], good[i][1], good[i][2], 0));
}
// Write statements with bad UTF-8 (should be replaced)
const char bad_str[] = { (char)0xFF, (char)0x90, 'h', 'i', 0 };
SerdNode* bad_lit = serd_node_new_string(bad_str);
SerdNode* bad_uri = serd_node_new_uri(bad_str);
- assert(!iface->statement(iface->handle, 0, NULL, s, p, bad_lit));
- assert(!iface->statement(iface->handle, 0, NULL, s, p, bad_uri));
-
+ assert(!serd_sink_write(iface, 0, s, p, bad_lit, 0));
+ assert(!serd_sink_write(iface, 0, s, p, bad_uri, 0));
serd_node_free(bad_uri);
serd_node_free(bad_lit);
// Write 1 valid statement
serd_node_free(o);
o = serd_node_new_string("hello");
- assert(!iface->statement(iface->handle, 0, NULL, s, p, o));
+ assert(!serd_sink_write(iface, 0, s, p, o, 0));
serd_writer_free(writer);
serd_node_free(lit);