aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-06-21 18:19:48 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:59 +0100
commit51f917f8a5179a0e16b32a7f478b4245ea7f2505 (patch)
treef09ce814c6a18ee572f035a3527ae5f2207403f9 /tests
parent20e2f827282213714174e52ce7684e315545176c (diff)
downloadserd-51f917f8a5179a0e16b32a7f478b4245ea7f2505.tar.gz
serd-51f917f8a5179a0e16b32a7f478b4245ea7f2505.tar.bz2
serd-51f917f8a5179a0e16b32a7f478b4245ea7f2505.zip
WIP: Add serd_node_from_syntax() and serd_node_to_syntax()
Diffstat (limited to 'tests')
-rw-r--r--tests/node_syntax_test.c150
-rw-r--r--tests/serd_test.c4
2 files changed, 152 insertions, 2 deletions
diff --git a/tests/node_syntax_test.c b/tests/node_syntax_test.c
new file mode 100644
index 00000000..739a8b94
--- /dev/null
+++ b/tests/node_syntax_test.c
@@ -0,0 +1,150 @@
+/*
+ Copyright 2020 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.
+*/
+
+#undef NDEBUG
+
+#include "serd/serd.h"
+
+#include <assert.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+static bool
+test(const SerdSyntax syntax, SerdNode* const node, const char* const expected)
+{
+ char* const str = serd_node_to_syntax(node, syntax);
+ SerdNode* const copy = serd_node_from_syntax(str, syntax);
+
+ const bool success = !strcmp(str, expected) && serd_node_equals(copy, node);
+
+ serd_node_free(copy);
+ serd_free(str);
+ serd_node_free(node);
+ return success;
+}
+
+static void
+test_common(const SerdSyntax syntax)
+{
+ static const int data[] = {4, 2};
+
+ SerdNode* const datatype = serd_new_uri("http://example.org/Datatype");
+ SerdNode* const num_type = serd_new_uri("http://example.org/Decimal");
+
+ assert(test(syntax, serd_new_string("node"), "\"node\""));
+
+ assert(test(syntax, serd_new_plain_literal("hallo", "de"), "\"hallo\"@de"));
+
+ assert(test(syntax,
+ serd_new_typed_literal("X", datatype),
+ "\"X\"^^<http://example.org/Datatype>"));
+
+ assert(test(syntax, serd_new_blank("blank"), "_:blank"));
+ assert(test(syntax, serd_new_blank("b0"), "_:b0"));
+
+ assert(test(syntax,
+ serd_new_uri("http://example.org/"),
+ "<http://example.org/>"));
+
+ assert(test(syntax,
+ serd_new_decimal(1.25, 4, 2, num_type),
+ "\"1.25\"^^<http://example.org/Decimal>"));
+
+ assert(test(syntax,
+ serd_new_double(1.25),
+ "\"1.25E0\"^^<http://www.w3.org/2001/XMLSchema#double>"));
+
+ assert(test(syntax,
+ serd_new_float(1.25),
+ "\"1.25E0\"^^<http://www.w3.org/2001/XMLSchema#float>"));
+
+ assert(test(syntax,
+ serd_new_integer(1234, num_type),
+ "\"1234\"^^<http://example.org/Decimal>"));
+
+ assert(test(
+ syntax,
+ serd_new_blob(data, sizeof(data), false, NULL),
+ "\"BAAAAAIAAAA=\"^^<http://www.w3.org/2001/XMLSchema#base64Binary>"));
+
+ serd_node_free(num_type);
+ serd_node_free(datatype);
+}
+
+static void
+test_ntriples(void)
+{
+ SerdNode* const datatype = serd_new_uri("http://example.org/Datatype");
+ SerdNode* const num_type = serd_new_uri("http://example.org/Decimal");
+
+ test_common(SERD_NTRIPLES);
+
+ {
+ // No namespace prefixes in NTriples
+ SerdNode* const curie = serd_new_curie("cu:rie");
+ assert(!serd_node_to_syntax(curie, SERD_NTRIPLES));
+ serd_node_free(curie);
+ }
+
+ {
+ // No relative URIs in NTriples
+ SerdNode* const uri = serd_new_uri("rel/uri");
+ assert(!serd_node_to_syntax(uri, SERD_NTRIPLES));
+ serd_node_free(uri);
+ }
+
+ assert(test(SERD_NTRIPLES,
+ serd_new_decimal(1.25, 4, 2, NULL),
+ "\"1.25\"^^<http://www.w3.org/2001/XMLSchema#decimal>"));
+
+ assert(test(SERD_NTRIPLES,
+ serd_new_integer(1234, NULL),
+ "\"1234\"^^<http://www.w3.org/2001/XMLSchema#integer>"));
+
+ assert(test(SERD_NTRIPLES,
+ serd_new_boolean(true),
+ "\"true\"^^<http://www.w3.org/2001/XMLSchema#boolean>"));
+
+ assert(test(SERD_NTRIPLES,
+ serd_new_boolean(false),
+ "\"false\"^^<http://www.w3.org/2001/XMLSchema#boolean>"));
+
+ serd_node_free(num_type);
+ serd_node_free(datatype);
+}
+
+static void
+test_turtle(void)
+{
+ test_common(SERD_TURTLE);
+
+ assert(test(SERD_TURTLE, serd_new_curie("cu:rie"), "cu:rie"));
+ assert(test(SERD_TURTLE, serd_new_uri("rel/uri"), "<rel/uri>"));
+ assert(test(SERD_TURTLE, serd_new_decimal(1.25, 4, 2, NULL), "1.25"));
+ assert(test(SERD_TURTLE, serd_new_integer(1234, NULL), "1234"));
+ assert(test(SERD_TURTLE, serd_new_boolean(true), "true"));
+ assert(test(SERD_TURTLE, serd_new_boolean(false), "false"));
+}
+
+int
+main(void)
+{
+ test_ntriples();
+ test_turtle();
+
+ return 0;
+}
diff --git a/tests/serd_test.c b/tests/serd_test.c
index 9f85136e..2acf24b0 100644
--- a/tests/serd_test.c
+++ b/tests/serd_test.c
@@ -375,7 +375,7 @@ test_node_equals(void)
}
static void
-test_node_from_string(void)
+test_node_from_syntax(void)
{
assert(!serd_new_string(NULL));
@@ -748,7 +748,7 @@ main(void)
test_strerror();
test_uri_parsing();
test_node_equals();
- test_node_from_string();
+ test_node_from_syntax();
test_node_from_substring();
test_simple_node();
test_literal();