urlmon/tests: Added pluggable protocol tests for CoInternetGetSecurityUrlEx.
[wine.git] / dlls / urlmon / tests / uri.c
blob5bbd0513e61bcea04db3b70afcabd79db460c2f0
1 /*
2 * UrlMon IUri tests
4 * Copyright 2010 Thomas Mullaly
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <wine/test.h>
22 #include <stdarg.h>
23 #include <stddef.h>
25 #define COBJMACROS
26 #define CONST_VTABLE
28 #include "windef.h"
29 #include "winbase.h"
30 #include "urlmon.h"
31 #include "shlwapi.h"
32 #include "wininet.h"
33 #include "strsafe.h"
35 #define URI_STR_PROPERTY_COUNT Uri_PROPERTY_STRING_LAST+1
36 #define URI_DWORD_PROPERTY_COUNT (Uri_PROPERTY_DWORD_LAST - Uri_PROPERTY_DWORD_START)+1
37 #define URI_BUILDER_STR_PROPERTY_COUNT 7
39 #define DEFINE_EXPECT(func) \
40 static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
42 #define SET_EXPECT(func) \
43 expect_ ## func = TRUE
45 #define CHECK_EXPECT(func) \
46 do { \
47 ok(expect_ ##func, "unexpected call " #func "\n"); \
48 expect_ ## func = FALSE; \
49 called_ ## func = TRUE; \
50 }while(0)
52 #define CHECK_EXPECT2(func) \
53 do { \
54 ok(expect_ ##func, "unexpected call " #func "\n"); \
55 called_ ## func = TRUE; \
56 }while(0)
58 #define CHECK_CALLED(func) \
59 do { \
60 ok(called_ ## func, "expected " #func "\n"); \
61 expect_ ## func = called_ ## func = FALSE; \
62 }while(0)
64 DEFINE_EXPECT(CombineUrl);
65 DEFINE_EXPECT(ParseUrl);
67 static HRESULT (WINAPI *pCreateUri)(LPCWSTR, DWORD, DWORD_PTR, IUri**);
68 static HRESULT (WINAPI *pCreateUriWithFragment)(LPCWSTR, LPCWSTR, DWORD, DWORD_PTR, IUri**);
69 static HRESULT (WINAPI *pCreateIUriBuilder)(IUri*, DWORD, DWORD_PTR, IUriBuilder**);
70 static HRESULT (WINAPI *pCoInternetCombineIUri)(IUri*,IUri*,DWORD,IUri**,DWORD_PTR);
71 static HRESULT (WINAPI *pCoInternetGetSession)(DWORD,IInternetSession**,DWORD);
72 static HRESULT (WINAPI *pCoInternetCombineUrlEx)(IUri*,LPCWSTR,DWORD,IUri**,DWORD_PTR);
73 static HRESULT (WINAPI *pCoInternetParseIUri)(IUri*,PARSEACTION,DWORD,LPWSTR,DWORD,DWORD*,DWORD_PTR);
75 static const WCHAR http_urlW[] = { 'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q',
76 '.','o','r','g','/',0};
77 static const WCHAR http_url_fragW[] = { 'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q',
78 '.','o','r','g','/','#','F','r','a','g',0};
80 static const WCHAR combine_baseW[] = {'w','i','n','e','t','e','s','t',':','?','t',
81 'e','s','t','i','n','g',0};
82 static const WCHAR combine_relativeW[] = {'?','t','e','s','t',0};
83 static const WCHAR combine_resultW[] = {'z','i','p',':','t','e','s','t',0};
85 static const WCHAR winetestW[] = {'w','i','n','e','t','e','s','t',0};
87 static const WCHAR parse_urlW[] = {'w','i','n','e','t','e','s','t',':','t','e','s','t',0};
88 static const WCHAR parse_resultW[] = {'z','i','p',':','t','e','s','t',0};
90 static PARSEACTION parse_action;
91 static DWORD parse_flags;
93 typedef struct _uri_create_flag_test {
94 DWORD flags;
95 HRESULT expected;
96 } uri_create_flag_test;
98 static const uri_create_flag_test invalid_flag_tests[] = {
99 /* Set of invalid flag combinations to test for. */
100 {Uri_CREATE_DECODE_EXTRA_INFO | Uri_CREATE_NO_DECODE_EXTRA_INFO, E_INVALIDARG},
101 {Uri_CREATE_CANONICALIZE | Uri_CREATE_NO_CANONICALIZE, E_INVALIDARG},
102 {Uri_CREATE_CRACK_UNKNOWN_SCHEMES | Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES, E_INVALIDARG},
103 {Uri_CREATE_PRE_PROCESS_HTML_URI | Uri_CREATE_NO_PRE_PROCESS_HTML_URI, E_INVALIDARG},
104 {Uri_CREATE_IE_SETTINGS | Uri_CREATE_NO_IE_SETTINGS, E_INVALIDARG}
107 typedef struct _uri_str_property {
108 const char* value;
109 HRESULT expected;
110 BOOL todo;
111 const char* broken_value;
112 } uri_str_property;
114 typedef struct _uri_dword_property {
115 DWORD value;
116 HRESULT expected;
117 BOOL todo;
118 } uri_dword_property;
120 typedef struct _uri_properties {
121 const char* uri;
122 DWORD create_flags;
123 HRESULT create_expected;
124 BOOL create_todo;
126 uri_str_property str_props[URI_STR_PROPERTY_COUNT];
127 uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT];
128 } uri_properties;
130 static const uri_properties uri_tests[] = {
131 { "http://www.winehq.org/tests/../tests/../..", 0, S_OK, FALSE,
133 {"http://www.winehq.org/",S_OK,FALSE}, /* ABSOLUTE_URI */
134 {"www.winehq.org",S_OK,FALSE}, /* AUTHORITY */
135 {"http://www.winehq.org/",S_OK,FALSE}, /* DISPLAY_URI */
136 {"winehq.org",S_OK,FALSE}, /* DOMAIN */
137 {"",S_FALSE,FALSE}, /* EXTENSION */
138 {"",S_FALSE,FALSE}, /* FRAGMENT */
139 {"www.winehq.org",S_OK,FALSE}, /* HOST */
140 {"",S_FALSE,FALSE}, /* PASSWORD */
141 {"/",S_OK,FALSE}, /* PATH */
142 {"/",S_OK,FALSE}, /* PATH_AND_QUERY */
143 {"",S_FALSE,FALSE}, /* QUERY */
144 {"http://www.winehq.org/tests/../tests/../..",S_OK,FALSE}, /* RAW_URI */
145 {"http",S_OK,FALSE}, /* SCHEME_NAME */
146 {"",S_FALSE,FALSE}, /* USER_INFO */
147 {"",S_FALSE,FALSE} /* USER_NAME */
150 {Uri_HOST_DNS,S_OK,FALSE}, /* HOST_TYPE */
151 {80,S_OK,FALSE}, /* PORT */
152 {URL_SCHEME_HTTP,S_OK,FALSE}, /* SCHEME */
153 {URLZONE_INVALID,E_NOTIMPL,FALSE} /* ZONE */
156 { "http://winehq.org/tests/.././tests", 0, S_OK, FALSE,
158 {"http://winehq.org/tests",S_OK,FALSE},
159 {"winehq.org",S_OK,FALSE},
160 {"http://winehq.org/tests",S_OK,FALSE},
161 {"winehq.org",S_OK,FALSE},
162 {"",S_FALSE,FALSE},
163 {"",S_FALSE,FALSE},
164 {"winehq.org",S_OK,FALSE},
165 {"",S_FALSE,FALSE},
166 {"/tests",S_OK,FALSE},
167 {"/tests",S_OK,FALSE},
168 {"",S_FALSE,FALSE},
169 {"http://winehq.org/tests/.././tests",S_OK,FALSE},
170 {"http",S_OK,FALSE},
171 {"",S_FALSE,FALSE},
172 {"",S_FALSE,FALSE}
175 {Uri_HOST_DNS,S_OK,FALSE},
176 {80,S_OK,FALSE},
177 {URL_SCHEME_HTTP,S_OK,FALSE},
178 {URLZONE_INVALID,E_NOTIMPL,FALSE}
181 { "HtTp://www.winehq.org/tests/..?query=x&return=y", 0, S_OK, FALSE,
183 {"http://www.winehq.org/?query=x&return=y",S_OK,FALSE},
184 {"www.winehq.org",S_OK,FALSE},
185 {"http://www.winehq.org/?query=x&return=y",S_OK,FALSE},
186 {"winehq.org",S_OK,FALSE},
187 {"",S_FALSE,FALSE},
188 {"",S_FALSE,FALSE},
189 {"www.winehq.org",S_OK,FALSE},
190 {"",S_FALSE,FALSE},
191 {"/",S_OK,FALSE},
192 {"/?query=x&return=y",S_OK,FALSE},
193 {"?query=x&return=y",S_OK,FALSE},
194 {"HtTp://www.winehq.org/tests/..?query=x&return=y",S_OK,FALSE},
195 {"http",S_OK,FALSE},
196 {"",S_FALSE,FALSE},
197 {"",S_FALSE,FALSE}
200 {Uri_HOST_DNS,S_OK,FALSE},
201 {80,S_OK,FALSE},
202 {URL_SCHEME_HTTP,S_OK,FALSE},
203 {URLZONE_INVALID,E_NOTIMPL,FALSE},
206 { "hTTp://us%45r%3Ainfo@examp%4CE.com:80/path/a/b/./c/../%2E%2E/Forbidden'<|> Characters", 0, S_OK, FALSE,
208 {"http://usEr%3Ainfo@example.com/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
209 {"usEr%3Ainfo@example.com",S_OK,FALSE},
210 {"http://example.com/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
211 {"example.com",S_OK,FALSE},
212 {"",S_FALSE,FALSE},
213 {"",S_FALSE,FALSE},
214 {"example.com",S_OK,FALSE},
215 {"",S_FALSE,FALSE},
216 {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
217 {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
218 {"",S_FALSE,FALSE},
219 {"hTTp://us%45r%3Ainfo@examp%4CE.com:80/path/a/b/./c/../%2E%2E/Forbidden'<|> Characters",S_OK,FALSE},
220 {"http",S_OK,FALSE},
221 {"usEr%3Ainfo",S_OK,FALSE},
222 {"usEr%3Ainfo",S_OK,FALSE}
225 {Uri_HOST_DNS,S_OK,FALSE},
226 {80,S_OK,FALSE},
227 {URL_SCHEME_HTTP,S_OK,FALSE},
228 {URLZONE_INVALID,E_NOTIMPL,FALSE},
231 { "ftp://winepass:wine@ftp.winehq.org:9999/dir/foo bar.txt", 0, S_OK, FALSE,
233 {"ftp://winepass:wine@ftp.winehq.org:9999/dir/foo%20bar.txt",S_OK,FALSE},
234 {"winepass:wine@ftp.winehq.org:9999",S_OK,FALSE},
235 {"ftp://ftp.winehq.org:9999/dir/foo%20bar.txt",S_OK,FALSE},
236 {"winehq.org",S_OK,FALSE},
237 {".txt",S_OK,FALSE},
238 {"",S_FALSE,FALSE},
239 {"ftp.winehq.org",S_OK,FALSE},
240 {"wine",S_OK,FALSE},
241 {"/dir/foo%20bar.txt",S_OK,FALSE},
242 {"/dir/foo%20bar.txt",S_OK,FALSE},
243 {"",S_FALSE,FALSE},
244 {"ftp://winepass:wine@ftp.winehq.org:9999/dir/foo bar.txt",S_OK,FALSE},
245 {"ftp",S_OK,FALSE},
246 {"winepass:wine",S_OK,FALSE},
247 {"winepass",S_OK,FALSE}
250 {Uri_HOST_DNS,S_OK,FALSE},
251 {9999,S_OK,FALSE},
252 {URL_SCHEME_FTP,S_OK,FALSE},
253 {URLZONE_INVALID,E_NOTIMPL,FALSE}
256 { "file://c:\\tests\\../tests/foo%20bar.mp3", 0, S_OK, FALSE,
258 {"file:///c:/tests/foo%2520bar.mp3",S_OK,FALSE},
259 {"",S_FALSE,FALSE},
260 {"file:///c:/tests/foo%2520bar.mp3",S_OK,FALSE},
261 {"",S_FALSE,FALSE},
262 {".mp3",S_OK,FALSE},
263 {"",S_FALSE,FALSE},
264 {"",S_FALSE,FALSE},
265 {"",S_FALSE,FALSE},
266 {"/c:/tests/foo%2520bar.mp3",S_OK,FALSE},
267 {"/c:/tests/foo%2520bar.mp3",S_OK,FALSE},
268 {"",S_FALSE,FALSE},
269 {"file://c:\\tests\\../tests/foo%20bar.mp3",S_OK,FALSE},
270 {"file",S_OK,FALSE},
271 {"",S_FALSE,FALSE},
272 {"",S_FALSE,FALSE}
275 {Uri_HOST_UNKNOWN,S_OK,FALSE},
276 {0,S_FALSE,FALSE},
277 {URL_SCHEME_FILE,S_OK,FALSE},
278 {URLZONE_INVALID,E_NOTIMPL,FALSE}
281 { "FILE://localhost/test dir\\../tests/test%20file.README.txt", 0, S_OK, FALSE,
283 {"file:///tests/test%20file.README.txt",S_OK,FALSE},
284 {"",S_FALSE,FALSE},
285 {"file:///tests/test%20file.README.txt",S_OK,FALSE},
286 {"",S_FALSE,FALSE},
287 {".txt",S_OK,FALSE},
288 {"",S_FALSE,FALSE},
289 {"",S_FALSE,FALSE},
290 {"",S_FALSE,FALSE},
291 {"/tests/test%20file.README.txt",S_OK,FALSE},
292 {"/tests/test%20file.README.txt",S_OK,FALSE},
293 {"",S_FALSE,FALSE},
294 {"FILE://localhost/test dir\\../tests/test%20file.README.txt",S_OK,FALSE},
295 {"file",S_OK,FALSE},
296 {"",S_FALSE,FALSE},
297 {"",S_FALSE,FALSE}
300 {Uri_HOST_UNKNOWN,S_OK,FALSE},
301 {0,S_FALSE,FALSE},
302 {URL_SCHEME_FILE,S_OK,FALSE},
303 {URLZONE_INVALID,E_NOTIMPL,FALSE}
306 { "urn:nothing:should:happen here", 0, S_OK, FALSE,
308 {"urn:nothing:should:happen here",S_OK,FALSE},
309 {"",S_FALSE,FALSE},
310 {"urn:nothing:should:happen here",S_OK,FALSE},
311 {"",S_FALSE,FALSE},
312 {"",S_FALSE,FALSE},
313 {"",S_FALSE,FALSE},
314 {"",S_FALSE,FALSE},
315 {"",S_FALSE,FALSE},
316 {"nothing:should:happen here",S_OK,FALSE},
317 {"nothing:should:happen here",S_OK,FALSE},
318 {"",S_FALSE,FALSE},
319 {"urn:nothing:should:happen here",S_OK,FALSE},
320 {"urn",S_OK,FALSE},
321 {"",S_FALSE,FALSE},
322 {"",S_FALSE,FALSE}
325 {Uri_HOST_UNKNOWN,S_OK,FALSE},
326 {0,S_FALSE,FALSE},
327 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
328 {URLZONE_INVALID,E_NOTIMPL,FALSE}
331 { "http://127.0.0.1/tests/../test dir/./test.txt", 0, S_OK, FALSE,
333 {"http://127.0.0.1/test%20dir/test.txt",S_OK,FALSE},
334 {"127.0.0.1",S_OK,FALSE},
335 {"http://127.0.0.1/test%20dir/test.txt",S_OK,FALSE},
336 {"",S_FALSE,FALSE},
337 {".txt",S_OK,FALSE},
338 {"",S_FALSE,FALSE},
339 {"127.0.0.1",S_OK,FALSE},
340 {"",S_FALSE,FALSE},
341 {"/test%20dir/test.txt",S_OK,FALSE},
342 {"/test%20dir/test.txt",S_OK,FALSE},
343 {"",S_FALSE,FALSE},
344 {"http://127.0.0.1/tests/../test dir/./test.txt",S_OK,FALSE},
345 {"http",S_OK,FALSE},
346 {"",S_FALSE,FALSE},
347 {"",S_FALSE,FALSE}
350 {Uri_HOST_IPV4,S_OK,FALSE},
351 {80,S_OK,FALSE},
352 {URL_SCHEME_HTTP,S_OK,FALSE},
353 {URLZONE_INVALID,E_NOTIMPL,FALSE}
356 { "http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]", 0, S_OK, FALSE,
358 {"http://[fedc:ba98:7654:3210:fedc:ba98:7654:3210]/",S_OK,FALSE},
359 {"[fedc:ba98:7654:3210:fedc:ba98:7654:3210]",S_OK,FALSE},
360 {"http://[fedc:ba98:7654:3210:fedc:ba98:7654:3210]/",S_OK,FALSE},
361 {"",S_FALSE,FALSE},
362 {"",S_FALSE,FALSE},
363 {"",S_FALSE,FALSE},
364 {"fedc:ba98:7654:3210:fedc:ba98:7654:3210",S_OK,FALSE},
365 {"",S_FALSE,FALSE},
366 {"/",S_OK,FALSE},
367 {"/",S_OK,FALSE},
368 {"",S_FALSE,FALSE},
369 {"http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]",S_OK,FALSE},
370 {"http",S_OK,FALSE},
371 {"",S_FALSE,FALSE},
372 {"",S_FALSE,FALSE}
375 {Uri_HOST_IPV6,S_OK,FALSE},
376 {80,S_OK,FALSE},
377 {URL_SCHEME_HTTP,S_OK,FALSE},
378 {URLZONE_INVALID,E_NOTIMPL,FALSE}
381 { "ftp://[::13.1.68.3]", 0, S_OK, FALSE,
383 {"ftp://[::13.1.68.3]/",S_OK,FALSE},
384 {"[::13.1.68.3]",S_OK,FALSE},
385 {"ftp://[::13.1.68.3]/",S_OK,FALSE},
386 {"",S_FALSE,FALSE},
387 {"",S_FALSE,FALSE},
388 {"",S_FALSE,FALSE},
389 {"::13.1.68.3",S_OK,FALSE},
390 {"",S_FALSE,FALSE},
391 {"/",S_OK,FALSE},
392 {"/",S_OK,FALSE},
393 {"",S_FALSE,FALSE},
394 {"ftp://[::13.1.68.3]",S_OK,FALSE},
395 {"ftp",S_OK,FALSE},
396 {"",S_FALSE,FALSE},
397 {"",S_FALSE,FALSE}
400 {Uri_HOST_IPV6,S_OK,FALSE},
401 {21,S_OK,FALSE},
402 {URL_SCHEME_FTP,S_OK,FALSE},
403 {URLZONE_INVALID,E_NOTIMPL,FALSE}
406 { "http://[FEDC:BA98:0:0:0:0:0:3210]", 0, S_OK, FALSE,
408 {"http://[fedc:ba98::3210]/",S_OK,FALSE},
409 {"[fedc:ba98::3210]",S_OK,FALSE},
410 {"http://[fedc:ba98::3210]/",S_OK,FALSE},
411 {"",S_FALSE,FALSE},
412 {"",S_FALSE,FALSE},
413 {"",S_FALSE,FALSE},
414 {"fedc:ba98::3210",S_OK,FALSE},
415 {"",S_FALSE,FALSE},
416 {"/",S_OK,FALSE},
417 {"/",S_OK,FALSE},
418 {"",S_FALSE,FALSE},
419 {"http://[FEDC:BA98:0:0:0:0:0:3210]",S_OK,FALSE},
420 {"http",S_OK,FALSE},
421 {"",S_FALSE,FALSE},
422 {"",S_FALSE,FALSE},
425 {Uri_HOST_IPV6,S_OK,FALSE},
426 {80,S_OK,FALSE},
427 {URL_SCHEME_HTTP,S_OK,FALSE},
428 {URLZONE_INVALID,E_NOTIMPL,FALSE}
431 { "1234://www.winehq.org", 0, S_OK, FALSE,
433 {"1234://www.winehq.org/",S_OK,FALSE},
434 {"www.winehq.org",S_OK,FALSE},
435 {"1234://www.winehq.org/",S_OK,FALSE},
436 {"winehq.org",S_OK,FALSE},
437 {"",S_FALSE,FALSE},
438 {"",S_FALSE,FALSE},
439 {"www.winehq.org",S_OK,FALSE},
440 {"",S_FALSE,FALSE},
441 {"/",S_OK,FALSE},
442 {"/",S_OK,FALSE},
443 {"",S_FALSE,FALSE},
444 {"1234://www.winehq.org",S_OK,FALSE},
445 {"1234",S_OK,FALSE},
446 {"",S_FALSE,FALSE},
447 {"",S_FALSE,FALSE}
450 {Uri_HOST_DNS,S_OK,FALSE},
451 {0,S_FALSE,FALSE},
452 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
453 {URLZONE_INVALID,E_NOTIMPL,FALSE}
456 /* Test's to make sure the parser/canonicalizer handles implicit file schemes correctly. */
457 { "C:/test/test.mp3", Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME, S_OK, FALSE,
459 {"file:///C:/test/test.mp3",S_OK,FALSE},
460 {"",S_FALSE,FALSE},
461 {"file:///C:/test/test.mp3",S_OK,FALSE},
462 {"",S_FALSE,FALSE},
463 {".mp3",S_OK,FALSE},
464 {"",S_FALSE,FALSE},
465 {"",S_FALSE,FALSE},
466 {"",S_FALSE,FALSE},
467 {"/C:/test/test.mp3",S_OK,FALSE},
468 {"/C:/test/test.mp3",S_OK,FALSE},
469 {"",S_FALSE,FALSE},
470 {"C:/test/test.mp3",S_OK,FALSE},
471 {"file",S_OK,FALSE},
472 {"",S_FALSE,FALSE},
473 {"",S_FALSE,FALSE}
476 {Uri_HOST_UNKNOWN,S_OK,FALSE},
477 {0,S_FALSE,FALSE},
478 {URL_SCHEME_FILE,S_OK,FALSE},
479 {URLZONE_INVALID,E_NOTIMPL,FALSE}
482 /* Test's to make sure the parser/canonicalizer handles implicit file schemes correctly. */
483 { "\\\\Server/test.mp3", Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME, S_OK, FALSE,
485 {"file://server/test.mp3",S_OK,FALSE},
486 {"server",S_OK,FALSE},
487 {"file://server/test.mp3",S_OK,FALSE},
488 {"",S_FALSE,FALSE},
489 {".mp3",S_OK,FALSE},
490 {"",S_FALSE,FALSE},
491 {"server",S_OK,FALSE},
492 {"",S_FALSE,FALSE},
493 {"/test.mp3",S_OK,FALSE},
494 {"/test.mp3",S_OK,FALSE},
495 {"",S_FALSE,FALSE},
496 {"\\\\Server/test.mp3",S_OK,FALSE},
497 {"file",S_OK,FALSE},
498 {"",S_FALSE,FALSE},
499 {"",S_FALSE,FALSE}
502 {Uri_HOST_DNS,S_OK,FALSE},
503 {0,S_FALSE,FALSE},
504 {URL_SCHEME_FILE,S_OK,FALSE},
505 {URLZONE_INVALID,E_NOTIMPL,FALSE}
508 { "www.winehq.org/test", Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME, S_OK, FALSE,
510 {"*:www.winehq.org/test",S_OK,FALSE},
511 {"www.winehq.org",S_OK,FALSE},
512 {"*:www.winehq.org/test",S_OK,FALSE},
513 {"winehq.org",S_OK,FALSE},
514 {"",S_FALSE,FALSE},
515 {"",S_FALSE,FALSE},
516 {"www.winehq.org",S_OK,FALSE},
517 {"",S_FALSE,FALSE},
518 {"/test",S_OK,FALSE},
519 {"/test",S_OK,FALSE},
520 {"",S_FALSE,FALSE},
521 {"www.winehq.org/test",S_OK,FALSE},
522 {"*",S_OK,FALSE},
523 {"",S_FALSE,FALSE},
524 {"",S_FALSE,FALSE}
527 {Uri_HOST_DNS,S_OK,FALSE},
528 {0,S_FALSE,FALSE},
529 {URL_SCHEME_WILDCARD,S_OK,FALSE},
530 {URLZONE_INVALID,E_NOTIMPL,FALSE}
533 /* Valid since the '*' is the only character in the scheme name. */
534 { "*:www.winehq.org/test", 0, S_OK, FALSE,
536 {"*:www.winehq.org/test",S_OK,FALSE},
537 {"www.winehq.org",S_OK,FALSE},
538 {"*:www.winehq.org/test",S_OK,FALSE},
539 {"winehq.org",S_OK,FALSE},
540 {"",S_FALSE,FALSE},
541 {"",S_FALSE,FALSE},
542 {"www.winehq.org",S_OK,FALSE},
543 {"",S_FALSE,FALSE},
544 {"/test",S_OK,FALSE},
545 {"/test",S_OK,FALSE},
546 {"",S_FALSE,FALSE},
547 {"*:www.winehq.org/test",S_OK,FALSE},
548 {"*",S_OK,FALSE},
549 {"",S_FALSE,FALSE},
550 {"",S_FALSE,FALSE}
553 {Uri_HOST_DNS,S_OK,FALSE},
554 {0,S_FALSE,FALSE},
555 {URL_SCHEME_WILDCARD,S_OK,FALSE},
556 {URLZONE_INVALID,E_NOTIMPL,FALSE}
559 { "/../some dir/test.ext", Uri_CREATE_ALLOW_RELATIVE, S_OK, FALSE,
561 {"/../some dir/test.ext",S_OK,FALSE},
562 {"",S_FALSE,FALSE},
563 {"/../some dir/test.ext",S_OK,FALSE},
564 {"",S_FALSE,FALSE},
565 {".ext",S_OK,FALSE},
566 {"",S_FALSE,FALSE},
567 {"",S_FALSE,FALSE},
568 {"",S_FALSE,FALSE},
569 {"/../some dir/test.ext",S_OK,FALSE},
570 {"/../some dir/test.ext",S_OK,FALSE},
571 {"",S_FALSE,FALSE},
572 {"/../some dir/test.ext",S_OK,FALSE},
573 {"",S_FALSE,FALSE},
574 {"",S_FALSE,FALSE},
575 {"",S_FALSE,FALSE}
578 {Uri_HOST_UNKNOWN,S_OK,FALSE},
579 {0,S_FALSE,FALSE},
580 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
581 {URLZONE_INVALID,E_NOTIMPL,FALSE}
584 { "//implicit/wildcard/uri scheme", Uri_CREATE_ALLOW_RELATIVE|Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME, S_OK, FALSE,
586 {"*://implicit/wildcard/uri%20scheme",S_OK,FALSE},
587 {"",S_OK,FALSE},
588 {"*://implicit/wildcard/uri%20scheme",S_OK,FALSE},
589 {"",S_FALSE,FALSE},
590 {"",S_FALSE,FALSE},
591 {"",S_FALSE,FALSE},
592 {"",S_OK,FALSE},
593 {"",S_FALSE,FALSE},
594 {"//implicit/wildcard/uri%20scheme",S_OK,FALSE},
595 {"//implicit/wildcard/uri%20scheme",S_OK,FALSE},
596 {"",S_FALSE,FALSE},
597 {"//implicit/wildcard/uri scheme",S_OK,FALSE},
598 {"*",S_OK,FALSE},
599 {"",S_FALSE,FALSE},
600 {"",S_FALSE,FALSE},
603 {Uri_HOST_UNKNOWN,S_OK,FALSE},
604 {0,S_FALSE,FALSE},
605 {URL_SCHEME_WILDCARD,S_OK,FALSE},
606 {URLZONE_INVALID,E_NOTIMPL,FALSE}
609 /* URI is considered opaque since CREATE_NO_CRACK_UNKNOWN_SCHEMES is set and its an unknown scheme. */
610 { "zip://google.com", Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES, S_OK, FALSE,
612 {"zip:/.//google.com",S_OK,FALSE},
613 {"",S_FALSE,FALSE},
614 {"zip:/.//google.com",S_OK,FALSE},
615 {"",S_FALSE,FALSE},
616 {".com",S_OK,FALSE},
617 {"",S_FALSE,FALSE},
618 {"",S_FALSE,FALSE},
619 {"",S_FALSE,FALSE},
620 {"/.//google.com",S_OK,FALSE},
621 {"/.//google.com",S_OK,FALSE},
622 {"",S_FALSE,FALSE},
623 {"zip://google.com",S_OK,FALSE},
624 {"zip",S_OK,FALSE},
625 {"",S_FALSE,FALSE},
626 {"",S_FALSE,FALSE}
629 {Uri_HOST_UNKNOWN,S_OK,FALSE},
630 {0,S_FALSE,FALSE},
631 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
632 {URLZONE_INVALID,E_NOTIMPL,FALSE}
635 /* Windows uses the first occurrence of ':' to delimit the userinfo. */
636 { "ftp://user:pass:word@winehq.org/", 0, S_OK, FALSE,
638 {"ftp://user:pass:word@winehq.org/",S_OK,FALSE},
639 {"user:pass:word@winehq.org",S_OK,FALSE},
640 {"ftp://winehq.org/",S_OK,FALSE},
641 {"winehq.org",S_OK,FALSE},
642 {"",S_FALSE,FALSE},
643 {"",S_FALSE,FALSE},
644 {"winehq.org",S_OK,FALSE},
645 {"pass:word",S_OK,FALSE},
646 {"/",S_OK,FALSE},
647 {"/",S_OK,FALSE},
648 {"",S_FALSE,FALSE},
649 {"ftp://user:pass:word@winehq.org/",S_OK,FALSE},
650 {"ftp",S_OK,FALSE},
651 {"user:pass:word",S_OK,FALSE},
652 {"user",S_OK,FALSE}
655 {Uri_HOST_DNS,S_OK,FALSE},
656 {21,S_OK,FALSE},
657 {URL_SCHEME_FTP,S_OK,FALSE},
658 {URLZONE_INVALID,E_NOTIMPL,FALSE}
661 /* Make sure % encoded unreserved characters are decoded. */
662 { "ftp://w%49%4Ee:PA%53%53@ftp.google.com/", 0, S_OK, FALSE,
664 {"ftp://wINe:PASS@ftp.google.com/",S_OK,FALSE},
665 {"wINe:PASS@ftp.google.com",S_OK,FALSE},
666 {"ftp://ftp.google.com/",S_OK,FALSE},
667 {"google.com",S_OK,FALSE},
668 {"",S_FALSE,FALSE},
669 {"",S_FALSE,FALSE},
670 {"ftp.google.com",S_OK,FALSE},
671 {"PASS",S_OK,FALSE},
672 {"/",S_OK,FALSE},
673 {"/",S_OK,FALSE},
674 {"",S_FALSE,FALSE},
675 {"ftp://w%49%4Ee:PA%53%53@ftp.google.com/",S_OK,FALSE},
676 {"ftp",S_OK,FALSE},
677 {"wINe:PASS",S_OK,FALSE},
678 {"wINe",S_OK,FALSE}
681 {Uri_HOST_DNS,S_OK,FALSE},
682 {21,S_OK,FALSE},
683 {URL_SCHEME_FTP,S_OK,FALSE},
684 {URLZONE_INVALID,E_NOTIMPL,FALSE}
687 /* Make sure % encoded characters which are NOT unreserved are NOT decoded. */
688 { "ftp://w%5D%5Be:PA%7B%7D@ftp.google.com/", 0, S_OK, FALSE,
690 {"ftp://w%5D%5Be:PA%7B%7D@ftp.google.com/",S_OK,FALSE},
691 {"w%5D%5Be:PA%7B%7D@ftp.google.com",S_OK,FALSE},
692 {"ftp://ftp.google.com/",S_OK,FALSE},
693 {"google.com",S_OK,FALSE},
694 {"",S_FALSE,FALSE},
695 {"",S_FALSE,FALSE},
696 {"ftp.google.com",S_OK,FALSE},
697 {"PA%7B%7D",S_OK,FALSE},
698 {"/",S_OK,FALSE},
699 {"/",S_OK,FALSE},
700 {"",S_FALSE,FALSE},
701 {"ftp://w%5D%5Be:PA%7B%7D@ftp.google.com/",S_OK,FALSE},
702 {"ftp",S_OK,FALSE},
703 {"w%5D%5Be:PA%7B%7D",S_OK,FALSE},
704 {"w%5D%5Be",S_OK,FALSE}
707 {Uri_HOST_DNS,S_OK,FALSE},
708 {21,S_OK,FALSE},
709 {URL_SCHEME_FTP,S_OK,FALSE},
710 {URLZONE_INVALID,E_NOTIMPL,FALSE}
713 /* You're allowed to have an empty password portion in the userinfo section. */
714 { "ftp://empty:@ftp.google.com/", 0, S_OK, FALSE,
716 {"ftp://empty:@ftp.google.com/",S_OK,FALSE},
717 {"empty:@ftp.google.com",S_OK,FALSE},
718 {"ftp://ftp.google.com/",S_OK,FALSE},
719 {"google.com",S_OK,FALSE},
720 {"",S_FALSE,FALSE},
721 {"",S_FALSE,FALSE},
722 {"ftp.google.com",S_OK,FALSE},
723 {"",S_OK,FALSE},
724 {"/",S_OK,FALSE},
725 {"/",S_OK,FALSE},
726 {"",S_FALSE,FALSE},
727 {"ftp://empty:@ftp.google.com/",S_OK,FALSE},
728 {"ftp",S_OK,FALSE},
729 {"empty:",S_OK,FALSE},
730 {"empty",S_OK,FALSE}
733 {Uri_HOST_DNS,S_OK,FALSE},
734 {21,S_OK,FALSE},
735 {URL_SCHEME_FTP,S_OK,FALSE},
736 {URLZONE_INVALID,E_NOTIMPL,FALSE}
739 /* Make sure forbidden characters in "userinfo" get encoded. */
740 { "ftp://\" \"weird@ftp.google.com/", 0, S_OK, FALSE,
742 {"ftp://%22%20%22weird@ftp.google.com/",S_OK,FALSE},
743 {"%22%20%22weird@ftp.google.com",S_OK,FALSE},
744 {"ftp://ftp.google.com/",S_OK,FALSE},
745 {"google.com",S_OK,FALSE},
746 {"",S_FALSE,FALSE},
747 {"",S_FALSE,FALSE},
748 {"ftp.google.com",S_OK,FALSE},
749 {"",S_FALSE,FALSE},
750 {"/",S_OK,FALSE},
751 {"/",S_OK,FALSE},
752 {"",S_FALSE,FALSE},
753 {"ftp://\" \"weird@ftp.google.com/",S_OK,FALSE},
754 {"ftp",S_OK,FALSE},
755 {"%22%20%22weird",S_OK,FALSE},
756 {"%22%20%22weird",S_OK,FALSE}
759 {Uri_HOST_DNS,S_OK,FALSE},
760 {21,S_OK,FALSE},
761 {URL_SCHEME_FTP,S_OK,FALSE},
762 {URLZONE_INVALID,E_NOTIMPL,FALSE}
765 /* Make sure the forbidden characters don't get percent encoded. */
766 { "ftp://\" \"weird@ftp.google.com/", Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS, S_OK, FALSE,
768 {"ftp://\" \"weird@ftp.google.com/",S_OK,FALSE},
769 {"\" \"weird@ftp.google.com",S_OK,FALSE},
770 {"ftp://ftp.google.com/",S_OK,FALSE},
771 {"google.com",S_OK,FALSE},
772 {"",S_FALSE,FALSE},
773 {"",S_FALSE,FALSE},
774 {"ftp.google.com",S_OK,FALSE},
775 {"",S_FALSE,FALSE},
776 {"/",S_OK,FALSE},
777 {"/",S_OK,FALSE},
778 {"",S_FALSE,FALSE},
779 {"ftp://\" \"weird@ftp.google.com/",S_OK,FALSE},
780 {"ftp",S_OK,FALSE},
781 {"\" \"weird",S_OK,FALSE},
782 {"\" \"weird",S_OK,FALSE}
785 {Uri_HOST_DNS,S_OK,FALSE},
786 {21,S_OK,FALSE},
787 {URL_SCHEME_FTP,S_OK,FALSE},
788 {URLZONE_INVALID,E_NOTIMPL,FALSE}
791 /* Allowed to have invalid % encoded because its an unknown scheme type. */
792 { "zip://%xy:word@winehq.org/", 0, S_OK, FALSE,
794 {"zip://%xy:word@winehq.org/",S_OK,FALSE},
795 {"%xy:word@winehq.org",S_OK,FALSE},
796 {"zip://%xy:word@winehq.org/",S_OK,FALSE},
797 {"winehq.org",S_OK,FALSE},
798 {"",S_FALSE,FALSE},
799 {"",S_FALSE,FALSE},
800 {"winehq.org",S_OK,FALSE},
801 {"word",S_OK,FALSE},
802 {"/",S_OK,FALSE},
803 {"/",S_OK,FALSE},
804 {"",S_FALSE,FALSE},
805 {"zip://%xy:word@winehq.org/",S_OK,FALSE},
806 {"zip",S_OK,FALSE},
807 {"%xy:word",S_OK,FALSE},
808 {"%xy",S_OK,FALSE}
811 {Uri_HOST_DNS,S_OK,FALSE},
812 {0,S_FALSE,FALSE},
813 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
814 {URLZONE_INVALID,E_NOTIMPL,FALSE}
817 /* Unreserved, percent encoded characters aren't decoded in the userinfo becuase the scheme
818 * isn't known.
820 { "zip://%2E:%52%53ord@winehq.org/", 0, S_OK, FALSE,
822 {"zip://%2E:%52%53ord@winehq.org/",S_OK,FALSE},
823 {"%2E:%52%53ord@winehq.org",S_OK,FALSE},
824 {"zip://%2E:%52%53ord@winehq.org/",S_OK,FALSE},
825 {"winehq.org",S_OK,FALSE},
826 {"",S_FALSE,FALSE},
827 {"",S_FALSE,FALSE},
828 {"winehq.org",S_OK,FALSE},
829 {"%52%53ord",S_OK,FALSE},
830 {"/",S_OK,FALSE},
831 {"/",S_OK,FALSE},
832 {"",S_FALSE,FALSE},
833 {"zip://%2E:%52%53ord@winehq.org/",S_OK,FALSE},
834 {"zip",S_OK,FALSE},
835 {"%2E:%52%53ord",S_OK,FALSE},
836 {"%2E",S_OK,FALSE}
839 {Uri_HOST_DNS,S_OK,FALSE},
840 {0,S_FALSE,FALSE},
841 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
842 {URLZONE_INVALID,E_NOTIMPL,FALSE}
845 { "ftp://[](),'test':word@winehq.org/", 0, S_OK, FALSE,
847 {"ftp://[](),'test':word@winehq.org/",S_OK,FALSE},
848 {"[](),'test':word@winehq.org",S_OK,FALSE},
849 {"ftp://winehq.org/",S_OK,FALSE},
850 {"winehq.org",S_OK,FALSE},
851 {"",S_FALSE,FALSE},
852 {"",S_FALSE,FALSE},
853 {"winehq.org",S_OK,FALSE},
854 {"word",S_OK,FALSE},
855 {"/",S_OK,FALSE},
856 {"/",S_OK,FALSE},
857 {"",S_FALSE,FALSE},
858 {"ftp://[](),'test':word@winehq.org/",S_OK,FALSE},
859 {"ftp",S_OK,FALSE},
860 {"[](),'test':word",S_OK,FALSE},
861 {"[](),'test'",S_OK,FALSE}
864 {Uri_HOST_DNS,S_OK,FALSE},
865 {21,S_OK,FALSE},
866 {URL_SCHEME_FTP,S_OK,FALSE},
867 {URLZONE_INVALID,E_NOTIMPL,FALSE}
870 { "ftp://test?:word@winehq.org/", 0, S_OK, FALSE,
872 {"ftp://test/?:word@winehq.org/",S_OK,FALSE},
873 {"test",S_OK,FALSE},
874 {"ftp://test/?:word@winehq.org/",S_OK,FALSE},
875 {"",S_FALSE,FALSE},
876 {"",S_FALSE,FALSE},
877 {"",S_FALSE,FALSE},
878 {"test",S_OK,FALSE},
879 {"",S_FALSE,FALSE},
880 {"/",S_OK,FALSE},
881 {"/?:word@winehq.org/",S_OK,FALSE},
882 {"?:word@winehq.org/",S_OK,FALSE},
883 {"ftp://test?:word@winehq.org/",S_OK,FALSE},
884 {"ftp",S_OK,FALSE},
885 {"",S_FALSE,FALSE},
886 {"",S_FALSE,FALSE}
889 {Uri_HOST_DNS,S_OK,FALSE},
890 {21,S_OK,FALSE},
891 {URL_SCHEME_FTP,S_OK,FALSE},
892 {URLZONE_INVALID,E_NOTIMPL,FALSE}
895 { "ftp://test#:word@winehq.org/", 0, S_OK, FALSE,
897 {"ftp://test/#:word@winehq.org/",S_OK,FALSE},
898 {"test",S_OK,FALSE},
899 {"ftp://test/#:word@winehq.org/",S_OK,FALSE},
900 {"",S_FALSE,FALSE},
901 {"",S_FALSE,FALSE},
902 {"#:word@winehq.org/",S_OK,FALSE},
903 {"test",S_OK,FALSE},
904 {"",S_FALSE,FALSE},
905 {"/",S_OK,FALSE},
906 {"/",S_OK,FALSE},
907 {"",S_FALSE,FALSE},
908 {"ftp://test#:word@winehq.org/",S_OK,FALSE},
909 {"ftp",S_OK,FALSE},
910 {"",S_FALSE,FALSE},
911 {"",S_FALSE,FALSE}
914 {Uri_HOST_DNS,S_OK,FALSE},
915 {21,S_OK,FALSE},
916 {URL_SCHEME_FTP,S_OK,FALSE},
917 {URLZONE_INVALID,E_NOTIMPL,FALSE}
920 /* Allowed to have a backslash in the userinfo since it's an unknown scheme. */
921 { "zip://test\\:word@winehq.org/", 0, S_OK, FALSE,
923 {"zip://test\\:word@winehq.org/",S_OK,FALSE},
924 {"test\\:word@winehq.org",S_OK,FALSE},
925 {"zip://test\\:word@winehq.org/",S_OK,FALSE},
926 {"winehq.org",S_OK,FALSE},
927 {"",S_FALSE,FALSE},
928 {"",S_FALSE,FALSE},
929 {"winehq.org",S_OK,FALSE},
930 {"word",S_OK,FALSE},
931 {"/",S_OK,FALSE},
932 {"/",S_OK,FALSE},
933 {"",S_FALSE,FALSE},
934 {"zip://test\\:word@winehq.org/",S_OK,FALSE},
935 {"zip",S_OK,FALSE},
936 {"test\\:word",S_OK,FALSE},
937 {"test\\",S_OK,FALSE}
940 {Uri_HOST_DNS,S_OK,FALSE},
941 {0,S_FALSE,FALSE},
942 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
943 {URLZONE_INVALID,E_NOTIMPL,FALSE}
946 /* It normalizes IPv4 addresses correctly. */
947 { "http://127.000.000.100/", 0, S_OK, FALSE,
949 {"http://127.0.0.100/",S_OK,FALSE},
950 {"127.0.0.100",S_OK,FALSE},
951 {"http://127.0.0.100/",S_OK,FALSE},
952 {"",S_FALSE,FALSE},
953 {"",S_FALSE,FALSE},
954 {"",S_FALSE,FALSE},
955 {"127.0.0.100",S_OK,FALSE},
956 {"",S_FALSE,FALSE},
957 {"/",S_OK,FALSE},
958 {"/",S_OK,FALSE},
959 {"",S_FALSE,FALSE},
960 {"http://127.000.000.100/",S_OK,FALSE},
961 {"http",S_OK,FALSE},
962 {"",S_FALSE,FALSE},
963 {"",S_FALSE,FALSE}
966 {Uri_HOST_IPV4,S_OK,FALSE},
967 {80,S_OK,FALSE},
968 {URL_SCHEME_HTTP,S_OK,FALSE},
969 {URLZONE_INVALID,E_NOTIMPL,FALSE}
972 /* Make sure it normalizes partial IPv4 addresses correctly. */
973 { "http://127.0/", 0, S_OK, FALSE,
975 {"http://127.0.0.0/",S_OK,FALSE},
976 {"127.0.0.0",S_OK,FALSE},
977 {"http://127.0.0.0/",S_OK,FALSE},
978 {"",S_FALSE,FALSE},
979 {"",S_FALSE,FALSE},
980 {"",S_FALSE,FALSE},
981 {"127.0.0.0",S_OK,FALSE},
982 {"",S_FALSE,FALSE},
983 {"/",S_OK,FALSE},
984 {"/",S_OK,FALSE},
985 {"",S_FALSE,FALSE},
986 {"http://127.0/",S_OK,FALSE},
987 {"http",S_OK,FALSE},
988 {"",S_FALSE,FALSE},
989 {"",S_FALSE,FALSE}
992 {Uri_HOST_IPV4,S_OK,FALSE},
993 {80,S_OK,FALSE},
994 {URL_SCHEME_HTTP,S_OK,FALSE},
995 {URLZONE_INVALID,E_NOTIMPL,FALSE}
998 /* Make sure it converts implicit IPv4's correctly. */
999 { "http://123456/", 0, S_OK, FALSE,
1001 {"http://0.1.226.64/",S_OK,FALSE},
1002 {"0.1.226.64",S_OK,FALSE},
1003 {"http://0.1.226.64/",S_OK,FALSE},
1004 {"",S_FALSE,FALSE},
1005 {"",S_FALSE,FALSE},
1006 {"",S_FALSE,FALSE},
1007 {"0.1.226.64",S_OK,FALSE},
1008 {"",S_FALSE,FALSE},
1009 {"/",S_OK,FALSE},
1010 {"/",S_OK,FALSE},
1011 {"",S_FALSE,FALSE},
1012 {"http://123456/",S_OK,FALSE},
1013 {"http",S_OK,FALSE},
1014 {"",S_FALSE,FALSE},
1015 {"",S_FALSE,FALSE}
1018 {Uri_HOST_IPV4,S_OK,FALSE},
1019 {80,S_OK,FALSE},
1020 {URL_SCHEME_HTTP,S_OK,FALSE},
1021 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1024 /* UINT_MAX */
1025 { "http://4294967295/", 0, S_OK, FALSE,
1027 {"http://255.255.255.255/",S_OK,FALSE},
1028 {"255.255.255.255",S_OK,FALSE},
1029 {"http://255.255.255.255/",S_OK,FALSE},
1030 {"",S_FALSE,FALSE},
1031 {"",S_FALSE,FALSE},
1032 {"",S_FALSE,FALSE},
1033 {"255.255.255.255",S_OK,FALSE},
1034 {"",S_FALSE,FALSE},
1035 {"/",S_OK,FALSE},
1036 {"/",S_OK,FALSE},
1037 {"",S_FALSE,FALSE},
1038 {"http://4294967295/",S_OK,FALSE},
1039 {"http",S_OK,FALSE},
1040 {"",S_FALSE,FALSE},
1041 {"",S_FALSE,FALSE}
1044 {Uri_HOST_IPV4,S_OK,FALSE},
1045 {80,S_OK,FALSE},
1046 {URL_SCHEME_HTTP,S_OK,FALSE},
1047 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1050 /* UINT_MAX+1 */
1051 { "http://4294967296/", 0, S_OK, FALSE,
1053 {"http://4294967296/",S_OK,FALSE},
1054 {"4294967296",S_OK,FALSE},
1055 {"http://4294967296/",S_OK,FALSE},
1056 {"",S_FALSE,FALSE},
1057 {"",S_FALSE,FALSE},
1058 {"",S_FALSE,FALSE},
1059 {"4294967296",S_OK,FALSE},
1060 {"",S_FALSE,FALSE},
1061 {"/",S_OK,FALSE},
1062 {"/",S_OK,FALSE},
1063 {"",S_FALSE,FALSE},
1064 {"http://4294967296/",S_OK,FALSE},
1065 {"http",S_OK,FALSE},
1066 {"",S_FALSE,FALSE},
1067 {"",S_FALSE,FALSE}
1070 {Uri_HOST_DNS,S_OK,FALSE},
1071 {80,S_OK,FALSE},
1072 {URL_SCHEME_HTTP,S_OK,FALSE},
1073 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1076 /* Window's doesn't normalize IP address for unknown schemes. */
1077 { "1234://4294967295/", 0, S_OK, FALSE,
1079 {"1234://4294967295/",S_OK,FALSE},
1080 {"4294967295",S_OK,FALSE},
1081 {"1234://4294967295/",S_OK,FALSE},
1082 {"",S_FALSE,FALSE},
1083 {"",S_FALSE,FALSE},
1084 {"",S_FALSE,FALSE},
1085 {"4294967295",S_OK,FALSE},
1086 {"",S_FALSE,FALSE},
1087 {"/",S_OK,FALSE},
1088 {"/",S_OK,FALSE},
1089 {"",S_FALSE,FALSE},
1090 {"1234://4294967295/",S_OK,FALSE},
1091 {"1234",S_OK,FALSE},
1092 {"",S_FALSE,FALSE},
1093 {"",S_FALSE,FALSE}
1096 {Uri_HOST_IPV4,S_OK,FALSE},
1097 {0,S_FALSE,FALSE},
1098 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1099 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1102 /* Window's doesn't normalize IP address for unknown schemes. */
1103 { "1234://127.001/", 0, S_OK, FALSE,
1105 {"1234://127.001/",S_OK,FALSE},
1106 {"127.001",S_OK,FALSE},
1107 {"1234://127.001/",S_OK,FALSE},
1108 {"",S_FALSE,FALSE},
1109 {"",S_FALSE,FALSE},
1110 {"",S_FALSE,FALSE},
1111 {"127.001",S_OK,FALSE},
1112 {"",S_FALSE,FALSE},
1113 {"/",S_OK,FALSE},
1114 {"/",S_OK,FALSE},
1115 {"",S_FALSE,FALSE},
1116 {"1234://127.001/",S_OK,FALSE},
1117 {"1234",S_OK,FALSE},
1118 {"",S_FALSE,FALSE},
1119 {"",S_FALSE,FALSE}
1122 {Uri_HOST_IPV4,S_OK,FALSE},
1123 {0,S_FALSE,FALSE},
1124 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1125 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1128 { "http://[FEDC:BA98::3210]", 0, S_OK, FALSE,
1130 {"http://[fedc:ba98::3210]/",S_OK,FALSE},
1131 {"[fedc:ba98::3210]",S_OK,FALSE},
1132 {"http://[fedc:ba98::3210]/",S_OK,FALSE},
1133 {"",S_FALSE,FALSE},
1134 {"",S_FALSE,FALSE},
1135 {"",S_FALSE,FALSE},
1136 {"fedc:ba98::3210",S_OK,FALSE},
1137 {"",S_FALSE,FALSE},
1138 {"/",S_OK,FALSE},
1139 {"/",S_OK,FALSE},
1140 {"",S_FALSE,FALSE},
1141 {"http://[FEDC:BA98::3210]",S_OK,FALSE},
1142 {"http",S_OK,FALSE},
1143 {"",S_FALSE,FALSE},
1144 {"",S_FALSE,FALSE},
1147 {Uri_HOST_IPV6,S_OK,FALSE},
1148 {80,S_OK,FALSE},
1149 {URL_SCHEME_HTTP,S_OK,FALSE},
1150 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1153 { "http://[::]", 0, S_OK, FALSE,
1155 {"http://[::]/",S_OK,FALSE},
1156 {"[::]",S_OK,FALSE},
1157 {"http://[::]/",S_OK,FALSE},
1158 {"",S_FALSE,FALSE},
1159 {"",S_FALSE,FALSE},
1160 {"",S_FALSE,FALSE},
1161 {"::",S_OK,FALSE},
1162 {"",S_FALSE,FALSE},
1163 {"/",S_OK,FALSE},
1164 {"/",S_OK,FALSE},
1165 {"",S_FALSE,FALSE},
1166 {"http://[::]",S_OK,FALSE},
1167 {"http",S_OK,FALSE},
1168 {"",S_FALSE,FALSE},
1169 {"",S_FALSE,FALSE},
1172 {Uri_HOST_IPV6,S_OK,FALSE},
1173 {80,S_OK,FALSE},
1174 {URL_SCHEME_HTTP,S_OK,FALSE},
1175 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1178 { "http://[FEDC:BA98::]", 0, S_OK, FALSE,
1180 {"http://[fedc:ba98::]/",S_OK,FALSE},
1181 {"[fedc:ba98::]",S_OK,FALSE},
1182 {"http://[fedc:ba98::]/",S_OK,FALSE},
1183 {"",S_FALSE,FALSE},
1184 {"",S_FALSE,FALSE},
1185 {"",S_FALSE,FALSE},
1186 {"fedc:ba98::",S_OK,FALSE},
1187 {"",S_FALSE,FALSE},
1188 {"/",S_OK,FALSE},
1189 {"/",S_OK,FALSE},
1190 {"",S_FALSE,FALSE},
1191 {"http://[FEDC:BA98::]",S_OK,FALSE},
1192 {"http",S_OK,FALSE},
1193 {"",S_FALSE,FALSE},
1194 {"",S_FALSE,FALSE},
1197 {Uri_HOST_IPV6,S_OK,FALSE},
1198 {80,S_OK,FALSE},
1199 {URL_SCHEME_HTTP,S_OK,FALSE},
1200 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1203 /* Valid even with 2 byte elision because it doesn't appear the beginning or end. */
1204 { "http://[1::3:4:5:6:7:8]", 0, S_OK, FALSE,
1206 {"http://[1:0:3:4:5:6:7:8]/",S_OK,FALSE},
1207 {"[1:0:3:4:5:6:7:8]",S_OK,FALSE},
1208 {"http://[1:0:3:4:5:6:7:8]/",S_OK,FALSE},
1209 {"",S_FALSE,FALSE},
1210 {"",S_FALSE,FALSE},
1211 {"",S_FALSE,FALSE},
1212 {"1:0:3:4:5:6:7:8",S_OK,FALSE},
1213 {"",S_FALSE,FALSE},
1214 {"/",S_OK,FALSE},
1215 {"/",S_OK,FALSE},
1216 {"",S_FALSE,FALSE},
1217 {"http://[1::3:4:5:6:7:8]",S_OK,FALSE},
1218 {"http",S_OK,FALSE},
1219 {"",S_FALSE,FALSE},
1220 {"",S_FALSE,FALSE},
1223 {Uri_HOST_IPV6,S_OK,FALSE},
1224 {80,S_OK,FALSE},
1225 {URL_SCHEME_HTTP,S_OK,FALSE},
1226 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1229 { "http://[v2.34]/", 0, S_OK, FALSE,
1231 {"http://[v2.34]/",S_OK,FALSE},
1232 {"[v2.34]",S_OK,FALSE},
1233 {"http://[v2.34]/",S_OK,FALSE},
1234 {"",S_FALSE,FALSE},
1235 {"",S_FALSE,FALSE},
1236 {"",S_FALSE,FALSE},
1237 {"[v2.34]",S_OK,FALSE},
1238 {"",S_FALSE,FALSE},
1239 {"/",S_OK,FALSE},
1240 {"/",S_OK,FALSE},
1241 {"",S_FALSE,FALSE},
1242 {"http://[v2.34]/",S_OK,FALSE},
1243 {"http",S_OK,FALSE},
1244 {"",S_FALSE,FALSE},
1245 {"",S_FALSE,FALSE}
1248 {Uri_HOST_UNKNOWN,S_OK,FALSE},
1249 {80,S_OK,FALSE},
1250 {URL_SCHEME_HTTP,S_OK,FALSE},
1251 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1254 /* Windows ignores ':' if they appear after a '[' on a non-IPLiteral host. */
1255 { "http://[xyz:12345.com/test", 0, S_OK, FALSE,
1257 {"http://[xyz:12345.com/test",S_OK,FALSE},
1258 {"[xyz:12345.com",S_OK,FALSE},
1259 {"http://[xyz:12345.com/test",S_OK,FALSE},
1260 {"[xyz:12345.com",S_OK,FALSE},
1261 {"",S_FALSE,FALSE},
1262 {"",S_FALSE,FALSE},
1263 {"[xyz:12345.com",S_OK,FALSE},
1264 {"",S_FALSE,FALSE},
1265 {"/test",S_OK,FALSE},
1266 {"/test",S_OK,FALSE},
1267 {"",S_FALSE,FALSE},
1268 {"http://[xyz:12345.com/test",S_OK,FALSE},
1269 {"http",S_OK,FALSE},
1270 {"",S_FALSE,FALSE},
1271 {"",S_FALSE,FALSE}
1274 {Uri_HOST_DNS,S_OK,FALSE},
1275 {80,S_OK,FALSE},
1276 {URL_SCHEME_HTTP,S_OK,FALSE},
1277 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1280 /* Valid URI since the '[' and ']' don't appear at the beginning and end
1281 * of the host name (respectively).
1283 { "ftp://www.[works].com/", 0, S_OK, FALSE,
1285 {"ftp://www.[works].com/",S_OK,FALSE},
1286 {"www.[works].com",S_OK,FALSE},
1287 {"ftp://www.[works].com/",S_OK,FALSE},
1288 {"[works].com",S_OK,FALSE},
1289 {"",S_FALSE,FALSE},
1290 {"",S_FALSE,FALSE},
1291 {"www.[works].com",S_OK,FALSE},
1292 {"",S_FALSE,FALSE},
1293 {"/",S_OK,FALSE},
1294 {"/",S_OK,FALSE},
1295 {"",S_FALSE,FALSE},
1296 {"ftp://www.[works].com/",S_OK,FALSE},
1297 {"ftp",S_OK,FALSE},
1298 {"",S_FALSE,FALSE},
1299 {"",S_FALSE,FALSE}
1302 {Uri_HOST_DNS,S_OK,FALSE},
1303 {21,S_OK,FALSE},
1304 {URL_SCHEME_FTP,S_OK,FALSE},
1305 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1308 /* Considers ':' a delimiter since it appears after the ']'. */
1309 { "http://www.google.com]:12345/", 0, S_OK, FALSE,
1311 {"http://www.google.com]:12345/",S_OK,FALSE},
1312 {"www.google.com]:12345",S_OK,FALSE},
1313 {"http://www.google.com]:12345/",S_OK,FALSE},
1314 {"google.com]",S_OK,FALSE},
1315 {"",S_FALSE,FALSE},
1316 {"",S_FALSE,FALSE},
1317 {"www.google.com]",S_OK,FALSE},
1318 {"",S_FALSE,FALSE},
1319 {"/",S_OK,FALSE},
1320 {"/",S_OK,FALSE},
1321 {"",S_FALSE,FALSE},
1322 {"http://www.google.com]:12345/",S_OK,FALSE},
1323 {"http",S_OK,FALSE},
1324 {"",S_FALSE,FALSE},
1325 {"",S_FALSE,FALSE}
1328 {Uri_HOST_DNS,S_OK,FALSE},
1329 {12345,S_OK,FALSE},
1330 {URL_SCHEME_HTTP,S_OK,FALSE},
1331 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1334 /* Unknown scheme types can have invalid % encoded data in the hostname. */
1335 { "zip://w%XXw%GEw.google.com/", 0, S_OK, FALSE,
1337 {"zip://w%XXw%GEw.google.com/",S_OK,FALSE},
1338 {"w%XXw%GEw.google.com",S_OK,FALSE},
1339 {"zip://w%XXw%GEw.google.com/",S_OK,FALSE},
1340 {"google.com",S_OK,FALSE},
1341 {"",S_FALSE,FALSE},
1342 {"",S_FALSE,FALSE},
1343 {"w%XXw%GEw.google.com",S_OK,FALSE},
1344 {"",S_FALSE,FALSE},
1345 {"/",S_OK,FALSE},
1346 {"/",S_OK,FALSE},
1347 {"",S_FALSE,FALSE},
1348 {"zip://w%XXw%GEw.google.com/",S_OK,FALSE},
1349 {"zip",S_OK,FALSE},
1350 {"",S_FALSE,FALSE},
1351 {"",S_FALSE,FALSE}
1354 {Uri_HOST_DNS,S_OK,FALSE},
1355 {0,S_FALSE,FALSE},
1356 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1357 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1360 /* Unknown scheme types hostname doesn't get lower cased. */
1361 { "zip://GOOGLE.com/", 0, S_OK, FALSE,
1363 {"zip://GOOGLE.com/",S_OK,FALSE},
1364 {"GOOGLE.com",S_OK,FALSE},
1365 {"zip://GOOGLE.com/",S_OK,FALSE},
1366 {"GOOGLE.com",S_OK,FALSE},
1367 {"",S_FALSE,FALSE},
1368 {"",S_FALSE,FALSE},
1369 {"GOOGLE.com",S_OK,FALSE},
1370 {"",S_FALSE,FALSE},
1371 {"/",S_OK,FALSE},
1372 {"/",S_OK,FALSE},
1373 {"",S_FALSE,FALSE},
1374 {"zip://GOOGLE.com/",S_OK,FALSE},
1375 {"zip",S_OK,FALSE},
1376 {"",S_FALSE,FALSE},
1377 {"",S_FALSE,FALSE}
1380 {Uri_HOST_DNS,S_OK,FALSE},
1381 {0,S_FALSE,FALSE},
1382 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1383 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1386 /* Hostname get's lower cased for known scheme types. */
1387 { "http://WWW.GOOGLE.com/", 0, S_OK, FALSE,
1389 {"http://www.google.com/",S_OK,FALSE},
1390 {"www.google.com",S_OK,FALSE},
1391 {"http://www.google.com/",S_OK,FALSE},
1392 {"google.com",S_OK,FALSE},
1393 {"",S_FALSE,FALSE},
1394 {"",S_FALSE,FALSE},
1395 {"www.google.com",S_OK,FALSE},
1396 {"",S_FALSE,FALSE},
1397 {"/",S_OK,FALSE},
1398 {"/",S_OK,FALSE},
1399 {"",S_FALSE,FALSE},
1400 {"http://WWW.GOOGLE.com/",S_OK,FALSE},
1401 {"http",S_OK,FALSE},
1402 {"",S_FALSE,FALSE},
1403 {"",S_FALSE,FALSE}
1406 {Uri_HOST_DNS,S_OK,FALSE},
1407 {80,S_OK,FALSE},
1408 {URL_SCHEME_HTTP,S_OK,FALSE},
1409 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1412 /* Characters that get % encoded in the hostname also have their percent
1413 * encoded forms lower cased.
1415 { "http://www.%7Cgoogle|.com/", 0, S_OK, FALSE,
1417 {"http://www.%7cgoogle%7c.com/",S_OK,FALSE},
1418 {"www.%7cgoogle%7c.com",S_OK,FALSE},
1419 {"http://www.%7cgoogle%7c.com/",S_OK,FALSE},
1420 {"%7cgoogle%7c.com",S_OK,FALSE},
1421 {"",S_FALSE,FALSE},
1422 {"",S_FALSE,FALSE},
1423 {"www.%7cgoogle%7c.com",S_OK,FALSE},
1424 {"",S_FALSE,FALSE},
1425 {"/",S_OK,FALSE},
1426 {"/",S_OK,FALSE},
1427 {"",S_FALSE,FALSE},
1428 {"http://www.%7Cgoogle|.com/",S_OK,FALSE},
1429 {"http",S_OK,FALSE},
1430 {"",S_FALSE,FALSE},
1431 {"",S_FALSE,FALSE}
1434 {Uri_HOST_DNS,S_OK,FALSE},
1435 {80,S_OK,FALSE},
1436 {URL_SCHEME_HTTP,S_OK,FALSE},
1437 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1440 /* IPv4 addresses attached to IPv6 can be included in elisions. */
1441 { "http://[1:2:3:4:5:6:0.0.0.0]", 0, S_OK, FALSE,
1443 {"http://[1:2:3:4:5:6::]/",S_OK,FALSE},
1444 {"[1:2:3:4:5:6::]",S_OK,FALSE},
1445 {"http://[1:2:3:4:5:6::]/",S_OK,FALSE},
1446 {"",S_FALSE,FALSE},
1447 {"",S_FALSE,FALSE},
1448 {"",S_FALSE,FALSE},
1449 {"1:2:3:4:5:6::",S_OK,FALSE},
1450 {"",S_FALSE,FALSE},
1451 {"/",S_OK,FALSE},
1452 {"/",S_OK,FALSE},
1453 {"",S_FALSE,FALSE},
1454 {"http://[1:2:3:4:5:6:0.0.0.0]",S_OK,FALSE},
1455 {"http",S_OK,FALSE},
1456 {"",S_FALSE,FALSE},
1457 {"",S_FALSE,FALSE},
1460 {Uri_HOST_IPV6,S_OK,FALSE},
1461 {80,S_OK,FALSE},
1462 {URL_SCHEME_HTTP,S_OK,FALSE},
1463 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1466 /* IPv4 addresses get normalized. */
1467 { "http://[::001.002.003.000]", 0, S_OK, FALSE,
1469 {"http://[::1.2.3.0]/",S_OK,FALSE},
1470 {"[::1.2.3.0]",S_OK,FALSE},
1471 {"http://[::1.2.3.0]/",S_OK,FALSE},
1472 {"",S_FALSE,FALSE},
1473 {"",S_FALSE,FALSE},
1474 {"",S_FALSE,FALSE},
1475 {"::1.2.3.0",S_OK,FALSE},
1476 {"",S_FALSE,FALSE},
1477 {"/",S_OK,FALSE},
1478 {"/",S_OK,FALSE},
1479 {"",S_FALSE,FALSE},
1480 {"http://[::001.002.003.000]",S_OK,FALSE},
1481 {"http",S_OK,FALSE},
1482 {"",S_FALSE,FALSE},
1483 {"",S_FALSE,FALSE},
1486 {Uri_HOST_IPV6,S_OK,FALSE},
1487 {80,S_OK,FALSE},
1488 {URL_SCHEME_HTTP,S_OK,FALSE},
1489 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1492 /* Windows doesn't do anything to IPv6's in unknown schemes. */
1493 { "zip://[0001:0:000:0004:0005:0006:001.002.003.000]", 0, S_OK, FALSE,
1495 {"zip://[0001:0:000:0004:0005:0006:001.002.003.000]/",S_OK,FALSE},
1496 {"[0001:0:000:0004:0005:0006:001.002.003.000]",S_OK,FALSE},
1497 {"zip://[0001:0:000:0004:0005:0006:001.002.003.000]/",S_OK,FALSE},
1498 {"",S_FALSE,FALSE},
1499 {"",S_FALSE,FALSE},
1500 {"",S_FALSE,FALSE},
1501 {"0001:0:000:0004:0005:0006:001.002.003.000",S_OK,FALSE},
1502 {"",S_FALSE,FALSE},
1503 {"/",S_OK,FALSE},
1504 {"/",S_OK,FALSE},
1505 {"",S_FALSE,FALSE},
1506 {"zip://[0001:0:000:0004:0005:0006:001.002.003.000]",S_OK,FALSE},
1507 {"zip",S_OK,FALSE},
1508 {"",S_FALSE,FALSE},
1509 {"",S_FALSE,FALSE},
1512 {Uri_HOST_IPV6,S_OK,FALSE},
1513 {0,S_FALSE,FALSE},
1514 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1515 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1518 /* IPv4 address is converted into 2 h16 components. */
1519 { "http://[ffff::192.222.111.32]", 0, S_OK, FALSE,
1521 {"http://[ffff::c0de:6f20]/",S_OK,FALSE},
1522 {"[ffff::c0de:6f20]",S_OK,FALSE},
1523 {"http://[ffff::c0de:6f20]/",S_OK,FALSE},
1524 {"",S_FALSE,FALSE},
1525 {"",S_FALSE,FALSE},
1526 {"",S_FALSE,FALSE},
1527 {"ffff::c0de:6f20",S_OK,FALSE},
1528 {"",S_FALSE,FALSE},
1529 {"/",S_OK,FALSE},
1530 {"/",S_OK,FALSE},
1531 {"",S_FALSE,FALSE},
1532 {"http://[ffff::192.222.111.32]",S_OK,FALSE},
1533 {"http",S_OK,FALSE},
1534 {"",S_FALSE,FALSE},
1535 {"",S_FALSE,FALSE},
1538 {Uri_HOST_IPV6,S_OK,FALSE},
1539 {80,S_OK,FALSE},
1540 {URL_SCHEME_HTTP,S_OK,FALSE},
1541 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1544 /* Max value for a port. */
1545 { "http://google.com:65535", 0, S_OK, FALSE,
1547 {"http://google.com:65535/",S_OK,FALSE},
1548 {"google.com:65535",S_OK,FALSE},
1549 {"http://google.com:65535/",S_OK,FALSE},
1550 {"google.com",S_OK,FALSE},
1551 {"",S_FALSE,FALSE},
1552 {"",S_FALSE,FALSE},
1553 {"google.com",S_OK,FALSE},
1554 {"",S_FALSE,FALSE},
1555 {"/",S_OK,FALSE},
1556 {"/",S_OK,FALSE},
1557 {"",S_FALSE,FALSE},
1558 {"http://google.com:65535",S_OK,FALSE},
1559 {"http",S_OK,FALSE},
1560 {"",S_FALSE,FALSE},
1561 {"",S_FALSE,FALSE}
1564 {Uri_HOST_DNS,S_OK,FALSE},
1565 {65535,S_OK,FALSE},
1566 {URL_SCHEME_HTTP,S_OK,FALSE},
1567 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1570 { "zip://google.com:65536", 0, S_OK, FALSE,
1572 {"zip://google.com:65536/",S_OK,FALSE},
1573 {"google.com:65536",S_OK,FALSE},
1574 {"zip://google.com:65536/",S_OK,FALSE},
1575 {"google.com:65536",S_OK,FALSE},
1576 {"",S_FALSE,FALSE},
1577 {"",S_FALSE,FALSE},
1578 {"google.com:65536",S_OK,FALSE},
1579 {"",S_FALSE,FALSE},
1580 {"/",S_OK,FALSE},
1581 {"/",S_OK,FALSE},
1582 {"",S_FALSE,FALSE},
1583 {"zip://google.com:65536",S_OK,FALSE},
1584 {"zip",S_OK,FALSE},
1585 {"",S_FALSE,FALSE},
1586 {"",S_FALSE,FALSE}
1589 {Uri_HOST_DNS,S_OK,FALSE},
1590 {0,S_FALSE,FALSE},
1591 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1592 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1595 { "zip://google.com:65536:25", 0, S_OK, FALSE,
1597 {"zip://google.com:65536:25/",S_OK,FALSE},
1598 {"google.com:65536:25",S_OK,FALSE},
1599 {"zip://google.com:65536:25/",S_OK,FALSE},
1600 {"google.com:65536:25",S_OK,FALSE},
1601 {"",S_FALSE,FALSE},
1602 {"",S_FALSE,FALSE},
1603 {"google.com:65536:25",S_OK,FALSE},
1604 {"",S_FALSE,FALSE},
1605 {"/",S_OK,FALSE},
1606 {"/",S_OK,FALSE},
1607 {"",S_FALSE,FALSE},
1608 {"zip://google.com:65536:25",S_OK,FALSE},
1609 {"zip",S_OK,FALSE},
1610 {"",S_FALSE,FALSE},
1611 {"",S_FALSE,FALSE}
1614 {Uri_HOST_DNS,S_OK,FALSE},
1615 {0,S_FALSE,FALSE},
1616 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1617 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1620 { "zip://[::ffff]:abcd", 0, S_OK, FALSE,
1622 {"zip://[::ffff]:abcd/",S_OK,FALSE},
1623 {"[::ffff]:abcd",S_OK,FALSE},
1624 {"zip://[::ffff]:abcd/",S_OK,FALSE},
1625 {"",S_FALSE,FALSE},
1626 {"",S_FALSE,FALSE},
1627 {"",S_FALSE,FALSE},
1628 {"[::ffff]:abcd",S_OK,FALSE},
1629 {"",S_FALSE,FALSE},
1630 {"/",S_OK,FALSE},
1631 {"/",S_OK,FALSE},
1632 {"",S_FALSE,FALSE},
1633 {"zip://[::ffff]:abcd",S_OK,FALSE},
1634 {"zip",S_OK,FALSE},
1635 {"",S_FALSE,FALSE},
1636 {"",S_FALSE,FALSE}
1639 {Uri_HOST_DNS,S_OK,FALSE},
1640 {0,S_FALSE,FALSE},
1641 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1642 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1645 { "zip://127.0.0.1:abcd", 0, S_OK, FALSE,
1647 {"zip://127.0.0.1:abcd/",S_OK,FALSE},
1648 {"127.0.0.1:abcd",S_OK,FALSE},
1649 {"zip://127.0.0.1:abcd/",S_OK,FALSE},
1650 {"0.1:abcd",S_OK,FALSE},
1651 {"",S_FALSE,FALSE},
1652 {"",S_FALSE,FALSE},
1653 {"127.0.0.1:abcd",S_OK,FALSE},
1654 {"",S_FALSE,FALSE},
1655 {"/",S_OK,FALSE},
1656 {"/",S_OK,FALSE},
1657 {"",S_FALSE,FALSE},
1658 {"zip://127.0.0.1:abcd",S_OK,FALSE},
1659 {"zip",S_OK,FALSE},
1660 {"",S_FALSE,FALSE},
1661 {"",S_FALSE,FALSE}
1664 {Uri_HOST_DNS,S_OK,FALSE},
1665 {0,S_FALSE,FALSE},
1666 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1667 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1670 /* Port is just copied over. */
1671 { "http://google.com:00035", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
1673 {"http://google.com:00035",S_OK,FALSE},
1674 {"google.com:00035",S_OK,FALSE},
1675 {"http://google.com:00035",S_OK,FALSE,"http://google.com:35"},
1676 {"google.com",S_OK,FALSE},
1677 {"",S_FALSE,FALSE},
1678 {"",S_FALSE,FALSE},
1679 {"google.com",S_OK,FALSE},
1680 {"",S_FALSE,FALSE},
1681 {"",S_FALSE,FALSE},
1682 {"",S_FALSE,FALSE},
1683 {"",S_FALSE,FALSE},
1684 {"http://google.com:00035",S_OK,FALSE},
1685 {"http",S_OK,FALSE},
1686 {"",S_FALSE,FALSE},
1687 {"",S_FALSE,FALSE}
1690 {Uri_HOST_DNS,S_OK,FALSE},
1691 {35,S_OK,FALSE},
1692 {URL_SCHEME_HTTP,S_OK,FALSE},
1693 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1696 /* Default port is copied over. */
1697 { "http://google.com:80", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
1699 {"http://google.com:80",S_OK,FALSE},
1700 {"google.com:80",S_OK,FALSE},
1701 {"http://google.com:80",S_OK,FALSE},
1702 {"google.com",S_OK,FALSE},
1703 {"",S_FALSE,FALSE},
1704 {"",S_FALSE,FALSE},
1705 {"google.com",S_OK,FALSE},
1706 {"",S_FALSE,FALSE},
1707 {"",S_FALSE,FALSE},
1708 {"",S_FALSE,FALSE},
1709 {"",S_FALSE,FALSE},
1710 {"http://google.com:80",S_OK,FALSE},
1711 {"http",S_OK,FALSE},
1712 {"",S_FALSE,FALSE},
1713 {"",S_FALSE,FALSE}
1716 {Uri_HOST_DNS,S_OK,FALSE},
1717 {80,S_OK,FALSE},
1718 {URL_SCHEME_HTTP,S_OK,FALSE},
1719 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1722 { "http://google.com.uk", 0, S_OK, FALSE,
1724 {"http://google.com.uk/",S_OK,FALSE},
1725 {"google.com.uk",S_OK,FALSE},
1726 {"http://google.com.uk/",S_OK,FALSE},
1727 {"google.com.uk",S_OK,FALSE},
1728 {"",S_FALSE,FALSE},
1729 {"",S_FALSE,FALSE},
1730 {"google.com.uk",S_OK,FALSE},
1731 {"",S_FALSE,FALSE},
1732 {"/",S_OK,FALSE},
1733 {"/",S_OK,FALSE},
1734 {"",S_FALSE,FALSE},
1735 {"http://google.com.uk",S_OK,FALSE},
1736 {"http",S_OK,FALSE},
1737 {"",S_FALSE,FALSE},
1738 {"",S_FALSE,FALSE}
1741 {Uri_HOST_DNS,S_OK,FALSE},
1742 {80,S_OK,FALSE},
1743 {URL_SCHEME_HTTP,S_OK,FALSE},
1744 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1747 { "http://google.com.com", 0, S_OK, FALSE,
1749 {"http://google.com.com/",S_OK,FALSE},
1750 {"google.com.com",S_OK,FALSE},
1751 {"http://google.com.com/",S_OK,FALSE},
1752 {"com.com",S_OK,FALSE},
1753 {"",S_FALSE,FALSE},
1754 {"",S_FALSE,FALSE},
1755 {"google.com.com",S_OK,FALSE},
1756 {"",S_FALSE,FALSE},
1757 {"/",S_OK,FALSE},
1758 {"/",S_OK,FALSE},
1759 {"",S_FALSE,FALSE},
1760 {"http://google.com.com",S_OK,FALSE},
1761 {"http",S_OK,FALSE},
1762 {"",S_FALSE,FALSE},
1763 {"",S_FALSE,FALSE}
1766 {Uri_HOST_DNS,S_OK,FALSE},
1767 {80,S_OK,FALSE},
1768 {URL_SCHEME_HTTP,S_OK,FALSE},
1769 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1772 { "http://google.uk.1", 0, S_OK, FALSE,
1774 {"http://google.uk.1/",S_OK,FALSE},
1775 {"google.uk.1",S_OK,FALSE},
1776 {"http://google.uk.1/",S_OK,FALSE},
1777 {"google.uk.1",S_OK,FALSE},
1778 {"",S_FALSE,FALSE},
1779 {"",S_FALSE,FALSE},
1780 {"google.uk.1",S_OK,FALSE},
1781 {"",S_FALSE,FALSE},
1782 {"/",S_OK,FALSE},
1783 {"/",S_OK,FALSE},
1784 {"",S_FALSE,FALSE},
1785 {"http://google.uk.1",S_OK,FALSE},
1786 {"http",S_OK,FALSE},
1787 {"",S_FALSE,FALSE},
1788 {"",S_FALSE,FALSE}
1791 {Uri_HOST_DNS,S_OK,FALSE},
1792 {80,S_OK,FALSE},
1793 {URL_SCHEME_HTTP,S_OK,FALSE},
1794 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1797 /* Since foo isn't a recognized 3 character TLD its considered the domain name. */
1798 { "http://google.foo.uk", 0, S_OK, FALSE,
1800 {"http://google.foo.uk/",S_OK,FALSE},
1801 {"google.foo.uk",S_OK,FALSE},
1802 {"http://google.foo.uk/",S_OK,FALSE},
1803 {"foo.uk",S_OK,FALSE},
1804 {"",S_FALSE,FALSE},
1805 {"",S_FALSE,FALSE},
1806 {"google.foo.uk",S_OK,FALSE},
1807 {"",S_FALSE,FALSE},
1808 {"/",S_OK,FALSE},
1809 {"/",S_OK,FALSE},
1810 {"",S_FALSE,FALSE},
1811 {"http://google.foo.uk",S_OK,FALSE},
1812 {"http",S_OK,FALSE},
1813 {"",S_FALSE,FALSE},
1814 {"",S_FALSE,FALSE}
1817 {Uri_HOST_DNS,S_OK,FALSE},
1818 {80,S_OK,FALSE},
1819 {URL_SCHEME_HTTP,S_OK,FALSE},
1820 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1823 { "http://.com", 0, S_OK, FALSE,
1825 {"http://.com/",S_OK,FALSE},
1826 {".com",S_OK,FALSE},
1827 {"http://.com/",S_OK,FALSE},
1828 {".com",S_OK,FALSE},
1829 {"",S_FALSE,FALSE},
1830 {"",S_FALSE,FALSE},
1831 {".com",S_OK,FALSE},
1832 {"",S_FALSE,FALSE},
1833 {"/",S_OK,FALSE},
1834 {"/",S_OK,FALSE},
1835 {"",S_FALSE,FALSE},
1836 {"http://.com",S_OK,FALSE},
1837 {"http",S_OK,FALSE},
1838 {"",S_FALSE,FALSE},
1839 {"",S_FALSE,FALSE}
1842 {Uri_HOST_DNS,S_OK,FALSE},
1843 {80,S_OK,FALSE},
1844 {URL_SCHEME_HTTP,S_OK,FALSE},
1845 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1848 { "http://.uk", 0, S_OK, FALSE,
1850 {"http://.uk/",S_OK,FALSE},
1851 {".uk",S_OK,FALSE},
1852 {"http://.uk/",S_OK,FALSE},
1853 {"",S_FALSE,FALSE},
1854 {"",S_FALSE,FALSE},
1855 {"",S_FALSE,FALSE},
1856 {".uk",S_OK,FALSE},
1857 {"",S_FALSE,FALSE},
1858 {"/",S_OK,FALSE},
1859 {"/",S_OK,FALSE},
1860 {"",S_FALSE,FALSE},
1861 {"http://.uk",S_OK,FALSE},
1862 {"http",S_OK,FALSE},
1863 {"",S_FALSE,FALSE},
1864 {"",S_FALSE,FALSE}
1867 {Uri_HOST_DNS,S_OK,FALSE},
1868 {80,S_OK,FALSE},
1869 {URL_SCHEME_HTTP,S_OK,FALSE},
1870 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1873 { "http://www.co.google.com.[]", 0, S_OK, FALSE,
1875 {"http://www.co.google.com.[]/",S_OK,FALSE},
1876 {"www.co.google.com.[]",S_OK,FALSE},
1877 {"http://www.co.google.com.[]/",S_OK,FALSE},
1878 {"google.com.[]",S_OK,FALSE},
1879 {"",S_FALSE,FALSE},
1880 {"",S_FALSE,FALSE},
1881 {"www.co.google.com.[]",S_OK,FALSE},
1882 {"",S_FALSE,FALSE},
1883 {"/",S_OK,FALSE},
1884 {"/",S_OK,FALSE},
1885 {"",S_FALSE,FALSE},
1886 {"http://www.co.google.com.[]",S_OK,FALSE},
1887 {"http",S_OK,FALSE},
1888 {"",S_FALSE,FALSE},
1889 {"",S_FALSE,FALSE}
1892 {Uri_HOST_DNS,S_OK,FALSE},
1893 {80,S_OK,FALSE},
1894 {URL_SCHEME_HTTP,S_OK,FALSE},
1895 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1898 { "http://co.uk", 0, S_OK, FALSE,
1900 {"http://co.uk/",S_OK,FALSE},
1901 {"co.uk",S_OK,FALSE},
1902 {"http://co.uk/",S_OK,FALSE},
1903 {"",S_FALSE,FALSE},
1904 {"",S_FALSE,FALSE},
1905 {"",S_FALSE,FALSE},
1906 {"co.uk",S_OK,FALSE},
1907 {"",S_FALSE,FALSE},
1908 {"/",S_OK,FALSE},
1909 {"/",S_OK,FALSE},
1910 {"",S_FALSE,FALSE},
1911 {"http://co.uk",S_OK,FALSE},
1912 {"http",S_OK,FALSE},
1913 {"",S_FALSE,FALSE},
1914 {"",S_FALSE,FALSE}
1917 {Uri_HOST_DNS,S_OK,FALSE},
1918 {80,S_OK,FALSE},
1919 {URL_SCHEME_HTTP,S_OK,FALSE},
1920 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1923 { "http://www.co.google.us.test", 0, S_OK, FALSE,
1925 {"http://www.co.google.us.test/",S_OK,FALSE},
1926 {"www.co.google.us.test",S_OK,FALSE},
1927 {"http://www.co.google.us.test/",S_OK,FALSE},
1928 {"us.test",S_OK,FALSE},
1929 {"",S_FALSE,FALSE},
1930 {"",S_FALSE,FALSE},
1931 {"www.co.google.us.test",S_OK,FALSE},
1932 {"",S_FALSE,FALSE},
1933 {"/",S_OK,FALSE},
1934 {"/",S_OK,FALSE},
1935 {"",S_FALSE,FALSE},
1936 {"http://www.co.google.us.test",S_OK,FALSE},
1937 {"http",S_OK,FALSE},
1938 {"",S_FALSE,FALSE},
1939 {"",S_FALSE,FALSE}
1942 {Uri_HOST_DNS,S_OK,FALSE},
1943 {80,S_OK,FALSE},
1944 {URL_SCHEME_HTTP,S_OK,FALSE},
1945 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1948 { "http://gov.uk", 0, S_OK, FALSE,
1950 {"http://gov.uk/",S_OK,FALSE},
1951 {"gov.uk",S_OK,FALSE},
1952 {"http://gov.uk/",S_OK,FALSE},
1953 {"",S_FALSE,FALSE},
1954 {"",S_FALSE,FALSE},
1955 {"",S_FALSE,FALSE},
1956 {"gov.uk",S_OK,FALSE},
1957 {"",S_FALSE,FALSE},
1958 {"/",S_OK,FALSE},
1959 {"/",S_OK,FALSE},
1960 {"",S_FALSE,FALSE},
1961 {"http://gov.uk",S_OK,FALSE},
1962 {"http",S_OK,FALSE},
1963 {"",S_FALSE,FALSE},
1964 {"",S_FALSE,FALSE}
1967 {Uri_HOST_DNS,S_OK,FALSE},
1968 {80,S_OK,FALSE},
1969 {URL_SCHEME_HTTP,S_OK,FALSE},
1970 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1973 { "zip://www.google.com\\test", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
1975 {"zip://www.google.com\\test",S_OK,FALSE},
1976 {"www.google.com\\test",S_OK,FALSE},
1977 {"zip://www.google.com\\test",S_OK,FALSE},
1978 {"google.com\\test",S_OK,FALSE},
1979 {"",S_FALSE,FALSE},
1980 {"",S_FALSE,FALSE},
1981 {"www.google.com\\test",S_OK,FALSE},
1982 {"",S_FALSE,FALSE},
1983 {"",S_FALSE,FALSE},
1984 {"",S_FALSE,FALSE},
1985 {"",S_FALSE,FALSE},
1986 {"zip://www.google.com\\test",S_OK,FALSE},
1987 {"zip",S_OK,FALSE},
1988 {"",S_FALSE,FALSE},
1989 {"",S_FALSE,FALSE}
1992 {Uri_HOST_DNS,S_OK,FALSE},
1993 {0,S_FALSE,FALSE},
1994 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
1995 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1998 { "urn:excepts:bad:%XY:encoded", 0, S_OK, FALSE,
2000 {"urn:excepts:bad:%XY:encoded",S_OK,FALSE},
2001 {"",S_FALSE,FALSE},
2002 {"urn:excepts:bad:%XY:encoded",S_OK,FALSE},
2003 {"",S_FALSE,FALSE},
2004 {"",S_FALSE,FALSE},
2005 {"",S_FALSE,FALSE},
2006 {"",S_FALSE,FALSE},
2007 {"",S_FALSE,FALSE},
2008 {"excepts:bad:%XY:encoded",S_OK,FALSE},
2009 {"excepts:bad:%XY:encoded",S_OK,FALSE},
2010 {"",S_FALSE,FALSE},
2011 {"urn:excepts:bad:%XY:encoded",S_OK,FALSE},
2012 {"urn",S_OK,FALSE},
2013 {"",S_FALSE,FALSE},
2014 {"",S_FALSE,FALSE}
2017 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2018 {0,S_FALSE,FALSE},
2019 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2020 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2023 /* Since the original URI doesn't contain an extra '/' before the path no % encoded values
2024 * are decoded and all '%' are encoded.
2026 { "file://C:/te%3Es%2Et/tes%t.mp3", 0, S_OK, FALSE,
2028 {"file:///C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2029 {"",S_FALSE,FALSE},
2030 {"file:///C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2031 {"",S_FALSE,FALSE},
2032 {".mp3",S_OK,FALSE},
2033 {"",S_FALSE,FALSE},
2034 {"",S_FALSE,FALSE},
2035 {"",S_FALSE,FALSE},
2036 {"/C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2037 {"/C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2038 {"",S_FALSE,FALSE},
2039 {"file://C:/te%3Es%2Et/tes%t.mp3",S_OK,FALSE},
2040 {"file",S_OK,FALSE},
2041 {"",S_FALSE,FALSE},
2042 {"",S_FALSE,FALSE}
2045 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2046 {0,S_FALSE,FALSE},
2047 {URL_SCHEME_FILE,S_OK,FALSE},
2048 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2051 /* Since there's a '/' in front of the drive letter, any percent encoded, non-forbidden character
2052 * is decoded and only %'s in front of invalid hex digits are encoded.
2054 { "file:///C:/te%3Es%2Et/t%23es%t.mp3", 0, S_OK, FALSE,
2056 {"file:///C:/te%3Es.t/t#es%25t.mp3",S_OK,FALSE},
2057 {"",S_FALSE,FALSE},
2058 {"file:///C:/te%3Es.t/t#es%25t.mp3",S_OK,FALSE},
2059 {"",S_FALSE,FALSE},
2060 {".mp3",S_OK,FALSE},
2061 {"",S_FALSE,FALSE},
2062 {"",S_FALSE,FALSE},
2063 {"",S_FALSE,FALSE},
2064 {"/C:/te%3Es.t/t#es%25t.mp3",S_OK,FALSE},
2065 {"/C:/te%3Es.t/t#es%25t.mp3",S_OK,FALSE},
2066 {"",S_FALSE,FALSE},
2067 {"file:///C:/te%3Es%2Et/t%23es%t.mp3",S_OK,FALSE},
2068 {"file",S_OK,FALSE},
2069 {"",S_FALSE,FALSE},
2070 {"",S_FALSE,FALSE}
2073 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2074 {0,S_FALSE,FALSE},
2075 {URL_SCHEME_FILE,S_OK,FALSE},
2076 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2079 /* Only unreserved percent encoded characters are decoded for known schemes that aren't file. */
2080 { "http://[::001.002.003.000]/%3F%23%2E%54/test", 0, S_OK, FALSE,
2082 {"http://[::1.2.3.0]/%3F%23.T/test",S_OK,FALSE},
2083 {"[::1.2.3.0]",S_OK,FALSE},
2084 {"http://[::1.2.3.0]/%3F%23.T/test",S_OK,FALSE},
2085 {"",S_FALSE,FALSE},
2086 {"",S_FALSE,FALSE},
2087 {"",S_FALSE,FALSE},
2088 {"::1.2.3.0",S_OK,FALSE},
2089 {"",S_FALSE,FALSE},
2090 {"/%3F%23.T/test",S_OK,FALSE},
2091 {"/%3F%23.T/test",S_OK,FALSE},
2092 {"",S_FALSE,FALSE},
2093 {"http://[::001.002.003.000]/%3F%23%2E%54/test",S_OK,FALSE},
2094 {"http",S_OK,FALSE},
2095 {"",S_FALSE,FALSE},
2096 {"",S_FALSE,FALSE},
2099 {Uri_HOST_IPV6,S_OK,FALSE},
2100 {80,S_OK,FALSE},
2101 {URL_SCHEME_HTTP,S_OK,FALSE},
2102 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2105 /* Forbidden characters are always encoded for file URIs. */
2106 { "file:///C:/\"test\"/test.mp3", Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS, S_OK, FALSE,
2108 {"file:///C:/%22test%22/test.mp3",S_OK,FALSE},
2109 {"",S_FALSE,FALSE},
2110 {"file:///C:/%22test%22/test.mp3",S_OK,FALSE},
2111 {"",S_FALSE,FALSE},
2112 {".mp3",S_OK,FALSE},
2113 {"",S_FALSE,FALSE},
2114 {"",S_FALSE,FALSE},
2115 {"",S_FALSE,FALSE},
2116 {"/C:/%22test%22/test.mp3",S_OK,FALSE},
2117 {"/C:/%22test%22/test.mp3",S_OK,FALSE},
2118 {"",S_FALSE,FALSE},
2119 {"file:///C:/\"test\"/test.mp3",S_OK,FALSE},
2120 {"file",S_OK,FALSE},
2121 {"",S_FALSE,FALSE},
2122 {"",S_FALSE,FALSE}
2125 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2126 {0,S_FALSE,FALSE},
2127 {URL_SCHEME_FILE,S_OK,FALSE},
2128 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2131 /* Forbidden characters are never encoded for unknown scheme types. */
2132 { "1234://4294967295/<|>\" test<|>", 0, S_OK, FALSE,
2134 {"1234://4294967295/<|>\" test<|>",S_OK,FALSE},
2135 {"4294967295",S_OK,FALSE},
2136 {"1234://4294967295/<|>\" test<|>",S_OK,FALSE},
2137 {"",S_FALSE,FALSE},
2138 {"",S_FALSE,FALSE},
2139 {"",S_FALSE,FALSE},
2140 {"4294967295",S_OK,FALSE},
2141 {"",S_FALSE,FALSE},
2142 {"/<|>\" test<|>",S_OK,FALSE},
2143 {"/<|>\" test<|>",S_OK,FALSE},
2144 {"",S_FALSE,FALSE},
2145 {"1234://4294967295/<|>\" test<|>",S_OK,FALSE},
2146 {"1234",S_OK,FALSE},
2147 {"",S_FALSE,FALSE},
2148 {"",S_FALSE,FALSE}
2151 {Uri_HOST_IPV4,S_OK,FALSE},
2152 {0,S_FALSE,FALSE},
2153 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2154 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2157 /* Make sure forbidden characters are percent encoded. */
2158 { "http://gov.uk/<|> test<|>", 0, S_OK, FALSE,
2160 {"http://gov.uk/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2161 {"gov.uk",S_OK,FALSE},
2162 {"http://gov.uk/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2163 {"",S_FALSE,FALSE},
2164 {"",S_FALSE,FALSE},
2165 {"",S_FALSE,FALSE},
2166 {"gov.uk",S_OK,FALSE},
2167 {"",S_FALSE,FALSE},
2168 {"/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2169 {"/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2170 {"",S_FALSE,FALSE},
2171 {"http://gov.uk/<|> test<|>",S_OK,FALSE},
2172 {"http",S_OK,FALSE},
2173 {"",S_FALSE,FALSE},
2174 {"",S_FALSE,FALSE}
2177 {Uri_HOST_DNS,S_OK,FALSE},
2178 {80,S_OK,FALSE},
2179 {URL_SCHEME_HTTP,S_OK,FALSE},
2180 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2183 { "http://gov.uk/test/../test2/././../test3/.././././", 0, S_OK, FALSE,
2185 {"http://gov.uk/",S_OK,FALSE},
2186 {"gov.uk",S_OK,FALSE},
2187 {"http://gov.uk/",S_OK,FALSE},
2188 {"",S_FALSE,FALSE},
2189 {"",S_FALSE,FALSE},
2190 {"",S_FALSE,FALSE},
2191 {"gov.uk",S_OK,FALSE},
2192 {"",S_FALSE,FALSE},
2193 {"/",S_OK,FALSE},
2194 {"/",S_OK,FALSE},
2195 {"",S_FALSE,FALSE},
2196 {"http://gov.uk/test/../test2/././../test3/.././././",S_OK,FALSE},
2197 {"http",S_OK,FALSE},
2198 {"",S_FALSE,FALSE},
2199 {"",S_FALSE,FALSE}
2202 {Uri_HOST_DNS,S_OK,FALSE},
2203 {80,S_OK,FALSE},
2204 {URL_SCHEME_HTTP,S_OK,FALSE},
2205 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2208 { "http://gov.uk/test/test2/../../..", 0, S_OK, FALSE,
2210 {"http://gov.uk/",S_OK,FALSE},
2211 {"gov.uk",S_OK,FALSE},
2212 {"http://gov.uk/",S_OK,FALSE},
2213 {"",S_FALSE,FALSE},
2214 {"",S_FALSE,FALSE},
2215 {"",S_FALSE,FALSE},
2216 {"gov.uk",S_OK,FALSE},
2217 {"",S_FALSE,FALSE},
2218 {"/",S_OK,FALSE},
2219 {"/",S_OK,FALSE},
2220 {"",S_FALSE,FALSE},
2221 {"http://gov.uk/test/test2/../../..",S_OK,FALSE},
2222 {"http",S_OK,FALSE},
2223 {"",S_FALSE,FALSE},
2224 {"",S_FALSE,FALSE}
2227 {Uri_HOST_DNS,S_OK,FALSE},
2228 {80,S_OK,FALSE},
2229 {URL_SCHEME_HTTP,S_OK,FALSE},
2230 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2233 { "http://gov.uk/test/test2/../../.", 0, S_OK, FALSE,
2235 {"http://gov.uk/",S_OK,FALSE},
2236 {"gov.uk",S_OK,FALSE},
2237 {"http://gov.uk/",S_OK,FALSE},
2238 {"",S_FALSE,FALSE},
2239 {"",S_FALSE,FALSE},
2240 {"",S_FALSE,FALSE},
2241 {"gov.uk",S_OK,FALSE},
2242 {"",S_FALSE,FALSE},
2243 {"/",S_OK,FALSE},
2244 {"/",S_OK,FALSE},
2245 {"",S_FALSE,FALSE},
2246 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2247 {"http",S_OK,FALSE},
2248 {"",S_FALSE,FALSE},
2249 {"",S_FALSE,FALSE}
2252 {Uri_HOST_DNS,S_OK,FALSE},
2253 {80,S_OK,FALSE},
2254 {URL_SCHEME_HTTP,S_OK,FALSE},
2255 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2258 { "file://c:\\tests\\../tests\\./.\\..\\foo%20bar.mp3", 0, S_OK, FALSE,
2260 {"file:///c:/foo%2520bar.mp3",S_OK,FALSE},
2261 {"",S_FALSE,FALSE},
2262 {"file:///c:/foo%2520bar.mp3",S_OK,FALSE},
2263 {"",S_FALSE,FALSE},
2264 {".mp3",S_OK,FALSE},
2265 {"",S_FALSE,FALSE},
2266 {"",S_FALSE,FALSE},
2267 {"",S_FALSE,FALSE},
2268 {"/c:/foo%2520bar.mp3",S_OK,FALSE},
2269 {"/c:/foo%2520bar.mp3",S_OK,FALSE},
2270 {"",S_FALSE,FALSE},
2271 {"file://c:\\tests\\../tests\\./.\\..\\foo%20bar.mp3",S_OK,FALSE},
2272 {"file",S_OK,FALSE},
2273 {"",S_FALSE,FALSE},
2274 {"",S_FALSE,FALSE}
2277 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2278 {0,S_FALSE,FALSE},
2279 {URL_SCHEME_FILE,S_OK,FALSE},
2280 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2283 /* Dot removal happens for unknown scheme types. */
2284 { "zip://gov.uk/test/test2/../../.", 0, S_OK, FALSE,
2286 {"zip://gov.uk/",S_OK,FALSE},
2287 {"gov.uk",S_OK,FALSE},
2288 {"zip://gov.uk/",S_OK,FALSE},
2289 {"",S_FALSE,FALSE},
2290 {"",S_FALSE,FALSE},
2291 {"",S_FALSE,FALSE},
2292 {"gov.uk",S_OK,FALSE},
2293 {"",S_FALSE,FALSE},
2294 {"/",S_OK,FALSE},
2295 {"/",S_OK,FALSE},
2296 {"",S_FALSE,FALSE},
2297 {"zip://gov.uk/test/test2/../../.",S_OK,FALSE},
2298 {"zip",S_OK,FALSE},
2299 {"",S_FALSE,FALSE},
2300 {"",S_FALSE,FALSE}
2303 {Uri_HOST_DNS,S_OK,FALSE},
2304 {0,S_FALSE,FALSE},
2305 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2306 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2309 /* Dot removal doesn't happen if NO_CANONICALIZE is set. */
2310 { "http://gov.uk/test/test2/../../.", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
2312 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2313 {"gov.uk",S_OK,FALSE},
2314 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2315 {"",S_FALSE,FALSE},
2316 {".",S_OK,FALSE},
2317 {"",S_FALSE,FALSE},
2318 {"gov.uk",S_OK,FALSE},
2319 {"",S_FALSE,FALSE},
2320 {"/test/test2/../../.",S_OK,FALSE},
2321 {"/test/test2/../../.",S_OK,FALSE},
2322 {"",S_FALSE,FALSE},
2323 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2324 {"http",S_OK,FALSE},
2325 {"",S_FALSE,FALSE},
2326 {"",S_FALSE,FALSE}
2329 {Uri_HOST_DNS,S_OK,FALSE},
2330 {80,S_OK,FALSE},
2331 {URL_SCHEME_HTTP,S_OK,FALSE},
2332 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2335 /* Dot removal doesn't happen for wildcard scheme types. */
2336 { "*:gov.uk/test/test2/../../.", 0, S_OK, FALSE,
2338 {"*:gov.uk/test/test2/../../.",S_OK,FALSE},
2339 {"gov.uk",S_OK,FALSE},
2340 {"*:gov.uk/test/test2/../../.",S_OK,FALSE},
2341 {"",S_FALSE,FALSE},
2342 {".",S_OK,FALSE},
2343 {"",S_FALSE,FALSE},
2344 {"gov.uk",S_OK,FALSE},
2345 {"",S_FALSE,FALSE},
2346 {"/test/test2/../../.",S_OK,FALSE},
2347 {"/test/test2/../../.",S_OK,FALSE},
2348 {"",S_FALSE,FALSE},
2349 {"*:gov.uk/test/test2/../../.",S_OK,FALSE},
2350 {"*",S_OK,FALSE},
2351 {"",S_FALSE,FALSE},
2352 {"",S_FALSE,FALSE}
2355 {Uri_HOST_DNS,S_OK,FALSE},
2356 {0,S_FALSE,FALSE},
2357 {URL_SCHEME_WILDCARD,S_OK,FALSE},
2358 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2361 /* Forbidden characters are encoded for opaque known scheme types. */
2362 { "mailto:\"acco<|>unt@example.com\"", 0, S_OK, FALSE,
2364 {"mailto:%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2365 {"",S_FALSE,FALSE},
2366 {"mailto:%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2367 {"",S_FALSE,FALSE},
2368 {".com%22",S_OK,FALSE},
2369 {"",S_FALSE,FALSE},
2370 {"",S_FALSE,FALSE},
2371 {"",S_FALSE,FALSE},
2372 {"%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2373 {"%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2374 {"",S_FALSE,FALSE},
2375 {"mailto:\"acco<|>unt@example.com\"",S_OK,FALSE},
2376 {"mailto",S_OK,FALSE},
2377 {"",S_FALSE,FALSE},
2378 {"",S_FALSE,FALSE}
2381 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2382 {0,S_FALSE,FALSE},
2383 {URL_SCHEME_MAILTO,S_OK,FALSE},
2384 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2387 { "news:test.tes<|>t.com", 0, S_OK, FALSE,
2389 {"news:test.tes%3C%7C%3Et.com",S_OK,FALSE},
2390 {"",S_FALSE,FALSE},
2391 {"news:test.tes%3C%7C%3Et.com",S_OK,FALSE},
2392 {"",S_FALSE,FALSE},
2393 {".com",S_OK,FALSE},
2394 {"",S_FALSE,FALSE},
2395 {"",S_FALSE,FALSE},
2396 {"",S_FALSE,FALSE},
2397 {"test.tes%3C%7C%3Et.com",S_OK,FALSE},
2398 {"test.tes%3C%7C%3Et.com",S_OK,FALSE},
2399 {"",S_FALSE,FALSE},
2400 {"news:test.tes<|>t.com",S_OK,FALSE},
2401 {"news",S_OK,FALSE},
2402 {"",S_FALSE,FALSE},
2403 {"",S_FALSE,FALSE}
2406 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2407 {0,S_FALSE,FALSE},
2408 {URL_SCHEME_NEWS,S_OK,FALSE},
2409 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2412 /* Don't encode forbidden characters. */
2413 { "news:test.tes<|>t.com", Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS, S_OK, FALSE,
2415 {"news:test.tes<|>t.com",S_OK,FALSE},
2416 {"",S_FALSE,FALSE},
2417 {"news:test.tes<|>t.com",S_OK,FALSE},
2418 {"",S_FALSE,FALSE},
2419 {".com",S_OK,FALSE},
2420 {"",S_FALSE,FALSE},
2421 {"",S_FALSE,FALSE},
2422 {"",S_FALSE,FALSE},
2423 {"test.tes<|>t.com",S_OK,FALSE},
2424 {"test.tes<|>t.com",S_OK,FALSE},
2425 {"",S_FALSE,FALSE},
2426 {"news:test.tes<|>t.com",S_OK,FALSE},
2427 {"news",S_OK,FALSE},
2428 {"",S_FALSE,FALSE},
2429 {"",S_FALSE,FALSE}
2432 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2433 {0,S_FALSE,FALSE},
2434 {URL_SCHEME_NEWS,S_OK,FALSE},
2435 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2438 /* Forbidden characters aren't encoded for unknown, opaque URIs. */
2439 { "urn:test.tes<|>t.com", 0, S_OK, FALSE,
2441 {"urn:test.tes<|>t.com",S_OK,FALSE},
2442 {"",S_FALSE,FALSE},
2443 {"urn:test.tes<|>t.com",S_OK,FALSE},
2444 {"",S_FALSE,FALSE},
2445 {".com",S_OK,FALSE},
2446 {"",S_FALSE,FALSE},
2447 {"",S_FALSE,FALSE},
2448 {"",S_FALSE,FALSE},
2449 {"test.tes<|>t.com",S_OK,FALSE},
2450 {"test.tes<|>t.com",S_OK,FALSE},
2451 {"",S_FALSE,FALSE},
2452 {"urn:test.tes<|>t.com",S_OK,FALSE},
2453 {"urn",S_OK,FALSE},
2454 {"",S_FALSE,FALSE},
2455 {"",S_FALSE,FALSE}
2458 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2459 {0,S_FALSE,FALSE},
2460 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2461 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2464 /* Percent encoded unreserved characters are decoded for known opaque URIs. */
2465 { "news:test.%74%65%73%74.com", 0, S_OK, FALSE,
2467 {"news:test.test.com",S_OK,FALSE},
2468 {"",S_FALSE,FALSE},
2469 {"news:test.test.com",S_OK,FALSE},
2470 {"",S_FALSE,FALSE},
2471 {".com",S_OK,FALSE},
2472 {"",S_FALSE,FALSE},
2473 {"",S_FALSE,FALSE},
2474 {"",S_FALSE,FALSE},
2475 {"test.test.com",S_OK,FALSE},
2476 {"test.test.com",S_OK,FALSE},
2477 {"",S_FALSE,FALSE},
2478 {"news:test.%74%65%73%74.com",S_OK,FALSE},
2479 {"news",S_OK,FALSE},
2480 {"",S_FALSE,FALSE},
2481 {"",S_FALSE,FALSE}
2484 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2485 {0,S_FALSE,FALSE},
2486 {URL_SCHEME_NEWS,S_OK,FALSE},
2487 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2490 /* Percent encoded characters are still decoded for known scheme types. */
2491 { "news:test.%74%65%73%74.com", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
2493 {"news:test.test.com",S_OK,FALSE},
2494 {"",S_FALSE,FALSE},
2495 {"news:test.test.com",S_OK,FALSE},
2496 {"",S_FALSE,FALSE},
2497 {".com",S_OK,FALSE},
2498 {"",S_FALSE,FALSE},
2499 {"",S_FALSE,FALSE},
2500 {"",S_FALSE,FALSE},
2501 {"test.test.com",S_OK,FALSE},
2502 {"test.test.com",S_OK,FALSE},
2503 {"",S_FALSE,FALSE},
2504 {"news:test.%74%65%73%74.com",S_OK,FALSE},
2505 {"news",S_OK,FALSE},
2506 {"",S_FALSE,FALSE},
2507 {"",S_FALSE,FALSE}
2510 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2511 {0,S_FALSE,FALSE},
2512 {URL_SCHEME_NEWS,S_OK,FALSE},
2513 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2516 /* Percent encoded characters aren't decoded for unknown scheme types. */
2517 { "urn:test.%74%65%73%74.com", 0, S_OK, FALSE,
2519 {"urn:test.%74%65%73%74.com",S_OK,FALSE},
2520 {"",S_FALSE,FALSE},
2521 {"urn:test.%74%65%73%74.com",S_OK,FALSE},
2522 {"",S_FALSE,FALSE},
2523 {".com",S_OK,FALSE},
2524 {"",S_FALSE,FALSE},
2525 {"",S_FALSE,FALSE},
2526 {"",S_FALSE,FALSE},
2527 {"test.%74%65%73%74.com",S_OK,FALSE},
2528 {"test.%74%65%73%74.com",S_OK,FALSE},
2529 {"",S_FALSE,FALSE},
2530 {"urn:test.%74%65%73%74.com",S_OK,FALSE},
2531 {"urn",S_OK,FALSE},
2532 {"",S_FALSE,FALSE},
2533 {"",S_FALSE,FALSE}
2536 {Uri_HOST_UNKNOWN,S_OK,FALSE},
2537 {0,S_FALSE,FALSE},
2538 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2539 {URLZONE_INVALID,E_NOTIMPL,FALSE}
2542 /* Unknown scheme types can have invalid % encoded data in query string. */
2543 { "zip://www.winehq.org/tests/..?query=%xx&return=y", 0, S_OK, FALSE,
2545 {"zip://www.winehq.org/?query=%xx&return=y",S_OK,FALSE},
2546 {"www.winehq.org",S_OK,FALSE},
2547 {"zip://www.winehq.org/?query=%xx&return=y",S_OK,FALSE},
2548 {"winehq.org",S_OK,FALSE},
2549 {"",S_FALSE,FALSE},
2550 {"",S_FALSE,FALSE},
2551 {"www.winehq.org",S_OK,FALSE},
2552 {"",S_FALSE,FALSE},
2553 {"/",S_OK,FALSE},
2554 {"/?query=%xx&return=y",S_OK,FALSE},
2555 {"?query=%xx&return=y",S_OK,FALSE},
2556 {"zip://www.winehq.org/tests/..?query=%xx&return=y",S_OK,FALSE},
2557 {"zip",S_OK,FALSE},
2558 {"",S_FALSE,FALSE},
2559 {"",S_FALSE,FALSE}
2562 {Uri_HOST_DNS,S_OK,FALSE},
2563 {0,S_FALSE,FALSE},
2564 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2565 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2568 /* Known scheme types can have invalid % encoded data with the right flags. */
2569 { "http://www.winehq.org/tests/..?query=%xx&return=y", Uri_CREATE_NO_DECODE_EXTRA_INFO, S_OK, FALSE,
2571 {"http://www.winehq.org/?query=%xx&return=y",S_OK,FALSE},
2572 {"www.winehq.org",S_OK,FALSE},
2573 {"http://www.winehq.org/?query=%xx&return=y",S_OK,FALSE},
2574 {"winehq.org",S_OK,FALSE},
2575 {"",S_FALSE,FALSE},
2576 {"",S_FALSE,FALSE},
2577 {"www.winehq.org",S_OK,FALSE},
2578 {"",S_FALSE,FALSE},
2579 {"/",S_OK,FALSE},
2580 {"/?query=%xx&return=y",S_OK,FALSE},
2581 {"?query=%xx&return=y",S_OK,FALSE},
2582 {"http://www.winehq.org/tests/..?query=%xx&return=y",S_OK,FALSE},
2583 {"http",S_OK,FALSE},
2584 {"",S_FALSE,FALSE},
2585 {"",S_FALSE,FALSE}
2588 {Uri_HOST_DNS,S_OK,FALSE},
2589 {80,S_OK,FALSE},
2590 {URL_SCHEME_HTTP,S_OK,FALSE},
2591 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2594 /* Forbidden characters in query aren't percent encoded for known scheme types with this flag. */
2595 { "http://www.winehq.org/tests/..?query=<|>&return=y", Uri_CREATE_NO_DECODE_EXTRA_INFO, S_OK, FALSE,
2597 {"http://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2598 {"www.winehq.org",S_OK,FALSE},
2599 {"http://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2600 {"winehq.org",S_OK,FALSE},
2601 {"",S_FALSE,FALSE},
2602 {"",S_FALSE,FALSE},
2603 {"www.winehq.org",S_OK,FALSE},
2604 {"",S_FALSE,FALSE},
2605 {"/",S_OK,FALSE},
2606 {"/?query=<|>&return=y",S_OK,FALSE},
2607 {"?query=<|>&return=y",S_OK,FALSE},
2608 {"http://www.winehq.org/tests/..?query=<|>&return=y",S_OK,FALSE},
2609 {"http",S_OK,FALSE},
2610 {"",S_FALSE,FALSE},
2611 {"",S_FALSE,FALSE}
2614 {Uri_HOST_DNS,S_OK,FALSE},
2615 {80,S_OK,FALSE},
2616 {URL_SCHEME_HTTP,S_OK,FALSE},
2617 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2620 /* Forbidden characters in query aren't percent encoded for known scheme types with this flag. */
2621 { "http://www.winehq.org/tests/..?query=<|>&return=y", Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS, S_OK, FALSE,
2623 {"http://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2624 {"www.winehq.org",S_OK,FALSE},
2625 {"http://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2626 {"winehq.org",S_OK,FALSE},
2627 {"",S_FALSE,FALSE},
2628 {"",S_FALSE,FALSE},
2629 {"www.winehq.org",S_OK,FALSE},
2630 {"",S_FALSE,FALSE},
2631 {"/",S_OK,FALSE},
2632 {"/?query=<|>&return=y",S_OK,FALSE},
2633 {"?query=<|>&return=y",S_OK,FALSE},
2634 {"http://www.winehq.org/tests/..?query=<|>&return=y",S_OK,FALSE},
2635 {"http",S_OK,FALSE},
2636 {"",S_FALSE,FALSE},
2637 {"",S_FALSE,FALSE}
2640 {Uri_HOST_DNS,S_OK,FALSE},
2641 {80,S_OK,FALSE},
2642 {URL_SCHEME_HTTP,S_OK,FALSE},
2643 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2646 /* Forbidden characters are encoded for known scheme types. */
2647 { "http://www.winehq.org/tests/..?query=<|>&return=y", 0, S_OK, FALSE,
2649 {"http://www.winehq.org/?query=%3C%7C%3E&return=y",S_OK,FALSE},
2650 {"www.winehq.org",S_OK,FALSE},
2651 {"http://www.winehq.org/?query=%3C%7C%3E&return=y",S_OK,FALSE},
2652 {"winehq.org",S_OK,FALSE},
2653 {"",S_FALSE,FALSE},
2654 {"",S_FALSE,FALSE},
2655 {"www.winehq.org",S_OK,FALSE},
2656 {"",S_FALSE,FALSE},
2657 {"/",S_OK,FALSE},
2658 {"/?query=%3C%7C%3E&return=y",S_OK,FALSE},
2659 {"?query=%3C%7C%3E&return=y",S_OK,FALSE},
2660 {"http://www.winehq.org/tests/..?query=<|>&return=y",S_OK,FALSE},
2661 {"http",S_OK,FALSE},
2662 {"",S_FALSE,FALSE},
2663 {"",S_FALSE,FALSE}
2666 {Uri_HOST_DNS,S_OK,FALSE},
2667 {80,S_OK,FALSE},
2668 {URL_SCHEME_HTTP,S_OK,FALSE},
2669 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2672 /* Forbidden characters are not encoded for unknown scheme types. */
2673 { "zip://www.winehq.org/tests/..?query=<|>&return=y", 0, S_OK, FALSE,
2675 {"zip://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2676 {"www.winehq.org",S_OK,FALSE},
2677 {"zip://www.winehq.org/?query=<|>&return=y",S_OK,FALSE},
2678 {"winehq.org",S_OK,FALSE},
2679 {"",S_FALSE,FALSE},
2680 {"",S_FALSE,FALSE},
2681 {"www.winehq.org",S_OK,FALSE},
2682 {"",S_FALSE,FALSE},
2683 {"/",S_OK,FALSE},
2684 {"/?query=<|>&return=y",S_OK,FALSE},
2685 {"?query=<|>&return=y",S_OK,FALSE},
2686 {"zip://www.winehq.org/tests/..?query=<|>&return=y",S_OK,FALSE},
2687 {"zip",S_OK,FALSE},
2688 {"",S_FALSE,FALSE},
2689 {"",S_FALSE,FALSE}
2692 {Uri_HOST_DNS,S_OK,FALSE},
2693 {0,S_FALSE,FALSE},
2694 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2695 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2698 /* Percent encoded, unreserved characters are decoded for known scheme types. */
2699 { "http://www.winehq.org/tests/..?query=%30%31&return=y", 0, S_OK, FALSE,
2701 {"http://www.winehq.org/?query=01&return=y",S_OK,FALSE},
2702 {"www.winehq.org",S_OK,FALSE},
2703 {"http://www.winehq.org/?query=01&return=y",S_OK,FALSE},
2704 {"winehq.org",S_OK,FALSE},
2705 {"",S_FALSE,FALSE},
2706 {"",S_FALSE,FALSE},
2707 {"www.winehq.org",S_OK,FALSE},
2708 {"",S_FALSE,FALSE},
2709 {"/",S_OK,FALSE},
2710 {"/?query=01&return=y",S_OK,FALSE},
2711 {"?query=01&return=y",S_OK,FALSE},
2712 {"http://www.winehq.org/tests/..?query=%30%31&return=y",S_OK,FALSE},
2713 {"http",S_OK,FALSE},
2714 {"",S_FALSE,FALSE},
2715 {"",S_FALSE,FALSE}
2718 {Uri_HOST_DNS,S_OK,FALSE},
2719 {80,S_OK,FALSE},
2720 {URL_SCHEME_HTTP,S_OK,FALSE},
2721 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2724 /* Percent encoded, unreserved characters aren't decoded for unknown scheme types. */
2725 { "zip://www.winehq.org/tests/..?query=%30%31&return=y", 0, S_OK, FALSE,
2727 {"zip://www.winehq.org/?query=%30%31&return=y",S_OK,FALSE},
2728 {"www.winehq.org",S_OK,FALSE},
2729 {"zip://www.winehq.org/?query=%30%31&return=y",S_OK,FALSE},
2730 {"winehq.org",S_OK,FALSE},
2731 {"",S_FALSE,FALSE},
2732 {"",S_FALSE,FALSE},
2733 {"www.winehq.org",S_OK,FALSE},
2734 {"",S_FALSE,FALSE},
2735 {"/",S_OK,FALSE},
2736 {"/?query=%30%31&return=y",S_OK,FALSE},
2737 {"?query=%30%31&return=y",S_OK,FALSE},
2738 {"zip://www.winehq.org/tests/..?query=%30%31&return=y",S_OK,FALSE},
2739 {"zip",S_OK,FALSE},
2740 {"",S_FALSE,FALSE},
2741 {"",S_FALSE,FALSE}
2744 {Uri_HOST_DNS,S_OK,FALSE},
2745 {0,S_FALSE,FALSE},
2746 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2747 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2750 /* Percent encoded characters aren't decoded when NO_DECODE_EXTRA_INFO is set. */
2751 { "http://www.winehq.org/tests/..?query=%30%31&return=y", Uri_CREATE_NO_DECODE_EXTRA_INFO, S_OK, FALSE,
2753 {"http://www.winehq.org/?query=%30%31&return=y",S_OK,FALSE},
2754 {"www.winehq.org",S_OK,FALSE},
2755 {"http://www.winehq.org/?query=%30%31&return=y",S_OK,FALSE},
2756 {"winehq.org",S_OK,FALSE},
2757 {"",S_FALSE,FALSE},
2758 {"",S_FALSE,FALSE},
2759 {"www.winehq.org",S_OK,FALSE},
2760 {"",S_FALSE,FALSE},
2761 {"/",S_OK,FALSE},
2762 {"/?query=%30%31&return=y",S_OK,FALSE},
2763 {"?query=%30%31&return=y",S_OK,FALSE},
2764 {"http://www.winehq.org/tests/..?query=%30%31&return=y",S_OK,FALSE},
2765 {"http",S_OK,FALSE},
2766 {"",S_FALSE,FALSE},
2767 {"",S_FALSE,FALSE}
2770 {Uri_HOST_DNS,S_OK,FALSE},
2771 {80,S_OK,FALSE},
2772 {URL_SCHEME_HTTP,S_OK,FALSE},
2773 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2776 { "http://www.winehq.org?query=12&return=y", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
2778 {"http://www.winehq.org?query=12&return=y",S_OK,FALSE},
2779 {"www.winehq.org",S_OK,FALSE},
2780 {"http://www.winehq.org?query=12&return=y",S_OK,FALSE},
2781 {"winehq.org",S_OK,FALSE},
2782 {"",S_FALSE,FALSE},
2783 {"",S_FALSE,FALSE},
2784 {"www.winehq.org",S_OK,FALSE},
2785 {"",S_FALSE,FALSE},
2786 {"",S_FALSE,FALSE},
2787 {"?query=12&return=y",S_OK,FALSE},
2788 {"?query=12&return=y",S_OK,FALSE},
2789 {"http://www.winehq.org?query=12&return=y",S_OK,FALSE},
2790 {"http",S_OK,FALSE},
2791 {"",S_FALSE,FALSE},
2792 {"",S_FALSE,FALSE}
2795 {Uri_HOST_DNS,S_OK,FALSE},
2796 {80,S_OK,FALSE},
2797 {URL_SCHEME_HTTP,S_OK,FALSE},
2798 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2801 /* Unknown scheme types can have invalid % encoded data in fragments. */
2802 { "zip://www.winehq.org/tests/#Te%xx", 0, S_OK, FALSE,
2804 {"zip://www.winehq.org/tests/#Te%xx",S_OK,FALSE},
2805 {"www.winehq.org",S_OK,FALSE},
2806 {"zip://www.winehq.org/tests/#Te%xx",S_OK,FALSE},
2807 {"winehq.org",S_OK,FALSE},
2808 {"",S_FALSE,FALSE},
2809 {"#Te%xx",S_OK,FALSE},
2810 {"www.winehq.org",S_OK,FALSE},
2811 {"",S_FALSE,FALSE},
2812 {"/tests/",S_OK,FALSE},
2813 {"/tests/",S_OK,FALSE},
2814 {"",S_FALSE,FALSE},
2815 {"zip://www.winehq.org/tests/#Te%xx",S_OK,FALSE},
2816 {"zip",S_OK,FALSE},
2817 {"",S_FALSE,FALSE},
2818 {"",S_FALSE,FALSE}
2821 {Uri_HOST_DNS,S_OK,FALSE},
2822 {0,S_FALSE,FALSE},
2823 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2824 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2827 /* Forbidden characters in fragment aren't encoded for unknown schemes. */
2828 { "zip://www.winehq.org/tests/#Te<|>", 0, S_OK, FALSE,
2830 {"zip://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2831 {"www.winehq.org",S_OK,FALSE},
2832 {"zip://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2833 {"winehq.org",S_OK,FALSE},
2834 {"",S_FALSE,FALSE},
2835 {"#Te<|>",S_OK,FALSE},
2836 {"www.winehq.org",S_OK,FALSE},
2837 {"",S_FALSE,FALSE},
2838 {"/tests/",S_OK,FALSE},
2839 {"/tests/",S_OK,FALSE},
2840 {"",S_FALSE,FALSE},
2841 {"zip://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2842 {"zip",S_OK,FALSE},
2843 {"",S_FALSE,FALSE},
2844 {"",S_FALSE,FALSE}
2847 {Uri_HOST_DNS,S_OK,FALSE},
2848 {0,S_FALSE,FALSE},
2849 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2850 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2853 /* Forbidden characters in the fragment are percent encoded for known schemes. */
2854 { "http://www.winehq.org/tests/#Te<|>", 0, S_OK, FALSE,
2856 {"http://www.winehq.org/tests/#Te%3C%7C%3E",S_OK,FALSE},
2857 {"www.winehq.org",S_OK,FALSE},
2858 {"http://www.winehq.org/tests/#Te%3C%7C%3E",S_OK,FALSE},
2859 {"winehq.org",S_OK,FALSE},
2860 {"",S_FALSE,FALSE},
2861 {"#Te%3C%7C%3E",S_OK,FALSE},
2862 {"www.winehq.org",S_OK,FALSE},
2863 {"",S_FALSE,FALSE},
2864 {"/tests/",S_OK,FALSE},
2865 {"/tests/",S_OK,FALSE},
2866 {"",S_FALSE,FALSE},
2867 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2868 {"http",S_OK,FALSE},
2869 {"",S_FALSE,FALSE},
2870 {"",S_FALSE,FALSE}
2873 {Uri_HOST_DNS,S_OK,FALSE},
2874 {80,S_OK,FALSE},
2875 {URL_SCHEME_HTTP,S_OK,FALSE},
2876 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2879 /* Forbidden characters aren't encoded in the fragment with this flag. */
2880 { "http://www.winehq.org/tests/#Te<|>", Uri_CREATE_NO_DECODE_EXTRA_INFO, S_OK, FALSE,
2882 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2883 {"www.winehq.org",S_OK,FALSE},
2884 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2885 {"winehq.org",S_OK,FALSE},
2886 {"",S_FALSE,FALSE},
2887 {"#Te<|>",S_OK,FALSE},
2888 {"www.winehq.org",S_OK,FALSE},
2889 {"",S_FALSE,FALSE},
2890 {"/tests/",S_OK,FALSE},
2891 {"/tests/",S_OK,FALSE},
2892 {"",S_FALSE,FALSE},
2893 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2894 {"http",S_OK,FALSE},
2895 {"",S_FALSE,FALSE},
2896 {"",S_FALSE,FALSE}
2899 {Uri_HOST_DNS,S_OK,FALSE},
2900 {80,S_OK,FALSE},
2901 {URL_SCHEME_HTTP,S_OK,FALSE},
2902 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2905 /* Forbidden characters aren't encoded in the fragment with this flag. */
2906 { "http://www.winehq.org/tests/#Te<|>", Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS, S_OK, FALSE,
2908 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2909 {"www.winehq.org",S_OK,FALSE},
2910 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2911 {"winehq.org",S_OK,FALSE},
2912 {"",S_FALSE,FALSE},
2913 {"#Te<|>",S_OK,FALSE},
2914 {"www.winehq.org",S_OK,FALSE},
2915 {"",S_FALSE,FALSE},
2916 {"/tests/",S_OK,FALSE},
2917 {"/tests/",S_OK,FALSE},
2918 {"",S_FALSE,FALSE},
2919 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2920 {"http",S_OK,FALSE},
2921 {"",S_FALSE,FALSE},
2922 {"",S_FALSE,FALSE}
2925 {Uri_HOST_DNS,S_OK,FALSE},
2926 {80,S_OK,FALSE},
2927 {URL_SCHEME_HTTP,S_OK,FALSE},
2928 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2931 /* Percent encoded, unreserved characters aren't decoded for known scheme types. */
2932 { "zip://www.winehq.org/tests/#Te%30%31%32", 0, S_OK, FALSE,
2934 {"zip://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2935 {"www.winehq.org",S_OK,FALSE},
2936 {"zip://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2937 {"winehq.org",S_OK,FALSE},
2938 {"",S_FALSE,FALSE},
2939 {"#Te%30%31%32",S_OK,FALSE},
2940 {"www.winehq.org",S_OK,FALSE},
2941 {"",S_FALSE,FALSE},
2942 {"/tests/",S_OK,FALSE},
2943 {"/tests/",S_OK,FALSE},
2944 {"",S_FALSE,FALSE},
2945 {"zip://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2946 {"zip",S_OK,FALSE},
2947 {"",S_FALSE,FALSE},
2948 {"",S_FALSE,FALSE}
2951 {Uri_HOST_DNS,S_OK,FALSE},
2952 {0,S_FALSE,FALSE},
2953 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
2954 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2957 /* Percent encoded, unreserved characters are decoded for known schemes. */
2958 { "http://www.winehq.org/tests/#Te%30%31%32", 0, S_OK, FALSE,
2960 {"http://www.winehq.org/tests/#Te012",S_OK,FALSE},
2961 {"www.winehq.org",S_OK,FALSE},
2962 {"http://www.winehq.org/tests/#Te012",S_OK,FALSE},
2963 {"winehq.org",S_OK,FALSE},
2964 {"",S_FALSE,FALSE},
2965 {"#Te012",S_OK,FALSE},
2966 {"www.winehq.org",S_OK,FALSE},
2967 {"",S_FALSE,FALSE},
2968 {"/tests/",S_OK,FALSE},
2969 {"/tests/",S_OK,FALSE},
2970 {"",S_FALSE,FALSE},
2971 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2972 {"http",S_OK,FALSE},
2973 {"",S_FALSE,FALSE},
2974 {"",S_FALSE,FALSE}
2977 {Uri_HOST_DNS,S_OK,FALSE},
2978 {80,S_OK,FALSE},
2979 {URL_SCHEME_HTTP,S_OK,FALSE},
2980 {URLZONE_INVALID,E_NOTIMPL,FALSE},
2983 /* Percent encoded, unreserved characters are decoded even if NO_CANONICALIZE is set. */
2984 { "http://www.winehq.org/tests/#Te%30%31%32", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
2986 {"http://www.winehq.org/tests/#Te012",S_OK,FALSE},
2987 {"www.winehq.org",S_OK,FALSE},
2988 {"http://www.winehq.org/tests/#Te012",S_OK,FALSE},
2989 {"winehq.org",S_OK,FALSE},
2990 {"",S_FALSE,FALSE},
2991 {"#Te012",S_OK,FALSE},
2992 {"www.winehq.org",S_OK,FALSE},
2993 {"",S_FALSE,FALSE},
2994 {"/tests/",S_OK,FALSE},
2995 {"/tests/",S_OK,FALSE},
2996 {"",S_FALSE,FALSE},
2997 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2998 {"http",S_OK,FALSE},
2999 {"",S_FALSE,FALSE},
3000 {"",S_FALSE,FALSE}
3003 {Uri_HOST_DNS,S_OK,FALSE},
3004 {80,S_OK,FALSE},
3005 {URL_SCHEME_HTTP,S_OK,FALSE},
3006 {URLZONE_INVALID,E_NOTIMPL,FALSE},
3009 /* Percent encoded, unreserved characters aren't decoded when NO_DECODE_EXTRA is set. */
3010 { "http://www.winehq.org/tests/#Te%30%31%32", Uri_CREATE_NO_DECODE_EXTRA_INFO, S_OK, FALSE,
3012 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
3013 {"www.winehq.org",S_OK,FALSE},
3014 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
3015 {"winehq.org",S_OK,FALSE},
3016 {"",S_FALSE,FALSE},
3017 {"#Te%30%31%32",S_OK,FALSE},
3018 {"www.winehq.org",S_OK,FALSE},
3019 {"",S_FALSE,FALSE},
3020 {"/tests/",S_OK,FALSE},
3021 {"/tests/",S_OK,FALSE},
3022 {"",S_FALSE,FALSE},
3023 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
3024 {"http",S_OK,FALSE},
3025 {"",S_FALSE,FALSE},
3026 {"",S_FALSE,FALSE}
3029 {Uri_HOST_DNS,S_OK,FALSE},
3030 {80,S_OK,FALSE},
3031 {URL_SCHEME_HTTP,S_OK,FALSE},
3032 {URLZONE_INVALID,E_NOTIMPL,FALSE},
3035 /* Leading/Trailing whitespace is removed. */
3036 { " http://google.com/ ", 0, S_OK, FALSE,
3038 {"http://google.com/",S_OK,FALSE},
3039 {"google.com",S_OK,FALSE},
3040 {"http://google.com/",S_OK,FALSE},
3041 {"google.com",S_OK,FALSE},
3042 {"",S_FALSE,FALSE},
3043 {"",S_FALSE,FALSE},
3044 {"google.com",S_OK,FALSE},
3045 {"",S_FALSE,FALSE},
3046 {"/",S_OK,FALSE},
3047 {"/",S_OK,FALSE},
3048 {"",S_FALSE,FALSE},
3049 {"http://google.com/",S_OK,FALSE},
3050 {"http",S_OK,FALSE},
3051 {"",S_FALSE,FALSE},
3052 {"",S_FALSE,FALSE}
3055 {Uri_HOST_DNS,S_OK,FALSE},
3056 {80,S_OK,FALSE},
3057 {URL_SCHEME_HTTP,S_OK,FALSE},
3058 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3061 { "\t\t\r\nhttp\n://g\noogle.co\rm/\n\n\n", 0, S_OK, FALSE,
3063 {"http://google.com/",S_OK,FALSE},
3064 {"google.com",S_OK,FALSE},
3065 {"http://google.com/",S_OK,FALSE},
3066 {"google.com",S_OK,FALSE},
3067 {"",S_FALSE,FALSE},
3068 {"",S_FALSE,FALSE},
3069 {"google.com",S_OK,FALSE},
3070 {"",S_FALSE,FALSE},
3071 {"/",S_OK,FALSE},
3072 {"/",S_OK,FALSE},
3073 {"",S_FALSE,FALSE},
3074 {"http://google.com/",S_OK,FALSE},
3075 {"http",S_OK,FALSE},
3076 {"",S_FALSE,FALSE},
3077 {"",S_FALSE,FALSE}
3080 {Uri_HOST_DNS,S_OK,FALSE},
3081 {80,S_OK,FALSE},
3082 {URL_SCHEME_HTTP,S_OK,FALSE},
3083 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3086 { "http://g\noogle.co\rm/\n\n\n", Uri_CREATE_NO_PRE_PROCESS_HTML_URI, S_OK, FALSE,
3088 {"http://g%0aoogle.co%0dm/%0A%0A%0A",S_OK,FALSE},
3089 {"g%0aoogle.co%0dm",S_OK,FALSE},
3090 {"http://g%0aoogle.co%0dm/%0A%0A%0A",S_OK,FALSE},
3091 {"g%0aoogle.co%0dm",S_OK,FALSE},
3092 {"",S_FALSE,FALSE},
3093 {"",S_FALSE,FALSE},
3094 {"g%0aoogle.co%0dm",S_OK,FALSE},
3095 {"",S_FALSE,FALSE},
3096 {"/%0A%0A%0A",S_OK,FALSE},
3097 {"/%0A%0A%0A",S_OK,FALSE},
3098 {"",S_FALSE,FALSE},
3099 {"http://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3100 {"http",S_OK,FALSE},
3101 {"",S_FALSE,FALSE},
3102 {"",S_FALSE,FALSE}
3105 {Uri_HOST_DNS,S_OK,FALSE},
3106 {80,S_OK,FALSE},
3107 {URL_SCHEME_HTTP,S_OK,FALSE},
3108 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3111 { "zip://g\noogle.co\rm/\n\n\n", Uri_CREATE_NO_PRE_PROCESS_HTML_URI, S_OK, FALSE,
3113 {"zip://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3114 {"g\noogle.co\rm",S_OK,FALSE},
3115 {"zip://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3116 {"g\noogle.co\rm",S_OK,FALSE},
3117 {"",S_FALSE,FALSE},
3118 {"",S_FALSE,FALSE},
3119 {"g\noogle.co\rm",S_OK,FALSE},
3120 {"",S_FALSE,FALSE},
3121 {"/\n\n\n",S_OK,FALSE},
3122 {"/\n\n\n",S_OK,FALSE},
3123 {"",S_FALSE,FALSE},
3124 {"zip://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3125 {"zip",S_OK,FALSE},
3126 {"",S_FALSE,FALSE},
3127 {"",S_FALSE,FALSE}
3130 {Uri_HOST_DNS,S_OK,FALSE},
3131 {0,S_FALSE,FALSE},
3132 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
3133 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3136 /* Since file URLs are usually hierarchical, it returns an empty string
3137 * for the absolute URI property since it was declared as an opaque URI.
3139 { "file:index.html", 0, S_OK, FALSE,
3141 {"",S_FALSE,FALSE},
3142 {"",S_FALSE,FALSE},
3143 {"file:index.html",S_OK,FALSE},
3144 {"",S_FALSE,FALSE},
3145 {".html",S_OK,FALSE},
3146 {"",S_FALSE,FALSE},
3147 {"",S_FALSE,FALSE},
3148 {"",S_FALSE,FALSE},
3149 {"index.html",S_OK,FALSE},
3150 {"index.html",S_OK,FALSE},
3151 {"",S_FALSE,FALSE},
3152 {"file:index.html",S_OK,FALSE},
3153 {"file",S_OK,FALSE},
3154 {"",S_FALSE,FALSE},
3155 {"",S_FALSE,FALSE}
3158 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3159 {0,S_FALSE,FALSE},
3160 {URL_SCHEME_FILE,S_OK,FALSE},
3161 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3164 /* Doesn't have an absolute since it's opaque, but gets it port set. */
3165 { "http:test.com/index.html", 0, S_OK, FALSE,
3167 {"",S_FALSE,FALSE},
3168 {"",S_FALSE,FALSE},
3169 {"http:test.com/index.html",S_OK,FALSE},
3170 {"",S_FALSE,FALSE},
3171 {".html",S_OK,FALSE},
3172 {"",S_FALSE,FALSE},
3173 {"",S_FALSE,FALSE},
3174 {"",S_FALSE,FALSE},
3175 {"test.com/index.html",S_OK,FALSE},
3176 {"test.com/index.html",S_OK,FALSE},
3177 {"",S_FALSE,FALSE},
3178 {"http:test.com/index.html",S_OK,FALSE},
3179 {"http",S_OK,FALSE},
3180 {"",S_FALSE,FALSE},
3181 {"",S_FALSE,FALSE}
3184 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3185 {80,S_OK,FALSE},
3186 {URL_SCHEME_HTTP,S_OK,FALSE},
3187 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3190 { "ftp:test.com/index.html", 0, S_OK, FALSE,
3192 {"",S_FALSE,FALSE},
3193 {"",S_FALSE,FALSE},
3194 {"ftp:test.com/index.html",S_OK,FALSE},
3195 {"",S_FALSE,FALSE},
3196 {".html",S_OK,FALSE},
3197 {"",S_FALSE,FALSE},
3198 {"",S_FALSE,FALSE},
3199 {"",S_FALSE,FALSE},
3200 {"test.com/index.html",S_OK,FALSE},
3201 {"test.com/index.html",S_OK,FALSE},
3202 {"",S_FALSE,FALSE},
3203 {"ftp:test.com/index.html",S_OK,FALSE},
3204 {"ftp",S_OK,FALSE},
3205 {"",S_FALSE,FALSE},
3206 {"",S_FALSE,FALSE}
3209 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3210 {21,S_OK,FALSE},
3211 {URL_SCHEME_FTP,S_OK,FALSE},
3212 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3215 { "file://C|/test.mp3", 0, S_OK, FALSE,
3217 {"file:///C:/test.mp3",S_OK,FALSE},
3218 {"",S_FALSE,FALSE},
3219 {"file:///C:/test.mp3",S_OK,FALSE},
3220 {"",S_FALSE,FALSE},
3221 {".mp3",S_OK,FALSE},
3222 {"",S_FALSE,FALSE},
3223 {"",S_FALSE,FALSE},
3224 {"",S_FALSE,FALSE},
3225 {"/C:/test.mp3",S_OK,FALSE},
3226 {"/C:/test.mp3",S_OK,FALSE},
3227 {"",S_FALSE,FALSE},
3228 {"file://C|/test.mp3",S_OK,FALSE},
3229 {"file",S_OK,FALSE},
3230 {"",S_FALSE,FALSE},
3231 {"",S_FALSE,FALSE}
3234 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3235 {0,S_FALSE,FALSE},
3236 {URL_SCHEME_FILE,S_OK,FALSE},
3237 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3240 { "file:///C|/test.mp3", 0, S_OK, FALSE,
3242 {"file:///C:/test.mp3",S_OK,FALSE},
3243 {"",S_FALSE,FALSE},
3244 {"file:///C:/test.mp3",S_OK,FALSE},
3245 {"",S_FALSE,FALSE},
3246 {".mp3",S_OK,FALSE},
3247 {"",S_FALSE,FALSE},
3248 {"",S_FALSE,FALSE},
3249 {"",S_FALSE,FALSE},
3250 {"/C:/test.mp3",S_OK,FALSE},
3251 {"/C:/test.mp3",S_OK,FALSE},
3252 {"",S_FALSE,FALSE},
3253 {"file:///C|/test.mp3",S_OK,FALSE},
3254 {"file",S_OK,FALSE},
3255 {"",S_FALSE,FALSE},
3256 {"",S_FALSE,FALSE}
3259 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3260 {0,S_FALSE,FALSE},
3261 {URL_SCHEME_FILE,S_OK,FALSE},
3262 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3265 /* Extra '/' isn't added before "c:" since USE_DOS_PATH is set and '/' are converted
3266 * to '\\'.
3268 { "file://c:/dir/index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3270 {"file://c:\\dir\\index.html",S_OK,FALSE},
3271 {"",S_FALSE,FALSE},
3272 {"file://c:\\dir\\index.html",S_OK,FALSE},
3273 {"",S_FALSE,FALSE},
3274 {".html",S_OK,FALSE},
3275 {"",S_FALSE,FALSE},
3276 {"",S_FALSE,FALSE},
3277 {"",S_FALSE,FALSE},
3278 {"c:\\dir\\index.html",S_OK,FALSE},
3279 {"c:\\dir\\index.html",S_OK,FALSE},
3280 {"",S_FALSE,FALSE},
3281 {"file://c:/dir/index.html",S_OK,FALSE},
3282 {"file",S_OK,FALSE},
3283 {"",S_FALSE,FALSE},
3284 {"",S_FALSE,FALSE}
3287 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3288 {0,S_FALSE,FALSE},
3289 {URL_SCHEME_FILE,S_OK,FALSE},
3290 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3293 /* Extra '/' after "file://" is removed. */
3294 { "file:///c:/dir/index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3296 {"file://c:\\dir\\index.html",S_OK,FALSE},
3297 {"",S_FALSE,FALSE},
3298 {"file://c:\\dir\\index.html",S_OK,FALSE},
3299 {"",S_FALSE,FALSE},
3300 {".html",S_OK,FALSE},
3301 {"",S_FALSE,FALSE},
3302 {"",S_FALSE,FALSE},
3303 {"",S_FALSE,FALSE},
3304 {"c:\\dir\\index.html",S_OK,FALSE},
3305 {"c:\\dir\\index.html",S_OK,FALSE},
3306 {"",S_FALSE,FALSE},
3307 {"file:///c:/dir/index.html",S_OK,FALSE},
3308 {"file",S_OK,FALSE},
3309 {"",S_FALSE,FALSE},
3310 {"",S_FALSE,FALSE}
3313 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3314 {0,S_FALSE,FALSE},
3315 {URL_SCHEME_FILE,S_OK,FALSE},
3316 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3319 /* Allow more characters when Uri_CREATE_FILE_USE_DOS_PATH is specified */
3320 { "file:///c:/dir\\%%61%20%5Fname/file%2A.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3322 {"file://c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3323 {"",S_FALSE,FALSE},
3324 {"file://c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3325 {"",S_FALSE,FALSE},
3326 {".html",S_OK,FALSE},
3327 {"",S_FALSE,FALSE},
3328 {"",S_FALSE,FALSE},
3329 {"",S_FALSE,FALSE},
3330 {"c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3331 {"c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3332 {"",S_FALSE,FALSE},
3333 {"file:///c:/dir\\%%61%20%5Fname/file%2A.html",S_OK,FALSE},
3334 {"file",S_OK,FALSE},
3335 {"",S_FALSE,FALSE},
3336 {"",S_FALSE,FALSE}
3339 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3340 {0,S_FALSE,FALSE},
3341 {URL_SCHEME_FILE,S_OK,FALSE},
3342 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3345 { "file://c|/dir\\index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3347 {"file://c:\\dir\\index.html",S_OK,FALSE},
3348 {"",S_FALSE,FALSE},
3349 {"file://c:\\dir\\index.html",S_OK,FALSE},
3350 {"",S_FALSE,FALSE},
3351 {".html",S_OK,FALSE},
3352 {"",S_FALSE,FALSE},
3353 {"",S_FALSE,FALSE},
3354 {"",S_FALSE,FALSE},
3355 {"c:\\dir\\index.html",S_OK,FALSE},
3356 {"c:\\dir\\index.html",S_OK,FALSE},
3357 {"",S_FALSE,FALSE},
3358 {"file://c|/dir\\index.html",S_OK,FALSE},
3359 {"file",S_OK,FALSE},
3360 {"",S_FALSE,FALSE},
3361 {"",S_FALSE,FALSE}
3364 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3365 {0,S_FALSE,FALSE},
3366 {URL_SCHEME_FILE,S_OK,FALSE},
3367 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3370 /* The backslashes after the scheme name are converted to forward slashes. */
3371 { "file:\\\\c:\\dir\\index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3373 {"file://c:\\dir\\index.html",S_OK,FALSE},
3374 {"",S_FALSE,FALSE},
3375 {"file://c:\\dir\\index.html",S_OK,FALSE},
3376 {"",S_FALSE,FALSE},
3377 {".html",S_OK,FALSE},
3378 {"",S_FALSE,FALSE},
3379 {"",S_FALSE,FALSE},
3380 {"",S_FALSE,FALSE},
3381 {"c:\\dir\\index.html",S_OK,FALSE},
3382 {"c:\\dir\\index.html",S_OK,FALSE},
3383 {"",S_FALSE,FALSE},
3384 {"file:\\\\c:\\dir\\index.html",S_OK,FALSE},
3385 {"file",S_OK,FALSE},
3386 {"",S_FALSE,FALSE},
3387 {"",S_FALSE,FALSE}
3390 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3391 {0,S_FALSE,FALSE},
3392 {URL_SCHEME_FILE,S_OK,FALSE},
3393 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3396 { "file:\\\\c:/dir/index.html", 0, S_OK, FALSE,
3398 {"file:///c:/dir/index.html",S_OK,FALSE},
3399 {"",S_FALSE,FALSE},
3400 {"file:///c:/dir/index.html",S_OK,FALSE},
3401 {"",S_FALSE,FALSE},
3402 {".html",S_OK,FALSE},
3403 {"",S_FALSE,FALSE},
3404 {"",S_FALSE,FALSE},
3405 {"",S_FALSE,FALSE},
3406 {"/c:/dir/index.html",S_OK,FALSE},
3407 {"/c:/dir/index.html",S_OK,FALSE},
3408 {"",S_FALSE,FALSE},
3409 {"file:\\\\c:/dir/index.html",S_OK,FALSE},
3410 {"file",S_OK,FALSE},
3411 {"",S_FALSE,FALSE},
3412 {"",S_FALSE,FALSE}
3415 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3416 {0,S_FALSE,FALSE},
3417 {URL_SCHEME_FILE,S_OK,FALSE},
3418 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3421 { "http:\\\\google.com", 0, S_OK, FALSE,
3423 {"http://google.com/",S_OK,FALSE},
3424 {"google.com",S_OK,FALSE},
3425 {"http://google.com/",S_OK,FALSE},
3426 {"google.com",S_OK,FALSE},
3427 {"",S_FALSE,FALSE},
3428 {"",S_FALSE,FALSE},
3429 {"google.com",S_OK,FALSE},
3430 {"",S_FALSE,FALSE},
3431 {"/",S_OK,FALSE},
3432 {"/",S_OK,FALSE},
3433 {"",S_FALSE,FALSE},
3434 {"http:\\\\google.com",S_OK,FALSE},
3435 {"http",S_OK,FALSE},
3436 {"",S_FALSE,FALSE},
3437 {"",S_FALSE,FALSE}
3440 {Uri_HOST_DNS,S_OK,FALSE},
3441 {80,S_OK,FALSE},
3442 {URL_SCHEME_HTTP,S_OK,FALSE},
3443 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3446 /* the "\\\\" aren't converted to "//" for unknown scheme types and it's considered opaque. */
3447 { "zip:\\\\google.com", 0, S_OK, FALSE,
3449 {"zip:\\\\google.com",S_OK,FALSE},
3450 {"",S_FALSE,FALSE},
3451 {"zip:\\\\google.com",S_OK,FALSE},
3452 {"",S_FALSE,FALSE},
3453 {".com",S_OK,FALSE},
3454 {"",S_FALSE,FALSE},
3455 {"",S_FALSE,FALSE},
3456 {"",S_FALSE,FALSE},
3457 {"\\\\google.com",S_OK,FALSE},
3458 {"\\\\google.com",S_OK,FALSE},
3459 {"",S_FALSE,FALSE},
3460 {"zip:\\\\google.com",S_OK,FALSE},
3461 {"zip",S_OK,FALSE},
3462 {"",S_FALSE,FALSE},
3463 {"",S_FALSE,FALSE}
3466 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3467 {0,S_FALSE,FALSE},
3468 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
3469 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3472 /* Dot segments aren't removed. */
3473 { "file://c:\\dir\\../..\\./index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3475 {"file://c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3476 {"",S_FALSE,FALSE},
3477 {"file://c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3478 {"",S_FALSE,FALSE},
3479 {".html",S_OK,FALSE},
3480 {"",S_FALSE,FALSE},
3481 {"",S_FALSE,FALSE},
3482 {"",S_FALSE,FALSE},
3483 {"c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3484 {"c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3485 {"",S_FALSE,FALSE},
3486 {"file://c:\\dir\\../..\\./index.html",S_OK,FALSE},
3487 {"file",S_OK,FALSE},
3488 {"",S_FALSE,FALSE},
3489 {"",S_FALSE,FALSE}
3492 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3493 {0,S_FALSE,FALSE},
3494 {URL_SCHEME_FILE,S_OK,FALSE},
3495 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3498 /* Forbidden characters aren't percent encoded. */
3499 { "file://c:\\dir\\i^|ndex.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3501 {"file://c:\\dir\\i^|ndex.html",S_OK,FALSE},
3502 {"",S_FALSE,FALSE},
3503 {"file://c:\\dir\\i^|ndex.html",S_OK,FALSE},
3504 {"",S_FALSE,FALSE},
3505 {".html",S_OK,FALSE},
3506 {"",S_FALSE,FALSE},
3507 {"",S_FALSE,FALSE},
3508 {"",S_FALSE,FALSE},
3509 {"c:\\dir\\i^|ndex.html",S_OK,FALSE},
3510 {"c:\\dir\\i^|ndex.html",S_OK,FALSE},
3511 {"",S_FALSE,FALSE},
3512 {"file://c:\\dir\\i^|ndex.html",S_OK,FALSE},
3513 {"file",S_OK,FALSE},
3514 {"",S_FALSE,FALSE},
3515 {"",S_FALSE,FALSE}
3518 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3519 {0,S_FALSE,FALSE},
3520 {URL_SCHEME_FILE,S_OK,FALSE},
3521 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3524 /* The '\' are still converted to '/' even though it's an opaque file URI. */
3525 { "file:c:\\dir\\../..\\index.html", 0, S_OK, FALSE,
3527 {"",S_FALSE,FALSE},
3528 {"",S_FALSE,FALSE},
3529 {"file:c:/dir/../../index.html",S_OK,FALSE},
3530 {"",S_FALSE,FALSE},
3531 {".html",S_OK,FALSE},
3532 {"",S_FALSE,FALSE},
3533 {"",S_FALSE,FALSE},
3534 {"",S_FALSE,FALSE},
3535 {"c:/dir/../../index.html",S_OK,FALSE},
3536 {"c:/dir/../../index.html",S_OK,FALSE},
3537 {"",S_FALSE,FALSE},
3538 {"file:c:\\dir\\../..\\index.html",S_OK,FALSE},
3539 {"file",S_OK,FALSE},
3540 {"",S_FALSE,FALSE},
3541 {"",S_FALSE,FALSE}
3544 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3545 {0,S_FALSE,FALSE},
3546 {URL_SCHEME_FILE,S_OK,FALSE},
3547 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3550 /* '/' are still converted to '\' even though it's an opaque URI. */
3551 { "file:c:/dir\\../..\\index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3553 {"",S_FALSE,FALSE},
3554 {"",S_FALSE,FALSE},
3555 {"file:c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3556 {"",S_FALSE,FALSE},
3557 {".html",S_OK,FALSE},
3558 {"",S_FALSE,FALSE},
3559 {"",S_FALSE,FALSE},
3560 {"",S_FALSE,FALSE},
3561 {"c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3562 {"c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3563 {"",S_FALSE,FALSE},
3564 {"file:c:/dir\\../..\\index.html",S_OK,FALSE},
3565 {"file",S_OK,FALSE},
3566 {"",S_FALSE,FALSE},
3567 {"",S_FALSE,FALSE}
3570 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3571 {0,S_FALSE,FALSE},
3572 {URL_SCHEME_FILE,S_OK,FALSE},
3573 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3576 /* Forbidden characters aren't percent encoded. */
3577 { "file:c:\\in^|dex.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3579 {"",S_FALSE,FALSE},
3580 {"",S_FALSE,FALSE},
3581 {"file:c:\\in^|dex.html",S_OK,FALSE},
3582 {"",S_FALSE,FALSE},
3583 {".html",S_OK,FALSE},
3584 {"",S_FALSE,FALSE},
3585 {"",S_FALSE,FALSE},
3586 {"",S_FALSE,FALSE},
3587 {"c:\\in^|dex.html",S_OK,FALSE},
3588 {"c:\\in^|dex.html",S_OK,FALSE},
3589 {"",S_FALSE,FALSE},
3590 {"file:c:\\in^|dex.html",S_OK,FALSE},
3591 {"file",S_OK,FALSE},
3592 {"",S_FALSE,FALSE},
3593 {"",S_FALSE,FALSE}
3596 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3597 {0,S_FALSE,FALSE},
3598 {URL_SCHEME_FILE,S_OK,FALSE},
3599 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3602 /* Doesn't have a UserName since the ':' appears at the beginning of the
3603 * userinfo section.
3605 { "http://:password@gov.uk", 0, S_OK, FALSE,
3607 {"http://:password@gov.uk/",S_OK,FALSE},
3608 {":password@gov.uk",S_OK,FALSE},
3609 {"http://gov.uk/",S_OK,FALSE},
3610 {"",S_FALSE,FALSE},
3611 {"",S_FALSE,FALSE},
3612 {"",S_FALSE,FALSE},
3613 {"gov.uk",S_OK,FALSE},
3614 {"password",S_OK,FALSE},
3615 {"/",S_OK,FALSE},
3616 {"/",S_OK,FALSE},
3617 {"",S_FALSE,FALSE},
3618 {"http://:password@gov.uk",S_OK,FALSE},
3619 {"http",S_OK,FALSE},
3620 {":password",S_OK,FALSE},
3621 {"",S_FALSE,FALSE}
3624 {Uri_HOST_DNS,S_OK,FALSE},
3625 {80,S_OK,FALSE},
3626 {URL_SCHEME_HTTP,S_OK,FALSE},
3627 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3630 /* Has a UserName since the userinfo section doesn't contain a password. */
3631 { "http://@gov.uk", 0, S_OK, FALSE,
3633 {"http://gov.uk/",S_OK,FALSE,"http://@gov.uk/"},
3634 {"@gov.uk",S_OK,FALSE},
3635 {"http://gov.uk/",S_OK,FALSE},
3636 {"",S_FALSE,FALSE},
3637 {"",S_FALSE,FALSE},
3638 {"",S_FALSE,FALSE},
3639 {"gov.uk",S_OK,FALSE},
3640 {"",S_FALSE,FALSE},
3641 {"/",S_OK,FALSE},
3642 {"/",S_OK,FALSE},
3643 {"",S_FALSE,FALSE},
3644 {"http://@gov.uk",S_OK,FALSE},
3645 {"http",S_OK,FALSE},
3646 {"",S_OK,FALSE},
3647 {"",S_OK,FALSE}
3650 {Uri_HOST_DNS,S_OK,FALSE},
3651 {80,S_OK,FALSE},
3652 {URL_SCHEME_HTTP,S_OK,FALSE},
3653 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3656 /* ":@" not included in the absolute URI. */
3657 { "http://:@gov.uk", 0, S_OK, FALSE,
3659 {"http://gov.uk/",S_OK,FALSE,"http://:@gov.uk/"},
3660 {":@gov.uk",S_OK,FALSE},
3661 {"http://gov.uk/",S_OK,FALSE},
3662 {"",S_FALSE,FALSE},
3663 {"",S_FALSE,FALSE},
3664 {"",S_FALSE,FALSE},
3665 {"gov.uk",S_OK,FALSE},
3666 {"",S_OK,FALSE},
3667 {"/",S_OK,FALSE},
3668 {"/",S_OK,FALSE},
3669 {"",S_FALSE,FALSE},
3670 {"http://:@gov.uk",S_OK,FALSE},
3671 {"http",S_OK,FALSE},
3672 {":",S_OK,FALSE},
3673 {"",S_FALSE,FALSE}
3676 {Uri_HOST_DNS,S_OK,FALSE},
3677 {80,S_OK,FALSE},
3678 {URL_SCHEME_HTTP,S_OK,FALSE},
3679 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3682 /* '@' is included because it's an unknown scheme type. */
3683 { "zip://@gov.uk", 0, S_OK, FALSE,
3685 {"zip://@gov.uk/",S_OK,FALSE},
3686 {"@gov.uk",S_OK,FALSE},
3687 {"zip://@gov.uk/",S_OK,FALSE},
3688 {"",S_FALSE,FALSE},
3689 {"",S_FALSE,FALSE},
3690 {"",S_FALSE,FALSE},
3691 {"gov.uk",S_OK,FALSE},
3692 {"",S_FALSE,FALSE},
3693 {"/",S_OK,FALSE},
3694 {"/",S_OK,FALSE},
3695 {"",S_FALSE,FALSE},
3696 {"zip://@gov.uk",S_OK,FALSE},
3697 {"zip",S_OK,FALSE},
3698 {"",S_OK,FALSE},
3699 {"",S_OK,FALSE}
3702 {Uri_HOST_DNS,S_OK,FALSE},
3703 {0,S_FALSE,FALSE},
3704 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
3705 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3708 /* ":@" are included because it's an unknown scheme type. */
3709 { "zip://:@gov.uk", 0, S_OK, FALSE,
3711 {"zip://:@gov.uk/",S_OK,FALSE},
3712 {":@gov.uk",S_OK,FALSE},
3713 {"zip://:@gov.uk/",S_OK,FALSE},
3714 {"",S_FALSE,FALSE},
3715 {"",S_FALSE,FALSE},
3716 {"",S_FALSE,FALSE},
3717 {"gov.uk",S_OK,FALSE},
3718 {"",S_OK,FALSE},
3719 {"/",S_OK,FALSE},
3720 {"/",S_OK,FALSE},
3721 {"",S_FALSE,FALSE},
3722 {"zip://:@gov.uk",S_OK,FALSE},
3723 {"zip",S_OK,FALSE},
3724 {":",S_OK,FALSE},
3725 {"",S_FALSE,FALSE}
3728 {Uri_HOST_DNS,S_OK,FALSE},
3729 {0,S_FALSE,FALSE},
3730 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
3731 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3734 { "about:blank", 0, S_OK, FALSE,
3736 {"about:blank",S_OK,FALSE},
3737 {"",S_FALSE,FALSE},
3738 {"about:blank",S_OK,FALSE},
3739 {"",S_FALSE,FALSE},
3740 {"",S_FALSE,FALSE},
3741 {"",S_FALSE,FALSE},
3742 {"",S_FALSE,FALSE},
3743 {"",S_FALSE,FALSE},
3744 {"blank",S_OK,FALSE},
3745 {"blank",S_OK,FALSE},
3746 {"",S_FALSE,FALSE},
3747 {"about:blank",S_OK,FALSE},
3748 {"about",S_OK,FALSE},
3749 {"",S_FALSE,FALSE},
3750 {"",S_FALSE,FALSE}
3753 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3754 {0,S_FALSE,FALSE},
3755 {URL_SCHEME_ABOUT,S_OK,FALSE},
3756 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3759 { "mk:@MSITStore:C:\\Program Files/AutoCAD 2008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",0,S_OK,FALSE,
3761 {"mk:@MSITStore:C:\\Program%20Files/AutoCAD%202008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3762 {"",S_FALSE,FALSE},
3763 {"mk:@MSITStore:C:\\Program%20Files/AutoCAD%202008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3764 {"",S_FALSE,FALSE},
3765 {".htm",S_OK,FALSE},
3766 {"",S_FALSE,FALSE},
3767 {"",S_FALSE,FALSE},
3768 {"",S_FALSE,FALSE},
3769 {"@MSITStore:C:\\Program%20Files/AutoCAD%202008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3770 {"@MSITStore:C:\\Program%20Files/AutoCAD%202008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3771 {"",S_FALSE,FALSE},
3772 {"mk:@MSITStore:C:\\Program Files/AutoCAD 2008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3773 {"mk",S_OK,FALSE},
3774 {"",S_FALSE,FALSE},
3775 {"",S_FALSE,FALSE}
3778 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3779 {0,S_FALSE,FALSE},
3780 {URL_SCHEME_MK,S_OK,FALSE},
3781 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3784 { "mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",0,S_OK,FALSE,
3786 {"mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3787 {"",S_FALSE,FALSE},
3788 {"mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3789 {"",S_FALSE,FALSE},
3790 {".htm",S_OK,FALSE},
3791 {"",S_FALSE,FALSE},
3792 {"",S_FALSE,FALSE},
3793 {"",S_FALSE,FALSE},
3794 {"@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3795 {"@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3796 {"",S_FALSE,FALSE},
3797 {"mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3798 {"mk",S_OK,FALSE},
3799 {"",S_FALSE,FALSE},
3800 {"",S_FALSE,FALSE}
3803 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3804 {0,S_FALSE,FALSE},
3805 {URL_SCHEME_MK,S_OK,FALSE},
3806 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3809 /* Two '\' are added to the URI when USE_DOS_PATH is set, and it's a UNC path. */
3810 { "file://server/dir/index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3812 {"file://\\\\server\\dir\\index.html",S_OK,FALSE},
3813 {"server",S_OK,FALSE},
3814 {"file://\\\\server\\dir\\index.html",S_OK,FALSE},
3815 {"",S_FALSE,FALSE},
3816 {".html",S_OK,FALSE},
3817 {"",S_FALSE,FALSE},
3818 {"server",S_OK,FALSE},
3819 {"",S_FALSE,FALSE},
3820 {"\\dir\\index.html",S_OK,FALSE},
3821 {"\\dir\\index.html",S_OK,FALSE},
3822 {"",S_FALSE,FALSE},
3823 {"file://server/dir/index.html",S_OK,FALSE},
3824 {"file",S_OK,FALSE},
3825 {"",S_FALSE,FALSE},
3826 {"",S_FALSE,FALSE}
3829 {Uri_HOST_DNS,S_OK,FALSE},
3830 {0,S_FALSE,FALSE},
3831 {URL_SCHEME_FILE,S_OK,FALSE},
3832 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3835 /* When CreateUri generates an IUri, it still displays the default port in the
3836 * authority.
3838 { "http://google.com:80/", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
3840 {"http://google.com:80/",S_OK,FALSE},
3841 {"google.com:80",S_OK,FALSE},
3842 {"http://google.com:80/",S_OK,FALSE},
3843 {"google.com",S_OK,FALSE},
3844 {"",S_FALSE,FALSE},
3845 {"",S_FALSE,FALSE},
3846 {"google.com",S_OK,FALSE},
3847 {"",S_FALSE,FALSE},
3848 {"/",S_OK,FALSE},
3849 {"/",S_OK,FALSE},
3850 {"",S_FALSE,FALSE},
3851 {"http://google.com:80/",S_OK,FALSE},
3852 {"http",S_OK,FALSE},
3853 {"",S_FALSE,FALSE},
3854 {"",S_FALSE,FALSE}
3857 {Uri_HOST_DNS,S_OK,FALSE},
3858 {80,S_OK,FALSE},
3859 {URL_SCHEME_HTTP,S_OK,FALSE},
3860 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3863 /* For res URIs the host is everything up until the first '/'. */
3864 { "res://C:\\dir\\file.exe/DATA/test.html", 0, S_OK, FALSE,
3866 {"res://C:\\dir\\file.exe/DATA/test.html",S_OK,FALSE},
3867 {"C:\\dir\\file.exe",S_OK,FALSE},
3868 {"res://C:\\dir\\file.exe/DATA/test.html",S_OK,FALSE},
3869 {"",S_FALSE,FALSE},
3870 {".html",S_OK,FALSE},
3871 {"",S_FALSE,FALSE},
3872 {"C:\\dir\\file.exe",S_OK,FALSE},
3873 {"",S_FALSE,FALSE},
3874 {"/DATA/test.html",S_OK,FALSE},
3875 {"/DATA/test.html",S_OK,FALSE},
3876 {"",S_FALSE,FALSE},
3877 {"res://C:\\dir\\file.exe/DATA/test.html",S_OK,FALSE},
3878 {"res",S_OK,FALSE},
3879 {"",S_FALSE,FALSE},
3880 {"",S_FALSE,FALSE}
3883 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3884 {0,S_FALSE,FALSE},
3885 {URL_SCHEME_RES,S_OK,FALSE},
3886 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3889 /* Res URI can contain a '|' in the host name. */
3890 { "res://c:\\di|r\\file.exe/test", 0, S_OK, FALSE,
3892 {"res://c:\\di|r\\file.exe/test",S_OK,FALSE},
3893 {"c:\\di|r\\file.exe",S_OK,FALSE},
3894 {"res://c:\\di|r\\file.exe/test",S_OK,FALSE},
3895 {"",S_FALSE,FALSE},
3896 {"",S_FALSE,FALSE},
3897 {"",S_FALSE,FALSE},
3898 {"c:\\di|r\\file.exe",S_OK,FALSE},
3899 {"",S_FALSE,FALSE},
3900 {"/test",S_OK,FALSE},
3901 {"/test",S_OK,FALSE},
3902 {"",S_FALSE,FALSE},
3903 {"res://c:\\di|r\\file.exe/test",S_OK,FALSE},
3904 {"res",S_OK,FALSE},
3905 {"",S_FALSE,FALSE},
3906 {"",S_FALSE,FALSE}
3909 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3910 {0,S_FALSE,FALSE},
3911 {URL_SCHEME_RES,S_OK,FALSE},
3912 {URLZONE_INVALID,E_NOTIMPL,FALSE},
3915 /* Res URIs can have invalid percent encoded values. */
3916 { "res://c:\\dir%xx\\file.exe/test", 0, S_OK, FALSE,
3918 {"res://c:\\dir%xx\\file.exe/test",S_OK,FALSE},
3919 {"c:\\dir%xx\\file.exe",S_OK,FALSE},
3920 {"res://c:\\dir%xx\\file.exe/test",S_OK,FALSE},
3921 {"",S_FALSE,FALSE},
3922 {"",S_FALSE,FALSE},
3923 {"",S_FALSE,FALSE},
3924 {"c:\\dir%xx\\file.exe",S_OK,FALSE},
3925 {"",S_FALSE,FALSE},
3926 {"/test",S_OK,FALSE},
3927 {"/test",S_OK,FALSE},
3928 {"",S_FALSE,FALSE},
3929 {"res://c:\\dir%xx\\file.exe/test",S_OK,FALSE},
3930 {"res",S_OK,FALSE},
3931 {"",S_FALSE,FALSE},
3932 {"",S_FALSE,FALSE}
3935 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3936 {0,S_FALSE,FALSE},
3937 {URL_SCHEME_RES,S_OK,FALSE},
3938 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3941 /* Res doesn't get forbidden characters percent encoded in it's path. */
3942 { "res://c:\\test/tes<|>t", 0, S_OK, FALSE,
3944 {"res://c:\\test/tes<|>t",S_OK,FALSE},
3945 {"c:\\test",S_OK,FALSE},
3946 {"res://c:\\test/tes<|>t",S_OK,FALSE},
3947 {"",S_FALSE,FALSE},
3948 {"",S_FALSE,FALSE},
3949 {"",S_FALSE,FALSE},
3950 {"c:\\test",S_OK,FALSE},
3951 {"",S_FALSE,FALSE},
3952 {"/tes<|>t",S_OK,FALSE},
3953 {"/tes<|>t",S_OK,FALSE},
3954 {"",S_FALSE,FALSE},
3955 {"res://c:\\test/tes<|>t",S_OK,FALSE},
3956 {"res",S_OK,FALSE},
3957 {"",S_FALSE,FALSE},
3958 {"",S_FALSE,FALSE}
3961 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3962 {0,S_FALSE,FALSE},
3963 {URL_SCHEME_RES,S_OK,FALSE},
3964 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3969 typedef struct _invalid_uri {
3970 const char* uri;
3971 DWORD flags;
3972 BOOL todo;
3973 } invalid_uri;
3975 static const invalid_uri invalid_uri_tests[] = {
3976 /* Has to have a scheme name. */
3977 {"://www.winehq.org",0,FALSE},
3978 /* Window's doesn't like URI's which are implicitly file paths without the
3979 * ALLOW_IMPLICIT_FILE_SCHEME flag set.
3981 {"C:/test/test.mp3",0,FALSE},
3982 {"\\\\Server/test/test.mp3",0,FALSE},
3983 {"C:/test/test.mp3",Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME,FALSE},
3984 {"\\\\Server/test/test.mp3",Uri_CREATE_ALLOW_RELATIVE,FALSE},
3985 /* Invalid schemes. */
3986 {"*abcd://not.valid.com",0,FALSE},
3987 {"*a*b*c*d://not.valid.com",0,FALSE},
3988 /* Not allowed to have invalid % encoded data. */
3989 {"ftp://google.co%XX/",0,FALSE},
3990 /* To many h16 components. */
3991 {"http://[1:2:3:4:5:6:7:8:9]",0,FALSE},
3992 /* Not enough room for IPv4 address. */
3993 {"http://[1:2:3:4:5:6:7:192.0.1.0]",0,FALSE},
3994 /* Not enough h16 components. */
3995 {"http://[1:2:3:4]",0,FALSE},
3996 /* Not enough components including IPv4. */
3997 {"http://[1:192.0.1.0]",0,FALSE},
3998 /* Not allowed to have partial IPv4 in IPv6. */
3999 {"http://[::192.0]",0,FALSE},
4000 /* Can't have elision of 1 h16 at beginning of address. */
4001 {"http://[::2:3:4:5:6:7:8]",0,FALSE},
4002 /* Can't have elision of 1 h16 at end of address. */
4003 {"http://[1:2:3:4:5:6:7::]",0,FALSE},
4004 /* Expects a valid IP Literal. */
4005 {"ftp://[not.valid.uri]/",0,FALSE},
4006 /* Expects valid port for a known scheme type. */
4007 {"ftp://www.winehq.org:123fgh",0,FALSE},
4008 /* Port exceeds USHORT_MAX for known scheme type. */
4009 {"ftp://www.winehq.org:65536",0,FALSE},
4010 /* Invalid port with IPv4 address. */
4011 {"http://www.winehq.org:1abcd",0,FALSE},
4012 /* Invalid port with IPv6 address. */
4013 {"http://[::ffff]:32xy",0,FALSE},
4014 /* Not allowed to have backslashes with NO_CANONICALIZE. */
4015 {"gopher://www.google.com\\test",Uri_CREATE_NO_CANONICALIZE,FALSE},
4016 /* Not allowed to have invalid % encoded data in opaque URI path. */
4017 {"news:test%XX",0,FALSE},
4018 {"mailto:wine@winehq%G8.com",0,FALSE},
4019 /* Known scheme types can't have invalid % encoded data in query string. */
4020 {"http://google.com/?query=te%xx",0,FALSE},
4021 /* Invalid % encoded data in fragment of know scheme type. */
4022 {"ftp://google.com/#Test%xx",0,FALSE},
4023 {" http://google.com/",Uri_CREATE_NO_PRE_PROCESS_HTML_URI,FALSE},
4024 {"\n\nhttp://google.com/",Uri_CREATE_NO_PRE_PROCESS_HTML_URI,FALSE},
4025 {"file://c:\\test<test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4026 {"file://c:\\test>test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4027 {"file://c:\\test\"test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4028 {"file:c:\\test<test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4029 {"file:c:\\test>test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4030 {"file:c:\\test\"test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4031 /* res URIs aren't allowed to have forbidden dos path characters in the
4032 * hostname.
4034 {"res://c:\\te<st\\test/test",0,FALSE},
4035 {"res://c:\\te>st\\test/test",0,FALSE},
4036 {"res://c:\\te\"st\\test/test",0,FALSE},
4037 {"res://c:\\test/te%xxst",0,FALSE}
4040 typedef struct _uri_equality {
4041 const char* a;
4042 DWORD create_flags_a;
4043 BOOL create_todo_a;
4044 const char* b;
4045 DWORD create_flags_b;
4046 BOOL create_todo_b;
4047 BOOL equal;
4048 BOOL todo;
4049 } uri_equality;
4051 static const uri_equality equality_tests[] = {
4053 "HTTP://www.winehq.org/test dir/./",0,FALSE,
4054 "http://www.winehq.org/test dir/../test dir/",0,FALSE,
4055 TRUE, FALSE
4058 /* http://www.winehq.org/test%20dir */
4059 "http://%77%77%77%2E%77%69%6E%65%68%71%2E%6F%72%67/%74%65%73%74%20%64%69%72",0,FALSE,
4060 "http://www.winehq.org/test dir",0,FALSE,
4061 TRUE, FALSE
4064 "c:\\test.mp3",Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME,FALSE,
4065 "file:///c:/test.mp3",0,FALSE,
4066 TRUE, FALSE
4069 "ftp://ftp.winehq.org/",0,FALSE,
4070 "ftp://ftp.winehq.org",0,FALSE,
4071 TRUE, FALSE
4074 "ftp://ftp.winehq.org/test/test2/../../testB/",0,FALSE,
4075 "ftp://ftp.winehq.org/t%45stB/",0,FALSE,
4076 FALSE, FALSE
4079 "http://google.com/TEST",0,FALSE,
4080 "http://google.com/test",0,FALSE,
4081 FALSE, FALSE
4084 "http://GOOGLE.com/",0,FALSE,
4085 "http://google.com/",0,FALSE,
4086 TRUE, FALSE
4088 /* Performs case insensitive compare of host names (for known scheme types). */
4090 "ftp://GOOGLE.com/",Uri_CREATE_NO_CANONICALIZE,FALSE,
4091 "ftp://google.com/",0,FALSE,
4092 TRUE, FALSE
4095 "zip://GOOGLE.com/",0,FALSE,
4096 "zip://google.com/",0,FALSE,
4097 FALSE, FALSE
4100 "file:///c:/TEST/TeST/",0,FALSE,
4101 "file:///c:/test/test/",0,FALSE,
4102 TRUE, FALSE
4105 "file:///server/TEST",0,FALSE,
4106 "file:///SERVER/TEST",0,FALSE,
4107 TRUE, FALSE
4110 "http://google.com",Uri_CREATE_NO_CANONICALIZE,FALSE,
4111 "http://google.com/",0,FALSE,
4112 TRUE, FALSE
4115 "ftp://google.com:21/",0,FALSE,
4116 "ftp://google.com/",0,FALSE,
4117 TRUE, FALSE
4120 "http://google.com:80/",Uri_CREATE_NO_CANONICALIZE,FALSE,
4121 "http://google.com/",0,FALSE,
4122 TRUE, FALSE
4125 "http://google.com:70/",0,FALSE,
4126 "http://google.com:71/",0,FALSE,
4127 FALSE, FALSE
4131 typedef struct _uri_with_fragment {
4132 const char* uri;
4133 const char* fragment;
4134 DWORD create_flags;
4135 HRESULT create_expected;
4136 BOOL create_todo;
4138 const char* expected_uri;
4139 BOOL expected_todo;
4140 } uri_with_fragment;
4142 static const uri_with_fragment uri_fragment_tests[] = {
4144 "http://google.com/","#fragment",0,S_OK,FALSE,
4145 "http://google.com/#fragment",FALSE
4148 "http://google.com/","fragment",0,S_OK,FALSE,
4149 "http://google.com/#fragment",FALSE
4152 "zip://test.com/","?test",0,S_OK,FALSE,
4153 "zip://test.com/#?test",FALSE
4155 /* The fragment can be empty. */
4157 "ftp://ftp.google.com/","",0,S_OK,FALSE,
4158 "ftp://ftp.google.com/#",FALSE
4162 typedef struct _uri_builder_property {
4163 BOOL change;
4164 const char *value;
4165 const char *expected_value;
4166 Uri_PROPERTY property;
4167 HRESULT expected;
4168 BOOL todo;
4169 } uri_builder_property;
4171 typedef struct _uri_builder_port {
4172 BOOL change;
4173 BOOL set;
4174 DWORD value;
4175 HRESULT expected;
4176 BOOL todo;
4177 } uri_builder_port;
4179 typedef struct _uri_builder_str_property {
4180 const char* expected;
4181 HRESULT result;
4182 BOOL todo;
4183 } uri_builder_str_property;
4185 typedef struct _uri_builder_dword_property {
4186 DWORD expected;
4187 HRESULT result;
4188 BOOL todo;
4189 } uri_builder_dword_property;
4191 typedef struct _uri_builder_test {
4192 const char *uri;
4193 DWORD create_flags;
4194 HRESULT create_builder_expected;
4195 BOOL create_builder_todo;
4197 uri_builder_property properties[URI_BUILDER_STR_PROPERTY_COUNT];
4199 uri_builder_port port_prop;
4201 DWORD uri_flags;
4202 HRESULT uri_hres;
4203 BOOL uri_todo;
4205 DWORD uri_simple_encode_flags;
4206 HRESULT uri_simple_hres;
4207 BOOL uri_simple_todo;
4209 DWORD uri_with_flags;
4210 DWORD uri_with_builder_flags;
4211 DWORD uri_with_encode_flags;
4212 HRESULT uri_with_hres;
4213 BOOL uri_with_todo;
4215 uri_builder_str_property expected_str_props[URI_STR_PROPERTY_COUNT];
4216 uri_builder_dword_property expected_dword_props[URI_DWORD_PROPERTY_COUNT];
4217 } uri_builder_test;
4219 static const uri_builder_test uri_builder_tests[] = {
4220 { "http://google.com/",0,S_OK,FALSE,
4222 {TRUE,"#fragment",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE},
4223 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE},
4224 {TRUE,"?query=x",NULL,Uri_PROPERTY_QUERY,S_OK,FALSE},
4225 {TRUE,"username",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4227 {FALSE},
4228 0,S_OK,FALSE,
4229 0,S_OK,FALSE,
4230 0,0,0,S_OK,FALSE,
4232 {"http://username:password@google.com/?query=x#fragment",S_OK},
4233 {"username:password@google.com",S_OK},
4234 {"http://google.com/?query=x#fragment",S_OK},
4235 {"google.com",S_OK},
4236 {"",S_FALSE},
4237 {"#fragment",S_OK},
4238 {"google.com",S_OK},
4239 {"password",S_OK},
4240 {"/",S_OK},
4241 {"/?query=x",S_OK},
4242 {"?query=x",S_OK},
4243 {"http://username:password@google.com/?query=x#fragment",S_OK},
4244 {"http",S_OK},
4245 {"username:password",S_OK},
4246 {"username",S_OK}
4249 {Uri_HOST_DNS,S_OK},
4250 {80,S_OK},
4251 {URL_SCHEME_HTTP,S_OK},
4252 {URLZONE_INVALID,E_NOTIMPL}
4255 { "http://google.com/",0,S_OK,FALSE,
4257 {TRUE,"test",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE}
4259 {TRUE,TRUE,120,S_OK,FALSE},
4260 0,S_OK,FALSE,
4261 0,S_OK,FALSE,
4262 0,0,0,S_OK,FALSE,
4264 {"test://google.com:120/",S_OK},
4265 {"google.com:120",S_OK},
4266 {"test://google.com:120/",S_OK},
4267 {"google.com",S_OK},
4268 {"",S_FALSE},
4269 {"",S_FALSE},
4270 {"google.com",S_OK},
4271 {"",S_FALSE},
4272 {"/",S_OK},
4273 {"/",S_OK},
4274 {"",S_FALSE},
4275 {"test://google.com:120/",S_OK},
4276 {"test",S_OK},
4277 {"",S_FALSE},
4278 {"",S_FALSE}
4281 {Uri_HOST_DNS,S_OK},
4282 {120,S_OK},
4283 {URL_SCHEME_UNKNOWN,S_OK},
4284 {URLZONE_INVALID,E_NOTIMPL}
4287 { "/Test/test dir",Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4289 {TRUE,"http",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE},
4290 {TRUE,"::192.2.3.4",NULL,Uri_PROPERTY_HOST,S_OK,FALSE},
4291 {TRUE,NULL,NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
4293 {FALSE},
4294 0,S_OK,FALSE,
4295 0,S_OK,FALSE,
4296 0,0,0,S_OK,FALSE,
4298 {"http://[::192.2.3.4]/",S_OK},
4299 {"[::192.2.3.4]",S_OK},
4300 {"http://[::192.2.3.4]/",S_OK},
4301 {"",S_FALSE},
4302 {"",S_FALSE},
4303 {"",S_FALSE},
4304 {"::192.2.3.4",S_OK},
4305 {"",S_FALSE},
4306 {"/",S_OK},
4307 {"/",S_OK},
4308 {"",S_FALSE},
4309 {"http://[::192.2.3.4]/",S_OK},
4310 {"http",S_OK},
4311 {"",S_FALSE},
4312 {"",S_FALSE}
4315 {Uri_HOST_IPV6,S_OK},
4316 {80,S_OK},
4317 {URL_SCHEME_HTTP,S_OK},
4318 {URLZONE_INVALID,E_NOTIMPL}
4321 { "http://google.com/",0,S_OK,FALSE,
4323 {TRUE,"Frag","#Frag",Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4325 {FALSE},
4326 0,S_OK,FALSE,
4327 0,S_OK,FALSE,
4328 0,0,0,S_OK,FALSE,
4330 {"http://google.com/#Frag",S_OK},
4331 {"google.com",S_OK},
4332 {"http://google.com/#Frag",S_OK},
4333 {"google.com",S_OK},
4334 {"",S_FALSE},
4335 {"#Frag",S_OK},
4336 {"google.com",S_OK},
4337 {"",S_FALSE},
4338 {"/",S_OK},
4339 {"/",S_OK},
4340 {"",S_FALSE},
4341 {"http://google.com/#Frag",S_OK},
4342 {"http",S_OK},
4343 {"",S_FALSE},
4344 {"",S_FALSE}
4347 {Uri_HOST_DNS,S_OK},
4348 {80,S_OK},
4349 {URL_SCHEME_HTTP,S_OK},
4350 {URLZONE_INVALID,E_NOTIMPL}
4353 { "http://google.com/",0,S_OK,FALSE,
4355 {TRUE,"","#",Uri_PROPERTY_FRAGMENT,S_OK,FALSE},
4357 {FALSE},
4358 0,S_OK,FALSE,
4359 0,S_OK,FALSE,
4360 0,0,0,S_OK,FALSE,
4362 {"http://google.com/#",S_OK},
4363 {"google.com",S_OK},
4364 {"http://google.com/#",S_OK},
4365 {"google.com",S_OK},
4366 {"",S_FALSE},
4367 {"#",S_OK},
4368 {"google.com",S_OK},
4369 {"",S_FALSE},
4370 {"/",S_OK},
4371 {"/",S_OK},
4372 {"",S_FALSE},
4373 {"http://google.com/#",S_OK},
4374 {"http",S_OK},
4375 {"",S_FALSE},
4376 {"",S_FALSE}
4379 {Uri_HOST_DNS,S_OK},
4380 {80,S_OK},
4381 {URL_SCHEME_HTTP,S_OK},
4382 {URLZONE_INVALID,E_NOTIMPL}
4385 { "http://google.com/",0,S_OK,FALSE,
4387 {TRUE,":password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4389 {FALSE},
4390 0,S_OK,FALSE,
4391 0,S_OK,FALSE,
4392 0,0,0,S_OK,FALSE,
4394 {"http://::password@google.com/",S_OK},
4395 {"::password@google.com",S_OK},
4396 {"http://google.com/",S_OK},
4397 {"google.com",S_OK},
4398 {"",S_FALSE},
4399 {"",S_FALSE},
4400 {"google.com",S_OK},
4401 {":password",S_OK},
4402 {"/",S_OK},
4403 {"/",S_OK},
4404 {"",S_FALSE},
4405 {"http://::password@google.com/",S_OK},
4406 {"http",S_OK},
4407 {"::password",S_OK},
4408 {"",S_FALSE}
4411 {Uri_HOST_DNS,S_OK},
4412 {80,S_OK},
4413 {URL_SCHEME_HTTP,S_OK},
4414 {URLZONE_INVALID,E_NOTIMPL}
4417 { "test/test",Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4419 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4421 {FALSE},
4422 Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4423 0,S_OK,FALSE,
4424 Uri_CREATE_ALLOW_RELATIVE,0,0,S_OK,FALSE,
4426 {":password@test/test",S_OK},
4427 {":password@",S_OK},
4428 {":password@test/test",S_OK},
4429 {"",S_FALSE},
4430 {"",S_FALSE},
4431 {"",S_FALSE},
4432 {"",S_FALSE},
4433 {"password",S_OK},
4434 {"test/test",S_OK},
4435 {"test/test",S_OK},
4436 {"",S_FALSE},
4437 {":password@test/test",S_OK},
4438 {"",S_FALSE},
4439 {":password",S_OK},
4440 {"",S_FALSE}
4443 {Uri_HOST_UNKNOWN,S_OK},
4444 {0,S_FALSE},
4445 {URL_SCHEME_UNKNOWN,S_OK},
4446 {URLZONE_INVALID,E_NOTIMPL}
4449 { "http://google.com/",0,S_OK,FALSE,
4451 {TRUE,"test/test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
4453 {FALSE},
4454 0,S_OK,FALSE,
4455 0,S_OK,FALSE,
4456 0,0,0,S_OK,FALSE,
4458 {"http://google.com/test/test",S_OK},
4459 {"google.com",S_OK},
4460 {"http://google.com/test/test",S_OK},
4461 {"google.com",S_OK},
4462 {"",S_FALSE},
4463 {"",S_FALSE},
4464 {"google.com",S_OK},
4465 {"",S_FALSE},
4466 {"/test/test",S_OK},
4467 {"/test/test",S_OK},
4468 {"",S_FALSE},
4469 {"http://google.com/test/test",S_OK},
4470 {"http",S_OK},
4471 {"",S_FALSE},
4472 {"",S_FALSE}
4475 {Uri_HOST_DNS,S_OK},
4476 {80,S_OK},
4477 {URL_SCHEME_HTTP,S_OK},
4478 {URLZONE_INVALID,E_NOTIMPL}
4481 { "zip:testing/test",0,S_OK,FALSE,
4483 {TRUE,"test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
4485 {FALSE},
4486 0,S_OK,FALSE,
4487 0,S_OK,FALSE,
4488 0,0,0,S_OK,FALSE,
4490 {"zip:test",S_OK},
4491 {"",S_FALSE},
4492 {"zip:test",S_OK},
4493 {"",S_FALSE},
4494 {"",S_FALSE},
4495 {"",S_FALSE},
4496 {"",S_FALSE},
4497 {"",S_FALSE},
4498 {"test",S_OK},
4499 {"test",S_OK},
4500 {"",S_FALSE},
4501 {"zip:test",S_OK},
4502 {"zip",S_OK},
4503 {"",S_FALSE},
4504 {"",S_FALSE}
4507 {Uri_HOST_UNKNOWN,S_OK},
4508 {0,S_FALSE},
4509 {URL_SCHEME_UNKNOWN,S_OK},
4510 {URLZONE_INVALID,E_NOTIMPL}
4513 { "http://google.com/",0,S_OK,FALSE,
4515 {FALSE},
4517 /* 555 will be returned from GetPort even though FALSE was passed as the hasPort parameter. */
4518 {TRUE,FALSE,555,S_OK,FALSE},
4519 0,S_OK,FALSE,
4520 0,S_OK,FALSE,
4521 0,0,0,S_OK,FALSE,
4523 {"http://google.com/",S_OK},
4524 {"google.com",S_OK},
4525 {"http://google.com/",S_OK},
4526 {"google.com",S_OK},
4527 {"",S_FALSE},
4528 {"",S_FALSE},
4529 {"google.com",S_OK},
4530 {"",S_FALSE},
4531 {"/",S_OK},
4532 {"/",S_OK},
4533 {"",S_FALSE},
4534 {"http://google.com/",S_OK},
4535 {"http",S_OK},
4536 {"",S_FALSE},
4537 {"",S_FALSE}
4540 {Uri_HOST_DNS,S_OK},
4541 /* Still returns 80, even though earlier the port was disabled. */
4542 {80,S_OK},
4543 {URL_SCHEME_HTTP,S_OK},
4544 {URLZONE_INVALID,E_NOTIMPL}
4547 { "http://google.com/",0,S_OK,FALSE,
4549 {FALSE},
4551 /* Instead of getting "TRUE" back as the "hasPort" parameter in GetPort,
4552 * you'll get 122345 instead.
4554 {TRUE,122345,222,S_OK,FALSE},
4555 0,S_OK,FALSE,
4556 0,S_OK,FALSE,
4557 0,0,0,S_OK,FALSE,
4559 {"http://google.com:222/",S_OK},
4560 {"google.com:222",S_OK},
4561 {"http://google.com:222/",S_OK},
4562 {"google.com",S_OK},
4563 {"",S_FALSE},
4564 {"",S_FALSE},
4565 {"google.com",S_OK},
4566 {"",S_FALSE},
4567 {"/",S_OK},
4568 {"/",S_OK},
4569 {"",S_FALSE},
4570 {"http://google.com:222/",S_OK},
4571 {"http",S_OK},
4572 {"",S_FALSE},
4573 {"",S_FALSE}
4576 {Uri_HOST_DNS,S_OK},
4577 {222,S_OK},
4578 {URL_SCHEME_HTTP,S_OK},
4579 {URLZONE_INVALID,E_NOTIMPL}
4582 /* IUri's created with the IUriBuilder can have ports that exceed USHORT_MAX. */
4583 { "http://google.com/",0,S_OK,FALSE,
4585 {FALSE},
4587 {TRUE,TRUE,999999,S_OK,FALSE},
4588 0,S_OK,FALSE,
4589 0,S_OK,FALSE,
4590 0,0,0,S_OK,FALSE,
4592 {"http://google.com:999999/",S_OK},
4593 {"google.com:999999",S_OK},
4594 {"http://google.com:999999/",S_OK},
4595 {"google.com",S_OK},
4596 {"",S_FALSE},
4597 {"",S_FALSE},
4598 {"google.com",S_OK},
4599 {"",S_FALSE},
4600 {"/",S_OK},
4601 {"/",S_OK},
4602 {"",S_FALSE},
4603 {"http://google.com:999999/",S_OK},
4604 {"http",S_OK},
4605 {"",S_FALSE},
4606 {"",S_FALSE}
4609 {Uri_HOST_DNS,S_OK},
4610 {999999,S_OK},
4611 {URL_SCHEME_HTTP,S_OK},
4612 {URLZONE_INVALID,E_NOTIMPL}
4615 { "http://google.com/",0,S_OK,FALSE,
4617 {TRUE,"test","?test",Uri_PROPERTY_QUERY,S_OK,FALSE},
4620 {FALSE},
4621 0,S_OK,FALSE,
4622 0,S_OK,FALSE,
4623 0,0,0,S_OK,FALSE,
4625 {"http://google.com/?test",S_OK},
4626 {"google.com",S_OK},
4627 {"http://google.com/?test",S_OK},
4628 {"google.com",S_OK},
4629 {"",S_FALSE},
4630 {"",S_FALSE},
4631 {"google.com",S_OK},
4632 {"",S_FALSE},
4633 {"/",S_OK},
4634 {"/?test",S_OK},
4635 {"?test",S_OK},
4636 {"http://google.com/?test",S_OK},
4637 {"http",S_OK},
4638 {"",S_FALSE},
4639 {"",S_FALSE}
4642 {Uri_HOST_DNS,S_OK},
4643 {80,S_OK},
4644 {URL_SCHEME_HTTP,S_OK},
4645 {URLZONE_INVALID,E_NOTIMPL}
4648 { "http://:password@google.com/",0,S_OK,FALSE,
4650 {FALSE},
4652 {FALSE},
4653 0,S_OK,FALSE,
4654 0,S_OK,FALSE,
4655 0,0,0,S_OK,FALSE,
4657 {"http://:password@google.com/",S_OK},
4658 {":password@google.com",S_OK},
4659 {"http://google.com/",S_OK},
4660 {"google.com",S_OK},
4661 {"",S_FALSE},
4662 {"",S_FALSE},
4663 {"google.com",S_OK},
4664 {"password",S_OK},
4665 {"/",S_OK},
4666 {"/",S_OK},
4667 {"",S_FALSE},
4668 {"http://:password@google.com/",S_OK},
4669 {"http",S_OK},
4670 {":password",S_OK},
4671 {"",S_FALSE}
4674 {Uri_HOST_DNS,S_OK},
4675 {80,S_OK},
4676 {URL_SCHEME_HTTP,S_OK},
4677 {URLZONE_INVALID,E_NOTIMPL}
4680 /* IUriBuilder doesn't need a base IUri to build a IUri. */
4681 { NULL,0,S_OK,FALSE,
4683 {TRUE,"http",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE},
4684 {TRUE,"google.com",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
4686 {FALSE},
4687 0,S_OK,FALSE,
4688 0,S_OK,FALSE,
4689 0,0,0,S_OK,FALSE,
4691 {"http://google.com/",S_OK},
4692 {"google.com",S_OK},
4693 {"http://google.com/",S_OK},
4694 {"google.com",S_OK},
4695 {"",S_FALSE},
4696 {"",S_FALSE},
4697 {"google.com",S_OK},
4698 {"",S_FALSE},
4699 {"/",S_OK},
4700 {"/",S_OK},
4701 {"",S_FALSE},
4702 {"http://google.com/",S_OK},
4703 {"http",S_OK},
4704 {"",S_FALSE},
4705 {"",S_FALSE}
4708 {Uri_HOST_DNS,S_OK},
4709 {80,S_OK},
4710 {URL_SCHEME_HTTP,S_OK},
4711 {URLZONE_INVALID,E_NOTIMPL}
4714 /* Can't set the scheme name to NULL. */
4715 { "zip://google.com/",0,S_OK,FALSE,
4717 {TRUE,NULL,"zip",Uri_PROPERTY_SCHEME_NAME,E_INVALIDARG,FALSE}
4719 {FALSE},
4720 0,S_OK,FALSE,
4721 0,S_OK,FALSE,
4722 0,0,0,S_OK,FALSE,
4724 {"zip://google.com/",S_OK},
4725 {"google.com",S_OK},
4726 {"zip://google.com/",S_OK},
4727 {"google.com",S_OK},
4728 {"",S_FALSE},
4729 {"",S_FALSE},
4730 {"google.com",S_OK},
4731 {"",S_FALSE},
4732 {"/",S_OK},
4733 {"/",S_OK},
4734 {"",S_FALSE},
4735 {"zip://google.com/",S_OK},
4736 {"zip",S_OK},
4737 {"",S_FALSE},
4738 {"",S_FALSE}
4741 {Uri_HOST_DNS,S_OK},
4742 {0,S_FALSE},
4743 {URL_SCHEME_UNKNOWN,S_OK},
4744 {URLZONE_INVALID,E_NOTIMPL}
4747 /* Can't set the scheme name to an empty string. */
4748 { "zip://google.com/",0,S_OK,FALSE,
4750 {TRUE,"","zip",Uri_PROPERTY_SCHEME_NAME,E_INVALIDARG,FALSE}
4752 {FALSE},
4753 0,S_OK,FALSE,
4754 0,S_OK,FALSE,
4755 0,0,0,S_OK,FALSE,
4757 {"zip://google.com/",S_OK},
4758 {"google.com",S_OK},
4759 {"zip://google.com/",S_OK},
4760 {"google.com",S_OK},
4761 {"",S_FALSE},
4762 {"",S_FALSE},
4763 {"google.com",S_OK},
4764 {"",S_FALSE},
4765 {"/",S_OK},
4766 {"/",S_OK},
4767 {"",S_FALSE},
4768 {"zip://google.com/",S_OK},
4769 {"zip",S_OK},
4770 {"",S_FALSE},
4771 {"",S_FALSE}
4774 {Uri_HOST_DNS,S_OK},
4775 {0,S_FALSE},
4776 {URL_SCHEME_UNKNOWN,S_OK},
4777 {URLZONE_INVALID,E_NOTIMPL}
4780 /* -1 to CreateUri makes it use the same flags as the base IUri was created with.
4781 * CreateUriSimple always uses the flags the base IUri was created with (if any).
4783 { "http://google.com/../../",Uri_CREATE_NO_CANONICALIZE,S_OK,FALSE,
4784 {{FALSE}},
4785 {FALSE},
4786 -1,S_OK,FALSE,
4787 0,S_OK,FALSE,
4788 0,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
4790 {"http://google.com/../../",S_OK},
4791 {"google.com",S_OK},
4792 {"http://google.com/../../",S_OK},
4793 {"google.com",S_OK},
4794 {"",S_FALSE},
4795 {"",S_FALSE},
4796 {"google.com",S_OK},
4797 {"",S_FALSE},
4798 {"/../../",S_OK},
4799 {"/../../",S_OK},
4800 {"",S_FALSE},
4801 {"http://google.com/../../",S_OK},
4802 {"http",S_OK},
4803 {"",S_FALSE},
4804 {"",S_FALSE}
4807 {Uri_HOST_DNS,S_OK},
4808 {80,S_OK},
4809 {URL_SCHEME_HTTP,S_OK},
4810 {URLZONE_INVALID,E_NOTIMPL}
4813 { "http://google.com/",0,S_OK,FALSE,
4815 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4817 {FALSE},
4818 -1,S_OK,FALSE,
4819 0,S_OK,FALSE,
4820 Uri_CREATE_NO_DECODE_EXTRA_INFO,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
4822 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4823 {"google.com",S_OK},
4824 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4825 {"google.com",S_OK},
4826 {"",S_FALSE},
4827 {"#Fr%3C%7C%3Eg",S_OK},
4828 {"google.com",S_OK},
4829 {"",S_FALSE},
4830 {"/",S_OK},
4831 {"/",S_OK},
4832 {"",S_FALSE},
4833 {"http://google.com/#Fr<|>g",S_OK},
4834 {"http",S_OK},
4835 {"",S_FALSE},
4836 {"",S_FALSE}
4839 {Uri_HOST_DNS,S_OK},
4840 {80,S_OK},
4841 {URL_SCHEME_HTTP,S_OK},
4842 {URLZONE_INVALID,E_NOTIMPL}
4845 { "http://google.com/",0,S_OK,FALSE,
4847 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4849 {FALSE},
4850 Uri_CREATE_CANONICALIZE|Uri_CREATE_NO_CANONICALIZE,E_INVALIDARG,FALSE,
4851 0,S_OK,FALSE,
4852 Uri_CREATE_CANONICALIZE|Uri_CREATE_NO_CANONICALIZE,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
4854 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4855 {"google.com",S_OK},
4856 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4857 {"google.com",S_OK},
4858 {"",S_FALSE},
4859 {"#Fr%3C%7C%3Eg",S_OK},
4860 {"google.com",S_OK},
4861 {"",S_FALSE},
4862 {"/",S_OK},
4863 {"/",S_OK},
4864 {"",S_FALSE},
4865 {"http://google.com/#Fr<|>g",S_OK},
4866 {"http",S_OK},
4867 {"",S_FALSE},
4868 {"",S_FALSE}
4871 {Uri_HOST_DNS,S_OK},
4872 {80,S_OK},
4873 {URL_SCHEME_HTTP,S_OK},
4874 {URLZONE_INVALID,E_NOTIMPL}
4877 { NULL,0,S_OK,FALSE,
4879 {TRUE,"/test/test/",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
4880 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4882 {FALSE},
4883 0,INET_E_INVALID_URL,FALSE,
4884 0,INET_E_INVALID_URL,FALSE,
4885 0,0,0,INET_E_INVALID_URL,FALSE
4887 { "http://google.com/",0,S_OK,FALSE,
4889 {TRUE,"ht%xxtp",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE}
4891 {FALSE},
4892 0,INET_E_INVALID_URL,FALSE,
4893 0,INET_E_INVALID_URL,FALSE,
4894 0,0,0,INET_E_INVALID_URL,FALSE
4896 /* File scheme's can't have a username set. */
4897 { "file://google.com/",0,S_OK,FALSE,
4899 {TRUE,"username",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4901 {FALSE},
4902 0,INET_E_INVALID_URL,FALSE,
4903 0,INET_E_INVALID_URL,FALSE,
4904 0,0,0,INET_E_INVALID_URL,FALSE
4906 /* File schemes can't have a password set. */
4907 { "file://google.com/",0,S_OK,FALSE,
4909 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4911 {FALSE},
4912 0,INET_E_INVALID_URL,FALSE,
4913 0,INET_E_INVALID_URL,FALSE,
4914 0,0,0,INET_E_INVALID_URL,FALSE
4916 /* UserName can't contain any character that is a delimeter for another
4917 * component that appears after it in a normal URI.
4919 { "http://google.com/",0,S_OK,FALSE,
4921 {TRUE,"user:pass",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4923 {FALSE},
4924 0,INET_E_INVALID_URL,FALSE,
4925 0,INET_E_INVALID_URL,FALSE,
4926 0,0,0,INET_E_INVALID_URL,FALSE
4928 { "http://google.com/",0,S_OK,FALSE,
4930 {TRUE,"user@google.com",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4932 {FALSE},
4933 0,INET_E_INVALID_URL,FALSE,
4934 0,INET_E_INVALID_URL,FALSE,
4935 0,0,0,INET_E_INVALID_URL,FALSE
4937 { "http://google.com/",0,S_OK,FALSE,
4939 {TRUE,"user/path",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4941 {FALSE},
4942 0,INET_E_INVALID_URL,FALSE,
4943 0,INET_E_INVALID_URL,FALSE,
4944 0,0,0,INET_E_INVALID_URL,FALSE
4946 { "http://google.com/",0,S_OK,FALSE,
4948 {TRUE,"user?Query",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4950 {FALSE},
4951 0,INET_E_INVALID_URL,FALSE,
4952 0,INET_E_INVALID_URL,FALSE,
4953 0,0,0,INET_E_INVALID_URL,FALSE
4955 { "http://google.com/",0,S_OK,FALSE,
4957 {TRUE,"user#Frag",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4959 {FALSE},
4960 0,INET_E_INVALID_URL,FALSE,
4961 0,INET_E_INVALID_URL,FALSE,
4962 0,0,0,INET_E_INVALID_URL,FALSE
4964 { "http://google.com/",0,S_OK,FALSE,
4966 {TRUE,"pass@google.com",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4968 {FALSE},
4969 0,INET_E_INVALID_URL,FALSE,
4970 0,INET_E_INVALID_URL,FALSE,
4971 0,0,0,INET_E_INVALID_URL,FALSE
4973 { "http://google.com/",0,S_OK,FALSE,
4975 {TRUE,"pass/path",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4977 {FALSE},
4978 0,INET_E_INVALID_URL,FALSE,
4979 0,INET_E_INVALID_URL,FALSE,
4980 0,0,0,INET_E_INVALID_URL,FALSE
4982 { "http://google.com/",0,S_OK,FALSE,
4984 {TRUE,"pass?query",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4986 {FALSE},
4987 0,INET_E_INVALID_URL,FALSE,
4988 0,INET_E_INVALID_URL,FALSE,
4989 0,0,0,INET_E_INVALID_URL,FALSE
4991 { "http://google.com/",0,S_OK,FALSE,
4993 {TRUE,"pass#frag",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4995 {FALSE},
4996 0,INET_E_INVALID_URL,FALSE,
4997 0,INET_E_INVALID_URL,FALSE,
4998 0,0,0,INET_E_INVALID_URL,FALSE
5000 { "http://google.com/",0,S_OK,FALSE,
5002 {TRUE,"winehq.org/test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5004 {FALSE},
5005 0,INET_E_INVALID_URL,FALSE,
5006 0,INET_E_INVALID_URL,FALSE,
5007 0,0,0,INET_E_INVALID_URL,FALSE
5009 { "http://google.com/",0,S_OK,FALSE,
5011 {TRUE,"winehq.org?test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5013 {FALSE},
5014 0,INET_E_INVALID_URL,FALSE,
5015 0,INET_E_INVALID_URL,FALSE,
5016 0,0,0,INET_E_INVALID_URL,FALSE
5018 { "http://google.com/",0,S_OK,FALSE,
5020 {TRUE,"winehq.org#test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5022 {FALSE},
5023 0,INET_E_INVALID_URL,FALSE,
5024 0,INET_E_INVALID_URL,FALSE,
5025 0,0,0,INET_E_INVALID_URL,FALSE
5027 /* Hostname is allowed to contain a ':' (even for known scheme types). */
5028 { "http://google.com/",0,S_OK,FALSE,
5030 {TRUE,"winehq.org:test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE},
5032 {FALSE},
5033 0,S_OK,FALSE,
5034 0,S_OK,FALSE,
5035 0,0,0,S_OK,FALSE,
5037 {"http://winehq.org:test/",S_OK},
5038 {"winehq.org:test",S_OK},
5039 {"http://winehq.org:test/",S_OK},
5040 {"winehq.org:test",S_OK},
5041 {"",S_FALSE},
5042 {"",S_FALSE},
5043 {"winehq.org:test",S_OK},
5044 {"",S_FALSE},
5045 {"/",S_OK},
5046 {"/",S_OK},
5047 {"",S_FALSE},
5048 {"http://winehq.org:test/",S_OK},
5049 {"http",S_OK},
5050 {"",S_FALSE},
5051 {"",S_FALSE}
5054 {Uri_HOST_DNS,S_OK},
5055 {80,S_OK},
5056 {URL_SCHEME_HTTP,S_OK},
5057 {URLZONE_INVALID,E_NOTIMPL}
5060 /* Can't set the host name to NULL. */
5061 { "http://google.com/",0,S_OK,FALSE,
5063 {TRUE,NULL,"google.com",Uri_PROPERTY_HOST,E_INVALIDARG,FALSE}
5065 {FALSE},
5066 0,S_OK,FALSE,
5067 0,S_OK,FALSE,
5068 0,0,0,S_OK,FALSE,
5070 {"http://google.com/",S_OK},
5071 {"google.com",S_OK},
5072 {"http://google.com/",S_OK},
5073 {"google.com",S_OK},
5074 {"",S_FALSE},
5075 {"",S_FALSE},
5076 {"google.com",S_OK},
5077 {"",S_FALSE},
5078 {"/",S_OK},
5079 {"/",S_OK},
5080 {"",S_FALSE},
5081 {"http://google.com/",S_OK},
5082 {"http",S_OK},
5083 {"",S_FALSE},
5084 {"",S_FALSE}
5087 {Uri_HOST_DNS,S_OK},
5088 {80,S_OK},
5089 {URL_SCHEME_HTTP,S_OK},
5090 {URLZONE_INVALID,E_NOTIMPL}
5093 /* Can set the host name to an empty string. */
5094 { "http://google.com/",0,S_OK,FALSE,
5096 {TRUE,"",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5098 {FALSE},
5099 0,S_OK,FALSE,
5100 0,S_OK,FALSE,
5101 0,0,0,S_OK,FALSE,
5103 {"http:///",S_OK},
5104 {"",S_OK},
5105 {"http:///",S_OK},
5106 {"",S_FALSE},
5107 {"",S_FALSE},
5108 {"",S_FALSE},
5109 {"",S_OK},
5110 {"",S_FALSE},
5111 {"/",S_OK},
5112 {"/",S_OK},
5113 {"",S_FALSE},
5114 {"http:///",S_OK},
5115 {"http",S_OK},
5116 {"",S_FALSE},
5117 {"",S_FALSE}
5120 {Uri_HOST_UNKNOWN,S_OK},
5121 {80,S_OK},
5122 {URL_SCHEME_HTTP,S_OK},
5123 {URLZONE_INVALID,E_NOTIMPL}
5126 { "http://google.com/",0,S_OK,FALSE,
5128 {TRUE,"/path?query",NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
5130 {FALSE},
5131 0,INET_E_INVALID_URL,FALSE,
5132 0,INET_E_INVALID_URL,FALSE,
5133 0,0,0,INET_E_INVALID_URL,FALSE
5135 { "http://google.com/",0,S_OK,FALSE,
5137 {TRUE,"/path#test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
5139 {FALSE},
5140 0,INET_E_INVALID_URL,FALSE,
5141 0,INET_E_INVALID_URL,FALSE,
5142 0,0,0,INET_E_INVALID_URL,FALSE
5144 { "http://google.com/",0,S_OK,FALSE,
5146 {TRUE,"?path#test",NULL,Uri_PROPERTY_QUERY,S_OK,FALSE}
5148 {FALSE},
5149 0,INET_E_INVALID_URL,FALSE,
5150 0,INET_E_INVALID_URL,FALSE,
5151 0,0,0,INET_E_INVALID_URL,FALSE
5155 typedef struct _uri_builder_remove_test {
5156 const char *uri;
5157 DWORD create_flags;
5158 HRESULT create_builder_expected;
5159 BOOL create_builder_todo;
5161 DWORD remove_properties;
5162 HRESULT remove_expected;
5163 BOOL remove_todo;
5165 const char *expected_uri;
5166 DWORD expected_flags;
5167 HRESULT expected_hres;
5168 BOOL expected_todo;
5169 } uri_builder_remove_test;
5171 static const uri_builder_remove_test uri_builder_remove_tests[] = {
5172 { "http://google.com/test?test=y#Frag",0,S_OK,FALSE,
5173 Uri_HAS_FRAGMENT|Uri_HAS_PATH|Uri_HAS_QUERY,S_OK,FALSE,
5174 "http://google.com/",0,S_OK,FALSE
5176 { "http://user:pass@winehq.org/",0,S_OK,FALSE,
5177 Uri_HAS_USER_NAME|Uri_HAS_PASSWORD,S_OK,FALSE,
5178 "http://winehq.org/",0,S_OK,FALSE
5180 { "zip://google.com?Test=x",0,S_OK,FALSE,
5181 Uri_HAS_HOST,S_OK,FALSE,
5182 "zip:/?Test=x",0,S_OK,FALSE
5184 /* Doesn't remove the whole userinfo component. */
5185 { "http://username:pass@google.com/",0,S_OK,FALSE,
5186 Uri_HAS_USER_INFO,S_OK,FALSE,
5187 "http://username:pass@google.com/",0,S_OK,FALSE
5189 /* Doesn't remove the domain. */
5190 { "http://google.com/",0,S_OK,FALSE,
5191 Uri_HAS_DOMAIN,S_OK,FALSE,
5192 "http://google.com/",0,S_OK,FALSE
5194 { "http://google.com:120/",0,S_OK,FALSE,
5195 Uri_HAS_AUTHORITY,S_OK,FALSE,
5196 "http://google.com:120/",0,S_OK,FALSE
5198 { "http://google.com/test.com/",0,S_OK,FALSE,
5199 Uri_HAS_EXTENSION,S_OK,FALSE,
5200 "http://google.com/test.com/",0,S_OK,FALSE
5202 { "http://google.com/?test=x",0,S_OK,FALSE,
5203 Uri_HAS_PATH_AND_QUERY,S_OK,FALSE,
5204 "http://google.com/?test=x",0,S_OK,FALSE
5206 /* Can't remove the scheme name. */
5207 { "http://google.com/?test=x",0,S_OK,FALSE,
5208 Uri_HAS_SCHEME_NAME|Uri_HAS_QUERY,E_INVALIDARG,FALSE,
5209 "http://google.com/?test=x",0,S_OK,FALSE
5213 typedef struct _uri_combine_str_property {
5214 const char *value;
5215 HRESULT expected;
5216 BOOL todo;
5217 const char *broken_value;
5218 const char *value_ex;
5219 } uri_combine_str_property;
5221 typedef struct _uri_combine_test {
5222 const char *base_uri;
5223 DWORD base_create_flags;
5224 const char *relative_uri;
5225 DWORD relative_create_flags;
5226 DWORD combine_flags;
5227 HRESULT expected;
5228 BOOL todo;
5230 uri_combine_str_property str_props[URI_STR_PROPERTY_COUNT];
5231 uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT];
5232 } uri_combine_test;
5234 static const uri_combine_test uri_combine_tests[] = {
5235 { "http://google.com/fun/stuff",0,
5236 "../not/fun/stuff",Uri_CREATE_ALLOW_RELATIVE,
5237 0,S_OK,FALSE,
5239 {"http://google.com/not/fun/stuff",S_OK},
5240 {"google.com",S_OK},
5241 {"http://google.com/not/fun/stuff",S_OK},
5242 {"google.com",S_OK},
5243 {"",S_FALSE},
5244 {"",S_FALSE},
5245 {"google.com",S_OK},
5246 {"",S_FALSE},
5247 {"/not/fun/stuff",S_OK},
5248 {"/not/fun/stuff",S_OK},
5249 {"",S_FALSE},
5250 {"http://google.com/not/fun/stuff",S_OK},
5251 {"http",S_OK},
5252 {"",S_FALSE},
5253 {"",S_FALSE}
5256 {Uri_HOST_DNS,S_OK},
5257 {80,S_OK},
5258 {URL_SCHEME_HTTP,S_OK},
5259 {URLZONE_INVALID,E_NOTIMPL}
5262 { "http://google.com/test",0,
5263 "zip://test.com/cool",0,
5264 0,S_OK,FALSE,
5266 {"zip://test.com/cool",S_OK},
5267 {"test.com",S_OK},
5268 {"zip://test.com/cool",S_OK},
5269 {"test.com",S_OK},
5270 {"",S_FALSE},
5271 {"",S_FALSE},
5272 {"test.com",S_OK},
5273 {"",S_FALSE},
5274 {"/cool",S_OK},
5275 {"/cool",S_OK},
5276 {"",S_FALSE},
5277 {"zip://test.com/cool",S_OK},
5278 {"zip",S_OK},
5279 {"",S_FALSE},
5280 {"",S_FALSE}
5283 {Uri_HOST_DNS,S_OK},
5284 {0,S_FALSE},
5285 {URL_SCHEME_UNKNOWN,S_OK},
5286 {URLZONE_INVALID,E_NOTIMPL}
5289 { "http://google.com/use/base/path",0,
5290 "?relative",Uri_CREATE_ALLOW_RELATIVE,
5291 0,S_OK,FALSE,
5293 {"http://google.com/use/base/path?relative",S_OK},
5294 {"google.com",S_OK},
5295 {"http://google.com/use/base/path?relative",S_OK},
5296 {"google.com",S_OK},
5297 {"",S_FALSE},
5298 {"",S_FALSE},
5299 {"google.com",S_OK},
5300 {"",S_FALSE},
5301 {"/use/base/path",S_OK},
5302 {"/use/base/path?relative",S_OK},
5303 {"?relative",S_OK},
5304 {"http://google.com/use/base/path?relative",S_OK},
5305 {"http",S_OK},
5306 {"",S_FALSE},
5307 {"",S_FALSE}
5310 {Uri_HOST_DNS,S_OK},
5311 {80,S_OK},
5312 {URL_SCHEME_HTTP,S_OK},
5313 {URLZONE_INVALID,E_NOTIMPL}
5316 { "http://google.com/path",0,
5317 "/test/../test/.././testing",Uri_CREATE_ALLOW_RELATIVE,
5318 0,S_OK,FALSE,
5320 {"http://google.com/testing",S_OK},
5321 {"google.com",S_OK},
5322 {"http://google.com/testing",S_OK},
5323 {"google.com",S_OK},
5324 {"",S_FALSE},
5325 {"",S_FALSE},
5326 {"google.com",S_OK},
5327 {"",S_FALSE},
5328 {"/testing",S_OK},
5329 {"/testing",S_OK},
5330 {"",S_FALSE},
5331 {"http://google.com/testing",S_OK},
5332 {"http",S_OK},
5333 {"",S_FALSE},
5334 {"",S_FALSE}
5337 {Uri_HOST_DNS,S_OK},
5338 {80,S_OK},
5339 {URL_SCHEME_HTTP,S_OK},
5340 {URLZONE_INVALID,E_NOTIMPL}
5343 { "http://google.com/path",0,
5344 "/test/../test/.././testing",Uri_CREATE_ALLOW_RELATIVE,
5345 URL_DONT_SIMPLIFY,S_OK,FALSE,
5347 {"http://google.com:80/test/../test/.././testing",S_OK},
5348 {"google.com",S_OK},
5349 {"http://google.com:80/test/../test/.././testing",S_OK},
5350 {"google.com",S_OK},
5351 {"",S_FALSE},
5352 {"",S_FALSE},
5353 {"google.com",S_OK},
5354 {"",S_FALSE},
5355 {"/test/../test/.././testing",S_OK},
5356 {"/test/../test/.././testing",S_OK},
5357 {"",S_FALSE},
5358 {"http://google.com:80/test/../test/.././testing",S_OK},
5359 {"http",S_OK},
5360 {"",S_FALSE},
5361 {"",S_FALSE}
5364 {Uri_HOST_DNS,S_OK},
5365 {80,S_OK},
5366 {URL_SCHEME_HTTP,S_OK},
5367 {URLZONE_INVALID,E_NOTIMPL}
5370 { "http://winehq.org/test/abc",0,
5371 "testing/abc/../test",Uri_CREATE_ALLOW_RELATIVE,
5372 0,S_OK,FALSE,
5374 {"http://winehq.org/test/testing/test",S_OK},
5375 {"winehq.org",S_OK},
5376 {"http://winehq.org/test/testing/test",S_OK},
5377 {"winehq.org",S_OK},
5378 {"",S_FALSE},
5379 {"",S_FALSE},
5380 {"winehq.org",S_OK},
5381 {"",S_FALSE},
5382 {"/test/testing/test",S_OK},
5383 {"/test/testing/test",S_OK},
5384 {"",S_FALSE},
5385 {"http://winehq.org/test/testing/test",S_OK},
5386 {"http",S_OK},
5387 {"",S_FALSE},
5388 {"",S_FALSE}
5391 {Uri_HOST_DNS,S_OK},
5392 {80,S_OK},
5393 {URL_SCHEME_HTTP,S_OK},
5394 {URLZONE_INVALID,E_NOTIMPL}
5397 { "http://winehq.org/test/abc",0,
5398 "testing/abc/../test",Uri_CREATE_ALLOW_RELATIVE,
5399 URL_DONT_SIMPLIFY,S_OK,FALSE,
5401 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5402 /* Default port is hidden in the authority. */
5403 {"winehq.org",S_OK},
5404 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5405 {"winehq.org",S_OK},
5406 {"",S_FALSE},
5407 {"",S_FALSE},
5408 {"winehq.org",S_OK},
5409 {"",S_FALSE},
5410 {"/test/testing/abc/../test",S_OK},
5411 {"/test/testing/abc/../test",S_OK},
5412 {"",S_FALSE},
5413 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5414 {"http",S_OK},
5415 {"",S_FALSE},
5416 {"",S_FALSE}
5419 {Uri_HOST_DNS,S_OK},
5420 {80,S_OK},
5421 {URL_SCHEME_HTTP,S_OK},
5422 {URLZONE_INVALID,E_NOTIMPL}
5425 { "http://winehq.org/test?query",0,
5426 "testing",Uri_CREATE_ALLOW_RELATIVE,
5427 0,S_OK,FALSE,
5429 {"http://winehq.org/testing",S_OK},
5430 {"winehq.org",S_OK},
5431 {"http://winehq.org/testing",S_OK},
5432 {"winehq.org",S_OK},
5433 {"",S_FALSE},
5434 {"",S_FALSE},
5435 {"winehq.org",S_OK},
5436 {"",S_FALSE},
5437 {"/testing",S_OK},
5438 {"/testing",S_OK},
5439 {"",S_FALSE},
5440 {"http://winehq.org/testing",S_OK},
5441 {"http",S_OK},
5442 {"",S_FALSE},
5443 {"",S_FALSE}
5446 {Uri_HOST_DNS,S_OK},
5447 {80,S_OK},
5448 {URL_SCHEME_HTTP,S_OK},
5449 {URLZONE_INVALID,E_NOTIMPL}
5452 { "http://winehq.org/test#frag",0,
5453 "testing",Uri_CREATE_ALLOW_RELATIVE,
5454 0,S_OK,FALSE,
5456 {"http://winehq.org/testing",S_OK},
5457 {"winehq.org",S_OK},
5458 {"http://winehq.org/testing",S_OK},
5459 {"winehq.org",S_OK},
5460 {"",S_FALSE},
5461 {"",S_FALSE},
5462 {"winehq.org",S_OK},
5463 {"",S_FALSE},
5464 {"/testing",S_OK},
5465 {"/testing",S_OK},
5466 {"",S_FALSE},
5467 {"http://winehq.org/testing",S_OK},
5468 {"http",S_OK},
5469 {"",S_FALSE},
5470 {"",S_FALSE}
5473 {Uri_HOST_DNS,S_OK},
5474 {80,S_OK},
5475 {URL_SCHEME_HTTP,S_OK},
5476 {URLZONE_INVALID,E_NOTIMPL}
5479 { "testing?query#frag",Uri_CREATE_ALLOW_RELATIVE,
5480 "test",Uri_CREATE_ALLOW_RELATIVE,
5481 0,S_OK,FALSE,
5483 {"test",S_OK},
5484 {"",S_FALSE},
5485 {"test",S_OK},
5486 {"",S_FALSE},
5487 {"",S_FALSE},
5488 {"",S_FALSE},
5489 {"",S_FALSE},
5490 {"",S_FALSE},
5491 {"test",S_OK},
5492 {"test",S_OK},
5493 {"",S_FALSE},
5494 {"test",S_OK},
5495 {"",S_FALSE},
5496 {"",S_FALSE},
5497 {"",S_FALSE}
5500 {Uri_HOST_UNKNOWN,S_OK},
5501 {0,S_FALSE},
5502 {URL_SCHEME_UNKNOWN,S_OK},
5503 {URLZONE_INVALID,E_NOTIMPL}
5506 { "file:///c:/test/test",0,
5507 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5508 URL_FILE_USE_PATHURL,S_OK,FALSE,
5510 {"file://c:\\testing.mp3",S_OK},
5511 {"",S_FALSE},
5512 {"file://c:\\testing.mp3",S_OK},
5513 {"",S_FALSE},
5514 {".mp3",S_OK},
5515 {"",S_FALSE},
5516 {"",S_FALSE},
5517 {"",S_FALSE},
5518 {"c:\\testing.mp3",S_OK},
5519 {"c:\\testing.mp3",S_OK},
5520 {"",S_FALSE},
5521 {"file://c:\\testing.mp3",S_OK},
5522 {"file",S_OK},
5523 {"",S_FALSE},
5524 {"",S_FALSE}
5527 {Uri_HOST_UNKNOWN,S_OK},
5528 {0,S_FALSE},
5529 {URL_SCHEME_FILE,S_OK},
5530 {URLZONE_INVALID,E_NOTIMPL}
5533 { "file:///c:/test/test",0,
5534 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5535 0,S_OK,FALSE,
5537 {"file:///c:/testing.mp3",S_OK},
5538 {"",S_FALSE},
5539 {"file:///c:/testing.mp3",S_OK},
5540 {"",S_FALSE},
5541 {".mp3",S_OK},
5542 {"",S_FALSE},
5543 {"",S_FALSE},
5544 {"",S_FALSE},
5545 {"/c:/testing.mp3",S_OK},
5546 {"/c:/testing.mp3",S_OK},
5547 {"",S_FALSE},
5548 {"file:///c:/testing.mp3",S_OK},
5549 {"file",S_OK},
5550 {"",S_FALSE},
5551 {"",S_FALSE}
5554 {Uri_HOST_UNKNOWN,S_OK},
5555 {0,S_FALSE},
5556 {URL_SCHEME_FILE,S_OK},
5557 {URLZONE_INVALID,E_NOTIMPL}
5560 { "file://test.com/test/test",0,
5561 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5562 URL_FILE_USE_PATHURL,S_OK,FALSE,
5564 {"file://\\\\test.com\\testing.mp3",S_OK},
5565 {"test.com",S_OK},
5566 {"file://\\\\test.com\\testing.mp3",S_OK},
5567 {"test.com",S_OK},
5568 {".mp3",S_OK},
5569 {"",S_FALSE},
5570 {"test.com",S_OK},
5571 {"",S_FALSE},
5572 {"\\testing.mp3",S_OK},
5573 {"\\testing.mp3",S_OK},
5574 {"",S_FALSE},
5575 {"file://\\\\test.com\\testing.mp3",S_OK},
5576 {"file",S_OK},
5577 {"",S_FALSE},
5578 {"",S_FALSE}
5581 {Uri_HOST_DNS,S_OK},
5582 {0,S_FALSE},
5583 {URL_SCHEME_FILE,S_OK},
5584 {URLZONE_INVALID,E_NOTIMPL}
5587 /* URL_DONT_SIMPLIFY has no effect. */
5588 { "http://google.com/test",0,
5589 "zip://test.com/cool/../cool/test",0,
5590 URL_DONT_SIMPLIFY,S_OK,FALSE,
5592 {"zip://test.com/cool/test",S_OK,FALSE,NULL,"zip://test.com/cool/../cool/test"},
5593 {"test.com",S_OK},
5594 {"zip://test.com/cool/test",S_OK,FALSE,NULL,"zip://test.com/cool/../cool/test"},
5595 {"test.com",S_OK},
5596 {"",S_FALSE},
5597 {"",S_FALSE},
5598 {"test.com",S_OK},
5599 {"",S_FALSE},
5600 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
5601 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
5602 {"",S_FALSE},
5603 /* The resulting IUri has the same Raw URI as the relative URI (only IE 8).
5604 * On IE 7 it reduces the path in the Raw URI.
5606 {"zip://test.com/cool/../cool/test",S_OK,FALSE,"zip://test.com/cool/test"},
5607 {"zip",S_OK},
5608 {"",S_FALSE},
5609 {"",S_FALSE}
5612 {Uri_HOST_DNS,S_OK},
5613 {0,S_FALSE},
5614 {URL_SCHEME_UNKNOWN,S_OK},
5615 {URLZONE_INVALID,E_NOTIMPL}
5618 /* FILE_USE_PATHURL has no effect in IE 8, in IE 7 the
5619 * resulting URI is converted into a dos path.
5621 { "http://google.com/test",0,
5622 "file:///c:/test/",0,
5623 URL_FILE_USE_PATHURL,S_OK,FALSE,
5625 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5626 {"",S_FALSE},
5627 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5628 {"",S_FALSE},
5629 {"",S_FALSE},
5630 {"",S_FALSE},
5631 {"",S_FALSE},
5632 {"",S_FALSE},
5633 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5634 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5635 {"",S_FALSE},
5636 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5637 {"file",S_OK},
5638 {"",S_FALSE},
5639 {"",S_FALSE}
5642 {Uri_HOST_UNKNOWN,S_OK},
5643 {0,S_FALSE},
5644 {URL_SCHEME_FILE,S_OK},
5645 {URLZONE_INVALID,E_NOTIMPL}
5648 { "http://google.com/test",0,
5649 "http://test.com/test#%30test",0,
5650 URL_DONT_UNESCAPE_EXTRA_INFO,S_OK,FALSE,
5652 {"http://test.com/test#0test",S_OK,FALSE,NULL,"http://test.com/test#%30test"},
5653 {"test.com",S_OK},
5654 {"http://test.com/test#0test",S_OK,FALSE,NULL,"http://test.com/test#%30test"},
5655 {"test.com",S_OK},
5656 {"",S_FALSE},
5657 {"#0test",S_OK,FALSE,NULL,"#%30test"},
5658 {"test.com",S_OK},
5659 {"",S_FALSE},
5660 {"/test",S_OK},
5661 {"/test",S_OK},
5662 {"",S_FALSE},
5663 /* IE 7 decodes the %30 to a 0 in the Raw URI. */
5664 {"http://test.com/test#%30test",S_OK,FALSE,"http://test.com/test#0test"},
5665 {"http",S_OK},
5666 {"",S_FALSE},
5667 {"",S_FALSE}
5670 {Uri_HOST_DNS,S_OK},
5671 {80,S_OK},
5672 {URL_SCHEME_HTTP,S_OK},
5673 {URLZONE_INVALID,E_NOTIMPL}
5676 /* Windows validates the path component from the relative Uri. */
5677 { "http://google.com/test",0,
5678 "/Te%XXst",Uri_CREATE_ALLOW_RELATIVE,
5679 0,E_INVALIDARG,FALSE
5681 /* Windows doesn't validate the query from the relative Uri. */
5682 { "http://google.com/test",0,
5683 "?Tes%XXt",Uri_CREATE_ALLOW_RELATIVE,
5684 0,S_OK,FALSE,
5686 {"http://google.com/test?Tes%XXt",S_OK},
5687 {"google.com",S_OK},
5688 {"http://google.com/test?Tes%XXt",S_OK},
5689 {"google.com",S_OK},
5690 {"",S_FALSE},
5691 {"",S_FALSE},
5692 {"google.com",S_OK},
5693 {"",S_FALSE},
5694 {"/test",S_OK},
5695 {"/test?Tes%XXt",S_OK},
5696 {"?Tes%XXt",S_OK},
5697 {"http://google.com/test?Tes%XXt",S_OK},
5698 {"http",S_OK},
5699 {"",S_FALSE},
5700 {"",S_FALSE}
5703 {Uri_HOST_DNS,S_OK},
5704 {80,S_OK},
5705 {URL_SCHEME_HTTP,S_OK},
5706 {URLZONE_INVALID,E_NOTIMPL}
5709 /* Windows doesn't validate the fragment from the relative Uri. */
5710 { "http://google.com/test",0,
5711 "#Tes%XXt",Uri_CREATE_ALLOW_RELATIVE,
5712 0,S_OK,FALSE,
5714 {"http://google.com/test#Tes%XXt",S_OK},
5715 {"google.com",S_OK},
5716 {"http://google.com/test#Tes%XXt",S_OK},
5717 {"google.com",S_OK},
5718 {"",S_FALSE},
5719 {"#Tes%XXt",S_OK},
5720 {"google.com",S_OK},
5721 {"",S_FALSE},
5722 {"/test",S_OK},
5723 {"/test",S_OK},
5724 {"",S_FALSE},
5725 {"http://google.com/test#Tes%XXt",S_OK},
5726 {"http",S_OK},
5727 {"",S_FALSE},
5728 {"",S_FALSE}
5731 {Uri_HOST_DNS,S_OK},
5732 {80,S_OK},
5733 {URL_SCHEME_HTTP,S_OK},
5734 {URLZONE_INVALID,E_NOTIMPL}
5737 /* Creates an IUri which contains an invalid dos path char. */
5738 { "file:///c:/test",0,
5739 "/test<ing",Uri_CREATE_ALLOW_RELATIVE,
5740 URL_FILE_USE_PATHURL,S_OK,FALSE,
5742 {"file://c:\\test<ing",S_OK},
5743 {"",S_FALSE},
5744 {"file://c:\\test<ing",S_OK},
5745 {"",S_FALSE},
5746 {"",S_FALSE},
5747 {"",S_FALSE},
5748 {"",S_FALSE},
5749 {"",S_FALSE},
5750 {"c:\\test<ing",S_OK},
5751 {"c:\\test<ing",S_OK},
5752 {"",S_FALSE},
5753 {"file://c:\\test<ing",S_OK},
5754 {"file",S_OK},
5755 {"",S_FALSE},
5756 {"",S_FALSE}
5759 {Uri_HOST_UNKNOWN,S_OK},
5760 {0,S_FALSE},
5761 {URL_SCHEME_FILE,S_OK},
5762 {URLZONE_INVALID,E_NOTIMPL}
5765 /* Appends the path after the drive letter (if any). */
5766 { "file:///c:/test",0,
5767 "/c:/testing",Uri_CREATE_ALLOW_RELATIVE,
5768 0,S_OK,FALSE,
5770 {"file:///c:/c:/testing",S_OK},
5771 {"",S_FALSE},
5772 {"file:///c:/c:/testing",S_OK},
5773 {"",S_FALSE},
5774 {"",S_FALSE},
5775 {"",S_FALSE},
5776 {"",S_FALSE},
5777 {"",S_FALSE},
5778 {"/c:/c:/testing",S_OK},
5779 {"/c:/c:/testing",S_OK},
5780 {"",S_FALSE},
5781 {"file:///c:/c:/testing",S_OK},
5782 {"file",S_OK},
5783 {"",S_FALSE},
5784 {"",S_FALSE}
5787 {Uri_HOST_UNKNOWN,S_OK},
5788 {0,S_FALSE},
5789 {URL_SCHEME_FILE,S_OK},
5790 {URLZONE_INVALID,E_NOTIMPL}
5793 /* A '/' is added if the base URI doesn't have a path and the
5794 * relative URI doesn't contain a path (since the base URI is
5795 * hierarchical.
5797 { "http://google.com",Uri_CREATE_NO_CANONICALIZE,
5798 "?test",Uri_CREATE_ALLOW_RELATIVE,
5799 0,S_OK,FALSE,
5801 {"http://google.com/?test",S_OK},
5802 {"google.com",S_OK},
5803 {"http://google.com/?test",S_OK},
5804 {"google.com",S_OK},
5805 {"",S_FALSE},
5806 {"",S_FALSE},
5807 {"google.com",S_OK},
5808 {"",S_FALSE},
5809 {"/",S_OK},
5810 {"/?test",S_OK},
5811 {"?test",S_OK},
5812 {"http://google.com/?test",S_OK},
5813 {"http",S_OK},
5814 {"",S_FALSE},
5815 {"",S_FALSE}
5818 {Uri_HOST_DNS,S_OK},
5819 {80,S_OK},
5820 {URL_SCHEME_HTTP,S_OK},
5821 {URLZONE_INVALID,E_NOTIMPL}
5824 { "zip://google.com",Uri_CREATE_NO_CANONICALIZE,
5825 "?test",Uri_CREATE_ALLOW_RELATIVE,
5826 0,S_OK,FALSE,
5828 {"zip://google.com/?test",S_OK},
5829 {"google.com",S_OK},
5830 {"zip://google.com/?test",S_OK},
5831 {"google.com",S_OK},
5832 {"",S_FALSE},
5833 {"",S_FALSE},
5834 {"google.com",S_OK},
5835 {"",S_FALSE},
5836 {"/",S_OK},
5837 {"/?test",S_OK},
5838 {"?test",S_OK},
5839 {"zip://google.com/?test",S_OK},
5840 {"zip",S_OK},
5841 {"",S_FALSE},
5842 {"",S_FALSE}
5845 {Uri_HOST_DNS,S_OK},
5846 {0,S_FALSE},
5847 {URL_SCHEME_UNKNOWN,S_OK},
5848 {URLZONE_INVALID,E_NOTIMPL}
5851 /* No path is appended since the base URI is opaque. */
5852 { "zip:?testing",0,
5853 "?test",Uri_CREATE_ALLOW_RELATIVE,
5854 0,S_OK,FALSE,
5856 {"zip:?test",S_OK},
5857 {"",S_FALSE},
5858 {"zip:?test",S_OK},
5859 {"",S_FALSE},
5860 {"",S_FALSE},
5861 {"",S_FALSE},
5862 {"",S_FALSE},
5863 {"",S_FALSE},
5864 {"",S_OK},
5865 {"?test",S_OK},
5866 {"?test",S_OK},
5867 {"zip:?test",S_OK},
5868 {"zip",S_OK},
5869 {"",S_FALSE},
5870 {"",S_FALSE}
5873 {Uri_HOST_UNKNOWN,S_OK},
5874 {0,S_FALSE},
5875 {URL_SCHEME_UNKNOWN,S_OK},
5876 {URLZONE_INVALID,E_NOTIMPL}
5879 { "file:///c:/",0,
5880 "../testing/test",Uri_CREATE_ALLOW_RELATIVE,
5881 0,S_OK,FALSE,
5883 {"file:///c:/testing/test",S_OK},
5884 {"",S_FALSE},
5885 {"file:///c:/testing/test",S_OK},
5886 {"",S_FALSE},
5887 {"",S_FALSE},
5888 {"",S_FALSE},
5889 {"",S_FALSE},
5890 {"",S_FALSE},
5891 {"/c:/testing/test",S_OK},
5892 {"/c:/testing/test",S_OK},
5893 {"",S_FALSE},
5894 {"file:///c:/testing/test",S_OK},
5895 {"file",S_OK},
5896 {"",S_FALSE},
5897 {"",S_FALSE}
5900 {Uri_HOST_UNKNOWN,S_OK},
5901 {0,S_FALSE},
5902 {URL_SCHEME_FILE,S_OK},
5903 {URLZONE_INVALID,E_NOTIMPL}
5908 typedef struct _uri_parse_test {
5909 const char *uri;
5910 DWORD uri_flags;
5911 PARSEACTION action;
5912 DWORD flags;
5913 const char *property;
5914 HRESULT expected;
5915 BOOL todo;
5916 } uri_parse_test;
5918 static const uri_parse_test uri_parse_tests[] = {
5919 /* PARSE_CANONICALIZE tests. */
5920 {"zip://google.com/test<|>",0,PARSE_CANONICALIZE,0,"zip://google.com/test<|>",S_OK,FALSE},
5921 {"http://google.com/test<|>",0,PARSE_CANONICALIZE,0,"http://google.com/test%3C%7C%3E",S_OK,FALSE},
5922 {"http://google.com/%30%23%3F",0,PARSE_CANONICALIZE,URL_UNESCAPE,"http://google.com/0#?",S_OK,FALSE},
5923 {"test <|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_ESCAPE_UNSAFE,"test %3C%7C%3E",S_OK,FALSE},
5924 {"test <|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_ESCAPE_SPACES_ONLY,"test%20<|>",S_OK,FALSE},
5925 {"test%20<|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_UNESCAPE|URL_ESCAPE_UNSAFE,"test%20%3C%7C%3E",S_OK,FALSE},
5926 {"http://google.com/%20",0,PARSE_CANONICALIZE,URL_ESCAPE_PERCENT,"http://google.com/%2520",S_OK,FALSE},
5927 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_DONT_SIMPLIFY,"http://google.com/test/../",S_OK,FALSE},
5928 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_NO_META,"http://google.com/test/../",S_OK,FALSE},
5929 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,0,"http://google.com/",S_OK,FALSE},
5930 {"zip://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,0,"zip://google.com/",S_OK,FALSE},
5931 {"file:///c:/test/../test",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_DONT_SIMPLIFY,"file:///c:/test/../test",S_OK,FALSE},
5933 /* PARSE_FRIENDLY tests. */
5934 {"http://test@google.com/test#test",0,PARSE_FRIENDLY,0,"http://google.com/test#test",S_OK,FALSE},
5935 {"zip://test@google.com/test",0,PARSE_FRIENDLY,0,"zip://test@google.com/test",S_OK,FALSE},
5937 /* PARSE_ROOTDOCUMENT tests. */
5938 {"http://google.com:200/test/test",0,PARSE_ROOTDOCUMENT,0,"http://google.com:200/",S_OK,FALSE},
5939 {"http://google.com",Uri_CREATE_NO_CANONICALIZE,PARSE_ROOTDOCUMENT,0,"http://google.com/",S_OK,FALSE},
5940 {"zip://google.com/",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
5941 {"file:///c:/testing/",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
5942 {"file://server/test",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
5943 {"zip:test/test",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
5945 /* PARSE_DOCUMENT tests. */
5946 {"http://test@google.com/test?query#frag",0,PARSE_DOCUMENT,0,"http://test@google.com/test?query",S_OK,FALSE},
5947 {"http:testing#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
5948 {"file:///c:/test#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
5949 {"zip://google.com/#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
5950 {"zip:test#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
5951 {"testing#frag",Uri_CREATE_ALLOW_RELATIVE,PARSE_DOCUMENT,0,"",S_OK,FALSE},
5953 /* PARSE_PATH_FROM_URL tests. */
5954 {"file:///c:/test.mp3",0,PARSE_PATH_FROM_URL,0,"c:\\test.mp3",S_OK,FALSE},
5955 {"file:///c:/t<|>est.mp3",0,PARSE_PATH_FROM_URL,0,"c:\\t<|>est.mp3",S_OK,FALSE},
5956 {"file:///c:/te%XX t/",0,PARSE_PATH_FROM_URL,0,"c:\\te%XX t\\",S_OK,FALSE},
5957 {"file://server/test",0,PARSE_PATH_FROM_URL,0,"\\\\server\\test",S_OK,FALSE},
5958 {"http://google.com/",0,PARSE_PATH_FROM_URL,0,"",E_INVALIDARG,FALSE},
5960 /* PARSE_URL_FROM_PATH tests. */
5961 /* This function almost seems to useless (just returns the absolute uri). */
5962 {"test.com",Uri_CREATE_ALLOW_RELATIVE,PARSE_URL_FROM_PATH,0,"test.com",S_OK,FALSE},
5963 {"/test/test",Uri_CREATE_ALLOW_RELATIVE,PARSE_URL_FROM_PATH,0,"/test/test",S_OK,FALSE},
5964 {"file://c:\\test\\test",Uri_CREATE_FILE_USE_DOS_PATH,PARSE_URL_FROM_PATH,0,"file://c:\\test\\test",S_OK,FALSE},
5965 {"file:c:/test",0,PARSE_URL_FROM_PATH,0,"",S_OK,FALSE},
5966 {"http:google.com/",0,PARSE_URL_FROM_PATH,0,"",S_OK,FALSE},
5968 /* PARSE_SCHEMA tests. */
5969 {"http://google.com/test",0,PARSE_SCHEMA,0,"http",S_OK,FALSE},
5970 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_SCHEMA,0,"",S_OK,FALSE},
5972 /* PARSE_SITE tests. */
5973 {"http://google.uk.com/",0,PARSE_SITE,0,"google.uk.com",S_OK,FALSE},
5974 {"http://google.com.com/",0,PARSE_SITE,0,"google.com.com",S_OK,FALSE},
5975 {"google.com",Uri_CREATE_ALLOW_RELATIVE,PARSE_SITE,0,"",S_OK,FALSE},
5976 {"file://server/test",0,PARSE_SITE,0,"server",S_OK,FALSE},
5978 /* PARSE_DOMAIN tests. */
5979 {"http://google.com.uk/",0,PARSE_DOMAIN,0,"google.com.uk",S_OK,FALSE},
5980 {"http://google.com.com/",0,PARSE_DOMAIN,0,"com.com",S_OK,FALSE},
5981 {"test/test",Uri_CREATE_ALLOW_RELATIVE,PARSE_DOMAIN,0,"",S_OK,FALSE},
5982 {"file://server/test",0,PARSE_DOMAIN,0,"",S_OK,FALSE},
5984 /* PARSE_LOCATION and PARSE_ANCHOR tests. */
5985 {"http://google.com/test#Test",0,PARSE_ANCHOR,0,"#Test",S_OK,FALSE},
5986 {"http://google.com/test#Test",0,PARSE_LOCATION,0,"#Test",S_OK,FALSE},
5987 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_ANCHOR,0,"",S_OK,FALSE},
5988 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_LOCATION,0,"",S_OK,FALSE}
5991 static inline LPWSTR a2w(LPCSTR str) {
5992 LPWSTR ret = NULL;
5994 if(str) {
5995 DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
5996 ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
5997 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
6000 return ret;
6003 static inline BOOL heap_free(void* mem) {
6004 return HeapFree(GetProcessHeap(), 0, mem);
6007 static inline DWORD strcmp_aw(LPCSTR strA, LPCWSTR strB) {
6008 LPWSTR strAW = a2w(strA);
6009 DWORD ret = lstrcmpW(strAW, strB);
6010 heap_free(strAW);
6011 return ret;
6014 static inline ULONG get_refcnt(IUri *uri) {
6015 IUri_AddRef(uri);
6016 return IUri_Release(uri);
6019 static void change_property(IUriBuilder *builder, const uri_builder_property *prop,
6020 DWORD test_index) {
6021 HRESULT hr;
6022 LPWSTR valueW;
6024 valueW = a2w(prop->value);
6025 switch(prop->property) {
6026 case Uri_PROPERTY_FRAGMENT:
6027 hr = IUriBuilder_SetFragment(builder, valueW);
6028 if(prop->todo) {
6029 todo_wine {
6030 ok(hr == prop->expected,
6031 "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6032 hr, prop->expected, test_index);
6034 } else {
6035 ok(hr == prop->expected,
6036 "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6037 hr, prop->expected, test_index);
6039 break;
6040 case Uri_PROPERTY_HOST:
6041 hr = IUriBuilder_SetHost(builder, valueW);
6042 if(prop->todo) {
6043 todo_wine {
6044 ok(hr == prop->expected,
6045 "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6046 hr, prop->expected, test_index);
6048 } else {
6049 ok(hr == prop->expected,
6050 "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6051 hr, prop->expected, test_index);
6053 break;
6054 case Uri_PROPERTY_PASSWORD:
6055 hr = IUriBuilder_SetPassword(builder, valueW);
6056 if(prop->todo) {
6057 todo_wine {
6058 ok(hr == prop->expected,
6059 "Error: IUriBuilder_SetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6060 hr, prop->expected, test_index);
6062 } else {
6063 ok(hr == prop->expected,
6064 "Error: IUriBuilder_SetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6065 hr, prop->expected, test_index);
6067 break;
6068 case Uri_PROPERTY_PATH:
6069 hr = IUriBuilder_SetPath(builder, valueW);
6070 if(prop->todo) {
6071 todo_wine {
6072 ok(hr == prop->expected,
6073 "Error: IUriBuilder_SetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6074 hr, prop->expected, test_index);
6076 } else {
6077 ok(hr == prop->expected,
6078 "Error: IUriBuilder_SetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6079 hr, prop->expected, test_index);
6081 break;
6082 case Uri_PROPERTY_QUERY:
6083 hr = IUriBuilder_SetQuery(builder, valueW);
6084 if(prop->todo) {
6085 todo_wine {
6086 ok(hr == prop->expected,
6087 "Error: IUriBuilder_SetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6088 hr, prop->expected, test_index);
6090 } else {
6091 ok(hr == prop->expected,
6092 "Error: IUriBuilder_SetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6093 hr, prop->expected, test_index);
6095 break;
6096 case Uri_PROPERTY_SCHEME_NAME:
6097 hr = IUriBuilder_SetSchemeName(builder, valueW);
6098 if(prop->todo) {
6099 todo_wine {
6100 ok(hr == prop->expected,
6101 "Error: IUriBuilder_SetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6102 hr, prop->expected, test_index);
6104 } else {
6105 ok(hr == prop->expected,
6106 "Error: IUriBuilder_SetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6107 hr, prop->expected, test_index);
6109 break;
6110 case Uri_PROPERTY_USER_NAME:
6111 hr = IUriBuilder_SetUserName(builder, valueW);
6112 if(prop->todo) {
6113 todo_wine {
6114 ok(hr == prop->expected,
6115 "Error: IUriBuilder_SetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6116 hr, prop->expected, test_index);
6118 } else {
6119 ok(hr == prop->expected,
6120 "Error: IUriBuilder_SetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6121 hr, prop->expected, test_index);
6123 break;
6124 default:
6125 trace("Unsupported operation for %d on uri_builder_tests[%d].\n", prop->property, test_index);
6128 heap_free(valueW);
6132 * Simple tests to make sure the CreateUri function handles invalid flag combinations
6133 * correctly.
6135 static void test_CreateUri_InvalidFlags(void) {
6136 DWORD i;
6138 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
6139 HRESULT hr;
6140 IUri *uri = (void*) 0xdeadbeef;
6142 hr = pCreateUri(http_urlW, invalid_flag_tests[i].flags, 0, &uri);
6143 ok(hr == invalid_flag_tests[i].expected, "Error: CreateUri returned 0x%08x, expected 0x%08x, flags=0x%08x\n",
6144 hr, invalid_flag_tests[i].expected, invalid_flag_tests[i].flags);
6145 ok(uri == NULL, "Error: expected the IUri to be NULL, but it was %p instead\n", uri);
6149 static void test_CreateUri_InvalidArgs(void) {
6150 HRESULT hr;
6151 IUri *uri = (void*) 0xdeadbeef;
6153 const WCHAR invalidW[] = {'i','n','v','a','l','i','d',0};
6154 static const WCHAR emptyW[] = {0};
6156 hr = pCreateUri(http_urlW, 0, 0, NULL);
6157 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG);
6159 hr = pCreateUri(NULL, 0, 0, &uri);
6160 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG);
6161 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6163 uri = (void*) 0xdeadbeef;
6164 hr = pCreateUri(invalidW, 0, 0, &uri);
6165 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6166 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6168 uri = (void*) 0xdeadbeef;
6169 hr = pCreateUri(emptyW, 0, 0, &uri);
6170 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6171 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6174 static void test_CreateUri_InvalidUri(void) {
6175 DWORD i;
6177 for(i = 0; i < sizeof(invalid_uri_tests)/sizeof(invalid_uri_tests[0]); ++i) {
6178 invalid_uri test = invalid_uri_tests[i];
6179 IUri *uri = NULL;
6180 LPWSTR uriW;
6181 HRESULT hr;
6183 uriW = a2w(test.uri);
6184 hr = pCreateUri(uriW, test.flags, 0, &uri);
6185 if(test.todo) {
6186 todo_wine {
6187 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x on invalid_uri_tests[%d].\n",
6188 hr, E_INVALIDARG, i);
6190 } else {
6191 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x on invalid_uri_tests[%d].\n",
6192 hr, E_INVALIDARG, i);
6194 if(uri) IUri_Release(uri);
6196 heap_free(uriW);
6200 static void test_IUri_GetPropertyBSTR(void) {
6201 IUri *uri = NULL;
6202 HRESULT hr;
6203 DWORD i;
6205 /* Make sure GetPropertyBSTR handles invalid args correctly. */
6206 hr = pCreateUri(http_urlW, 0, 0, &uri);
6207 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6208 if(SUCCEEDED(hr)) {
6209 BSTR received = NULL;
6211 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_RAW_URI, NULL, 0);
6212 ok(hr == E_POINTER, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6214 /* Make sure it handles a invalid Uri_PROPERTY's correctly. */
6215 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_PORT, &received, 0);
6216 ok(hr == S_OK, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6217 ok(received != NULL, "Error: Expected the string not to be NULL.\n");
6218 ok(!SysStringLen(received), "Error: Expected the string to be of len=0 but it was %d instead.\n", SysStringLen(received));
6219 SysFreeString(received);
6221 /* Make sure it handles the ZONE property correctly. */
6222 received = NULL;
6223 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_ZONE, &received, 0);
6224 ok(hr == S_FALSE, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, S_FALSE);
6225 ok(received != NULL, "Error: Expected the string not to be NULL.\n");
6226 ok(!SysStringLen(received), "Error: Expected the string to be of len=0 but it was %d instead.\n", SysStringLen(received));
6227 SysFreeString(received);
6229 if(uri) IUri_Release(uri);
6231 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6232 uri_properties test = uri_tests[i];
6233 LPWSTR uriW;
6234 uri = NULL;
6236 uriW = a2w(test.uri);
6237 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6238 if(test.create_todo) {
6239 todo_wine {
6240 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6241 hr, test.create_expected, i);
6243 } else {
6244 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6245 hr, test.create_expected, i);
6248 if(SUCCEEDED(hr)) {
6249 DWORD j;
6251 /* Checks all the string properties of the uri. */
6252 for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) {
6253 BSTR received = NULL;
6254 uri_str_property prop = test.str_props[j];
6256 hr = IUri_GetPropertyBSTR(uri, j, &received, 0);
6257 if(prop.todo) {
6258 todo_wine {
6259 ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n",
6260 hr, prop.expected, i, j);
6262 todo_wine {
6263 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6264 "Expected %s but got %s on uri_tests[%d].str_props[%d].\n",
6265 prop.value, wine_dbgstr_w(received), i, j);
6267 } else {
6268 ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n",
6269 hr, prop.expected, i, j);
6270 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6271 "Expected %s but got %s on uri_tests[%d].str_props[%d].\n",
6272 prop.value, wine_dbgstr_w(received), i, j);
6275 SysFreeString(received);
6279 if(uri) IUri_Release(uri);
6281 heap_free(uriW);
6285 static void test_IUri_GetPropertyDWORD(void) {
6286 IUri *uri = NULL;
6287 HRESULT hr;
6288 DWORD i;
6290 hr = pCreateUri(http_urlW, 0, 0, &uri);
6291 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6292 if(SUCCEEDED(hr)) {
6293 DWORD received = 0xdeadbeef;
6295 hr = IUri_GetPropertyDWORD(uri, Uri_PROPERTY_DWORD_START, NULL, 0);
6296 ok(hr == E_INVALIDARG, "Error: GetPropertyDWORD returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6298 hr = IUri_GetPropertyDWORD(uri, Uri_PROPERTY_ABSOLUTE_URI, &received, 0);
6299 ok(hr == E_INVALIDARG, "Error: GetPropertyDWORD returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6300 ok(received == 0, "Error: Expected received=%d but instead received=%d.\n", 0, received);
6302 if(uri) IUri_Release(uri);
6304 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6305 uri_properties test = uri_tests[i];
6306 LPWSTR uriW;
6307 uri = NULL;
6309 uriW = a2w(test.uri);
6310 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6311 if(test.create_todo) {
6312 todo_wine {
6313 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6314 hr, test.create_expected, i);
6316 } else {
6317 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6318 hr, test.create_expected, i);
6321 if(SUCCEEDED(hr)) {
6322 DWORD j;
6324 /* Checks all the DWORD properties of the uri. */
6325 for(j = 0; j < sizeof(test.dword_props)/sizeof(test.dword_props[0]); ++j) {
6326 DWORD received;
6327 uri_dword_property prop = test.dword_props[j];
6329 hr = IUri_GetPropertyDWORD(uri, j+Uri_PROPERTY_DWORD_START, &received, 0);
6330 if(prop.todo) {
6331 todo_wine {
6332 ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n",
6333 hr, prop.expected, i, j);
6335 todo_wine {
6336 ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n",
6337 prop.value, received, i, j);
6339 } else {
6340 ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n",
6341 hr, prop.expected, i, j);
6342 ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n",
6343 prop.value, received, i, j);
6348 if(uri) IUri_Release(uri);
6350 heap_free(uriW);
6354 /* Tests all the 'Get*' property functions which deal with strings. */
6355 static void test_IUri_GetStrProperties(void) {
6356 IUri *uri = NULL;
6357 HRESULT hr;
6358 DWORD i;
6360 /* Make sure all the 'Get*' string property functions handle invalid args correctly. */
6361 hr = pCreateUri(http_urlW, 0, 0, &uri);
6362 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6363 if(SUCCEEDED(hr)) {
6364 hr = IUri_GetAbsoluteUri(uri, NULL);
6365 ok(hr == E_POINTER, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6367 hr = IUri_GetAuthority(uri, NULL);
6368 ok(hr == E_POINTER, "Error: GetAuthority returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6370 hr = IUri_GetDisplayUri(uri, NULL);
6371 ok(hr == E_POINTER, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6373 hr = IUri_GetDomain(uri, NULL);
6374 ok(hr == E_POINTER, "Error: GetDomain returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6376 hr = IUri_GetExtension(uri, NULL);
6377 ok(hr == E_POINTER, "Error: GetExtension returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6379 hr = IUri_GetFragment(uri, NULL);
6380 ok(hr == E_POINTER, "Error: GetFragment returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6382 hr = IUri_GetHost(uri, NULL);
6383 ok(hr == E_POINTER, "Error: GetHost returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6385 hr = IUri_GetPassword(uri, NULL);
6386 ok(hr == E_POINTER, "Error: GetPassword returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6388 hr = IUri_GetPath(uri, NULL);
6389 ok(hr == E_POINTER, "Error: GetPath returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6391 hr = IUri_GetPathAndQuery(uri, NULL);
6392 ok(hr == E_POINTER, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6394 hr = IUri_GetQuery(uri, NULL);
6395 ok(hr == E_POINTER, "Error: GetQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6397 hr = IUri_GetRawUri(uri, NULL);
6398 ok(hr == E_POINTER, "Error: GetRawUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6400 hr = IUri_GetSchemeName(uri, NULL);
6401 ok(hr == E_POINTER, "Error: GetSchemeName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6403 hr = IUri_GetUserInfo(uri, NULL);
6404 ok(hr == E_POINTER, "Error: GetUserInfo returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6406 hr = IUri_GetUserName(uri, NULL);
6407 ok(hr == E_POINTER, "Error: GetUserName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6409 if(uri) IUri_Release(uri);
6411 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6412 uri_properties test = uri_tests[i];
6413 LPWSTR uriW;
6414 uri = NULL;
6416 uriW = a2w(test.uri);
6417 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6418 if(test.create_todo) {
6419 todo_wine {
6420 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6421 hr, test.create_expected, i);
6423 } else {
6424 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6425 hr, test.create_expected, i);
6428 if(SUCCEEDED(hr)) {
6429 uri_str_property prop;
6430 BSTR received = NULL;
6432 /* GetAbsoluteUri() tests. */
6433 prop = test.str_props[Uri_PROPERTY_ABSOLUTE_URI];
6434 hr = IUri_GetAbsoluteUri(uri, &received);
6435 if(prop.todo) {
6436 todo_wine {
6437 ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6438 hr, prop.expected, i);
6440 todo_wine {
6441 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6442 "Error: Expected %s but got %s on uri_tests[%d].\n",
6443 prop.value, wine_dbgstr_w(received), i);
6445 } else {
6446 ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6447 hr, prop.expected, i);
6448 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6449 "Error: Expected %s but got %s on uri_tests[%d].\n",
6450 prop.value, wine_dbgstr_w(received), i);
6452 SysFreeString(received);
6453 received = NULL;
6455 /* GetAuthority() tests. */
6456 prop = test.str_props[Uri_PROPERTY_AUTHORITY];
6457 hr = IUri_GetAuthority(uri, &received);
6458 if(prop.todo) {
6459 todo_wine {
6460 ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6461 hr, prop.expected, i);
6463 todo_wine {
6464 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6465 prop.value, wine_dbgstr_w(received), i);
6467 } else {
6468 ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6469 hr, prop.expected, i);
6470 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6471 prop.value, wine_dbgstr_w(received), i);
6473 SysFreeString(received);
6474 received = NULL;
6476 /* GetDisplayUri() tests. */
6477 prop = test.str_props[Uri_PROPERTY_DISPLAY_URI];
6478 hr = IUri_GetDisplayUri(uri, &received);
6479 if(prop.todo) {
6480 todo_wine {
6481 ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6482 hr, prop.expected, i);
6484 todo_wine {
6485 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6486 "Error: Expected %s but got %s on uri_test[%d].\n",
6487 prop.value, wine_dbgstr_w(received), i);
6489 } else {
6490 ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6491 hr, prop.expected, i);
6492 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6493 "Error: Expected %s but got %s on uri_tests[%d].\n",
6494 prop.value, wine_dbgstr_w(received), i);
6496 SysFreeString(received);
6497 received = NULL;
6499 /* GetDomain() tests. */
6500 prop = test.str_props[Uri_PROPERTY_DOMAIN];
6501 hr = IUri_GetDomain(uri, &received);
6502 if(prop.todo) {
6503 todo_wine {
6504 ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6505 hr, prop.expected, i);
6507 todo_wine {
6508 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6509 prop.value, wine_dbgstr_w(received), i);
6511 } else {
6512 ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6513 hr, prop.expected, i);
6514 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6515 prop.value, wine_dbgstr_w(received), i);
6517 SysFreeString(received);
6518 received = NULL;
6520 /* GetExtension() tests. */
6521 prop = test.str_props[Uri_PROPERTY_EXTENSION];
6522 hr = IUri_GetExtension(uri, &received);
6523 if(prop.todo) {
6524 todo_wine {
6525 ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6526 hr, prop.expected, i);
6528 todo_wine {
6529 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6530 prop.value, wine_dbgstr_w(received), i);
6532 } else {
6533 ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6534 hr, prop.expected, i);
6535 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6536 prop.value, wine_dbgstr_w(received), i);
6538 SysFreeString(received);
6539 received = NULL;
6541 /* GetFragment() tests. */
6542 prop = test.str_props[Uri_PROPERTY_FRAGMENT];
6543 hr = IUri_GetFragment(uri, &received);
6544 if(prop.todo) {
6545 todo_wine {
6546 ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6547 hr, prop.expected, i);
6549 todo_wine {
6550 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6551 prop.value, wine_dbgstr_w(received), i);
6553 } else {
6554 ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6555 hr, prop.expected, i);
6556 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6557 prop.value, wine_dbgstr_w(received), i);
6559 SysFreeString(received);
6560 received = NULL;
6562 /* GetHost() tests. */
6563 prop = test.str_props[Uri_PROPERTY_HOST];
6564 hr = IUri_GetHost(uri, &received);
6565 if(prop.todo) {
6566 todo_wine {
6567 ok(hr == prop.expected, "Error: GetHost returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6568 hr, prop.expected, i);
6570 todo_wine {
6571 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6572 prop.value, wine_dbgstr_w(received), i);
6574 } else {
6575 ok(hr == prop.expected, "Error: GetHost returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6576 hr, prop.expected, i);
6577 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6578 prop.value, wine_dbgstr_w(received), i);
6580 SysFreeString(received);
6581 received = NULL;
6583 /* GetPassword() tests. */
6584 prop = test.str_props[Uri_PROPERTY_PASSWORD];
6585 hr = IUri_GetPassword(uri, &received);
6586 if(prop.todo) {
6587 todo_wine {
6588 ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6589 hr, prop.expected, i);
6591 todo_wine {
6592 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6593 prop.value, wine_dbgstr_w(received), i);
6595 } else {
6596 ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6597 hr, prop.expected, i);
6598 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6599 prop.value, wine_dbgstr_w(received), i);
6601 SysFreeString(received);
6602 received = NULL;
6604 /* GetPath() tests. */
6605 prop = test.str_props[Uri_PROPERTY_PATH];
6606 hr = IUri_GetPath(uri, &received);
6607 if(prop.todo) {
6608 todo_wine {
6609 ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6610 hr, prop.expected, i);
6612 todo_wine {
6613 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6614 prop.value, wine_dbgstr_w(received), i);
6616 } else {
6617 ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6618 hr, prop.expected, i);
6619 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6620 prop.value, wine_dbgstr_w(received), i);
6622 SysFreeString(received);
6623 received = NULL;
6625 /* GetPathAndQuery() tests. */
6626 prop = test.str_props[Uri_PROPERTY_PATH_AND_QUERY];
6627 hr = IUri_GetPathAndQuery(uri, &received);
6628 if(prop.todo) {
6629 todo_wine {
6630 ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6631 hr, prop.expected, i);
6633 todo_wine {
6634 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6635 prop.value, wine_dbgstr_w(received), i);
6637 } else {
6638 ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6639 hr, prop.expected, i);
6640 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6641 prop.value, wine_dbgstr_w(received), i);
6643 SysFreeString(received);
6644 received = NULL;
6646 /* GetQuery() tests. */
6647 prop = test.str_props[Uri_PROPERTY_QUERY];
6648 hr = IUri_GetQuery(uri, &received);
6649 if(prop.todo) {
6650 todo_wine {
6651 ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6652 hr, prop.expected, i);
6654 todo_wine {
6655 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6656 prop.value, wine_dbgstr_w(received), i);
6658 } else {
6659 ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6660 hr, prop.expected, i);
6661 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6662 prop.value, wine_dbgstr_w(received), i);
6664 SysFreeString(received);
6665 received = NULL;
6667 /* GetRawUri() tests. */
6668 prop = test.str_props[Uri_PROPERTY_RAW_URI];
6669 hr = IUri_GetRawUri(uri, &received);
6670 if(prop.todo) {
6671 todo_wine {
6672 ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6673 hr, prop.expected, i);
6675 todo_wine {
6676 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6677 prop.value, wine_dbgstr_w(received), i);
6679 } else {
6680 ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6681 hr, prop.expected, i);
6682 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6683 prop.value, wine_dbgstr_w(received), i);
6685 SysFreeString(received);
6686 received = NULL;
6688 /* GetSchemeName() tests. */
6689 prop = test.str_props[Uri_PROPERTY_SCHEME_NAME];
6690 hr = IUri_GetSchemeName(uri, &received);
6691 if(prop.todo) {
6692 todo_wine {
6693 ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6694 hr, prop.expected, i);
6696 todo_wine {
6697 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6698 prop.value, wine_dbgstr_w(received), i);
6700 } else {
6701 ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6702 hr, prop.expected, i);
6703 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6704 prop.value, wine_dbgstr_w(received), i);
6706 SysFreeString(received);
6707 received = NULL;
6709 /* GetUserInfo() tests. */
6710 prop = test.str_props[Uri_PROPERTY_USER_INFO];
6711 hr = IUri_GetUserInfo(uri, &received);
6712 if(prop.todo) {
6713 todo_wine {
6714 ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6715 hr, prop.expected, i);
6717 todo_wine {
6718 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6719 prop.value, wine_dbgstr_w(received), i);
6721 } else {
6722 ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6723 hr, prop.expected, i);
6724 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6725 prop.value, wine_dbgstr_w(received), i);
6727 SysFreeString(received);
6728 received = NULL;
6730 /* GetUserName() tests. */
6731 prop = test.str_props[Uri_PROPERTY_USER_NAME];
6732 hr = IUri_GetUserName(uri, &received);
6733 if(prop.todo) {
6734 todo_wine {
6735 ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6736 hr, prop.expected, i);
6738 todo_wine {
6739 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6740 prop.value, wine_dbgstr_w(received), i);
6742 } else {
6743 ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6744 hr, prop.expected, i);
6745 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6746 prop.value, wine_dbgstr_w(received), i);
6748 SysFreeString(received);
6751 if(uri) IUri_Release(uri);
6753 heap_free(uriW);
6757 static void test_IUri_GetDwordProperties(void) {
6758 IUri *uri = NULL;
6759 HRESULT hr;
6760 DWORD i;
6762 /* Make sure all the 'Get*' dword property functions handle invalid args correctly. */
6763 hr = pCreateUri(http_urlW, 0, 0, &uri);
6764 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6765 if(SUCCEEDED(hr)) {
6766 hr = IUri_GetHostType(uri, NULL);
6767 ok(hr == E_INVALIDARG, "Error: GetHostType returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6769 hr = IUri_GetPort(uri, NULL);
6770 ok(hr == E_INVALIDARG, "Error: GetPort returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6772 hr = IUri_GetScheme(uri, NULL);
6773 ok(hr == E_INVALIDARG, "Error: GetScheme returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6775 hr = IUri_GetZone(uri, NULL);
6776 ok(hr == E_INVALIDARG, "Error: GetZone returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6778 if(uri) IUri_Release(uri);
6780 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6781 uri_properties test = uri_tests[i];
6782 LPWSTR uriW;
6783 uri = NULL;
6785 uriW = a2w(test.uri);
6786 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6787 if(test.create_todo) {
6788 todo_wine {
6789 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6790 hr, test.create_expected, i);
6792 } else {
6793 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6794 hr, test.create_expected, i);
6797 if(SUCCEEDED(hr)) {
6798 uri_dword_property prop;
6799 DWORD received;
6801 /* Assign an insane value so tests don't accidentally pass when
6802 * they shouldn't!
6804 received = -9999999;
6806 /* GetHostType() tests. */
6807 prop = test.dword_props[Uri_PROPERTY_HOST_TYPE-Uri_PROPERTY_DWORD_START];
6808 hr = IUri_GetHostType(uri, &received);
6809 if(prop.todo) {
6810 todo_wine {
6811 ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6812 hr, prop.expected, i);
6814 todo_wine {
6815 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6817 } else {
6818 ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6819 hr, prop.expected, i);
6820 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6822 received = -9999999;
6824 /* GetPort() tests. */
6825 prop = test.dword_props[Uri_PROPERTY_PORT-Uri_PROPERTY_DWORD_START];
6826 hr = IUri_GetPort(uri, &received);
6827 if(prop.todo) {
6828 todo_wine {
6829 ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6830 hr, prop.expected, i);
6832 todo_wine {
6833 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6835 } else {
6836 ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6837 hr, prop.expected, i);
6838 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6840 received = -9999999;
6842 /* GetScheme() tests. */
6843 prop = test.dword_props[Uri_PROPERTY_SCHEME-Uri_PROPERTY_DWORD_START];
6844 hr = IUri_GetScheme(uri, &received);
6845 if(prop.todo) {
6846 todo_wine {
6847 ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6848 hr, prop.expected, i);
6850 todo_wine {
6851 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6853 } else {
6854 ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6855 hr, prop.expected, i);
6856 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6858 received = -9999999;
6860 /* GetZone() tests. */
6861 prop = test.dword_props[Uri_PROPERTY_ZONE-Uri_PROPERTY_DWORD_START];
6862 hr = IUri_GetZone(uri, &received);
6863 if(prop.todo) {
6864 todo_wine {
6865 ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6866 hr, prop.expected, i);
6868 todo_wine {
6869 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6871 } else {
6872 ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6873 hr, prop.expected, i);
6874 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6878 if(uri) IUri_Release(uri);
6880 heap_free(uriW);
6884 static void test_IUri_GetPropertyLength(void) {
6885 IUri *uri = NULL;
6886 HRESULT hr;
6887 DWORD i;
6889 /* Make sure it handles invalid args correctly. */
6890 hr = pCreateUri(http_urlW, 0, 0, &uri);
6891 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6892 if(SUCCEEDED(hr)) {
6893 DWORD received = 0xdeadbeef;
6895 hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_STRING_START, NULL, 0);
6896 ok(hr == E_INVALIDARG, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6898 hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_DWORD_START, &received, 0);
6899 ok(hr == E_INVALIDARG, "Error: GetPropertyLength return 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6900 ok(received == 0xdeadbeef, "Error: Expected 0xdeadbeef but got 0x%08x.\n", received);
6902 if(uri) IUri_Release(uri);
6904 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6905 uri_properties test = uri_tests[i];
6906 LPWSTR uriW;
6907 uri = NULL;
6909 uriW = a2w(test.uri);
6910 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6911 if(test.create_todo) {
6912 todo_wine {
6913 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6914 hr, test.create_expected, i);
6916 } else {
6917 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_test[%d].\n",
6918 hr, test.create_expected, i);
6921 if(SUCCEEDED(hr)) {
6922 DWORD j;
6924 for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) {
6925 DWORD expectedLen, brokenLen, receivedLen;
6926 uri_str_property prop = test.str_props[j];
6928 expectedLen = lstrlen(prop.value);
6929 brokenLen = lstrlen(prop.broken_value);
6931 /* This won't be necessary once GetPropertyLength is implemented. */
6932 receivedLen = -1;
6934 hr = IUri_GetPropertyLength(uri, j, &receivedLen, 0);
6935 if(prop.todo) {
6936 todo_wine {
6937 ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n",
6938 hr, prop.expected, i, j);
6940 todo_wine {
6941 ok(receivedLen == expectedLen || broken(receivedLen == brokenLen),
6942 "Error: Expected a length of %d but got %d on uri_tests[%d].str_props[%d].\n",
6943 expectedLen, receivedLen, i, j);
6945 } else {
6946 ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n",
6947 hr, prop.expected, i, j);
6948 ok(receivedLen == expectedLen || broken(receivedLen == brokenLen),
6949 "Error: Expected a length of %d but got %d on uri_tests[%d].str_props[%d].\n",
6950 expectedLen, receivedLen, i, j);
6955 if(uri) IUri_Release(uri);
6957 heap_free(uriW);
6961 static DWORD compute_expected_props(uri_properties *test)
6963 DWORD ret = 0, i;
6965 for(i=Uri_PROPERTY_STRING_START; i <= Uri_PROPERTY_STRING_LAST; i++) {
6966 if(test->str_props[i-Uri_PROPERTY_STRING_START].expected == S_OK)
6967 ret |= 1<<i;
6970 for(i=Uri_PROPERTY_DWORD_START; i <= Uri_PROPERTY_DWORD_LAST; i++) {
6971 if(test->dword_props[i-Uri_PROPERTY_DWORD_START].expected == S_OK)
6972 ret |= 1<<i;
6975 return ret;
6978 static void test_IUri_GetProperties(void) {
6979 IUri *uri = NULL;
6980 HRESULT hr;
6981 DWORD i;
6983 hr = pCreateUri(http_urlW, 0, 0, &uri);
6984 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6985 if(SUCCEEDED(hr)) {
6986 hr = IUri_GetProperties(uri, NULL);
6987 ok(hr == E_INVALIDARG, "Error: GetProperties returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6989 if(uri) IUri_Release(uri);
6991 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6992 uri_properties test = uri_tests[i];
6993 LPWSTR uriW;
6994 uri = NULL;
6996 uriW = a2w(test.uri);
6997 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6998 if(test.create_todo) {
6999 todo_wine {
7000 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7002 } else {
7003 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7006 if(SUCCEEDED(hr)) {
7007 DWORD received = 0, expected_props;
7008 DWORD j;
7010 hr = IUri_GetProperties(uri, &received);
7011 ok(hr == S_OK, "Error: GetProperties returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7013 expected_props = compute_expected_props(&test);
7015 for(j = 0; j <= Uri_PROPERTY_DWORD_LAST; ++j) {
7016 /* (1 << j) converts a Uri_PROPERTY to its corresponding Uri_HAS_* flag mask. */
7017 if(expected_props & (1 << j))
7018 ok(received & (1 << j), "Error: Expected flag for property %d on uri_tests[%d].\n", j, i);
7019 else
7020 ok(!(received & (1 << j)), "Error: Received flag for property %d when not expected on uri_tests[%d].\n", j, i);
7024 if(uri) IUri_Release(uri);
7026 heap_free(uriW);
7030 static void test_IUri_HasProperty(void) {
7031 IUri *uri = NULL;
7032 HRESULT hr;
7033 DWORD i;
7035 hr = pCreateUri(http_urlW, 0, 0, &uri);
7036 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7037 if(SUCCEEDED(hr)) {
7038 hr = IUri_HasProperty(uri, Uri_PROPERTY_RAW_URI, NULL);
7039 ok(hr == E_INVALIDARG, "Error: HasProperty returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7041 if(uri) IUri_Release(uri);
7043 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
7044 uri_properties test = uri_tests[i];
7045 LPWSTR uriW;
7046 uri = NULL;
7048 uriW = a2w(test.uri);
7050 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
7051 if(test.create_todo) {
7052 todo_wine {
7053 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7055 } else {
7056 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7059 if(SUCCEEDED(hr)) {
7060 DWORD expected_props, j;
7062 expected_props = compute_expected_props(&test);
7064 for(j = 0; j <= Uri_PROPERTY_DWORD_LAST; ++j) {
7065 /* Assign -1, then explicitly test for TRUE or FALSE later. */
7066 BOOL received = -1;
7068 hr = IUri_HasProperty(uri, j, &received);
7069 ok(hr == S_OK, "Error: HasProperty returned 0x%08x, expected 0x%08x for property %d on uri_tests[%d].\n",
7070 hr, S_OK, j, i);
7072 if(expected_props & (1 << j)) {
7073 ok(received == TRUE, "Error: Expected to have property %d on uri_tests[%d].\n", j, i);
7074 } else {
7075 ok(received == FALSE, "Error: Wasn't expecting to have property %d on uri_tests[%d].\n", j, i);
7080 if(uri) IUri_Release(uri);
7082 heap_free(uriW);
7086 static void test_IUri_IsEqual(void) {
7087 IUri *uriA, *uriB;
7088 HRESULT hrA, hrB;
7089 DWORD i;
7091 uriA = uriB = NULL;
7093 /* Make sure IsEqual handles invalid args correctly. */
7094 hrA = pCreateUri(http_urlW, 0, 0, &uriA);
7095 hrB = pCreateUri(http_urlW, 0, 0, &uriB);
7096 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hrA, S_OK);
7097 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hrB, S_OK);
7098 if(SUCCEEDED(hrA) && SUCCEEDED(hrB)) {
7099 BOOL equal = -1;
7100 hrA = IUri_IsEqual(uriA, NULL, &equal);
7101 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x.\n", hrA, S_OK);
7102 ok(equal == FALSE, "Error: Expected equal to be FALSE, but was %d instead.\n", equal);
7104 hrA = IUri_IsEqual(uriA, uriB, NULL);
7105 ok(hrA == E_POINTER, "Error: IsEqual returned 0x%08x, expected 0x%08x.\n", hrA, E_POINTER);
7107 if(uriA) IUri_Release(uriA);
7108 if(uriB) IUri_Release(uriB);
7110 for(i = 0; i < sizeof(equality_tests)/sizeof(equality_tests[0]); ++i) {
7111 uri_equality test = equality_tests[i];
7112 LPWSTR uriA_W, uriB_W;
7114 uriA = uriB = NULL;
7116 uriA_W = a2w(test.a);
7117 uriB_W = a2w(test.b);
7119 hrA = pCreateUri(uriA_W, test.create_flags_a, 0, &uriA);
7120 if(test.create_todo_a) {
7121 todo_wine {
7122 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7123 hrA, S_OK, i);
7125 } else {
7126 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7127 hrA, S_OK, i);
7130 hrB = pCreateUri(uriB_W, test.create_flags_b, 0, &uriB);
7131 if(test.create_todo_b) {
7132 todo_wine {
7133 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7134 hrB, S_OK, i);
7136 } else {
7137 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7138 hrB, S_OK, i);
7141 if(SUCCEEDED(hrA) && SUCCEEDED(hrB)) {
7142 BOOL equal = -1;
7144 hrA = IUri_IsEqual(uriA, uriB, &equal);
7145 if(test.todo) {
7146 todo_wine {
7147 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x on equality_tests[%d].\n",
7148 hrA, S_OK, i);
7150 todo_wine {
7151 ok(equal == test.equal, "Error: Expected the comparison to be %d on equality_tests[%d].\n", test.equal, i);
7153 } else {
7154 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x on equality_tests[%d].\n", hrA, S_OK, i);
7155 ok(equal == test.equal, "Error: Expected the comparison to be %d on equality_tests[%d].\n", test.equal, i);
7158 if(uriA) IUri_Release(uriA);
7159 if(uriB) IUri_Release(uriB);
7161 heap_free(uriA_W);
7162 heap_free(uriB_W);
7166 static void test_CreateUriWithFragment_InvalidArgs(void) {
7167 HRESULT hr;
7168 IUri *uri = (void*) 0xdeadbeef;
7169 const WCHAR fragmentW[] = {'#','f','r','a','g','m','e','n','t',0};
7171 hr = pCreateUriWithFragment(NULL, fragmentW, 0, 0, &uri);
7172 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7173 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7175 hr = pCreateUriWithFragment(http_urlW, fragmentW, 0, 0, NULL);
7176 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7178 /* Original URI can't already contain a fragment component. */
7179 uri = (void*) 0xdeadbeef;
7180 hr = pCreateUriWithFragment(http_url_fragW, fragmentW, 0, 0, &uri);
7181 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7182 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7185 /* CreateUriWithFragment has the same invalid flag combinations as CreateUri. */
7186 static void test_CreateUriWithFragment_InvalidFlags(void) {
7187 DWORD i;
7189 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
7190 HRESULT hr;
7191 IUri *uri = (void*) 0xdeadbeef;
7193 hr = pCreateUriWithFragment(http_urlW, NULL, invalid_flag_tests[i].flags, 0, &uri);
7194 ok(hr == invalid_flag_tests[i].expected, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x. flags=0x%08x.\n",
7195 hr, invalid_flag_tests[i].expected, invalid_flag_tests[i].flags);
7196 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7200 static void test_CreateUriWithFragment(void) {
7201 DWORD i;
7203 for(i = 0; i < sizeof(uri_fragment_tests)/sizeof(uri_fragment_tests[0]); ++i) {
7204 HRESULT hr;
7205 IUri *uri = NULL;
7206 LPWSTR uriW, fragW;
7207 uri_with_fragment test = uri_fragment_tests[i];
7209 uriW = a2w(test.uri);
7210 fragW = a2w(test.fragment);
7212 hr = pCreateUriWithFragment(uriW, fragW, test.create_flags, 0, &uri);
7213 if(test.expected_todo) {
7214 todo_wine {
7215 ok(hr == test.create_expected,
7216 "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7217 hr, test.create_expected, i);
7219 } else
7220 ok(hr == test.create_expected,
7221 "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7222 hr, test.create_expected, i);
7224 if(SUCCEEDED(hr)) {
7225 BSTR received = NULL;
7227 hr = IUri_GetAbsoluteUri(uri, &received);
7228 if(test.expected_todo) {
7229 todo_wine {
7230 ok(hr == S_OK,
7231 "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7232 hr, S_OK, i);
7234 todo_wine {
7235 ok(!strcmp_aw(test.expected_uri, received),
7236 "Error: Expected %s but got %s on uri_fragment_tests[%d].\n",
7237 test.expected_uri, wine_dbgstr_w(received), i);
7239 } else {
7240 ok(hr == S_OK, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7241 hr, S_OK, i);
7242 ok(!strcmp_aw(test.expected_uri, received), "Error: Expected %s but got %s on uri_fragment_tests[%d].\n",
7243 test.expected_uri, wine_dbgstr_w(received), i);
7246 SysFreeString(received);
7249 if(uri) IUri_Release(uri);
7250 heap_free(uriW);
7251 heap_free(fragW);
7255 static void test_CreateIUriBuilder(void) {
7256 HRESULT hr;
7257 IUriBuilder *builder = NULL;
7258 IUri *uri;
7260 hr = pCreateIUriBuilder(NULL, 0, 0, NULL);
7261 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x\n",
7262 hr, E_POINTER);
7264 /* CreateIUriBuilder increases the ref count of the IUri it receives. */
7265 hr = pCreateUri(http_urlW, 0, 0, &uri);
7266 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7267 if(SUCCEEDED(hr)) {
7268 ULONG cur_count, orig_count;
7270 orig_count = get_refcnt(uri);
7271 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
7272 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7273 ok(builder != NULL, "Error: Expecting builder not to be NULL\n");
7275 cur_count = get_refcnt(uri);
7276 ok(cur_count == orig_count+1, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count+1, cur_count);
7278 if(builder) IUriBuilder_Release(builder);
7279 cur_count = get_refcnt(uri);
7280 ok(cur_count == orig_count, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count, cur_count);
7282 if(uri) IUri_Release(uri);
7285 static void test_IUriBuilder_CreateUri(IUriBuilder *builder, const uri_builder_test *test,
7286 DWORD test_index) {
7287 HRESULT hr;
7288 IUri *uri = NULL;
7290 hr = IUriBuilder_CreateUri(builder, test->uri_flags, 0, 0, &uri);
7291 if(test->uri_todo) {
7292 todo_wine {
7293 ok(hr == test->uri_hres,
7294 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7295 hr, test->uri_hres, test_index);
7297 } else {
7298 ok(hr == test->uri_hres,
7299 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7300 hr, test->uri_hres, test_index);
7303 if(SUCCEEDED(hr)) {
7304 DWORD i;
7306 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7307 uri_builder_str_property prop = test->expected_str_props[i];
7308 BSTR received = NULL;
7310 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7311 if(prop.todo) {
7312 todo_wine {
7313 ok(hr == prop.result,
7314 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7315 hr, prop.result, test_index, i);
7317 } else {
7318 ok(hr == prop.result,
7319 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7320 hr, prop.result, test_index, i);
7322 if(SUCCEEDED(hr)) {
7323 if(prop.todo) {
7324 todo_wine {
7325 ok(!strcmp_aw(prop.expected, received),
7326 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7327 prop.expected, wine_dbgstr_w(received), test_index, i);
7329 } else {
7330 ok(!strcmp_aw(prop.expected, received),
7331 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7332 prop.expected, wine_dbgstr_w(received), test_index, i);
7335 SysFreeString(received);
7338 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7339 uri_builder_dword_property prop = test->expected_dword_props[i];
7340 DWORD received = -2;
7342 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7343 if(prop.todo) {
7344 todo_wine {
7345 ok(hr == prop.result,
7346 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7347 hr, prop.result, test_index, i);
7349 } else {
7350 ok(hr == prop.result,
7351 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7352 hr, prop.result, test_index, i);
7354 if(SUCCEEDED(hr)) {
7355 if(prop.todo) {
7356 todo_wine {
7357 ok(received == prop.expected,
7358 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7359 prop.expected, received, test_index, i);
7361 } else {
7362 ok(received == prop.expected,
7363 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7364 prop.expected, received, test_index, i);
7369 if(uri) IUri_Release(uri);
7372 static void test_IUriBuilder_CreateUriSimple(IUriBuilder *builder, const uri_builder_test *test,
7373 DWORD test_index) {
7374 HRESULT hr;
7375 IUri *uri = NULL;
7377 hr = IUriBuilder_CreateUriSimple(builder, test->uri_simple_encode_flags, 0, &uri);
7378 if(test->uri_simple_todo) {
7379 todo_wine {
7380 ok(hr == test->uri_simple_hres,
7381 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7382 hr, test->uri_simple_hres, test_index);
7384 } else {
7385 ok(hr == test->uri_simple_hres,
7386 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7387 hr, test->uri_simple_hres, test_index);
7390 if(SUCCEEDED(hr)) {
7391 DWORD i;
7393 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7394 uri_builder_str_property prop = test->expected_str_props[i];
7395 BSTR received = NULL;
7397 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7398 if(prop.todo) {
7399 todo_wine {
7400 ok(hr == prop.result,
7401 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7402 hr, prop.result, test_index, i);
7404 } else {
7405 ok(hr == prop.result,
7406 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7407 hr, prop.result, test_index, i);
7409 if(SUCCEEDED(hr)) {
7410 if(prop.todo) {
7411 todo_wine {
7412 ok(!strcmp_aw(prop.expected, received),
7413 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7414 prop.expected, wine_dbgstr_w(received), test_index, i);
7416 } else {
7417 ok(!strcmp_aw(prop.expected, received),
7418 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7419 prop.expected, wine_dbgstr_w(received), test_index, i);
7422 SysFreeString(received);
7425 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7426 uri_builder_dword_property prop = test->expected_dword_props[i];
7427 DWORD received = -2;
7429 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7430 if(prop.todo) {
7431 todo_wine {
7432 ok(hr == prop.result,
7433 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7434 hr, prop.result, test_index, i);
7436 } else {
7437 ok(hr == prop.result,
7438 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7439 hr, prop.result, test_index, i);
7441 if(SUCCEEDED(hr)) {
7442 if(prop.todo) {
7443 todo_wine {
7444 ok(received == prop.expected,
7445 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7446 prop.expected, received, test_index, i);
7448 } else {
7449 ok(received == prop.expected,
7450 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7451 prop.expected, received, test_index, i);
7456 if(uri) IUri_Release(uri);
7459 static void test_IUriBuilder_CreateUriWithFlags(IUriBuilder *builder, const uri_builder_test *test,
7460 DWORD test_index) {
7461 HRESULT hr;
7462 IUri *uri = NULL;
7464 hr = IUriBuilder_CreateUriWithFlags(builder, test->uri_with_flags, test->uri_with_builder_flags,
7465 test->uri_with_encode_flags, 0, &uri);
7466 if(test->uri_with_todo) {
7467 todo_wine {
7468 ok(hr == test->uri_with_hres,
7469 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7470 hr, test->uri_with_hres, test_index);
7472 } else {
7473 ok(hr == test->uri_with_hres,
7474 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7475 hr, test->uri_with_hres, test_index);
7478 if(SUCCEEDED(hr)) {
7479 DWORD i;
7481 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7482 uri_builder_str_property prop = test->expected_str_props[i];
7483 BSTR received = NULL;
7485 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7486 if(prop.todo) {
7487 todo_wine {
7488 ok(hr == prop.result,
7489 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7490 hr, prop.result, test_index, i);
7492 } else {
7493 ok(hr == prop.result,
7494 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7495 hr, prop.result, test_index, i);
7497 if(SUCCEEDED(hr)) {
7498 if(prop.todo) {
7499 todo_wine {
7500 ok(!strcmp_aw(prop.expected, received),
7501 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7502 prop.expected, wine_dbgstr_w(received), test_index, i);
7504 } else {
7505 ok(!strcmp_aw(prop.expected, received),
7506 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7507 prop.expected, wine_dbgstr_w(received), test_index, i);
7510 SysFreeString(received);
7513 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7514 uri_builder_dword_property prop = test->expected_dword_props[i];
7515 DWORD received = -2;
7517 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7518 if(prop.todo) {
7519 todo_wine {
7520 ok(hr == prop.result,
7521 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7522 hr, prop.result, test_index, i);
7524 } else {
7525 ok(hr == prop.result,
7526 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7527 hr, prop.result, test_index, i);
7529 if(SUCCEEDED(hr)) {
7530 if(prop.todo) {
7531 todo_wine {
7532 ok(received == prop.expected,
7533 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7534 prop.expected, received, test_index, i);
7536 } else {
7537 ok(received == prop.expected,
7538 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7539 prop.expected, received, test_index, i);
7544 if(uri) IUri_Release(uri);
7547 static void test_IUriBuilder_CreateInvalidArgs(void) {
7548 IUriBuilder *builder;
7549 HRESULT hr;
7551 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7552 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7553 if(SUCCEEDED(hr)) {
7554 IUri *test = NULL, *uri = (void*) 0xdeadbeef;
7556 /* Test what happens if the IUriBuilder doesn't have a IUri set. */
7557 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, NULL);
7558 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
7560 uri = (void*) 0xdeadbeef;
7561 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7562 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_NOTIMPL);
7563 ok(uri == NULL, "Error: expected uri to be NULL, but was %p instead.\n", uri);
7565 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, NULL);
7566 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7567 hr, E_POINTER);
7569 uri = (void*) 0xdeadbeef;
7570 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7571 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7572 hr, E_NOTIMPL);
7573 ok(!uri, "Error: Expected uri to NULL, but was %p instead.\n", uri);
7575 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, NULL);
7576 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7577 hr, E_POINTER);
7579 uri = (void*) 0xdeadbeef;
7580 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7581 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7582 hr, E_NOTIMPL);
7583 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7585 hr = pCreateUri(http_urlW, 0, 0, &test);
7586 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7587 if(SUCCEEDED(hr)) {
7588 hr = IUriBuilder_SetIUri(builder, test);
7589 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7591 /* No longer returns E_NOTIMPL, since a IUri has been set and hasn't been modified. */
7592 uri = NULL;
7593 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7594 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7595 ok(uri != NULL, "Error: The uri was NULL.\n");
7596 if(uri) IUri_Release(uri);
7598 uri = NULL;
7599 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7600 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7601 hr, S_OK);
7602 ok(uri != NULL, "Error: uri was NULL.\n");
7603 if(uri) IUri_Release(uri);
7605 uri = NULL;
7606 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &uri);
7607 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7608 hr, S_OK);
7609 ok(uri != NULL, "Error: uri was NULL.\n");
7610 if(uri) IUri_Release(uri);
7612 hr = IUriBuilder_SetFragment(builder, NULL);
7613 ok(hr == S_OK, "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7615 /* The IUriBuilder is changed, so it returns E_NOTIMPL again. */
7616 uri = (void*) 0xdeadbeef;
7617 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7618 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7619 ok(!uri, "Error: Expected uri to be NULL but was %p instead.\n", uri);
7621 uri = (void*) 0xdeadbeef;
7622 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7623 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7624 hr, S_OK);
7625 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7627 uri = (void*) 0xdeadbeef;
7628 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7629 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7630 hr, E_NOTIMPL);
7631 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7633 if(test) IUri_Release(test);
7635 if(builder) IUriBuilder_Release(builder);
7638 /* Tests invalid args to the "Get*" functions. */
7639 static void test_IUriBuilder_GetInvalidArgs(void) {
7640 IUriBuilder *builder = NULL;
7641 HRESULT hr;
7643 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7644 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7645 if(SUCCEEDED(hr)) {
7646 LPCWSTR received = (void*) 0xdeadbeef;
7647 DWORD len = -1, port = -1;
7648 BOOL set = -1;
7650 hr = IUriBuilder_GetFragment(builder, NULL, NULL);
7651 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7652 hr, E_POINTER);
7653 hr = IUriBuilder_GetFragment(builder, NULL, &received);
7654 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7655 hr, E_POINTER);
7656 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7657 hr = IUriBuilder_GetFragment(builder, &len, NULL);
7658 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7659 hr, E_POINTER);
7660 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7662 hr = IUriBuilder_GetHost(builder, NULL, NULL);
7663 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7664 hr, E_POINTER);
7665 received = (void*) 0xdeadbeef;
7666 hr = IUriBuilder_GetHost(builder, NULL, &received);
7667 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7668 hr, E_POINTER);
7669 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7670 len = -1;
7671 hr = IUriBuilder_GetHost(builder, &len, NULL);
7672 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7673 hr, E_POINTER);
7674 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7676 hr = IUriBuilder_GetPassword(builder, NULL, NULL);
7677 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7678 hr, E_POINTER);
7679 received = (void*) 0xdeadbeef;
7680 hr = IUriBuilder_GetPassword(builder, NULL, &received);
7681 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7682 hr, E_POINTER);
7683 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7684 len = -1;
7685 hr = IUriBuilder_GetPassword(builder, &len, NULL);
7686 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7687 hr, E_POINTER);
7688 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7690 hr = IUriBuilder_GetPath(builder, NULL, NULL);
7691 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7692 hr, E_POINTER);
7693 received = (void*) 0xdeadbeef;
7694 hr = IUriBuilder_GetPath(builder, NULL, &received);
7695 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7696 hr, E_POINTER);
7697 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7698 len = -1;
7699 hr = IUriBuilder_GetPath(builder, &len, NULL);
7700 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7701 hr, E_POINTER);
7702 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7704 hr = IUriBuilder_GetPort(builder, NULL, NULL);
7705 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7706 hr, E_POINTER);
7707 hr = IUriBuilder_GetPort(builder, NULL, &port);
7708 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7709 hr, E_POINTER);
7710 ok(!port, "Error: Expected port to be 0, but was %d instead.\n", port);
7711 hr = IUriBuilder_GetPort(builder, &set, NULL);
7712 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7713 hr, E_POINTER);
7714 ok(!set, "Error: Expected set to be FALSE, but was %d instead.\n", set);
7716 hr = IUriBuilder_GetQuery(builder, NULL, NULL);
7717 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7718 hr, E_POINTER);
7719 received = (void*) 0xdeadbeef;
7720 hr = IUriBuilder_GetQuery(builder, NULL, &received);
7721 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7722 hr, E_POINTER);
7723 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7724 len = -1;
7725 hr = IUriBuilder_GetQuery(builder, &len, NULL);
7726 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7727 hr, E_POINTER);
7728 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7730 hr = IUriBuilder_GetSchemeName(builder, NULL, NULL);
7731 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7732 hr, E_POINTER);
7733 received = (void*) 0xdeadbeef;
7734 hr = IUriBuilder_GetSchemeName(builder, NULL, &received);
7735 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7736 hr, E_POINTER);
7737 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7738 len = -1;
7739 hr = IUriBuilder_GetSchemeName(builder, &len, NULL);
7740 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7741 hr, E_POINTER);
7742 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7744 hr = IUriBuilder_GetUserName(builder, NULL, NULL);
7745 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7746 hr, E_POINTER);
7747 received = (void*) 0xdeadbeef;
7748 hr = IUriBuilder_GetUserName(builder, NULL, &received);
7749 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7750 hr, E_POINTER);
7751 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7752 len = -1;
7753 hr = IUriBuilder_GetUserName(builder, &len, NULL);
7754 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7755 hr, E_POINTER);
7756 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7758 if(builder) IUriBuilder_Release(builder);
7761 static void test_IUriBuilder_GetFragment(IUriBuilder *builder, const uri_builder_test *test,
7762 DWORD test_index) {
7763 HRESULT hr;
7764 DWORD i;
7765 LPCWSTR received = NULL;
7766 DWORD len = -1;
7767 const uri_builder_property *prop = NULL;
7769 /* Check if the property was set earlier. */
7770 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7771 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_FRAGMENT)
7772 prop = &(test->properties[i]);
7775 if(prop) {
7776 /* Use expected_value unless it's NULL, then use value. */
7777 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7778 hr = IUriBuilder_GetFragment(builder, &len, &received);
7779 if(prop->todo) {
7780 todo_wine {
7781 ok(hr == (expected ? S_OK : S_FALSE),
7782 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7783 hr, (expected ? S_OK : S_FALSE), test_index);
7785 if(SUCCEEDED(hr)) {
7786 todo_wine {
7787 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7788 expected, wine_dbgstr_w(received), test_index);
7790 todo_wine {
7791 ok(lstrlen(expected) == len,
7792 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7793 lstrlen(expected), len, test_index);
7796 } else {
7797 ok(hr == (expected ? S_OK : S_FALSE),
7798 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7799 hr, (expected ? S_OK : S_FALSE), test_index);
7800 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7801 expected, wine_dbgstr_w(received), test_index);
7802 ok(lstrlen(expected) == len,
7803 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7804 lstrlen(expected), len, test_index);
7806 } else {
7807 /* The property wasn't set earlier, so it should return whatever
7808 * the base IUri contains (if anything).
7810 IUri *uri = NULL;
7811 hr = IUriBuilder_GetIUri(builder, &uri);
7812 ok(hr == S_OK,
7813 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7814 hr, S_OK, test_index);
7815 if(SUCCEEDED(hr)) {
7816 if(!uri) {
7817 received = (void*) 0xdeadbeef;
7818 len = -1;
7820 hr = IUriBuilder_GetFragment(builder, &len, &received);
7821 ok(hr == S_FALSE,
7822 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7823 hr, S_FALSE, test_index);
7824 if(SUCCEEDED(hr)) {
7825 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
7826 len, test_index);
7827 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
7828 received, test_index);
7830 } else {
7831 BOOL has_prop = FALSE;
7832 BSTR expected = NULL;
7834 hr = IUri_GetFragment(uri, &expected);
7835 ok(SUCCEEDED(hr),
7836 "Error: Expected IUri_GetFragment to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
7837 hr, test_index);
7838 has_prop = hr == S_OK;
7840 hr = IUriBuilder_GetFragment(builder, &len, &received);
7841 if(has_prop) {
7842 ok(hr == S_OK,
7843 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7844 hr, S_OK, test_index);
7845 if(SUCCEEDED(hr)) {
7846 ok(!lstrcmpW(expected, received),
7847 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
7848 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
7849 ok(lstrlenW(expected) == len,
7850 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7851 lstrlenW(expected), len, test_index);
7853 } else {
7854 ok(hr == S_FALSE,
7855 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7856 hr, S_FALSE, test_index);
7857 if(SUCCEEDED(hr)) {
7858 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
7859 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
7860 len, test_index);
7863 SysFreeString(expected);
7866 if(uri) IUri_Release(uri);
7870 static void test_IUriBuilder_GetHost(IUriBuilder *builder, const uri_builder_test *test,
7871 DWORD test_index) {
7872 HRESULT hr;
7873 DWORD i;
7874 LPCWSTR received = NULL;
7875 DWORD len = -1;
7876 const uri_builder_property *prop = NULL;
7878 /* Check if the property was set earlier. */
7879 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7880 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_HOST)
7881 prop = &(test->properties[i]);
7884 if(prop) {
7885 /* Use expected_value unless it's NULL, then use value. */
7886 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7887 hr = IUriBuilder_GetHost(builder, &len, &received);
7888 if(prop->todo) {
7889 todo_wine {
7890 ok(hr == (expected ? S_OK : S_FALSE),
7891 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7892 hr, (expected ? S_OK : S_FALSE), test_index);
7894 if(SUCCEEDED(hr)) {
7895 todo_wine {
7896 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7897 expected, wine_dbgstr_w(received), test_index);
7899 todo_wine {
7900 ok(lstrlen(expected) == len,
7901 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7902 lstrlen(expected), len, test_index);
7905 } else {
7906 ok(hr == (expected ? S_OK : S_FALSE),
7907 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7908 hr, (expected ? S_OK : S_FALSE), test_index);
7909 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7910 expected, wine_dbgstr_w(received), test_index);
7911 ok(lstrlen(expected) == len,
7912 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7913 lstrlen(expected), len, test_index);
7915 } else {
7916 /* The property wasn't set earlier, so it should return whatever
7917 * the base IUri contains (if anything).
7919 IUri *uri = NULL;
7920 hr = IUriBuilder_GetIUri(builder, &uri);
7921 ok(hr == S_OK,
7922 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7923 hr, S_OK, test_index);
7924 if(SUCCEEDED(hr)) {
7925 if(!uri) {
7926 received = (void*) 0xdeadbeef;
7927 len = -1;
7929 hr = IUriBuilder_GetHost(builder, &len, &received);
7930 ok(hr == S_FALSE,
7931 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7932 hr, S_FALSE, test_index);
7933 if(SUCCEEDED(hr)) {
7934 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
7935 len, test_index);
7936 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
7937 received, test_index);
7939 } else {
7940 BOOL has_prop = FALSE;
7941 BSTR expected = NULL;
7943 hr = IUri_GetHost(uri, &expected);
7944 ok(SUCCEEDED(hr),
7945 "Error: Expected IUri_GetHost to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
7946 hr, test_index);
7947 has_prop = hr == S_OK;
7949 hr = IUriBuilder_GetHost(builder, &len, &received);
7950 if(has_prop) {
7951 ok(hr == S_OK,
7952 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7953 hr, S_OK, test_index);
7954 if(SUCCEEDED(hr)) {
7955 ok(!lstrcmpW(expected, received),
7956 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
7957 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
7958 ok(lstrlenW(expected) == len,
7959 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7960 lstrlenW(expected), len, test_index);
7962 } else {
7963 ok(hr == S_FALSE,
7964 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7965 hr, S_FALSE, test_index);
7966 if(SUCCEEDED(hr)) {
7967 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
7968 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
7969 len, test_index);
7972 SysFreeString(expected);
7975 if(uri) IUri_Release(uri);
7979 static void test_IUriBuilder_GetPassword(IUriBuilder *builder, const uri_builder_test *test,
7980 DWORD test_index) {
7981 HRESULT hr;
7982 DWORD i;
7983 LPCWSTR received = NULL;
7984 DWORD len = -1;
7985 const uri_builder_property *prop = NULL;
7987 /* Check if the property was set earlier. */
7988 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7989 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PASSWORD)
7990 prop = &(test->properties[i]);
7993 if(prop) {
7994 /* Use expected_value unless it's NULL, then use value. */
7995 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7996 hr = IUriBuilder_GetPassword(builder, &len, &received);
7997 if(prop->todo) {
7998 todo_wine {
7999 ok(hr == (expected ? S_OK : S_FALSE),
8000 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8001 hr, (expected ? S_OK : S_FALSE), test_index);
8003 if(SUCCEEDED(hr)) {
8004 todo_wine {
8005 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8006 expected, wine_dbgstr_w(received), test_index);
8008 todo_wine {
8009 ok(lstrlen(expected) == len,
8010 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8011 lstrlen(expected), len, test_index);
8014 } else {
8015 ok(hr == (expected ? S_OK : S_FALSE),
8016 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8017 hr, (expected ? S_OK : S_FALSE), test_index);
8018 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8019 expected, wine_dbgstr_w(received), test_index);
8020 ok(lstrlen(expected) == len,
8021 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8022 lstrlen(expected), len, test_index);
8024 } else {
8025 /* The property wasn't set earlier, so it should return whatever
8026 * the base IUri contains (if anything).
8028 IUri *uri = NULL;
8029 hr = IUriBuilder_GetIUri(builder, &uri);
8030 ok(hr == S_OK,
8031 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8032 hr, S_OK, test_index);
8033 if(SUCCEEDED(hr)) {
8034 if(!uri) {
8035 received = (void*) 0xdeadbeef;
8036 len = -1;
8038 hr = IUriBuilder_GetPassword(builder, &len, &received);
8039 ok(hr == S_FALSE,
8040 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8041 hr, S_FALSE, test_index);
8042 if(SUCCEEDED(hr)) {
8043 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8044 len, test_index);
8045 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8046 received, test_index);
8048 } else {
8049 BOOL has_prop = FALSE;
8050 BSTR expected = NULL;
8052 hr = IUri_GetPassword(uri, &expected);
8053 ok(SUCCEEDED(hr),
8054 "Error: Expected IUri_GetPassword to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8055 hr, test_index);
8056 has_prop = hr == S_OK;
8058 hr = IUriBuilder_GetPassword(builder, &len, &received);
8059 if(has_prop) {
8060 ok(hr == S_OK,
8061 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8062 hr, S_OK, test_index);
8063 if(SUCCEEDED(hr)) {
8064 ok(!lstrcmpW(expected, received),
8065 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8066 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8067 ok(lstrlenW(expected) == len,
8068 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8069 lstrlenW(expected), len, test_index);
8071 } else {
8072 ok(hr == S_FALSE,
8073 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8074 hr, S_FALSE, test_index);
8075 if(SUCCEEDED(hr)) {
8076 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8077 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8078 len, test_index);
8081 SysFreeString(expected);
8084 if(uri) IUri_Release(uri);
8088 static void test_IUriBuilder_GetPath(IUriBuilder *builder, const uri_builder_test *test,
8089 DWORD test_index) {
8090 HRESULT hr;
8091 DWORD i;
8092 LPCWSTR received = NULL;
8093 DWORD len = -1;
8094 const uri_builder_property *prop = NULL;
8096 /* Check if the property was set earlier. */
8097 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8098 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PATH)
8099 prop = &(test->properties[i]);
8102 if(prop) {
8103 /* Use expected_value unless it's NULL, then use value. */
8104 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8105 hr = IUriBuilder_GetPath(builder, &len, &received);
8106 if(prop->todo) {
8107 todo_wine {
8108 ok(hr == (expected ? S_OK : S_FALSE),
8109 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8110 hr, (expected ? S_OK : S_FALSE), test_index);
8112 if(SUCCEEDED(hr)) {
8113 todo_wine {
8114 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8115 expected, wine_dbgstr_w(received), test_index);
8117 todo_wine {
8118 ok(lstrlen(expected) == len,
8119 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8120 lstrlen(expected), len, test_index);
8123 } else {
8124 ok(hr == (expected ? S_OK : S_FALSE),
8125 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8126 hr, (expected ? S_OK : S_FALSE), test_index);
8127 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8128 expected, wine_dbgstr_w(received), test_index);
8129 ok(lstrlen(expected) == len,
8130 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8131 lstrlen(expected), len, test_index);
8133 } else {
8134 /* The property wasn't set earlier, so it should return whatever
8135 * the base IUri contains (if anything).
8137 IUri *uri = NULL;
8138 hr = IUriBuilder_GetIUri(builder, &uri);
8139 ok(hr == S_OK,
8140 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8141 hr, S_OK, test_index);
8142 if(SUCCEEDED(hr)) {
8143 if(!uri) {
8144 received = (void*) 0xdeadbeef;
8145 len = -1;
8147 hr = IUriBuilder_GetPath(builder, &len, &received);
8148 ok(hr == S_FALSE,
8149 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8150 hr, S_FALSE, test_index);
8151 if(SUCCEEDED(hr)) {
8152 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8153 len, test_index);
8154 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8155 received, test_index);
8157 } else {
8158 BOOL has_prop = FALSE;
8159 BSTR expected = NULL;
8161 hr = IUri_GetPath(uri, &expected);
8162 ok(SUCCEEDED(hr),
8163 "Error: Expected IUri_GetPath to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8164 hr, test_index);
8165 has_prop = hr == S_OK;
8167 hr = IUriBuilder_GetPath(builder, &len, &received);
8168 if(has_prop) {
8169 ok(hr == S_OK,
8170 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8171 hr, S_OK, test_index);
8172 if(SUCCEEDED(hr)) {
8173 ok(!lstrcmpW(expected, received),
8174 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8175 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8176 ok(lstrlenW(expected) == len,
8177 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8178 lstrlenW(expected), len, test_index);
8180 } else {
8181 ok(hr == S_FALSE,
8182 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8183 hr, S_FALSE, test_index);
8184 if(SUCCEEDED(hr)) {
8185 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8186 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8187 len, test_index);
8190 SysFreeString(expected);
8193 if(uri) IUri_Release(uri);
8197 static void test_IUriBuilder_GetPort(IUriBuilder *builder, const uri_builder_test *test,
8198 DWORD test_index) {
8199 HRESULT hr;
8200 BOOL has_port = FALSE;
8201 DWORD received = -1;
8203 if(test->port_prop.change) {
8204 DWORD expected = test->port_prop.value;
8206 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8207 if(test->port_prop.todo) {
8208 todo_wine {
8209 ok(hr == S_OK,
8210 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8211 hr, S_OK, test_index);
8213 if(SUCCEEDED(hr)) {
8214 todo_wine {
8215 ok(has_port == test->port_prop.set,
8216 "Error: Expected has_port to be %d but was %d instead on uri_builder_tests[%d].\n",
8217 test->port_prop.set, has_port, test_index);
8219 todo_wine {
8220 ok(received == expected,
8221 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8222 expected, received, test_index);
8225 } else {
8226 ok(hr == S_OK,
8227 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8228 hr, S_OK, test_index);
8229 ok(has_port == test->port_prop.set,
8230 "Error: Expected has_port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8231 test->port_prop.set, has_port, test_index);
8232 ok(received == test->port_prop.value,
8233 "Error: Expected port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8234 test->port_prop.value, received, test_index);
8236 } else {
8237 IUri *uri = NULL;
8239 hr = IUriBuilder_GetIUri(builder, &uri);
8240 ok(hr == S_OK,
8241 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8242 hr, S_OK, test_index);
8243 if(SUCCEEDED(hr)) {
8244 if(!uri) {
8245 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8246 ok(hr == S_OK,
8247 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8248 hr, S_OK, test_index);
8249 if(SUCCEEDED(hr)) {
8250 ok(has_port == FALSE,
8251 "Error: Expected has_port to be FALSE, but was %d instead on uri_builder_tests[%d].\n",
8252 has_port, test_index);
8253 ok(!received, "Error: Expected received to be 0, but was %d instead on uri_builder_tests[%d].\n",
8254 received, test_index);
8256 } else {
8257 DWORD expected;
8259 hr = IUri_GetPort(uri, &expected);
8260 ok(SUCCEEDED(hr),
8261 "Error: Expected IUri_Port to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8262 hr, test_index);
8264 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8265 ok(hr == S_OK,
8266 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8267 hr, S_OK, test_index);
8268 if(SUCCEEDED(hr)) {
8269 ok(!has_port,
8270 "Error: Expected has_port to be FALSE but was TRUE instead on uri_builder_tests[%d].\n",
8271 test_index);
8272 ok(received == expected,
8273 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8274 expected, received, test_index);
8278 if(uri) IUri_Release(uri);
8282 static void test_IUriBuilder_GetQuery(IUriBuilder *builder, const uri_builder_test *test,
8283 DWORD test_index) {
8284 HRESULT hr;
8285 DWORD i;
8286 LPCWSTR received = NULL;
8287 DWORD len = -1;
8288 const uri_builder_property *prop = NULL;
8290 /* Check if the property was set earlier. */
8291 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8292 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_QUERY)
8293 prop = &(test->properties[i]);
8296 if(prop) {
8297 /* Use expected_value unless it's NULL, then use value. */
8298 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8299 hr = IUriBuilder_GetQuery(builder, &len, &received);
8300 if(prop->todo) {
8301 todo_wine {
8302 ok(hr == (expected ? S_OK : S_FALSE),
8303 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8304 hr, (expected ? S_OK : S_FALSE), test_index);
8306 if(SUCCEEDED(hr)) {
8307 todo_wine {
8308 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8309 expected, wine_dbgstr_w(received), test_index);
8311 todo_wine {
8312 ok(lstrlen(expected) == len,
8313 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8314 lstrlen(expected), len, test_index);
8317 } else {
8318 ok(hr == (expected ? S_OK : S_FALSE),
8319 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8320 hr, (expected ? S_OK : S_FALSE), test_index);
8321 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8322 expected, wine_dbgstr_w(received), test_index);
8323 ok(lstrlen(expected) == len,
8324 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8325 lstrlen(expected), len, test_index);
8327 } else {
8328 /* The property wasn't set earlier, so it should return whatever
8329 * the base IUri contains (if anything).
8331 IUri *uri = NULL;
8332 hr = IUriBuilder_GetIUri(builder, &uri);
8333 ok(hr == S_OK,
8334 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8335 hr, S_OK, test_index);
8336 if(SUCCEEDED(hr)) {
8337 if(!uri) {
8338 received = (void*) 0xdeadbeef;
8339 len = -1;
8341 hr = IUriBuilder_GetQuery(builder, &len, &received);
8342 ok(hr == S_FALSE,
8343 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8344 hr, S_FALSE, test_index);
8345 if(SUCCEEDED(hr)) {
8346 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8347 len, test_index);
8348 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8349 received, test_index);
8351 } else {
8352 BOOL has_prop = FALSE;
8353 BSTR expected = NULL;
8355 hr = IUri_GetQuery(uri, &expected);
8356 ok(SUCCEEDED(hr),
8357 "Error: Expected IUri_GetQuery to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8358 hr, test_index);
8359 has_prop = hr == S_OK;
8361 hr = IUriBuilder_GetQuery(builder, &len, &received);
8362 if(has_prop) {
8363 ok(hr == S_OK,
8364 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8365 hr, S_OK, test_index);
8366 if(SUCCEEDED(hr)) {
8367 ok(!lstrcmpW(expected, received),
8368 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8369 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8370 ok(lstrlenW(expected) == len,
8371 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8372 lstrlenW(expected), len, test_index);
8374 } else {
8375 ok(hr == S_FALSE,
8376 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8377 hr, S_FALSE, test_index);
8378 if(SUCCEEDED(hr)) {
8379 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8380 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8381 len, test_index);
8384 SysFreeString(expected);
8387 if(uri) IUri_Release(uri);
8391 static void test_IUriBuilder_GetSchemeName(IUriBuilder *builder, const uri_builder_test *test,
8392 DWORD test_index) {
8393 HRESULT hr;
8394 DWORD i;
8395 LPCWSTR received = NULL;
8396 DWORD len = -1;
8397 const uri_builder_property *prop = NULL;
8399 /* Check if the property was set earlier. */
8400 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8401 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_SCHEME_NAME)
8402 prop = &(test->properties[i]);
8405 if(prop) {
8406 /* Use expected_value unless it's NULL, then use value. */
8407 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8408 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8409 if(prop->todo) {
8410 todo_wine {
8411 ok(hr == (expected ? S_OK : S_FALSE),
8412 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8413 hr, (expected ? S_OK : S_FALSE), test_index);
8415 if(SUCCEEDED(hr)) {
8416 todo_wine {
8417 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8418 expected, wine_dbgstr_w(received), test_index);
8420 todo_wine {
8421 ok(lstrlen(expected) == len,
8422 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8423 lstrlen(expected), len, test_index);
8426 } else {
8427 ok(hr == (expected ? S_OK : S_FALSE),
8428 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8429 hr, (expected ? S_OK : S_FALSE), test_index);
8430 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8431 expected, wine_dbgstr_w(received), test_index);
8432 ok(lstrlen(expected) == len,
8433 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8434 lstrlen(expected), len, test_index);
8436 } else {
8437 /* The property wasn't set earlier, so it should return whatever
8438 * the base IUri contains (if anything).
8440 IUri *uri = NULL;
8441 hr = IUriBuilder_GetIUri(builder, &uri);
8442 ok(hr == S_OK,
8443 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8444 hr, S_OK, test_index);
8445 if(SUCCEEDED(hr)) {
8446 if(!uri) {
8447 received = (void*) 0xdeadbeef;
8448 len = -1;
8450 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8451 ok(hr == S_FALSE,
8452 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8453 hr, S_FALSE, test_index);
8454 if(SUCCEEDED(hr)) {
8455 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8456 len, test_index);
8457 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8458 received, test_index);
8460 } else {
8461 BOOL has_prop = FALSE;
8462 BSTR expected = NULL;
8464 hr = IUri_GetSchemeName(uri, &expected);
8465 ok(SUCCEEDED(hr),
8466 "Error: Expected IUri_GetSchemeName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8467 hr, test_index);
8468 has_prop = hr == S_OK;
8470 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8471 if(has_prop) {
8472 ok(hr == S_OK,
8473 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8474 hr, S_OK, test_index);
8475 if(SUCCEEDED(hr)) {
8476 ok(!lstrcmpW(expected, received),
8477 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8478 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8479 ok(lstrlenW(expected) == len,
8480 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8481 lstrlenW(expected), len, test_index);
8483 } else {
8484 ok(hr == S_FALSE,
8485 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8486 hr, S_FALSE, test_index);
8487 if(SUCCEEDED(hr)) {
8488 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8489 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8490 len, test_index);
8493 SysFreeString(expected);
8496 if(uri) IUri_Release(uri);
8500 static void test_IUriBuilder_GetUserName(IUriBuilder *builder, const uri_builder_test *test,
8501 DWORD test_index) {
8502 HRESULT hr;
8503 DWORD i;
8504 LPCWSTR received = NULL;
8505 DWORD len = -1;
8506 const uri_builder_property *prop = NULL;
8508 /* Check if the property was set earlier. */
8509 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8510 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_USER_NAME)
8511 prop = &(test->properties[i]);
8514 if(prop && prop->value && *prop->value) {
8515 /* Use expected_value unless it's NULL, then use value. */
8516 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8517 hr = IUriBuilder_GetUserName(builder, &len, &received);
8518 if(prop->todo) {
8519 todo_wine {
8520 ok(hr == (expected ? S_OK : S_FALSE),
8521 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8522 hr, (expected ? S_OK : S_FALSE), test_index);
8524 if(SUCCEEDED(hr)) {
8525 todo_wine {
8526 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8527 expected, wine_dbgstr_w(received), test_index);
8529 todo_wine {
8530 ok(lstrlen(expected) == len,
8531 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8532 lstrlen(expected), len, test_index);
8535 } else {
8536 ok(hr == (expected ? S_OK : S_FALSE),
8537 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8538 hr, (expected ? S_OK : S_FALSE), test_index);
8539 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8540 expected, wine_dbgstr_w(received), test_index);
8541 ok(lstrlen(expected) == len,
8542 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8543 lstrlen(expected), len, test_index);
8545 } else {
8546 /* The property wasn't set earlier, so it should return whatever
8547 * the base IUri contains (if anything).
8549 IUri *uri = NULL;
8550 hr = IUriBuilder_GetIUri(builder, &uri);
8551 ok(hr == S_OK,
8552 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8553 hr, S_OK, test_index);
8554 if(SUCCEEDED(hr)) {
8555 if(!uri) {
8556 received = (void*) 0xdeadbeef;
8557 len = -1;
8559 hr = IUriBuilder_GetUserName(builder, &len, &received);
8560 ok(hr == S_FALSE,
8561 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8562 hr, S_FALSE, test_index);
8563 if(SUCCEEDED(hr)) {
8564 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8565 len, test_index);
8566 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8567 received, test_index);
8569 } else {
8570 BSTR expected = NULL;
8571 BOOL has_prop = FALSE;
8573 hr = IUri_GetUserName(uri, &expected);
8574 ok(SUCCEEDED(hr),
8575 "Error: Expected IUri_GetUserName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8576 hr, test_index);
8577 has_prop = hr == S_OK;
8579 hr = IUriBuilder_GetUserName(builder, &len, &received);
8580 if(has_prop) {
8581 ok(hr == S_OK,
8582 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8583 hr, S_OK, test_index);
8584 if(SUCCEEDED(hr)) {
8585 ok(!lstrcmpW(expected, received),
8586 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8587 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8588 ok(lstrlenW(expected) == len,
8589 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8590 lstrlenW(expected), len, test_index);
8592 } else {
8593 ok(hr == S_FALSE,
8594 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8595 hr, S_FALSE, test_index);
8596 if(SUCCEEDED(hr)) {
8597 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8598 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8599 len, test_index);
8602 SysFreeString(expected);
8605 if(uri) IUri_Release(uri);
8609 /* Tests IUriBuilder functions. */
8610 static void test_IUriBuilder(void) {
8611 HRESULT hr;
8612 IUriBuilder *builder;
8613 DWORD i;
8615 for(i = 0; i < sizeof(uri_builder_tests)/sizeof(uri_builder_tests[0]); ++i) {
8616 IUri *uri = NULL;
8617 uri_builder_test test = uri_builder_tests[i];
8618 LPWSTR uriW = NULL;
8620 if(test.uri) {
8621 uriW = a2w(test.uri);
8622 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
8623 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8624 hr, S_OK, i);
8625 if(FAILED(hr)) continue;
8627 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
8628 if(test.create_builder_todo) {
8629 todo_wine {
8630 ok(hr == test.create_builder_expected,
8631 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8632 hr, test.create_builder_expected, i);
8634 } else {
8635 ok(hr == test.create_builder_expected,
8636 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8637 hr, test.create_builder_expected, i);
8639 if(SUCCEEDED(hr)) {
8640 DWORD j;
8641 BOOL modified = FALSE, received = FALSE;
8643 /* Perform all the string property changes. */
8644 for(j = 0; j < URI_BUILDER_STR_PROPERTY_COUNT; ++j) {
8645 uri_builder_property prop = test.properties[j];
8646 if(prop.change) {
8647 change_property(builder, &prop, i);
8648 if(prop.property != Uri_PROPERTY_SCHEME_NAME &&
8649 prop.property != Uri_PROPERTY_HOST)
8650 modified = TRUE;
8651 else if(prop.value && *prop.value)
8652 modified = TRUE;
8653 else if(prop.value && !*prop.value && prop.property == Uri_PROPERTY_HOST)
8654 /* Host name property can't be NULL, but it can be empty. */
8655 modified = TRUE;
8659 if(test.port_prop.change) {
8660 hr = IUriBuilder_SetPort(builder, test.port_prop.set, test.port_prop.value);
8661 modified = TRUE;
8662 if(test.port_prop.todo) {
8663 todo_wine {
8664 ok(hr == test.port_prop.expected,
8665 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8666 hr, test.port_prop.expected, i);
8668 } else {
8669 ok(hr == test.port_prop.expected,
8670 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8671 hr, test.port_prop.expected, i);
8675 hr = IUriBuilder_HasBeenModified(builder, &received);
8676 ok(hr == S_OK,
8677 "Error IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8678 hr, S_OK, i);
8679 if(SUCCEEDED(hr))
8680 ok(received == modified,
8681 "Error: Expected received to be %d but was %d instead on uri_builder_tests[%d].\n",
8682 modified, received, i);
8684 /* Test the "Get*" functions. */
8685 test_IUriBuilder_GetFragment(builder, &test, i);
8686 test_IUriBuilder_GetHost(builder, &test, i);
8687 test_IUriBuilder_GetPassword(builder, &test, i);
8688 test_IUriBuilder_GetPath(builder, &test, i);
8689 test_IUriBuilder_GetPort(builder, &test, i);
8690 test_IUriBuilder_GetQuery(builder, &test, i);
8691 test_IUriBuilder_GetSchemeName(builder, &test, i);
8692 test_IUriBuilder_GetUserName(builder, &test, i);
8694 test_IUriBuilder_CreateUri(builder, &test, i);
8695 test_IUriBuilder_CreateUriSimple(builder, &test, i);
8696 test_IUriBuilder_CreateUriWithFlags(builder, &test, i);
8698 if(builder) IUriBuilder_Release(builder);
8699 if(uri) IUri_Release(uri);
8700 heap_free(uriW);
8704 static void test_IUriBuilder_HasBeenModified(void) {
8705 HRESULT hr;
8706 IUriBuilder *builder = NULL;
8708 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8709 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8710 if(SUCCEEDED(hr)) {
8711 static const WCHAR hostW[] = {'g','o','o','g','l','e','.','c','o','m',0};
8712 IUri *uri = NULL;
8713 BOOL received;
8715 hr = IUriBuilder_HasBeenModified(builder, NULL);
8716 ok(hr == E_POINTER, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8717 hr, E_POINTER);
8719 hr = IUriBuilder_SetHost(builder, hostW);
8720 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n",
8721 hr, S_OK);
8723 hr = IUriBuilder_HasBeenModified(builder, &received);
8724 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8725 hr, S_OK);
8726 if(SUCCEEDED(hr))
8727 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8729 hr = pCreateUri(http_urlW, 0, 0, &uri);
8730 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8731 if(SUCCEEDED(hr)) {
8732 LPCWSTR prop;
8733 DWORD len = -1;
8735 hr = IUriBuilder_SetIUri(builder, uri);
8736 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n",
8737 hr, S_OK);
8739 hr = IUriBuilder_HasBeenModified(builder, &received);
8740 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8741 hr, S_OK);
8742 if(SUCCEEDED(hr))
8743 ok(received == FALSE, "Error: Expected received to be FALSE.\n");
8745 /* Test what happens with you call SetIUri with the same IUri again. */
8746 hr = IUriBuilder_SetHost(builder, hostW);
8747 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8749 hr = IUriBuilder_HasBeenModified(builder, &received);
8750 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8751 hr, S_OK);
8752 if(SUCCEEDED(hr))
8753 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8755 hr = IUriBuilder_SetIUri(builder, uri);
8756 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8758 /* IUriBuilder already had 'uri' as it's IUri property and so Windows doesn't
8759 * reset any of the changes that were made to the IUriBuilder.
8761 hr = IUriBuilder_HasBeenModified(builder, &received);
8762 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8763 if(SUCCEEDED(hr))
8764 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8766 hr = IUriBuilder_GetHost(builder, &len, &prop);
8767 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8768 if(SUCCEEDED(hr)) {
8769 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8770 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8771 ok(len == lstrlenW(hostW), "Error: Expected len to be %d, but was %d instead.\n",
8772 lstrlenW(hostW), len);
8775 hr = IUriBuilder_SetIUri(builder, NULL);
8776 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8778 hr = IUriBuilder_SetHost(builder, hostW);
8779 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8780 hr = IUriBuilder_HasBeenModified(builder, &received);
8781 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8782 hr, S_OK);
8783 if(SUCCEEDED(hr))
8784 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8786 hr = IUriBuilder_SetIUri(builder, NULL);
8787 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%09x.\n", hr, S_OK);
8789 hr = IUriBuilder_HasBeenModified(builder, &received);
8790 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8791 hr, S_OK);
8792 if(SUCCEEDED(hr))
8793 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8795 hr = IUriBuilder_GetHost(builder, &len, &prop);
8796 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8797 if(SUCCEEDED(hr)) {
8798 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8799 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8800 ok(len == lstrlenW(hostW), "Error: Expected len to %d, but was %d instead.\n",
8801 lstrlenW(hostW), len);
8804 if(uri) IUri_Release(uri);
8806 if(builder) IUriBuilder_Release(builder);
8809 /* Test IUriBuilder {Get,Set}IUri functions. */
8810 static void test_IUriBuilder_IUriProperty(void) {
8811 IUriBuilder *builder = NULL;
8812 HRESULT hr;
8814 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8815 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8816 if(SUCCEEDED(hr)) {
8817 IUri *uri = NULL;
8819 hr = IUriBuilder_GetIUri(builder, NULL);
8820 ok(hr == E_POINTER, "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x.\n",
8821 hr, E_POINTER);
8823 hr = pCreateUri(http_urlW, 0, 0, &uri);
8824 if(SUCCEEDED(hr)) {
8825 IUri *test = NULL;
8826 ULONG cur_count, orig_count;
8828 /* IUriBuilder doesn't clone the IUri, it use the same IUri. */
8829 orig_count = get_refcnt(uri);
8830 hr = IUriBuilder_SetIUri(builder, uri);
8831 cur_count = get_refcnt(uri);
8832 if(SUCCEEDED(hr))
8833 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8834 orig_count+1, cur_count);
8836 hr = IUriBuilder_SetIUri(builder, NULL);
8837 cur_count = get_refcnt(uri);
8838 if(SUCCEEDED(hr))
8839 ok(cur_count == orig_count, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8840 orig_count, cur_count);
8842 /* CreateUri* functions will return back the same IUri if nothing has changed. */
8843 hr = IUriBuilder_SetIUri(builder, uri);
8844 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8845 orig_count = get_refcnt(uri);
8847 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, &test);
8848 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8849 if(SUCCEEDED(hr)) {
8850 cur_count = get_refcnt(uri);
8851 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8852 orig_count+1, cur_count);
8853 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n",
8854 uri, test);
8856 if(test) IUri_Release(test);
8858 test = NULL;
8859 hr = IUriBuilder_CreateUri(builder, -1, 0, 0, &test);
8860 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8861 if(SUCCEEDED(hr)) {
8862 cur_count = get_refcnt(uri);
8863 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8864 orig_count+1, cur_count);
8865 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8867 if(test) IUri_Release(test);
8869 /* Doesn't return the same IUri, if the flag combination is different then the one that created
8870 * the base IUri.
8872 test = NULL;
8873 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, &test);
8874 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8875 if(SUCCEEDED(hr))
8876 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
8878 if(test) IUri_Release(test);
8880 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
8881 * explicitly set (because it's a default flags).
8883 test = NULL;
8884 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_CANONICALIZE, 0, 0, &test);
8885 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8886 if(SUCCEEDED(hr)) {
8887 cur_count = get_refcnt(uri);
8888 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8889 orig_count+1, cur_count);
8890 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
8892 if(test) IUri_Release(test);
8894 test = NULL;
8895 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, &test);
8896 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8897 if(SUCCEEDED(hr)) {
8898 cur_count = get_refcnt(uri);
8899 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8900 orig_count+1, cur_count);
8901 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8903 if(test) IUri_Release(test);
8905 test = NULL;
8906 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &test);
8907 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
8908 hr, S_OK);
8909 if(SUCCEEDED(hr)) {
8910 cur_count = get_refcnt(uri);
8911 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8912 orig_count+1, cur_count);
8913 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8915 if(test) IUri_Release(test);
8917 /* Doesn't return the same IUri, if the flag combination is different then the one that created
8918 * the base IUri.
8920 test = NULL;
8921 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, 0, &test);
8922 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8923 if(SUCCEEDED(hr))
8924 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
8926 if(test) IUri_Release(test);
8928 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
8929 * explicitly set (because it's a default flags).
8931 test = NULL;
8932 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_CANONICALIZE, 0, 0, 0, &test);
8933 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8934 if(SUCCEEDED(hr)) {
8935 cur_count = get_refcnt(uri);
8936 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8937 orig_count+1, cur_count);
8938 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
8940 if(test) IUri_Release(test);
8942 if(uri) IUri_Release(uri);
8944 if(builder) IUriBuilder_Release(builder);
8947 static void test_IUriBuilder_RemoveProperties(void) {
8948 IUriBuilder *builder = NULL;
8949 HRESULT hr;
8950 DWORD i;
8952 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8953 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8954 if(SUCCEEDED(hr)) {
8955 /* Properties that can't be removed. */
8956 const DWORD invalid = Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_RAW_URI|Uri_HAS_HOST_TYPE|
8957 Uri_HAS_SCHEME|Uri_HAS_ZONE;
8959 for(i = Uri_PROPERTY_STRING_START; i <= Uri_PROPERTY_DWORD_LAST; ++i) {
8960 hr = IUriBuilder_RemoveProperties(builder, i << 1);
8961 if((i << 1) & invalid) {
8962 ok(hr == E_INVALIDARG,
8963 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
8964 hr, E_INVALIDARG, i);
8965 } else {
8966 ok(hr == S_OK,
8967 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
8968 hr, S_OK, i);
8972 /* Also doesn't accept anything that's outside the range of the
8973 * Uri_HAS flags.
8975 hr = IUriBuilder_RemoveProperties(builder, (Uri_PROPERTY_DWORD_LAST+1) << 1);
8976 ok(hr == E_INVALIDARG, "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x.\n",
8977 hr, E_INVALIDARG);
8979 if(builder) IUriBuilder_Release(builder);
8981 for(i = 0; i < sizeof(uri_builder_remove_tests)/sizeof(uri_builder_remove_tests[0]); ++i) {
8982 uri_builder_remove_test test = uri_builder_remove_tests[i];
8983 IUri *uri = NULL;
8984 LPWSTR uriW;
8986 uriW = a2w(test.uri);
8987 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
8988 if(SUCCEEDED(hr)) {
8989 builder = NULL;
8991 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
8992 if(test.create_builder_todo) {
8993 todo_wine {
8994 ok(hr == test.create_builder_expected,
8995 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
8996 hr, test.create_builder_expected, i);
8998 } else {
8999 ok(hr == test.create_builder_expected,
9000 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9001 hr, test.create_builder_expected, i);
9003 if(SUCCEEDED(hr)) {
9004 hr = IUriBuilder_RemoveProperties(builder, test.remove_properties);
9005 if(test.remove_todo) {
9006 todo_wine {
9007 ok(hr == test.remove_expected,
9008 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x on test %d.\n",
9009 hr, test.remove_expected, i);
9011 } else {
9012 ok(hr == test.remove_expected,
9013 "Error: IUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9014 hr, test.remove_expected, i);
9016 if(SUCCEEDED(hr)) {
9017 IUri *result = NULL;
9019 hr = IUriBuilder_CreateUri(builder, test.expected_flags, 0, 0, &result);
9020 if(test.expected_todo) {
9021 todo_wine {
9022 ok(hr == test.expected_hres,
9023 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9024 hr, test.expected_hres, i);
9026 } else {
9027 ok(hr == test.expected_hres,
9028 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9029 hr, test.expected_hres, i);
9031 if(SUCCEEDED(hr)) {
9032 BSTR received = NULL;
9034 hr = IUri_GetAbsoluteUri(result, &received);
9035 ok(!strcmp_aw(test.expected_uri, received),
9036 "Error: Expected %s but got %s instead on test %d.\n",
9037 test.expected_uri, wine_dbgstr_w(received), i);
9038 SysFreeString(received);
9040 if(result) IUri_Release(result);
9043 if(builder) IUriBuilder_Release(builder);
9045 if(uri) IUri_Release(uri);
9046 heap_free(uriW);
9050 static void test_IUriBuilder_Misc(void) {
9051 HRESULT hr;
9052 IUri *uri;
9054 hr = pCreateUri(http_urlW, 0, 0, &uri);
9055 if(SUCCEEDED(hr)) {
9056 IUriBuilder *builder;
9058 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
9059 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9060 if(SUCCEEDED(hr)) {
9061 BOOL has = -1;
9062 DWORD port = -1;
9064 hr = IUriBuilder_GetPort(builder, &has, &port);
9065 ok(hr == S_OK, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9066 if(SUCCEEDED(hr)) {
9067 /* 'has' will be set to FALSE, even though uri had a port. */
9068 ok(has == FALSE, "Error: Expected 'has' to be FALSE, was %d instead.\n", has);
9069 /* Still sets 'port' to 80. */
9070 ok(port == 80, "Error: Expected the port to be 80, but, was %d instead.\n", port);
9073 if(builder) IUriBuilder_Release(builder);
9075 if(uri) IUri_Release(uri);
9078 static void test_IUriBuilderFactory(void) {
9079 HRESULT hr;
9080 IUri *uri;
9081 IUriBuilderFactory *factory;
9082 IUriBuilder *builder;
9084 hr = pCreateUri(http_urlW, 0, 0, &uri);
9085 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9086 if(SUCCEEDED(hr)) {
9087 factory = NULL;
9088 hr = IUri_QueryInterface(uri, &IID_IUriBuilderFactory, (void**)&factory);
9089 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x.\n", hr);
9090 ok(factory != NULL, "Error: Expected 'factory' to not be NULL.\n");
9092 if(SUCCEEDED(hr)) {
9093 builder = (void*) 0xdeadbeef;
9094 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 10, 0, &builder);
9095 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9096 hr, E_INVALIDARG);
9097 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9099 builder = (void*) 0xdeadbeef;
9100 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 10, &builder);
9101 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9102 hr, E_INVALIDARG);
9103 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9105 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, NULL);
9106 ok(hr == E_POINTER, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9107 hr, E_POINTER);
9109 builder = NULL;
9110 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, &builder);
9111 ok(hr == S_OK, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9112 hr, S_OK);
9113 if(SUCCEEDED(hr)) {
9114 IUri *tmp = (void*) 0xdeadbeef;
9115 LPCWSTR result;
9116 DWORD result_len;
9118 hr = IUriBuilder_GetIUri(builder, &tmp);
9119 ok(hr == S_OK, "Error: GetIUri returned 0x%08x, expected 0x%08x.\n",
9120 hr, S_OK);
9121 ok(!tmp, "Error: Expected 'tmp' to be NULL, but was %p instead.\n", tmp);
9123 hr = IUriBuilder_GetHost(builder, &result_len, &result);
9124 ok(hr == S_FALSE, "Error: GetHost returned 0x%08x, expected 0x%08x.\n",
9125 hr, S_FALSE);
9127 if(builder) IUriBuilder_Release(builder);
9129 builder = (void*) 0xdeadbeef;
9130 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 10, 0, &builder);
9131 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9132 hr, E_INVALIDARG);
9133 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9135 builder = (void*) 0xdeadbeef;
9136 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 10, &builder);
9137 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9138 hr, E_INVALIDARG);
9139 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9141 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, NULL);
9142 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9143 hr, E_POINTER);
9145 builder = NULL;
9146 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, &builder);
9147 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9148 hr, S_OK);
9149 if(SUCCEEDED(hr)) {
9150 IUri *tmp = NULL;
9152 hr = IUriBuilder_GetIUri(builder, &tmp);
9153 ok(hr == S_OK, "Error: GetIUri return 0x%08x, expected 0x%08x.\n",
9154 hr, S_OK);
9155 ok(tmp == uri, "Error: Expected tmp to be %p, but was %p.\n", uri, tmp);
9156 if(uri) IUri_Release(uri);
9158 if(builder) IUriBuilder_Release(builder);
9160 if(factory) IUriBuilderFactory_Release(factory);
9162 if(uri) IUri_Release(uri);
9165 static void test_CoInternetCombineIUri(void) {
9166 HRESULT hr;
9167 IUri *base, *relative, *result;
9168 DWORD i;
9170 base = NULL;
9171 hr = pCreateUri(http_urlW, 0, 0, &base);
9172 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9173 if(SUCCEEDED(hr)) {
9174 result = (void*) 0xdeadbeef;
9175 hr = pCoInternetCombineIUri(base, NULL, 0, &result, 0);
9176 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9177 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9180 relative = NULL;
9181 hr = pCreateUri(http_urlW, 0, 0, &relative);
9182 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9183 if(SUCCEEDED(hr)) {
9184 result = (void*) 0xdeadbeef;
9185 hr = pCoInternetCombineIUri(NULL, relative, 0, &result, 0);
9186 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9187 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9190 hr = pCoInternetCombineIUri(base, relative, 0, NULL, 0);
9191 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9193 if(base) IUri_Release(base);
9194 if(relative) IUri_Release(relative);
9196 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9197 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9199 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9200 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9201 if(SUCCEEDED(hr)) {
9202 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9204 hr = pCreateUri(relativeW, uri_combine_tests[i].relative_create_flags, 0, &relative);
9205 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9206 if(SUCCEEDED(hr)) {
9207 result = NULL;
9209 hr = pCoInternetCombineIUri(base, relative, uri_combine_tests[i].combine_flags, &result, 0);
9210 if(uri_combine_tests[i].todo) {
9211 todo_wine {
9212 ok(hr == uri_combine_tests[i].expected,
9213 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9214 hr, uri_combine_tests[i].expected, i);
9216 } else {
9217 ok(hr == uri_combine_tests[i].expected,
9218 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9219 hr, uri_combine_tests[i]. expected, i);
9221 if(SUCCEEDED(hr)) {
9222 DWORD j;
9224 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9225 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9226 BSTR received;
9228 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9229 if(prop.todo) {
9230 todo_wine {
9231 ok(hr == prop.expected,
9232 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9233 hr, prop.expected, i, j);
9235 todo_wine {
9236 ok(!strcmp_aw(prop.value, received) ||
9237 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9238 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9239 prop.value, wine_dbgstr_w(received), i, j);
9241 } else {
9242 ok(hr == prop.expected,
9243 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9244 hr, prop.expected, i, j);
9245 ok(!strcmp_aw(prop.value, received) ||
9246 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9247 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9248 prop.value, wine_dbgstr_w(received), i, j);
9250 SysFreeString(received);
9253 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9254 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9255 DWORD received;
9257 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9258 if(prop.todo) {
9259 todo_wine {
9260 ok(hr == prop.expected,
9261 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9262 hr, prop.expected, i, j);
9264 todo_wine {
9265 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9266 prop.value, received, i, j);
9268 } else {
9269 ok(hr == prop.expected,
9270 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9271 hr, prop.expected, i, j);
9272 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9273 prop.value, received, i, j);
9277 if(result) IUri_Release(result);
9279 if(relative) IUri_Release(relative);
9280 heap_free(relativeW);
9282 if(base) IUri_Release(base);
9283 heap_free(baseW);
9287 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
9288 REFIID riid, void **ppv)
9290 ok(0, "unexpected call\n");
9291 return E_NOINTERFACE;
9294 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
9296 return 2;
9299 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
9301 return 1;
9304 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
9305 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
9306 DWORD *pcchResult, DWORD dwReserved)
9308 CHECK_EXPECT(ParseUrl);
9309 ok(!lstrcmpW(pwzUrl, parse_urlW), "Error: Expected %s, but got %s instead.\n",
9310 wine_dbgstr_w(parse_urlW), wine_dbgstr_w(pwzUrl));
9311 ok(ParseAction == parse_action, "Error: Expected %d, but got %d.\n", parse_action, ParseAction);
9312 ok(dwParseFlags == parse_flags, "Error: Expected 0x%08x, but got 0x%08x.\n", parse_flags, dwParseFlags);
9313 ok(cchResult == 200, "Error: Got %d.\n", cchResult);
9315 memcpy(pwzResult, parse_resultW, sizeof(parse_resultW));
9316 *pcchResult = lstrlenW(parse_resultW);
9318 return S_OK;
9321 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
9322 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
9323 LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
9325 CHECK_EXPECT(CombineUrl);
9326 ok(!lstrcmpW(pwzBaseUrl, combine_baseW), "Error: Expected %s, but got %s instead.\n",
9327 wine_dbgstr_w(combine_baseW), wine_dbgstr_w(pwzBaseUrl));
9328 ok(!lstrcmpW(pwzRelativeUrl, combine_relativeW), "Error: Expected %s, but got %s instead.\n",
9329 wine_dbgstr_w(combine_relativeW), wine_dbgstr_w(pwzRelativeUrl));
9330 ok(dwCombineFlags == (URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO),
9331 "Error: Expected 0, but got 0x%08x.\n", dwCombineFlags);
9332 ok(cchResult == INTERNET_MAX_URL_LENGTH+1, "Error: Got %d.\n", cchResult);
9334 memcpy(pwzResult, combine_resultW, sizeof(combine_resultW));
9335 *pcchResult = lstrlenW(combine_resultW);
9337 return S_OK;
9340 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
9341 LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
9343 ok(0, "unexpected call\n");
9344 return E_NOTIMPL;
9347 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
9348 LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
9349 DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
9351 ok(0, "unexpected call\n");
9352 return E_NOTIMPL;
9355 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
9356 InternetProtocolInfo_QueryInterface,
9357 InternetProtocolInfo_AddRef,
9358 InternetProtocolInfo_Release,
9359 InternetProtocolInfo_ParseUrl,
9360 InternetProtocolInfo_CombineUrl,
9361 InternetProtocolInfo_CompareUrl,
9362 InternetProtocolInfo_QueryInfo
9365 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
9367 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
9369 if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
9370 *ppv = &protocol_info;
9371 return S_OK;
9374 ok(0, "unexpected call\n");
9375 return E_NOINTERFACE;
9378 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
9380 return 2;
9383 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
9385 return 1;
9388 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
9389 REFIID riid, void **ppv)
9391 ok(0, "unexpected call\n");
9392 return E_NOTIMPL;
9395 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
9397 ok(0, "unexpected call\n");
9398 return S_OK;
9401 static const IClassFactoryVtbl ClassFactoryVtbl = {
9402 ClassFactory_QueryInterface,
9403 ClassFactory_AddRef,
9404 ClassFactory_Release,
9405 ClassFactory_CreateInstance,
9406 ClassFactory_LockServer
9409 static IClassFactory protocol_cf = { &ClassFactoryVtbl };
9411 static void register_protocols(void)
9413 IInternetSession *session;
9414 HRESULT hres;
9416 hres = pCoInternetGetSession(0, &session, 0);
9417 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
9418 if(FAILED(hres))
9419 return;
9421 hres = IInternetSession_RegisterNameSpace(session, &protocol_cf, &IID_NULL,
9422 winetestW, 0, NULL, 0);
9423 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
9425 IInternetSession_Release(session);
9428 static void unregister_protocols(void) {
9429 IInternetSession *session;
9430 HRESULT hr;
9432 hr = pCoInternetGetSession(0, &session, 0);
9433 ok(hr == S_OK, "CoInternetGetSession failed: 0x%08x\n", hr);
9434 if(FAILED(hr))
9435 return;
9437 hr = IInternetSession_UnregisterNameSpace(session, &protocol_cf, winetestW);
9438 ok(hr == S_OK, "UnregisterNameSpace failed: 0x%08x\n", hr);
9440 IInternetSession_Release(session);
9443 static void test_CoInternetCombineIUri_Pluggable(void) {
9444 HRESULT hr;
9445 IUri *base = NULL;
9447 hr = pCreateUri(combine_baseW, 0, 0, &base);
9448 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9449 if(SUCCEEDED(hr)) {
9450 IUri *relative = NULL;
9452 hr = pCreateUri(combine_relativeW, Uri_CREATE_ALLOW_RELATIVE, 0, &relative);
9453 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9454 if(SUCCEEDED(hr)) {
9455 IUri *result = NULL;
9457 SET_EXPECT(CombineUrl);
9459 hr = pCoInternetCombineIUri(base, relative, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9460 &result, 0);
9461 ok(hr == S_OK, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9463 CHECK_CALLED(CombineUrl);
9465 if(SUCCEEDED(hr)) {
9466 BSTR received = NULL;
9467 hr = IUri_GetAbsoluteUri(result, &received);
9468 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9469 if(SUCCEEDED(hr)) {
9470 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9471 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9473 SysFreeString(received);
9475 if(result) IUri_Release(result);
9477 if(relative) IUri_Release(relative);
9479 if(base) IUri_Release(base);
9482 static void test_CoInternetCombineUrlEx(void) {
9483 HRESULT hr;
9484 IUri *base, *result;
9485 DWORD i;
9487 base = NULL;
9488 hr = pCreateUri(http_urlW, 0, 0, &base);
9489 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9490 if(SUCCEEDED(hr)) {
9491 result = (void*) 0xdeadbeef;
9492 hr = pCoInternetCombineUrlEx(base, NULL, 0, &result, 0);
9493 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9494 hr, E_UNEXPECTED);
9495 ok(!result, "Error: Expected 'result' to be NULL was %p instead.\n", result);
9498 result = (void*) 0xdeadbeef;
9499 hr = pCoInternetCombineUrlEx(NULL, http_urlW, 0, &result, 0);
9500 ok(hr == E_INVALIDARG, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9501 hr, E_INVALIDARG);
9502 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9504 result = (void*) 0xdeadbeef;
9505 hr = pCoInternetCombineUrlEx(NULL, NULL, 0, &result, 0);
9506 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9507 hr, E_UNEXPECTED);
9508 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9510 hr = pCoInternetCombineUrlEx(base, http_urlW, 0, NULL, 0);
9511 ok(hr == E_POINTER, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9512 hr, E_POINTER);
9513 if(base) IUri_Release(base);
9515 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9516 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9518 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9519 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_combine_tests[%d].\n", hr, i);
9520 if(SUCCEEDED(hr)) {
9521 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9523 hr = pCoInternetCombineUrlEx(base, relativeW, uri_combine_tests[i].combine_flags,
9524 &result, 0);
9525 if(uri_combine_tests[i].todo) {
9526 todo_wine {
9527 ok(hr == uri_combine_tests[i].expected,
9528 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9529 hr, uri_combine_tests[i].expected, i);
9531 } else {
9532 ok(hr == uri_combine_tests[i].expected,
9533 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9534 hr, uri_combine_tests[i]. expected, i);
9536 if(SUCCEEDED(hr)) {
9537 DWORD j;
9539 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9540 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9541 BSTR received;
9542 LPCSTR value = (prop.value_ex) ? prop.value_ex : prop.value;
9544 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9545 if(prop.todo) {
9546 todo_wine {
9547 ok(hr == prop.expected,
9548 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9549 hr, prop.expected, i, j);
9551 todo_wine {
9552 ok(!strcmp_aw(value, received) ||
9553 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9554 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9555 value, wine_dbgstr_w(received), i, j);
9557 } else {
9558 ok(hr == prop.expected,
9559 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9560 hr, prop.expected, i, j);
9561 ok(!strcmp_aw(value, received) ||
9562 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9563 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9564 value, wine_dbgstr_w(received), i, j);
9566 SysFreeString(received);
9569 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9570 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9571 DWORD received;
9573 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9574 if(prop.todo) {
9575 todo_wine {
9576 ok(hr == prop.expected,
9577 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9578 hr, prop.expected, i, j);
9580 todo_wine {
9581 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9582 prop.value, received, i, j);
9584 } else {
9585 ok(hr == prop.expected,
9586 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9587 hr, prop.expected, i, j);
9588 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9589 prop.value, received, i, j);
9593 if(result) IUri_Release(result);
9594 heap_free(relativeW);
9596 if(base) IUri_Release(base);
9597 heap_free(baseW);
9601 static void test_CoInternetCombineUrlEx_Pluggable(void) {
9602 HRESULT hr;
9603 IUri *base = NULL;
9605 hr = pCreateUri(combine_baseW, 0, 0, &base);
9606 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9607 if(SUCCEEDED(hr)) {
9608 IUri *result = NULL;
9610 SET_EXPECT(CombineUrl);
9612 hr = pCoInternetCombineUrlEx(base, combine_relativeW, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9613 &result, 0);
9614 ok(hr == S_OK, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9616 CHECK_CALLED(CombineUrl);
9618 if(SUCCEEDED(hr)) {
9619 BSTR received = NULL;
9620 hr = IUri_GetAbsoluteUri(result, &received);
9621 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9622 if(SUCCEEDED(hr)) {
9623 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9624 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9626 SysFreeString(received);
9628 if(result) IUri_Release(result);
9630 if(base) IUri_Release(base);
9633 static void test_CoInternetParseIUri_InvalidArgs(void) {
9634 HRESULT hr;
9635 IUri *uri = NULL;
9636 WCHAR tmp[3];
9637 DWORD result = -1;
9639 hr = pCoInternetParseIUri(NULL, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9640 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9641 hr, E_INVALIDARG);
9642 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9644 hr = pCreateUri(http_urlW, 0, 0, &uri);
9645 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9646 if(SUCCEEDED(hr)) {
9647 DWORD expected_len;
9649 result = -1;
9650 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, NULL, 0, &result, 0);
9651 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9652 hr, E_INVALIDARG);
9653 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9655 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, NULL, 0);
9656 ok(hr == E_POINTER, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9657 hr, E_POINTER);
9659 result = -1;
9660 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_URL, 0, tmp, 3, &result, 0);
9661 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x expected 0x%08x.\n",
9662 hr, E_FAIL);
9663 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9665 result = -1;
9666 hr = pCoInternetParseIUri(uri, PARSE_MIME, 0, tmp, 3, &result, 0);
9667 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9668 hr, E_FAIL);
9669 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9671 result = -1;
9672 hr = pCoInternetParseIUri(uri, PARSE_SERVER, 0, tmp, 3, &result, 0);
9673 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9674 hr, E_FAIL);
9675 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9677 result = -1;
9678 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_DOMAIN, 0, tmp, 3, &result, 0);
9679 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9680 hr, E_FAIL);
9681 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9683 expected_len = lstrlenW(http_urlW);
9684 result = -1;
9685 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9686 ok(hr == STRSAFE_E_INSUFFICIENT_BUFFER,
9687 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9688 hr, STRSAFE_E_INSUFFICIENT_BUFFER);
9689 ok(result == expected_len, "Error: Expected 'result' to be %d, but was %d instead.\n",
9690 expected_len, result);
9692 if(uri) IUri_Release(uri);
9695 static void test_CoInternetParseIUri(void) {
9696 DWORD i;
9698 for(i = 0; i < sizeof(uri_parse_tests)/sizeof(uri_parse_tests[0]); ++i) {
9699 HRESULT hr;
9700 IUri *uri;
9701 LPWSTR uriW;
9702 uri_parse_test test = uri_parse_tests[i];
9704 uriW = a2w(test.uri);
9705 hr = pCreateUri(uriW, test.uri_flags, 0, &uri);
9706 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_parse_tests[%d].\n", hr, i);
9707 if(SUCCEEDED(hr)) {
9708 WCHAR result[INTERNET_MAX_URL_LENGTH+1];
9709 DWORD result_len = -1;
9711 hr = pCoInternetParseIUri(uri, test.action, test.flags, result, INTERNET_MAX_URL_LENGTH+1, &result_len, 0);
9712 if(test.todo) {
9713 todo_wine {
9714 ok(hr == test.expected,
9715 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9716 hr, test.expected, i);
9718 } else {
9719 ok(hr == test.expected,
9720 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9721 hr, test.expected, i);
9723 if(SUCCEEDED(hr)) {
9724 DWORD len = lstrlenA(test.property);
9725 ok(!strcmp_aw(test.property, result),
9726 "Error: Expected %s but got %s instead on uri_parse_tests[%d].\n",
9727 test.property, wine_dbgstr_w(result), i);
9728 ok(len == result_len,
9729 "Error: Expected %d, but got %d instead on uri_parse_tests[%d].\n",
9730 len, result_len, i);
9731 } else {
9732 ok(!result_len,
9733 "Error: Expected 'result_len' to be 0, but was %d on uri_parse_tests[%d].\n",
9734 result_len, i);
9737 if(uri) IUri_Release(uri);
9738 heap_free(uriW);
9742 static void test_CoInternetParseIUri_Pluggable(void) {
9743 HRESULT hr;
9744 IUri *uri = NULL;
9746 hr = pCreateUri(parse_urlW, 0, 0, &uri);
9747 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, but got 0x%08x.\n", hr);
9748 if(SUCCEEDED(hr)) {
9749 WCHAR result[200];
9750 DWORD result_len;
9752 SET_EXPECT(ParseUrl);
9754 parse_action = PARSE_CANONICALIZE;
9755 parse_flags = URL_UNESCAPE|URL_ESCAPE_UNSAFE;
9757 hr = pCoInternetParseIUri(uri, parse_action, parse_flags, result, 200, &result_len, 0);
9758 ok(hr == S_OK, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9760 CHECK_CALLED(ParseUrl);
9762 if(SUCCEEDED(hr)) {
9763 ok(result_len == lstrlenW(parse_resultW), "Error: Expected %d, but got %d.\n",
9764 lstrlenW(parse_resultW), result_len);
9765 ok(!lstrcmpW(result, parse_resultW), "Error: Expected %s, but got %s.\n",
9766 wine_dbgstr_w(parse_resultW), wine_dbgstr_w(result));
9769 if(uri) IUri_Release(uri);
9772 START_TEST(uri) {
9773 HMODULE hurlmon;
9775 hurlmon = GetModuleHandle("urlmon.dll");
9776 pCoInternetGetSession = (void*) GetProcAddress(hurlmon, "CoInternetGetSession");
9777 pCreateUri = (void*) GetProcAddress(hurlmon, "CreateUri");
9778 pCreateUriWithFragment = (void*) GetProcAddress(hurlmon, "CreateUriWithFragment");
9779 pCreateIUriBuilder = (void*) GetProcAddress(hurlmon, "CreateIUriBuilder");
9780 pCoInternetCombineIUri = (void*) GetProcAddress(hurlmon, "CoInternetCombineIUri");
9781 pCoInternetCombineUrlEx = (void*) GetProcAddress(hurlmon, "CoInternetCombineUrlEx");
9782 pCoInternetParseIUri = (void*) GetProcAddress(hurlmon, "CoInternetParseIUri");
9784 if(!pCreateUri) {
9785 win_skip("CreateUri is not present, skipping tests.\n");
9786 return;
9789 trace("test CreateUri invalid flags...\n");
9790 test_CreateUri_InvalidFlags();
9792 trace("test CreateUri invalid args...\n");
9793 test_CreateUri_InvalidArgs();
9795 trace("test CreateUri invalid URIs...\n");
9796 test_CreateUri_InvalidUri();
9798 trace("test IUri_GetPropertyBSTR...\n");
9799 test_IUri_GetPropertyBSTR();
9801 trace("test IUri_GetPropertyDWORD...\n");
9802 test_IUri_GetPropertyDWORD();
9804 trace("test IUri_GetStrProperties...\n");
9805 test_IUri_GetStrProperties();
9807 trace("test IUri_GetDwordProperties...\n");
9808 test_IUri_GetDwordProperties();
9810 trace("test IUri_GetPropertyLength...\n");
9811 test_IUri_GetPropertyLength();
9813 trace("test IUri_GetProperties...\n");
9814 test_IUri_GetProperties();
9816 trace("test IUri_HasProperty...\n");
9817 test_IUri_HasProperty();
9819 trace("test IUri_IsEqual...\n");
9820 test_IUri_IsEqual();
9822 trace("test CreateUriWithFragment invalid args...\n");
9823 test_CreateUriWithFragment_InvalidArgs();
9825 trace("test CreateUriWithFragment invalid flags...\n");
9826 test_CreateUriWithFragment_InvalidFlags();
9828 trace("test CreateUriWithFragment...\n");
9829 test_CreateUriWithFragment();
9831 trace("test CreateIUriBuilder...\n");
9832 test_CreateIUriBuilder();
9834 trace("test IUriBuilder_CreateInvalidArgs...\n");
9835 test_IUriBuilder_CreateInvalidArgs();
9837 trace("test IUriBuilder...\n");
9838 test_IUriBuilder();
9840 trace("test IUriBuilder_GetInvalidArgs...\n");
9841 test_IUriBuilder_GetInvalidArgs();
9843 trace("test IUriBuilder_HasBeenModified...\n");
9844 test_IUriBuilder_HasBeenModified();
9846 trace("test IUriBuilder_IUriProperty...\n");
9847 test_IUriBuilder_IUriProperty();
9849 trace("test IUriBuilder_RemoveProperties...\n");
9850 test_IUriBuilder_RemoveProperties();
9852 trace("test IUriBuilder miscellaneous...\n");
9853 test_IUriBuilder_Misc();
9855 trace("test IUriBuilderFactory...\n");
9856 test_IUriBuilderFactory();
9858 trace("test CoInternetCombineIUri...\n");
9859 test_CoInternetCombineIUri();
9861 trace("test CoInternetCombineUrlEx...\n");
9862 test_CoInternetCombineUrlEx();
9864 trace("test CoInternetParseIUri Invalid Args...\n");
9865 test_CoInternetParseIUri_InvalidArgs();
9867 trace("test CoInternetParseIUri...\n");
9868 test_CoInternetParseIUri();
9870 register_protocols();
9872 trace("test CoInternetCombineIUri pluggable...\n");
9873 test_CoInternetCombineIUri_Pluggable();
9875 trace("test CoInternetCombineUrlEx Pluggable...\n");
9876 test_CoInternetCombineUrlEx_Pluggable();
9878 trace("test CoInternetParseIUri pluggable...\n");
9879 test_CoInternetParseIUri_Pluggable();
9881 unregister_protocols();