aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-10 14:54:51 +0200
committerDavid Robillard <d@drobilla.net>2018-05-27 18:21:57 +0200
commitfe86b69752e84f25ca211e97122601ae66e3b044 (patch)
tree68b592bea6c5b5430cdd6c64167684366c619224 /tests
parent56fcd25f5258ecc31cca2e728ab0913cec99c057 (diff)
downloadserd-fe86b69752e84f25ca211e97122601ae66e3b044.tar.gz
serd-fe86b69752e84f25ca211e97122601ae66e3b044.tar.bz2
serd-fe86b69752e84f25ca211e97122601ae66e3b044.zip
Add test for reading chunks
Diffstat (limited to 'tests')
-rw-r--r--tests/read_chunk_test.c108
1 files changed, 108 insertions, 0 deletions
diff --git a/tests/read_chunk_test.c b/tests/read_chunk_test.c
new file mode 100644
index 00000000..aadbe2c8
--- /dev/null
+++ b/tests/read_chunk_test.c
@@ -0,0 +1,108 @@
+/*
+ Copyright 2018 David Robillard <http://drobilla.net>
+
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+*/
+
+#include "serd/serd.h"
+
+#include "test_utils.h"
+
+static size_t n_base = 0;
+static size_t n_prefix = 0;
+static size_t n_statement = 0;
+static size_t n_end = 0;
+
+static SerdStatus
+on_base(void* handle, const SerdNode* uri)
+{
+ ++n_base;
+ return SERD_SUCCESS;
+}
+
+static SerdStatus
+on_prefix(void* handle, const SerdNode* name, const SerdNode* uri)
+{
+ ++n_prefix;
+ return SERD_SUCCESS;
+}
+
+static SerdStatus
+on_statement(void* handle,
+ SerdStatementFlags flags,
+ const SerdNode* graph,
+ const SerdNode* subject,
+ const SerdNode* predicate,
+ const SerdNode* object)
+{
+ ++n_statement;
+ return SERD_SUCCESS;
+}
+
+static SerdStatus
+on_end(void* handle, const SerdNode* node)
+{
+ ++n_end;
+ return SERD_SUCCESS;
+}
+
+int
+main(int argc, char** argv)
+{
+ SerdReader* reader = serd_reader_new(SERD_TURTLE,
+ NULL,
+ NULL,
+ on_base,
+ on_prefix,
+ on_statement,
+ on_end);
+ if (!reader) {
+ FAIL("Failed to create reader\n");
+ }
+
+ if (serd_reader_start_string(reader,
+ "@prefix eg: <http://example.org/> .\n"
+ "@base <http://example.org/base> .\n"
+ "eg:s1 eg:p1 eg:o1 ;\n"
+ " eg:p2 eg:o2 ,\n"
+ " eg:o3 .\n"
+ "eg:s2 eg:p1 eg:o1 ;\n"
+ " eg:p2 eg:o2 .\n"
+ "eg:s3 eg:p1 eg:o1 .\n"
+ "eg:s4 eg:p1 [ eg:p3 eg:o1 ] .\n")) {
+ FAIL("Failed to start string read\n");
+ }
+
+ if (serd_reader_read_chunk(reader) || n_prefix != 1) {
+ FAILF("%zu prefixes after chunk, expected 1\n", n_prefix);
+ } else if (serd_reader_read_chunk(reader) || n_base != 1) {
+ FAILF("%zu bases after chunk, expected 1\n", n_base);
+ } else if (serd_reader_read_chunk(reader) || n_statement != 3) {
+ FAILF("%zu statements after chunk, expected 3\n", n_statement);
+ } else if (serd_reader_read_chunk(reader) || n_statement != 5) {
+ FAILF("%zu statements after chunk, expected 5\n", n_statement);
+ } else if (serd_reader_read_chunk(reader) || n_statement != 6) {
+ FAILF("%zu statements after chunk, expected 6\n", n_statement);
+ } else if (serd_reader_read_chunk(reader) || n_statement != 8) {
+ FAILF("%zu statements after chunk, expected 6\n", n_statement);
+ } else if (serd_reader_read_chunk(reader) || n_end != 1) {
+ FAILF("Expected end after %zu statements\n", n_statement);
+ } else if (serd_reader_read_chunk(reader) != SERD_FAILURE) {
+ FAIL("Successfully read past end of input\n");
+ } else if (serd_reader_read_chunk(reader) != SERD_FAILURE) {
+ FAIL("Successfully read past end of input\n");
+ }
+
+ serd_reader_free(reader);
+ return 0;
+}