diff options
author | David Robillard <d@drobilla.net> | 2018-06-13 17:11:13 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-25 22:12:47 +0100 |
commit | 191392584bebb14bed9bb325f54a035e0072622a (patch) | |
tree | 928b4df5bb0f991fb7b15fb257486ef29fc8ca57 /tests | |
parent | 29f0cefc019e8e93e8ae9bb016c8dc93711173a0 (diff) | |
download | serd-191392584bebb14bed9bb325f54a035e0072622a.tar.gz serd-191392584bebb14bed9bb325f54a035e0072622a.tar.bz2 serd-191392584bebb14bed9bb325f54a035e0072622a.zip |
Remove escape parameter from serd_new_file_uri
Since characters are escaped because they are not valid characters in a URI,
any use of this function without escaping is problematic at best.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/serd_test.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/tests/serd_test.c b/tests/serd_test.c index 857dd89b..fea37af4 100644 --- a/tests/serd_test.c +++ b/tests/serd_test.c @@ -82,7 +82,6 @@ test_sink(void* handle, static int check_file_uri(const char* hostname, const char* path, - bool escape, const char* expected_uri, const char* expected_path) { @@ -90,7 +89,7 @@ check_file_uri(const char* hostname, expected_path = path; } - SerdNode* node = serd_new_file_uri(path, hostname, escape); + SerdNode* node = serd_new_file_uri(path, hostname); const char* node_str = serd_node_get_string(node); char* out_hostname = NULL; char* out_path = serd_file_uri_parse(node_str, &out_hostname); @@ -283,18 +282,16 @@ main(void) // Test file URI escaping and parsing - if (check_file_uri(NULL, "C:/My 100%", true, + if (check_file_uri(NULL, "C:/My 100%", "file:///C:/My%20100%%", NULL) || - check_file_uri("ahost", "C:\\Pointless Space", true, + check_file_uri("ahost", "C:\\Pointless Space", "file://ahost/C:/Pointless%20Space", "C:/Pointless Space") || - check_file_uri(NULL, "/foo/bar", true, + check_file_uri(NULL, "/foo/bar", "file:///foo/bar", NULL) || - check_file_uri("bhost", "/foo/bar", true, + check_file_uri("bhost", "/foo/bar", "file://bhost/foo/bar", NULL) || - check_file_uri(NULL, "a/relative path", false, - "a/relative path", NULL) || - check_file_uri(NULL, "a/relative <path>", true, + check_file_uri(NULL, "a/relative <path>", "a/relative%20%3Cpath%3E", NULL)) { return 1; } |