1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_DISABLE_ASSERT
41 char *expected_result;
42 GConvertError expected_error; /* If failed */
47 { "/etc", NULL, "file:///etc"},
48 { "/etc", "", "file:///etc"},
49 { "/etc", "otherhost", "file://otherhost/etc"},
51 { "/etc", "localhost", "file:///etc"},
52 { "c:\\windows", NULL, "file:///c:/windows"},
53 { "c:\\windows", "localhost", "file:///c:/windows"},
54 { "c:\\windows", "otherhost", "file://otherhost/c:/windows"},
55 { "\\\\server\\share\\dir", NULL, "file:////server/share/dir"},
56 { "\\\\server\\share\\dir", "localhost", "file:////server/share/dir"},
58 { "/etc", "localhost", "file://localhost/etc"},
59 { "c:\\windows", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH}, /* it's important to get this error on Unix */
60 { "c:\\windows", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
61 { "c:\\windows", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
63 { "etc", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
64 #ifndef G_PLATFORM_WIN32
65 { "/etc/\xE5\xE4\xF6", NULL, "file:///etc/%E5%E4%F6" },
66 { "/etc/\xC3\xB6\xC3\xA4\xC3\xA5", NULL, "file:///etc/%C3%B6%C3%A4%C3%A5"},
68 { "/etc", "\xC3\xB6\xC3\xA4\xC3\xA5", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
69 { "/etc", "\xE5\xE4\xF6", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
70 { "/etc/file with #%", NULL, "file:///etc/file%20with%20%23%25"},
71 { "", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
72 { "", "", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
73 { "", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
74 { "", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
75 { "/0123456789", NULL, "file:///0123456789"},
76 { "/ABCDEFGHIJKLMNOPQRSTUVWXYZ", NULL, "file:///ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
77 { "/abcdefghijklmnopqrstuvwxyz", NULL, "file:///abcdefghijklmnopqrstuvwxyz"},
78 { "/-_.!~*'()", NULL, "file:///-_.!~*'()"},
80 /* As '\\' is a path separator on Win32, it gets turned into '/' in the URI */
81 { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B/%5D%5E%60%7B%7C%7D%7F"},
83 /* On Unix, '\\' is a normal character in the file name */
84 { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B%5C%5D%5E%60%7B%7C%7D%7F"},
86 { "/;@+$,", NULL, "file:///%3B@+$,"},
87 /* This and some of the following are of course as such illegal file names on Windows,
88 * and would not occur in real life.
90 { "/:", NULL, "file:///:"},
91 { "/?&=", NULL, "file:///%3F&="},
92 { "/", "0123456789-", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
93 { "/", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/"},
94 { "/", "abcdefghijklmnopqrstuvwxyz", "file://abcdefghijklmnopqrstuvwxyz/"},
95 { "/", "_.!~*'()", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
96 { "/", "\"#%<>[\\]^`{|}\x7F", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
97 { "/", ";?&=+$,", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
98 { "/", "/", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
99 { "/", "@:", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
100 { "/", "\x80\xFF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
101 { "/", "\xC3\x80\xC3\xBF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
108 char *expected_filename;
109 char *expected_hostname;
110 GConvertError expected_error; /* If failed */
115 { "file:///etc", "/etc"},
116 { "file:/etc", "/etc"},
118 /* On Win32 we don't return "localhost" hostames, just in case
119 * it isn't recognized anyway.
121 { "file://localhost/etc", "/etc", NULL},
122 { "file://localhost/etc/%23%25%20file", "/etc/#% file", NULL},
124 { "file://localhost/etc", "/etc", "localhost"},
125 { "file://localhost/etc/%23%25%20file", "/etc/#% file", "localhost"},
127 { "file://otherhost/etc", "/etc", "otherhost"},
128 { "file://otherhost/etc/%23%25%20file", "/etc/#% file", "otherhost"},
129 { "file://%C3%B6%C3%A4%C3%A5/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
130 { "file:////etc/%C3%B6%C3%C3%C3%A5", "//etc/\xc3\xb6\xc3\xc3\xc3\xa5", NULL},
131 { "file://localhost/\xE5\xE4\xF6", "/\xe5\xe4\xf6", "localhost"},
132 { "file://\xE5\xE4\xF6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
133 { "file://localhost/%E5%E4%F6", "/\xe5\xe4\xf6", "localhost"},
134 { "file://%E5%E4%F6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
135 { "file:///some/file#bad", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
136 { "file://some", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
137 { "", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
138 { "file:test", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
139 { "http://www.yahoo.com/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
140 { "file:////etc", "//etc"},
141 { "file://///etc", "///etc"},
143 /* URIs with backslashes come from some nonstandard application, but accept them anyhow */
144 { "file:///c:\\foo", "c:\\foo"},
145 { "file:///c:/foo\\bar", "c:\\foo\\bar"},
146 /* Accept also the old Netscape drive-letter-and-vertical bar convention */
147 { "file:///c|/foo", "c:\\foo"},
148 { "file:////server/share/dir", "\\\\server\\share\\dir"},
149 { "file://localhost//server/share/foo", "\\\\server\\share\\foo"},
150 { "file://otherhost//server/share/foo", "\\\\server\\share\\foo", "otherhost"},
152 { "file:///c:\\foo", "/c:\\foo"},
153 { "file:///c:/foo", "/c:/foo"},
154 { "file:////c:/foo", "//c:/foo"},
156 { "file://0123456789/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
157 { "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/", "/", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
158 { "file://abcdefghijklmnopqrstuvwxyz/", "/", "abcdefghijklmnopqrstuvwxyz"},
159 { "file://-_.!~*'()/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
160 { "file://\"<>[\\]^`{|}\x7F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
161 { "file://;?&=+$,/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
162 { "file://%C3%80%C3%BF/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
163 { "file://@/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
164 { "file://:/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
165 { "file://#/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
166 { "file://%23/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
167 { "file://%2F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
171 static gboolean any_failed = FALSE;
174 run_to_uri_tests (void)
180 for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
183 res = g_filename_to_uri (to_uri_tests[i].filename,
184 to_uri_tests[i].hostname,
187 if (to_uri_tests[i].expected_result == NULL)
191 g_print ("\ng_filename_to_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
198 g_print ("\ng_filename_to_uri() test %d failed, returned NULL, but didn't set error\n", i);
201 else if (error->domain != G_CONVERT_ERROR)
203 g_print ("\ng_filename_to_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
206 else if (error->code != to_uri_tests[i].expected_error)
208 g_print ("\ng_filename_to_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
209 i, error->code, to_uri_tests[i].expected_error);
214 else if (res == NULL || strcmp (res, to_uri_tests[i].expected_result) != 0)
216 g_print ("\ng_filename_to_uri() test %d failed, expected result: %s, actual result: %s\n",
217 i, to_uri_tests[i].expected_result, (res) ? res : "NULL");
219 g_print ("Error message: %s\n", error->message);
223 /* Give some output */
229 run_from_uri_tests (void)
236 for (i = 0; i < G_N_ELEMENTS (from_uri_tests); i++)
239 res = g_filename_from_uri (from_uri_tests[i].uri,
243 if (from_uri_tests[i].expected_filename == NULL)
247 g_print ("\ng_filename_from_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
254 g_print ("\ng_filename_from_uri() test %d failed, returned NULL, but didn't set error\n", i);
257 else if (error->domain != G_CONVERT_ERROR)
259 g_print ("\ng_filename_from_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
262 else if (error->code != from_uri_tests[i].expected_error)
264 g_print ("\ng_filename_from_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
265 i, error->code, from_uri_tests[i].expected_error);
275 p = from_uri_tests[i].expected_filename = g_strdup (from_uri_tests[i].expected_filename);
276 while ((slash = strchr (p, '/')) != NULL)
282 if (res == NULL || strcmp (res, from_uri_tests[i].expected_filename) != 0)
284 g_print ("\ng_filename_from_uri() test %d failed, expected result: %s, actual result: %s\n",
285 i, from_uri_tests[i].expected_filename, (res) ? res : "NULL");
289 if (from_uri_tests[i].expected_hostname == NULL)
291 if (hostname != NULL)
293 g_print ("\ng_filename_from_uri() test %d failed, expected no hostname, got: %s\n",
298 else if (hostname == NULL ||
299 strcmp (hostname, from_uri_tests[i].expected_hostname) != 0)
301 g_print ("\ng_filename_from_uri() test %d failed, expected hostname: %s, actual result: %s\n",
302 i, from_uri_tests[i].expected_hostname, (hostname) ? hostname : "NULL");
307 /* Give some output */
314 safe_strcmp (const gchar *a, const gchar *b)
316 return strcmp (a ? a : "", b ? b : "");
320 run_roundtrip_tests (void)
323 gchar *uri, *hostname, *res;
326 for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
328 if (to_uri_tests[i].expected_error != 0)
332 uri = g_filename_to_uri (to_uri_tests[i].filename,
333 to_uri_tests[i].hostname,
338 g_print ("g_filename_to_uri failed unexpectedly: %s\n",
345 res = g_filename_from_uri (uri, &hostname, &error);
348 g_print ("g_filename_from_uri failed unexpectedly: %s\n",
354 if (safe_strcmp (to_uri_tests[i].filename, res))
356 g_message ("roundtrip test %d failed, filename modified: "
357 " expected \"%s\", but got \"%s\"\n",
358 i, to_uri_tests[i].filename, res);
362 if (safe_strcmp (to_uri_tests[i].hostname, hostname))
364 g_print ("roundtrip test %d failed, hostname modified: "
365 " expected \"%s\", but got \"%s\"\n",
366 i, to_uri_tests[i].hostname, hostname);
370 /* Give some output */
380 # ifdef HAVE_UNSETENV
381 unsetenv ("G_BROKEN_FILENAMES");
383 /* putenv with no = isn't standard, but works to unset the variable
386 putenv ("G_BROKEN_FILENAMES");
391 run_from_uri_tests ();
392 run_roundtrip_tests ();
394 return any_failed ? 1 : 0;