diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/serd_test.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/serd_test.c b/tests/serd_test.c index e4cf992e..8661af71 100644 --- a/tests/serd_test.c +++ b/tests/serd_test.c @@ -303,34 +303,6 @@ test_strerror(void) } static void -test_uri_to_path(void) -{ - const char* uri = "file:///home/user/foo.ttl"; - assert(!strcmp(serd_uri_to_path(uri), "/home/user/foo.ttl")); - - uri = "file://localhost/home/user/foo.ttl"; - assert(!strcmp(serd_uri_to_path(uri), "/home/user/foo.ttl")); - - uri = "file:illegal/file/uri"; - assert(!serd_uri_to_path(uri)); - - uri = "file:///c:/awful/system"; - assert(!strcmp(serd_uri_to_path(uri), "c:/awful/system")); - - uri = "file:///c:awful/system"; - assert(!strcmp(serd_uri_to_path(uri), "/c:awful/system")); - - uri = "file:///0/1"; - assert(!strcmp(serd_uri_to_path(uri), "/0/1")); - - uri = "C:\\Windows\\Sucks"; - assert(!strcmp(serd_uri_to_path(uri), "C:\\Windows\\Sucks")); - - uri = "C|/Windows/Sucks"; - assert(!strcmp(serd_uri_to_path(uri), "C|/Windows/Sucks")); -} - -static void test_uri_parsing(void) { test_file_uri(NULL, "C:/My 100%", true, @@ -660,7 +632,6 @@ main(void) test_blob_to_node(); test_strlen(); test_strerror(); - test_uri_to_path(); test_uri_parsing(); test_node_equals(); test_node_from_string(); |