diff options
Diffstat (limited to 'client/test-uri-utils.c')
-rw-r--r-- | client/test-uri-utils.c | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/client/test-uri-utils.c b/client/test-uri-utils.c new file mode 100644 index 00000000..ce7b2524 --- /dev/null +++ b/client/test-uri-utils.c @@ -0,0 +1,55 @@ + +#include <string.h> + +#include "gvfsuriutils.h" + + +typedef struct { + const char *uri; + const char *expected_host; + guint expected_port; +} TestURIs; + +static TestURIs uris[] = { + { "https://[2001:0db8:85a3:08d3:1319:8a2e:0370:7344]:443/", "[2001:0db8:85a3:08d3:1319:8a2e:0370:7344]", 443 }, + { "http://test:443/", "test", 443 }, + { "http://test/", "test", -1 } +}; + +int main (int argc, char **argv) +{ + guint i; + + for (i = 0; i < G_N_ELEMENTS (uris); i++) { + GDecodedUri *decoded; + char *encoded; + + decoded = g_vfs_decode_uri (uris[i].uri); + if (decoded == NULL) { + g_warning ("Failed to parse \"%s\"", uris[i].uri); + return 1; + } + if (decoded->host == NULL || strcmp (decoded->host, uris[i].expected_host) != 0) { + g_vfs_decoded_uri_free (decoded); + g_warning ("Wrong host for \"%s\"", uris[i].uri); + return 1; + } + if (decoded->port != uris[i].expected_port) { + g_vfs_decoded_uri_free (decoded); + g_warning ("Wrong port for \"%s\"", uris[i].uri); + return 1; + } + encoded = g_vfs_encode_uri (decoded, TRUE); + if (encoded == NULL || strcmp (encoded, uris[i].uri) != 0) { + g_vfs_decoded_uri_free (decoded); + g_free (encoded); + g_warning ("Failed to re-encode \"%s\"", uris[i].uri); + return 1; + } + g_free (encoded); + g_vfs_decoded_uri_free (decoded); + } + + return 0; +} + |