summaryrefslogtreecommitdiff
path: root/client/test-uri-utils.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2008-01-23 16:05:59 +0000
committerBastien Nocera <hadess@src.gnome.org>2008-01-23 16:05:59 +0000
commitf070d884ef62efd8f5d1affa3d9c702f2c4557dc (patch)
tree287453eaa4ef9201c127438a6e7e7bf2ac8a7bd3 /client/test-uri-utils.c
parent05419a9d8232e7af27e9fb31de248ebe583a002e (diff)
downloadgvfs-f070d884ef62efd8f5d1affa3d9c702f2c4557dc.tar.gz
Add test program for the functions in gvfsuriutils.c
2008-01-23 Bastien Nocera <hadess@hadess.net> * client/test-uri-utils.c: (main): * client/Makefile.am: Add test program for the functions in gvfsuriutils.c * client/gvfsuriutils.c: (g_vfs_decode_uri): Fix parsing of IPv6 URIs where the host is in brackets svn path=/trunk/; revision=1171
Diffstat (limited to 'client/test-uri-utils.c')
-rw-r--r--client/test-uri-utils.c55
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;
+}
+