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>
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) \
47 ok(expect_ ##func, "unexpected call " #func "\n"); \
48 expect_ ## func = FALSE; \
49 called_ ## func = TRUE; \
52 #define CHECK_EXPECT2(func) \
54 ok(expect_ ##func, "unexpected call " #func "\n"); \
55 called_ ## func = TRUE; \
58 #define CHECK_CALLED(func) \
60 ok(called_ ## func, "expected " #func "\n"); \
61 expect_ ## func = called_ ## func = FALSE; \
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 {
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 {
111 const char* broken_value;
114 typedef struct _uri_dword_property {
118 } uri_dword_property;
120 typedef struct _uri_properties {
123 HRESULT create_expected;
126 uri_str_property str_props[URI_STR_PROPERTY_COUNT];
127 uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT];
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},
164 {"winehq.org",S_OK,FALSE},
166 {"/tests",S_OK,FALSE},
167 {"/tests",S_OK,FALSE},
169 {"http://winehq.org/tests/.././tests",S_OK,FALSE},
175 {Uri_HOST_DNS,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},
189 {"www.winehq.org",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},
200 {Uri_HOST_DNS,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},
214 {"example.com",S_OK,FALSE},
216 {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
217 {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,FALSE},
219 {"hTTp://us%45r%3Ainfo@examp%4CE.com:80/path/a/b/./c/../%2E%2E/Forbidden'<|> Characters",S_OK,FALSE},
221 {"usEr%3Ainfo",S_OK,FALSE},
222 {"usEr%3Ainfo",S_OK,FALSE}
225 {Uri_HOST_DNS,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},
239 {"ftp.winehq.org",S_OK,FALSE},
241 {"/dir/foo%20bar.txt",S_OK,FALSE},
242 {"/dir/foo%20bar.txt",S_OK,FALSE},
244 {"ftp://winepass:wine@ftp.winehq.org:9999/dir/foo bar.txt",S_OK,FALSE},
246 {"winepass:wine",S_OK,FALSE},
247 {"winepass",S_OK,FALSE}
250 {Uri_HOST_DNS,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},
260 {"file:///c:/tests/foo%2520bar.mp3",S_OK,FALSE},
266 {"/c:/tests/foo%2520bar.mp3",S_OK,FALSE},
267 {"/c:/tests/foo%2520bar.mp3",S_OK,FALSE},
269 {"file://c:\\tests\\../tests/foo%20bar.mp3",S_OK,FALSE},
275 {Uri_HOST_UNKNOWN,S_OK,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},
285 {"file:///tests/test%20file.README.txt",S_OK,FALSE},
291 {"/tests/test%20file.README.txt",S_OK,FALSE},
292 {"/tests/test%20file.README.txt",S_OK,FALSE},
294 {"FILE://localhost/test dir\\../tests/test%20file.README.txt",S_OK,FALSE},
300 {Uri_HOST_UNKNOWN,S_OK,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},
310 {"urn:nothing:should:happen here",S_OK,FALSE},
316 {"nothing:should:happen here",S_OK,FALSE},
317 {"nothing:should:happen here",S_OK,FALSE},
319 {"urn:nothing:should:happen here",S_OK,FALSE},
325 {Uri_HOST_UNKNOWN,S_OK,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},
339 {"127.0.0.1",S_OK,FALSE},
341 {"/test%20dir/test.txt",S_OK,FALSE},
342 {"/test%20dir/test.txt",S_OK,FALSE},
344 {"http://127.0.0.1/tests/../test dir/./test.txt",S_OK,FALSE},
350 {Uri_HOST_IPV4,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},
364 {"fedc:ba98:7654:3210:fedc:ba98:7654:3210",S_OK,FALSE},
369 {"http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]",S_OK,FALSE},
375 {Uri_HOST_IPV6,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},
389 {"::13.1.68.3",S_OK,FALSE},
394 {"ftp://[::13.1.68.3]",S_OK,FALSE},
400 {Uri_HOST_IPV6,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},
414 {"fedc:ba98::3210",S_OK,FALSE},
419 {"http://[FEDC:BA98:0:0:0:0:0:3210]",S_OK,FALSE},
425 {Uri_HOST_IPV6,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},
439 {"www.winehq.org",S_OK,FALSE},
444 {"1234://www.winehq.org",S_OK,FALSE},
450 {Uri_HOST_DNS,S_OK,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},
461 {"file:///C:/test/test.mp3",S_OK,FALSE},
467 {"/C:/test/test.mp3",S_OK,FALSE},
468 {"/C:/test/test.mp3",S_OK,FALSE},
470 {"C:/test/test.mp3",S_OK,FALSE},
476 {Uri_HOST_UNKNOWN,S_OK,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},
491 {"server",S_OK,FALSE},
493 {"/test.mp3",S_OK,FALSE},
494 {"/test.mp3",S_OK,FALSE},
496 {"\\\\Server/test.mp3",S_OK,FALSE},
502 {Uri_HOST_DNS,S_OK,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},
516 {"www.winehq.org",S_OK,FALSE},
518 {"/test",S_OK,FALSE},
519 {"/test",S_OK,FALSE},
521 {"www.winehq.org/test",S_OK,FALSE},
527 {Uri_HOST_DNS,S_OK,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},
542 {"www.winehq.org",S_OK,FALSE},
544 {"/test",S_OK,FALSE},
545 {"/test",S_OK,FALSE},
547 {"*:www.winehq.org/test",S_OK,FALSE},
553 {Uri_HOST_DNS,S_OK,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},
563 {"/../some dir/test.ext",S_OK,FALSE},
569 {"/../some dir/test.ext",S_OK,FALSE},
570 {"/../some dir/test.ext",S_OK,FALSE},
572 {"/../some dir/test.ext",S_OK,FALSE},
578 {Uri_HOST_UNKNOWN,S_OK,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},
588 {"*://implicit/wildcard/uri%20scheme",S_OK,FALSE},
594 {"//implicit/wildcard/uri%20scheme",S_OK,FALSE},
595 {"//implicit/wildcard/uri%20scheme",S_OK,FALSE},
597 {"//implicit/wildcard/uri scheme",S_OK,FALSE},
603 {Uri_HOST_UNKNOWN,S_OK,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},
614 {"zip:/.//google.com",S_OK,FALSE},
620 {"/.//google.com",S_OK,FALSE},
621 {"/.//google.com",S_OK,FALSE},
623 {"zip://google.com",S_OK,FALSE},
629 {Uri_HOST_UNKNOWN,S_OK,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},
644 {"winehq.org",S_OK,FALSE},
645 {"pass:word",S_OK,FALSE},
649 {"ftp://user:pass:word@winehq.org/",S_OK,FALSE},
651 {"user:pass:word",S_OK,FALSE},
655 {Uri_HOST_DNS,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},
670 {"ftp.google.com",S_OK,FALSE},
675 {"ftp://w%49%4Ee:PA%53%53@ftp.google.com/",S_OK,FALSE},
677 {"wINe:PASS",S_OK,FALSE},
681 {Uri_HOST_DNS,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},
696 {"ftp.google.com",S_OK,FALSE},
697 {"PA%7B%7D",S_OK,FALSE},
701 {"ftp://w%5D%5Be:PA%7B%7D@ftp.google.com/",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},
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},
722 {"ftp.google.com",S_OK,FALSE},
727 {"ftp://empty:@ftp.google.com/",S_OK,FALSE},
729 {"empty:",S_OK,FALSE},
733 {Uri_HOST_DNS,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},
748 {"ftp.google.com",S_OK,FALSE},
753 {"ftp://\" \"weird@ftp.google.com/",S_OK,FALSE},
755 {"%22%20%22weird",S_OK,FALSE},
756 {"%22%20%22weird",S_OK,FALSE}
759 {Uri_HOST_DNS,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},
774 {"ftp.google.com",S_OK,FALSE},
779 {"ftp://\" \"weird@ftp.google.com/",S_OK,FALSE},
781 {"\" \"weird",S_OK,FALSE},
782 {"\" \"weird",S_OK,FALSE}
785 {Uri_HOST_DNS,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},
800 {"winehq.org",S_OK,FALSE},
805 {"zip://%xy:word@winehq.org/",S_OK,FALSE},
807 {"%xy:word",S_OK,FALSE},
811 {Uri_HOST_DNS,S_OK,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
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},
828 {"winehq.org",S_OK,FALSE},
829 {"%52%53ord",S_OK,FALSE},
833 {"zip://%2E:%52%53ord@winehq.org/",S_OK,FALSE},
835 {"%2E:%52%53ord",S_OK,FALSE},
839 {Uri_HOST_DNS,S_OK,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},
853 {"winehq.org",S_OK,FALSE},
858 {"ftp://[](),'test':word@winehq.org/",S_OK,FALSE},
860 {"[](),'test':word",S_OK,FALSE},
861 {"[](),'test'",S_OK,FALSE}
864 {Uri_HOST_DNS,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},
874 {"ftp://test/?:word@winehq.org/",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},
889 {Uri_HOST_DNS,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},
899 {"ftp://test/#:word@winehq.org/",S_OK,FALSE},
902 {"#:word@winehq.org/",S_OK,FALSE},
908 {"ftp://test#:word@winehq.org/",S_OK,FALSE},
914 {Uri_HOST_DNS,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},
929 {"winehq.org",S_OK,FALSE},
934 {"zip://test\\:word@winehq.org/",S_OK,FALSE},
936 {"test\\:word",S_OK,FALSE},
937 {"test\\",S_OK,FALSE}
940 {Uri_HOST_DNS,S_OK,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},
955 {"127.0.0.100",S_OK,FALSE},
960 {"http://127.000.000.100/",S_OK,FALSE},
966 {Uri_HOST_IPV4,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},
981 {"127.0.0.0",S_OK,FALSE},
986 {"http://127.0/",S_OK,FALSE},
992 {Uri_HOST_IPV4,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},
1007 {"0.1.226.64",S_OK,FALSE},
1012 {"http://123456/",S_OK,FALSE},
1013 {"http",S_OK,FALSE},
1018 {Uri_HOST_IPV4,S_OK,FALSE},
1020 {URL_SCHEME_HTTP,S_OK,FALSE},
1021 {URLZONE_INVALID,E_NOTIMPL,FALSE}
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},
1033 {"255.255.255.255",S_OK,FALSE},
1038 {"http://4294967295/",S_OK,FALSE},
1039 {"http",S_OK,FALSE},
1044 {Uri_HOST_IPV4,S_OK,FALSE},
1046 {URL_SCHEME_HTTP,S_OK,FALSE},
1047 {URLZONE_INVALID,E_NOTIMPL,FALSE}
1051 { "http://4294967296/", 0, S_OK, FALSE,
1053 {"http://4294967296/",S_OK,FALSE},
1054 {"4294967296",S_OK,FALSE},
1055 {"http://4294967296/",S_OK,FALSE},
1059 {"4294967296",S_OK,FALSE},
1064 {"http://4294967296/",S_OK,FALSE},
1065 {"http",S_OK,FALSE},
1070 {Uri_HOST_DNS,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},
1085 {"4294967295",S_OK,FALSE},
1090 {"1234://4294967295/",S_OK,FALSE},
1091 {"1234",S_OK,FALSE},
1096 {Uri_HOST_IPV4,S_OK,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},
1111 {"127.001",S_OK,FALSE},
1116 {"1234://127.001/",S_OK,FALSE},
1117 {"1234",S_OK,FALSE},
1122 {Uri_HOST_IPV4,S_OK,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},
1136 {"fedc:ba98::3210",S_OK,FALSE},
1141 {"http://[FEDC:BA98::3210]",S_OK,FALSE},
1142 {"http",S_OK,FALSE},
1147 {Uri_HOST_IPV6,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},
1166 {"http://[::]",S_OK,FALSE},
1167 {"http",S_OK,FALSE},
1172 {Uri_HOST_IPV6,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},
1186 {"fedc:ba98::",S_OK,FALSE},
1191 {"http://[FEDC:BA98::]",S_OK,FALSE},
1192 {"http",S_OK,FALSE},
1197 {Uri_HOST_IPV6,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},
1212 {"1:0:3:4:5:6:7:8",S_OK,FALSE},
1217 {"http://[1::3:4:5:6:7:8]",S_OK,FALSE},
1218 {"http",S_OK,FALSE},
1223 {Uri_HOST_IPV6,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},
1237 {"[v2.34]",S_OK,FALSE},
1242 {"http://[v2.34]/",S_OK,FALSE},
1243 {"http",S_OK,FALSE},
1248 {Uri_HOST_UNKNOWN,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},
1263 {"[xyz:12345.com",S_OK,FALSE},
1265 {"/test",S_OK,FALSE},
1266 {"/test",S_OK,FALSE},
1268 {"http://[xyz:12345.com/test",S_OK,FALSE},
1269 {"http",S_OK,FALSE},
1274 {Uri_HOST_DNS,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},
1291 {"www.[works].com",S_OK,FALSE},
1296 {"ftp://www.[works].com/",S_OK,FALSE},
1302 {Uri_HOST_DNS,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},
1317 {"www.google.com]",S_OK,FALSE},
1322 {"http://www.google.com]:12345/",S_OK,FALSE},
1323 {"http",S_OK,FALSE},
1328 {Uri_HOST_DNS,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},
1343 {"w%XXw%GEw.google.com",S_OK,FALSE},
1348 {"zip://w%XXw%GEw.google.com/",S_OK,FALSE},
1354 {Uri_HOST_DNS,S_OK,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},
1369 {"GOOGLE.com",S_OK,FALSE},
1374 {"zip://GOOGLE.com/",S_OK,FALSE},
1380 {Uri_HOST_DNS,S_OK,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},
1395 {"www.google.com",S_OK,FALSE},
1400 {"http://WWW.GOOGLE.com/",S_OK,FALSE},
1401 {"http",S_OK,FALSE},
1406 {Uri_HOST_DNS,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},
1423 {"www.%7cgoogle%7c.com",S_OK,FALSE},
1428 {"http://www.%7Cgoogle|.com/",S_OK,FALSE},
1429 {"http",S_OK,FALSE},
1434 {Uri_HOST_DNS,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},
1449 {"1:2:3:4:5:6::",S_OK,FALSE},
1454 {"http://[1:2:3:4:5:6:0.0.0.0]",S_OK,FALSE},
1455 {"http",S_OK,FALSE},
1460 {Uri_HOST_IPV6,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},
1475 {"::1.2.3.0",S_OK,FALSE},
1480 {"http://[::001.002.003.000]",S_OK,FALSE},
1481 {"http",S_OK,FALSE},
1486 {Uri_HOST_IPV6,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},
1501 {"0001:0:000:0004:0005:0006:001.002.003.000",S_OK,FALSE},
1506 {"zip://[0001:0:000:0004:0005:0006:001.002.003.000]",S_OK,FALSE},
1512 {Uri_HOST_IPV6,S_OK,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},
1527 {"ffff::c0de:6f20",S_OK,FALSE},
1532 {"http://[ffff::192.222.111.32]",S_OK,FALSE},
1533 {"http",S_OK,FALSE},
1538 {Uri_HOST_IPV6,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},
1553 {"google.com",S_OK,FALSE},
1558 {"http://google.com:65535",S_OK,FALSE},
1559 {"http",S_OK,FALSE},
1564 {Uri_HOST_DNS,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},
1578 {"google.com:65536",S_OK,FALSE},
1583 {"zip://google.com:65536",S_OK,FALSE},
1589 {Uri_HOST_DNS,S_OK,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},
1603 {"google.com:65536:25",S_OK,FALSE},
1608 {"zip://google.com:65536:25",S_OK,FALSE},
1614 {Uri_HOST_DNS,S_OK,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},
1628 {"[::ffff]:abcd",S_OK,FALSE},
1633 {"zip://[::ffff]:abcd",S_OK,FALSE},
1639 {Uri_HOST_DNS,S_OK,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},
1653 {"127.0.0.1:abcd",S_OK,FALSE},
1658 {"zip://127.0.0.1:abcd",S_OK,FALSE},
1664 {Uri_HOST_DNS,S_OK,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},
1679 {"google.com",S_OK,FALSE},
1684 {"http://google.com:00035",S_OK,FALSE},
1685 {"http",S_OK,FALSE},
1690 {Uri_HOST_DNS,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},
1705 {"google.com",S_OK,FALSE},
1710 {"http://google.com:80",S_OK,FALSE},
1711 {"http",S_OK,FALSE},
1716 {Uri_HOST_DNS,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},
1730 {"google.com.uk",S_OK,FALSE},
1735 {"http://google.com.uk",S_OK,FALSE},
1736 {"http",S_OK,FALSE},
1741 {Uri_HOST_DNS,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},
1755 {"google.com.com",S_OK,FALSE},
1760 {"http://google.com.com",S_OK,FALSE},
1761 {"http",S_OK,FALSE},
1766 {Uri_HOST_DNS,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},
1780 {"google.uk.1",S_OK,FALSE},
1785 {"http://google.uk.1",S_OK,FALSE},
1786 {"http",S_OK,FALSE},
1791 {Uri_HOST_DNS,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},
1806 {"google.foo.uk",S_OK,FALSE},
1811 {"http://google.foo.uk",S_OK,FALSE},
1812 {"http",S_OK,FALSE},
1817 {Uri_HOST_DNS,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},
1831 {".com",S_OK,FALSE},
1836 {"http://.com",S_OK,FALSE},
1837 {"http",S_OK,FALSE},
1842 {Uri_HOST_DNS,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},
1852 {"http://.uk/",S_OK,FALSE},
1861 {"http://.uk",S_OK,FALSE},
1862 {"http",S_OK,FALSE},
1867 {Uri_HOST_DNS,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},
1881 {"www.co.google.com.[]",S_OK,FALSE},
1886 {"http://www.co.google.com.[]",S_OK,FALSE},
1887 {"http",S_OK,FALSE},
1892 {Uri_HOST_DNS,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},
1906 {"co.uk",S_OK,FALSE},
1911 {"http://co.uk",S_OK,FALSE},
1912 {"http",S_OK,FALSE},
1917 {Uri_HOST_DNS,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},
1931 {"www.co.google.us.test",S_OK,FALSE},
1936 {"http://www.co.google.us.test",S_OK,FALSE},
1937 {"http",S_OK,FALSE},
1942 {Uri_HOST_DNS,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},
1956 {"gov.uk",S_OK,FALSE},
1961 {"http://gov.uk",S_OK,FALSE},
1962 {"http",S_OK,FALSE},
1967 {Uri_HOST_DNS,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},
1981 {"www.google.com\\test",S_OK,FALSE},
1986 {"zip://www.google.com\\test",S_OK,FALSE},
1992 {Uri_HOST_DNS,S_OK,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},
2002 {"urn:excepts:bad:%XY:encoded",S_OK,FALSE},
2008 {"excepts:bad:%XY:encoded",S_OK,FALSE},
2009 {"excepts:bad:%XY:encoded",S_OK,FALSE},
2011 {"urn:excepts:bad:%XY:encoded",S_OK,FALSE},
2017 {Uri_HOST_UNKNOWN,S_OK,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},
2030 {"file:///C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2032 {".mp3",S_OK,FALSE},
2036 {"/C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2037 {"/C:/te%253Es%252Et/tes%25t.mp3",S_OK,FALSE},
2039 {"file://C:/te%3Es%2Et/tes%t.mp3",S_OK,FALSE},
2040 {"file",S_OK,FALSE},
2045 {Uri_HOST_UNKNOWN,S_OK,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},
2058 {"file:///C:/te%3Es.t/t#es%25t.mp3",S_OK,FALSE},
2060 {".mp3",S_OK,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},
2067 {"file:///C:/te%3Es%2Et/t%23es%t.mp3",S_OK,FALSE},
2068 {"file",S_OK,FALSE},
2073 {Uri_HOST_UNKNOWN,S_OK,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},
2088 {"::1.2.3.0",S_OK,FALSE},
2090 {"/%3F%23.T/test",S_OK,FALSE},
2091 {"/%3F%23.T/test",S_OK,FALSE},
2093 {"http://[::001.002.003.000]/%3F%23%2E%54/test",S_OK,FALSE},
2094 {"http",S_OK,FALSE},
2099 {Uri_HOST_IPV6,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},
2110 {"file:///C:/%22test%22/test.mp3",S_OK,FALSE},
2112 {".mp3",S_OK,FALSE},
2116 {"/C:/%22test%22/test.mp3",S_OK,FALSE},
2117 {"/C:/%22test%22/test.mp3",S_OK,FALSE},
2119 {"file:///C:/\"test\"/test.mp3",S_OK,FALSE},
2120 {"file",S_OK,FALSE},
2125 {Uri_HOST_UNKNOWN,S_OK,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},
2140 {"4294967295",S_OK,FALSE},
2142 {"/<|>\" test<|>",S_OK,FALSE},
2143 {"/<|>\" test<|>",S_OK,FALSE},
2145 {"1234://4294967295/<|>\" test<|>",S_OK,FALSE},
2146 {"1234",S_OK,FALSE},
2151 {Uri_HOST_IPV4,S_OK,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},
2166 {"gov.uk",S_OK,FALSE},
2168 {"/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2169 {"/%3C%7C%3E%20test%3C%7C%3E",S_OK,FALSE},
2171 {"http://gov.uk/<|> test<|>",S_OK,FALSE},
2172 {"http",S_OK,FALSE},
2177 {Uri_HOST_DNS,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},
2191 {"gov.uk",S_OK,FALSE},
2196 {"http://gov.uk/test/../test2/././../test3/.././././",S_OK,FALSE},
2197 {"http",S_OK,FALSE},
2202 {Uri_HOST_DNS,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},
2216 {"gov.uk",S_OK,FALSE},
2221 {"http://gov.uk/test/test2/../../..",S_OK,FALSE},
2222 {"http",S_OK,FALSE},
2227 {Uri_HOST_DNS,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},
2241 {"gov.uk",S_OK,FALSE},
2246 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2247 {"http",S_OK,FALSE},
2252 {Uri_HOST_DNS,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},
2262 {"file:///c:/foo%2520bar.mp3",S_OK,FALSE},
2264 {".mp3",S_OK,FALSE},
2268 {"/c:/foo%2520bar.mp3",S_OK,FALSE},
2269 {"/c:/foo%2520bar.mp3",S_OK,FALSE},
2271 {"file://c:\\tests\\../tests\\./.\\..\\foo%20bar.mp3",S_OK,FALSE},
2272 {"file",S_OK,FALSE},
2277 {Uri_HOST_UNKNOWN,S_OK,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},
2292 {"gov.uk",S_OK,FALSE},
2297 {"zip://gov.uk/test/test2/../../.",S_OK,FALSE},
2303 {Uri_HOST_DNS,S_OK,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},
2318 {"gov.uk",S_OK,FALSE},
2320 {"/test/test2/../../.",S_OK,FALSE},
2321 {"/test/test2/../../.",S_OK,FALSE},
2323 {"http://gov.uk/test/test2/../../.",S_OK,FALSE},
2324 {"http",S_OK,FALSE},
2329 {Uri_HOST_DNS,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},
2344 {"gov.uk",S_OK,FALSE},
2346 {"/test/test2/../../.",S_OK,FALSE},
2347 {"/test/test2/../../.",S_OK,FALSE},
2349 {"*:gov.uk/test/test2/../../.",S_OK,FALSE},
2355 {Uri_HOST_DNS,S_OK,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},
2366 {"mailto:%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2368 {".com%22",S_OK,FALSE},
2372 {"%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2373 {"%22acco%3C%7C%3Eunt@example.com%22",S_OK,FALSE},
2375 {"mailto:\"acco<|>unt@example.com\"",S_OK,FALSE},
2376 {"mailto",S_OK,FALSE},
2381 {Uri_HOST_UNKNOWN,S_OK,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},
2391 {"news:test.tes%3C%7C%3Et.com",S_OK,FALSE},
2393 {".com",S_OK,FALSE},
2397 {"test.tes%3C%7C%3Et.com",S_OK,FALSE},
2398 {"test.tes%3C%7C%3Et.com",S_OK,FALSE},
2400 {"news:test.tes<|>t.com",S_OK,FALSE},
2401 {"news",S_OK,FALSE},
2406 {Uri_HOST_UNKNOWN,S_OK,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},
2417 {"news:test.tes<|>t.com",S_OK,FALSE},
2419 {".com",S_OK,FALSE},
2423 {"test.tes<|>t.com",S_OK,FALSE},
2424 {"test.tes<|>t.com",S_OK,FALSE},
2426 {"news:test.tes<|>t.com",S_OK,FALSE},
2427 {"news",S_OK,FALSE},
2432 {Uri_HOST_UNKNOWN,S_OK,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},
2443 {"urn:test.tes<|>t.com",S_OK,FALSE},
2445 {".com",S_OK,FALSE},
2449 {"test.tes<|>t.com",S_OK,FALSE},
2450 {"test.tes<|>t.com",S_OK,FALSE},
2452 {"urn:test.tes<|>t.com",S_OK,FALSE},
2458 {Uri_HOST_UNKNOWN,S_OK,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},
2469 {"news:test.test.com",S_OK,FALSE},
2471 {".com",S_OK,FALSE},
2475 {"test.test.com",S_OK,FALSE},
2476 {"test.test.com",S_OK,FALSE},
2478 {"news:test.%74%65%73%74.com",S_OK,FALSE},
2479 {"news",S_OK,FALSE},
2484 {Uri_HOST_UNKNOWN,S_OK,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},
2495 {"news:test.test.com",S_OK,FALSE},
2497 {".com",S_OK,FALSE},
2501 {"test.test.com",S_OK,FALSE},
2502 {"test.test.com",S_OK,FALSE},
2504 {"news:test.%74%65%73%74.com",S_OK,FALSE},
2505 {"news",S_OK,FALSE},
2510 {Uri_HOST_UNKNOWN,S_OK,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},
2521 {"urn:test.%74%65%73%74.com",S_OK,FALSE},
2523 {".com",S_OK,FALSE},
2527 {"test.%74%65%73%74.com",S_OK,FALSE},
2528 {"test.%74%65%73%74.com",S_OK,FALSE},
2530 {"urn:test.%74%65%73%74.com",S_OK,FALSE},
2536 {Uri_HOST_UNKNOWN,S_OK,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},
2551 {"www.winehq.org",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},
2562 {Uri_HOST_DNS,S_OK,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},
2577 {"www.winehq.org",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},
2588 {Uri_HOST_DNS,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},
2603 {"www.winehq.org",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},
2614 {Uri_HOST_DNS,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},
2629 {"www.winehq.org",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},
2640 {Uri_HOST_DNS,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},
2655 {"www.winehq.org",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},
2666 {Uri_HOST_DNS,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},
2681 {"www.winehq.org",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},
2692 {Uri_HOST_DNS,S_OK,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},
2707 {"www.winehq.org",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},
2718 {Uri_HOST_DNS,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},
2733 {"www.winehq.org",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},
2744 {Uri_HOST_DNS,S_OK,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},
2759 {"www.winehq.org",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},
2770 {Uri_HOST_DNS,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},
2784 {"www.winehq.org",S_OK,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},
2795 {Uri_HOST_DNS,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},
2809 {"#Te%xx",S_OK,FALSE},
2810 {"www.winehq.org",S_OK,FALSE},
2812 {"/tests/",S_OK,FALSE},
2813 {"/tests/",S_OK,FALSE},
2815 {"zip://www.winehq.org/tests/#Te%xx",S_OK,FALSE},
2821 {Uri_HOST_DNS,S_OK,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},
2835 {"#Te<|>",S_OK,FALSE},
2836 {"www.winehq.org",S_OK,FALSE},
2838 {"/tests/",S_OK,FALSE},
2839 {"/tests/",S_OK,FALSE},
2841 {"zip://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2847 {Uri_HOST_DNS,S_OK,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},
2861 {"#Te%3C%7C%3E",S_OK,FALSE},
2862 {"www.winehq.org",S_OK,FALSE},
2864 {"/tests/",S_OK,FALSE},
2865 {"/tests/",S_OK,FALSE},
2867 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2868 {"http",S_OK,FALSE},
2873 {Uri_HOST_DNS,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},
2887 {"#Te<|>",S_OK,FALSE},
2888 {"www.winehq.org",S_OK,FALSE},
2890 {"/tests/",S_OK,FALSE},
2891 {"/tests/",S_OK,FALSE},
2893 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2894 {"http",S_OK,FALSE},
2899 {Uri_HOST_DNS,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},
2913 {"#Te<|>",S_OK,FALSE},
2914 {"www.winehq.org",S_OK,FALSE},
2916 {"/tests/",S_OK,FALSE},
2917 {"/tests/",S_OK,FALSE},
2919 {"http://www.winehq.org/tests/#Te<|>",S_OK,FALSE},
2920 {"http",S_OK,FALSE},
2925 {Uri_HOST_DNS,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},
2939 {"#Te%30%31%32",S_OK,FALSE},
2940 {"www.winehq.org",S_OK,FALSE},
2942 {"/tests/",S_OK,FALSE},
2943 {"/tests/",S_OK,FALSE},
2945 {"zip://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2951 {Uri_HOST_DNS,S_OK,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},
2965 {"#Te012",S_OK,FALSE},
2966 {"www.winehq.org",S_OK,FALSE},
2968 {"/tests/",S_OK,FALSE},
2969 {"/tests/",S_OK,FALSE},
2971 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2972 {"http",S_OK,FALSE},
2977 {Uri_HOST_DNS,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},
2991 {"#Te012",S_OK,FALSE},
2992 {"www.winehq.org",S_OK,FALSE},
2994 {"/tests/",S_OK,FALSE},
2995 {"/tests/",S_OK,FALSE},
2997 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
2998 {"http",S_OK,FALSE},
3003 {Uri_HOST_DNS,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},
3017 {"#Te%30%31%32",S_OK,FALSE},
3018 {"www.winehq.org",S_OK,FALSE},
3020 {"/tests/",S_OK,FALSE},
3021 {"/tests/",S_OK,FALSE},
3023 {"http://www.winehq.org/tests/#Te%30%31%32",S_OK,FALSE},
3024 {"http",S_OK,FALSE},
3029 {Uri_HOST_DNS,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},
3044 {"google.com",S_OK,FALSE},
3049 {"http://google.com/",S_OK,FALSE},
3050 {"http",S_OK,FALSE},
3055 {Uri_HOST_DNS,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},
3069 {"google.com",S_OK,FALSE},
3074 {"http://google.com/",S_OK,FALSE},
3075 {"http",S_OK,FALSE},
3080 {Uri_HOST_DNS,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},
3094 {"g%0aoogle.co%0dm",S_OK,FALSE},
3096 {"/%0A%0A%0A",S_OK,FALSE},
3097 {"/%0A%0A%0A",S_OK,FALSE},
3099 {"http://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3100 {"http",S_OK,FALSE},
3105 {Uri_HOST_DNS,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},
3119 {"g\noogle.co\rm",S_OK,FALSE},
3121 {"/\n\n\n",S_OK,FALSE},
3122 {"/\n\n\n",S_OK,FALSE},
3124 {"zip://g\noogle.co\rm/\n\n\n",S_OK,FALSE},
3130 {Uri_HOST_DNS,S_OK,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,
3143 {"file:index.html",S_OK,FALSE},
3145 {".html",S_OK,FALSE},
3149 {"index.html",S_OK,FALSE},
3150 {"index.html",S_OK,FALSE},
3152 {"file:index.html",S_OK,FALSE},
3153 {"file",S_OK,FALSE},
3158 {Uri_HOST_UNKNOWN,S_OK,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,
3169 {"http:test.com/index.html",S_OK,FALSE},
3171 {".html",S_OK,FALSE},
3175 {"test.com/index.html",S_OK,FALSE},
3176 {"test.com/index.html",S_OK,FALSE},
3178 {"http:test.com/index.html",S_OK,FALSE},
3179 {"http",S_OK,FALSE},
3184 {Uri_HOST_UNKNOWN,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,
3194 {"ftp:test.com/index.html",S_OK,FALSE},
3196 {".html",S_OK,FALSE},
3200 {"test.com/index.html",S_OK,FALSE},
3201 {"test.com/index.html",S_OK,FALSE},
3203 {"ftp:test.com/index.html",S_OK,FALSE},
3209 {Uri_HOST_UNKNOWN,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},
3219 {"file:///C:/test.mp3",S_OK,FALSE},
3221 {".mp3",S_OK,FALSE},
3225 {"/C:/test.mp3",S_OK,FALSE},
3226 {"/C:/test.mp3",S_OK,FALSE},
3228 {"file://C|/test.mp3",S_OK,FALSE},
3229 {"file",S_OK,FALSE},
3234 {Uri_HOST_UNKNOWN,S_OK,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},
3244 {"file:///C:/test.mp3",S_OK,FALSE},
3246 {".mp3",S_OK,FALSE},
3250 {"/C:/test.mp3",S_OK,FALSE},
3251 {"/C:/test.mp3",S_OK,FALSE},
3253 {"file:///C|/test.mp3",S_OK,FALSE},
3254 {"file",S_OK,FALSE},
3259 {Uri_HOST_UNKNOWN,S_OK,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
3268 { "file://c:/dir/index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
3270 {"file://c:\\dir\\index.html",S_OK,FALSE},
3272 {"file://c:\\dir\\index.html",S_OK,FALSE},
3274 {".html",S_OK,FALSE},
3278 {"c:\\dir\\index.html",S_OK,FALSE},
3279 {"c:\\dir\\index.html",S_OK,FALSE},
3281 {"file://c:/dir/index.html",S_OK,FALSE},
3282 {"file",S_OK,FALSE},
3287 {Uri_HOST_UNKNOWN,S_OK,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},
3298 {"file://c:\\dir\\index.html",S_OK,FALSE},
3300 {".html",S_OK,FALSE},
3304 {"c:\\dir\\index.html",S_OK,FALSE},
3305 {"c:\\dir\\index.html",S_OK,FALSE},
3307 {"file:///c:/dir/index.html",S_OK,FALSE},
3308 {"file",S_OK,FALSE},
3313 {Uri_HOST_UNKNOWN,S_OK,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},
3324 {"file://c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3326 {".html",S_OK,FALSE},
3330 {"c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3331 {"c:\\dir\\%a _name\\file*.html",S_OK,FALSE},
3333 {"file:///c:/dir\\%%61%20%5Fname/file%2A.html",S_OK,FALSE},
3334 {"file",S_OK,FALSE},
3339 {Uri_HOST_UNKNOWN,S_OK,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},
3349 {"file://c:\\dir\\index.html",S_OK,FALSE},
3351 {".html",S_OK,FALSE},
3355 {"c:\\dir\\index.html",S_OK,FALSE},
3356 {"c:\\dir\\index.html",S_OK,FALSE},
3358 {"file://c|/dir\\index.html",S_OK,FALSE},
3359 {"file",S_OK,FALSE},
3364 {Uri_HOST_UNKNOWN,S_OK,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},
3375 {"file://c:\\dir\\index.html",S_OK,FALSE},
3377 {".html",S_OK,FALSE},
3381 {"c:\\dir\\index.html",S_OK,FALSE},
3382 {"c:\\dir\\index.html",S_OK,FALSE},
3384 {"file:\\\\c:\\dir\\index.html",S_OK,FALSE},
3385 {"file",S_OK,FALSE},
3390 {Uri_HOST_UNKNOWN,S_OK,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},
3400 {"file:///c:/dir/index.html",S_OK,FALSE},
3402 {".html",S_OK,FALSE},
3406 {"/c:/dir/index.html",S_OK,FALSE},
3407 {"/c:/dir/index.html",S_OK,FALSE},
3409 {"file:\\\\c:/dir/index.html",S_OK,FALSE},
3410 {"file",S_OK,FALSE},
3415 {Uri_HOST_UNKNOWN,S_OK,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},
3429 {"google.com",S_OK,FALSE},
3434 {"http:\\\\google.com",S_OK,FALSE},
3435 {"http",S_OK,FALSE},
3440 {Uri_HOST_DNS,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},
3451 {"zip:\\\\google.com",S_OK,FALSE},
3453 {".com",S_OK,FALSE},
3457 {"\\\\google.com",S_OK,FALSE},
3458 {"\\\\google.com",S_OK,FALSE},
3460 {"zip:\\\\google.com",S_OK,FALSE},
3466 {Uri_HOST_UNKNOWN,S_OK,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},
3477 {"file://c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3479 {".html",S_OK,FALSE},
3483 {"c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3484 {"c:\\dir\\..\\..\\.\\index.html",S_OK,FALSE},
3486 {"file://c:\\dir\\../..\\./index.html",S_OK,FALSE},
3487 {"file",S_OK,FALSE},
3492 {Uri_HOST_UNKNOWN,S_OK,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},
3503 {"file://c:\\dir\\i^|ndex.html",S_OK,FALSE},
3505 {".html",S_OK,FALSE},
3509 {"c:\\dir\\i^|ndex.html",S_OK,FALSE},
3510 {"c:\\dir\\i^|ndex.html",S_OK,FALSE},
3512 {"file://c:\\dir\\i^|ndex.html",S_OK,FALSE},
3513 {"file",S_OK,FALSE},
3518 {Uri_HOST_UNKNOWN,S_OK,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,
3529 {"file:c:/dir/../../index.html",S_OK,FALSE},
3531 {".html",S_OK,FALSE},
3535 {"c:/dir/../../index.html",S_OK,FALSE},
3536 {"c:/dir/../../index.html",S_OK,FALSE},
3538 {"file:c:\\dir\\../..\\index.html",S_OK,FALSE},
3539 {"file",S_OK,FALSE},
3544 {Uri_HOST_UNKNOWN,S_OK,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,
3555 {"file:c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3557 {".html",S_OK,FALSE},
3561 {"c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3562 {"c:\\dir\\..\\..\\index.html",S_OK,FALSE},
3564 {"file:c:/dir\\../..\\index.html",S_OK,FALSE},
3565 {"file",S_OK,FALSE},
3570 {Uri_HOST_UNKNOWN,S_OK,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,
3581 {"file:c:\\in^|dex.html",S_OK,FALSE},
3583 {".html",S_OK,FALSE},
3587 {"c:\\in^|dex.html",S_OK,FALSE},
3588 {"c:\\in^|dex.html",S_OK,FALSE},
3590 {"file:c:\\in^|dex.html",S_OK,FALSE},
3591 {"file",S_OK,FALSE},
3596 {Uri_HOST_UNKNOWN,S_OK,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
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},
3613 {"gov.uk",S_OK,FALSE},
3614 {"password",S_OK,FALSE},
3618 {"http://:password@gov.uk",S_OK,FALSE},
3619 {"http",S_OK,FALSE},
3620 {":password",S_OK,FALSE},
3624 {Uri_HOST_DNS,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},
3639 {"gov.uk",S_OK,FALSE},
3644 {"http://@gov.uk",S_OK,FALSE},
3645 {"http",S_OK,FALSE},
3650 {Uri_HOST_DNS,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},
3665 {"gov.uk",S_OK,FALSE},
3670 {"http://:@gov.uk",S_OK,FALSE},
3671 {"http",S_OK,FALSE},
3676 {Uri_HOST_DNS,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},
3691 {"gov.uk",S_OK,FALSE},
3696 {"zip://@gov.uk",S_OK,FALSE},
3702 {Uri_HOST_DNS,S_OK,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},
3717 {"gov.uk",S_OK,FALSE},
3722 {"zip://:@gov.uk",S_OK,FALSE},
3728 {Uri_HOST_DNS,S_OK,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},
3738 {"about:blank",S_OK,FALSE},
3744 {"blank",S_OK,FALSE},
3745 {"blank",S_OK,FALSE},
3747 {"about:blank",S_OK,FALSE},
3748 {"about",S_OK,FALSE},
3753 {Uri_HOST_UNKNOWN,S_OK,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},
3763 {"mk:@MSITStore:C:\\Program%20Files/AutoCAD%202008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3765 {".htm",S_OK,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},
3772 {"mk:@MSITStore:C:\\Program Files/AutoCAD 2008\\Help/acad_acg.chm::/WSfacf1429558a55de1a7524c1004e616f8b-322b.htm",S_OK,FALSE},
3778 {Uri_HOST_UNKNOWN,S_OK,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},
3788 {"mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3790 {".htm",S_OK,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},
3797 {"mk:@MSITStore:Z:\\home\\test\\chm\\silqhelp.chm::/thesilqquickstartguide.htm",S_OK,FALSE},
3803 {Uri_HOST_UNKNOWN,S_OK,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},
3816 {".html",S_OK,FALSE},
3818 {"server",S_OK,FALSE},
3820 {"\\dir\\index.html",S_OK,FALSE},
3821 {"\\dir\\index.html",S_OK,FALSE},
3823 {"file://server/dir/index.html",S_OK,FALSE},
3824 {"file",S_OK,FALSE},
3829 {Uri_HOST_DNS,S_OK,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
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},
3846 {"google.com",S_OK,FALSE},
3851 {"http://google.com:80/",S_OK,FALSE},
3852 {"http",S_OK,FALSE},
3857 {Uri_HOST_DNS,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},
3870 {".html",S_OK,FALSE},
3872 {"C:\\dir\\file.exe",S_OK,FALSE},
3874 {"/DATA/test.html",S_OK,FALSE},
3875 {"/DATA/test.html",S_OK,FALSE},
3877 {"res://C:\\dir\\file.exe/DATA/test.html",S_OK,FALSE},
3883 {Uri_HOST_UNKNOWN,S_OK,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},
3898 {"c:\\di|r\\file.exe",S_OK,FALSE},
3900 {"/test",S_OK,FALSE},
3901 {"/test",S_OK,FALSE},
3903 {"res://c:\\di|r\\file.exe/test",S_OK,FALSE},
3909 {Uri_HOST_UNKNOWN,S_OK,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},
3924 {"c:\\dir%xx\\file.exe",S_OK,FALSE},
3926 {"/test",S_OK,FALSE},
3927 {"/test",S_OK,FALSE},
3929 {"res://c:\\dir%xx\\file.exe/test",S_OK,FALSE},
3935 {Uri_HOST_UNKNOWN,S_OK,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},
3950 {"c:\\test",S_OK,FALSE},
3952 {"/tes<|>t",S_OK,FALSE},
3953 {"/tes<|>t",S_OK,FALSE},
3955 {"res://c:\\test/tes<|>t",S_OK,FALSE},
3961 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3963 {URL_SCHEME_RES,S_OK,FALSE},
3964 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3969 typedef struct _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
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 {
4042 DWORD create_flags_a;
4045 DWORD create_flags_b;
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,
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,
4064 "c:\\test.mp3",Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME,FALSE,
4065 "file:///c:/test.mp3",0,FALSE,
4069 "ftp://ftp.winehq.org/",0,FALSE,
4070 "ftp://ftp.winehq.org",0,FALSE,
4074 "ftp://ftp.winehq.org/test/test2/../../testB/",0,FALSE,
4075 "ftp://ftp.winehq.org/t%45stB/",0,FALSE,
4079 "http://google.com/TEST",0,FALSE,
4080 "http://google.com/test",0,FALSE,
4084 "http://GOOGLE.com/",0,FALSE,
4085 "http://google.com/",0,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,
4095 "zip://GOOGLE.com/",0,FALSE,
4096 "zip://google.com/",0,FALSE,
4100 "file:///c:/TEST/TeST/",0,FALSE,
4101 "file:///c:/test/test/",0,FALSE,
4105 "file:///server/TEST",0,FALSE,
4106 "file:///SERVER/TEST",0,FALSE,
4110 "http://google.com",Uri_CREATE_NO_CANONICALIZE,FALSE,
4111 "http://google.com/",0,FALSE,
4115 "ftp://google.com:21/",0,FALSE,
4116 "ftp://google.com/",0,FALSE,
4120 "http://google.com:80/",Uri_CREATE_NO_CANONICALIZE,FALSE,
4121 "http://google.com/",0,FALSE,
4125 "http://google.com:70/",0,FALSE,
4126 "http://google.com:71/",0,FALSE,
4131 typedef struct _uri_with_fragment {
4133 const char* fragment;
4135 HRESULT create_expected;
4138 const char* expected_uri;
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 {
4165 const char *expected_value;
4166 Uri_PROPERTY property;
4169 } uri_builder_property;
4171 typedef struct _uri_builder_port {
4179 typedef struct _uri_builder_str_property {
4180 const char* expected;
4183 } uri_builder_str_property;
4185 typedef struct _uri_builder_dword_property {
4189 } uri_builder_dword_property;
4191 typedef struct _uri_builder_test {
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;
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;
4215 uri_builder_str_property expected_str_props[URI_STR_PROPERTY_COUNT];
4216 uri_builder_dword_property expected_dword_props[URI_DWORD_PROPERTY_COUNT];
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}
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},
4238 {"google.com",S_OK},
4243 {"http://username:password@google.com/?query=x#fragment",S_OK},
4245 {"username:password",S_OK},
4249 {Uri_HOST_DNS,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},
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},
4270 {"google.com",S_OK},
4275 {"test://google.com:120/",S_OK},
4281 {Uri_HOST_DNS,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}
4298 {"http://[::192.2.3.4]/",S_OK},
4299 {"[::192.2.3.4]",S_OK},
4300 {"http://[::192.2.3.4]/",S_OK},
4304 {"::192.2.3.4",S_OK},
4309 {"http://[::192.2.3.4]/",S_OK},
4315 {Uri_HOST_IPV6,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}
4330 {"http://google.com/#Frag",S_OK},
4331 {"google.com",S_OK},
4332 {"http://google.com/#Frag",S_OK},
4333 {"google.com",S_OK},
4336 {"google.com",S_OK},
4341 {"http://google.com/#Frag",S_OK},
4347 {Uri_HOST_DNS,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},
4362 {"http://google.com/#",S_OK},
4363 {"google.com",S_OK},
4364 {"http://google.com/#",S_OK},
4365 {"google.com",S_OK},
4368 {"google.com",S_OK},
4373 {"http://google.com/#",S_OK},
4379 {Uri_HOST_DNS,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}
4394 {"http://::password@google.com/",S_OK},
4395 {"::password@google.com",S_OK},
4396 {"http://google.com/",S_OK},
4397 {"google.com",S_OK},
4400 {"google.com",S_OK},
4405 {"http://::password@google.com/",S_OK},
4407 {"::password",S_OK},
4411 {Uri_HOST_DNS,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}
4422 Uri_CREATE_ALLOW_RELATIVE,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},
4437 {":password@test/test",S_OK},
4443 {Uri_HOST_UNKNOWN,S_OK},
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},
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},
4464 {"google.com",S_OK},
4466 {"/test/test",S_OK},
4467 {"/test/test",S_OK},
4469 {"http://google.com/test/test",S_OK},
4475 {Uri_HOST_DNS,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},
4507 {Uri_HOST_UNKNOWN,S_OK},
4509 {URL_SCHEME_UNKNOWN,S_OK},
4510 {URLZONE_INVALID,E_NOTIMPL}
4513 { "http://google.com/",0,S_OK,FALSE,
4517 /* 555 will be returned from GetPort even though FALSE was passed as the hasPort parameter. */
4518 {TRUE,FALSE,555,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},
4529 {"google.com",S_OK},
4534 {"http://google.com/",S_OK},
4540 {Uri_HOST_DNS,S_OK},
4541 /* Still returns 80, even though earlier the port was disabled. */
4543 {URL_SCHEME_HTTP,S_OK},
4544 {URLZONE_INVALID,E_NOTIMPL}
4547 { "http://google.com/",0,S_OK,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},
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},
4565 {"google.com",S_OK},
4570 {"http://google.com:222/",S_OK},
4576 {Uri_HOST_DNS,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,
4587 {TRUE,TRUE,999999,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},
4598 {"google.com",S_OK},
4603 {"http://google.com:999999/",S_OK},
4609 {Uri_HOST_DNS,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},
4625 {"http://google.com/?test",S_OK},
4626 {"google.com",S_OK},
4627 {"http://google.com/?test",S_OK},
4628 {"google.com",S_OK},
4631 {"google.com",S_OK},
4636 {"http://google.com/?test",S_OK},
4642 {Uri_HOST_DNS,S_OK},
4644 {URL_SCHEME_HTTP,S_OK},
4645 {URLZONE_INVALID,E_NOTIMPL}
4648 { "http://:password@google.com/",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},
4663 {"google.com",S_OK},
4668 {"http://:password@google.com/",S_OK},
4674 {Uri_HOST_DNS,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}
4691 {"http://google.com/",S_OK},
4692 {"google.com",S_OK},
4693 {"http://google.com/",S_OK},
4694 {"google.com",S_OK},
4697 {"google.com",S_OK},
4702 {"http://google.com/",S_OK},
4708 {Uri_HOST_DNS,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}
4724 {"zip://google.com/",S_OK},
4725 {"google.com",S_OK},
4726 {"zip://google.com/",S_OK},
4727 {"google.com",S_OK},
4730 {"google.com",S_OK},
4735 {"zip://google.com/",S_OK},
4741 {Uri_HOST_DNS,S_OK},
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}
4757 {"zip://google.com/",S_OK},
4758 {"google.com",S_OK},
4759 {"zip://google.com/",S_OK},
4760 {"google.com",S_OK},
4763 {"google.com",S_OK},
4768 {"zip://google.com/",S_OK},
4774 {Uri_HOST_DNS,S_OK},
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,
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},
4796 {"google.com",S_OK},
4801 {"http://google.com/../../",S_OK},
4807 {Uri_HOST_DNS,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}
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},
4827 {"#Fr%3C%7C%3Eg",S_OK},
4828 {"google.com",S_OK},
4833 {"http://google.com/#Fr<|>g",S_OK},
4839 {Uri_HOST_DNS,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}
4850 Uri_CREATE_CANONICALIZE|Uri_CREATE_NO_CANONICALIZE,E_INVALIDARG,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},
4859 {"#Fr%3C%7C%3Eg",S_OK},
4860 {"google.com",S_OK},
4865 {"http://google.com/#Fr<|>g",S_OK},
4871 {Uri_HOST_DNS,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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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},
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},
5043 {"winehq.org:test",S_OK},
5048 {"http://winehq.org:test/",S_OK},
5054 {Uri_HOST_DNS,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}
5070 {"http://google.com/",S_OK},
5071 {"google.com",S_OK},
5072 {"http://google.com/",S_OK},
5073 {"google.com",S_OK},
5076 {"google.com",S_OK},
5081 {"http://google.com/",S_OK},
5087 {Uri_HOST_DNS,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}
5120 {Uri_HOST_UNKNOWN,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}
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}
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}
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 {
5158 HRESULT create_builder_expected;
5159 BOOL create_builder_todo;
5161 DWORD remove_properties;
5162 HRESULT remove_expected;
5165 const char *expected_uri;
5166 DWORD expected_flags;
5167 HRESULT expected_hres;
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 {
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;
5230 uri_combine_str_property str_props[URI_STR_PROPERTY_COUNT];
5231 uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT];
5234 static const uri_combine_test uri_combine_tests[] = {
5235 { "http://google.com/fun/stuff",0,
5236 "../not/fun/stuff",Uri_CREATE_ALLOW_RELATIVE,
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},
5245 {"google.com",S_OK},
5247 {"/not/fun/stuff",S_OK},
5248 {"/not/fun/stuff",S_OK},
5250 {"http://google.com/not/fun/stuff",S_OK},
5256 {Uri_HOST_DNS,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,
5266 {"zip://test.com/cool",S_OK},
5268 {"zip://test.com/cool",S_OK},
5277 {"zip://test.com/cool",S_OK},
5283 {Uri_HOST_DNS,S_OK},
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,
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},
5299 {"google.com",S_OK},
5301 {"/use/base/path",S_OK},
5302 {"/use/base/path?relative",S_OK},
5304 {"http://google.com/use/base/path?relative",S_OK},
5310 {Uri_HOST_DNS,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,
5320 {"http://google.com/testing",S_OK},
5321 {"google.com",S_OK},
5322 {"http://google.com/testing",S_OK},
5323 {"google.com",S_OK},
5326 {"google.com",S_OK},
5331 {"http://google.com/testing",S_OK},
5337 {Uri_HOST_DNS,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},
5353 {"google.com",S_OK},
5355 {"/test/../test/.././testing",S_OK},
5356 {"/test/../test/.././testing",S_OK},
5358 {"http://google.com:80/test/../test/.././testing",S_OK},
5364 {Uri_HOST_DNS,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,
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},
5380 {"winehq.org",S_OK},
5382 {"/test/testing/test",S_OK},
5383 {"/test/testing/test",S_OK},
5385 {"http://winehq.org/test/testing/test",S_OK},
5391 {Uri_HOST_DNS,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},
5408 {"winehq.org",S_OK},
5410 {"/test/testing/abc/../test",S_OK},
5411 {"/test/testing/abc/../test",S_OK},
5413 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5419 {Uri_HOST_DNS,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,
5429 {"http://winehq.org/testing",S_OK},
5430 {"winehq.org",S_OK},
5431 {"http://winehq.org/testing",S_OK},
5432 {"winehq.org",S_OK},
5435 {"winehq.org",S_OK},
5440 {"http://winehq.org/testing",S_OK},
5446 {Uri_HOST_DNS,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,
5456 {"http://winehq.org/testing",S_OK},
5457 {"winehq.org",S_OK},
5458 {"http://winehq.org/testing",S_OK},
5459 {"winehq.org",S_OK},
5462 {"winehq.org",S_OK},
5467 {"http://winehq.org/testing",S_OK},
5473 {Uri_HOST_DNS,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,
5500 {Uri_HOST_UNKNOWN,S_OK},
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},
5512 {"file://c:\\testing.mp3",S_OK},
5518 {"c:\\testing.mp3",S_OK},
5519 {"c:\\testing.mp3",S_OK},
5521 {"file://c:\\testing.mp3",S_OK},
5527 {Uri_HOST_UNKNOWN,S_OK},
5529 {URL_SCHEME_FILE,S_OK},
5530 {URLZONE_INVALID,E_NOTIMPL}
5533 { "file:///c:/test/test",0,
5534 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5537 {"file:///c:/testing.mp3",S_OK},
5539 {"file:///c:/testing.mp3",S_OK},
5545 {"/c:/testing.mp3",S_OK},
5546 {"/c:/testing.mp3",S_OK},
5548 {"file:///c:/testing.mp3",S_OK},
5554 {Uri_HOST_UNKNOWN,S_OK},
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},
5566 {"file://\\\\test.com\\testing.mp3",S_OK},
5572 {"\\testing.mp3",S_OK},
5573 {"\\testing.mp3",S_OK},
5575 {"file://\\\\test.com\\testing.mp3",S_OK},
5581 {Uri_HOST_DNS,S_OK},
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"},
5594 {"zip://test.com/cool/test",S_OK,FALSE,NULL,"zip://test.com/cool/../cool/test"},
5600 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
5601 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
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"},
5612 {Uri_HOST_DNS,S_OK},
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\\"},
5627 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5633 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5634 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5636 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5642 {Uri_HOST_UNKNOWN,S_OK},
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"},
5654 {"http://test.com/test#0test",S_OK,FALSE,NULL,"http://test.com/test#%30test"},
5657 {"#0test",S_OK,FALSE,NULL,"#%30test"},
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"},
5670 {Uri_HOST_DNS,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,
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},
5692 {"google.com",S_OK},
5695 {"/test?Tes%XXt",S_OK},
5697 {"http://google.com/test?Tes%XXt",S_OK},
5703 {Uri_HOST_DNS,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,
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},
5720 {"google.com",S_OK},
5725 {"http://google.com/test#Tes%XXt",S_OK},
5731 {Uri_HOST_DNS,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},
5744 {"file://c:\\test<ing",S_OK},
5750 {"c:\\test<ing",S_OK},
5751 {"c:\\test<ing",S_OK},
5753 {"file://c:\\test<ing",S_OK},
5759 {Uri_HOST_UNKNOWN,S_OK},
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,
5770 {"file:///c:/c:/testing",S_OK},
5772 {"file:///c:/c:/testing",S_OK},
5778 {"/c:/c:/testing",S_OK},
5779 {"/c:/c:/testing",S_OK},
5781 {"file:///c:/c:/testing",S_OK},
5787 {Uri_HOST_UNKNOWN,S_OK},
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
5797 { "http://google.com",Uri_CREATE_NO_CANONICALIZE,
5798 "?test",Uri_CREATE_ALLOW_RELATIVE,
5801 {"http://google.com/?test",S_OK},
5802 {"google.com",S_OK},
5803 {"http://google.com/?test",S_OK},
5804 {"google.com",S_OK},
5807 {"google.com",S_OK},
5812 {"http://google.com/?test",S_OK},
5818 {Uri_HOST_DNS,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,
5828 {"zip://google.com/?test",S_OK},
5829 {"google.com",S_OK},
5830 {"zip://google.com/?test",S_OK},
5831 {"google.com",S_OK},
5834 {"google.com",S_OK},
5839 {"zip://google.com/?test",S_OK},
5845 {Uri_HOST_DNS,S_OK},
5847 {URL_SCHEME_UNKNOWN,S_OK},
5848 {URLZONE_INVALID,E_NOTIMPL}
5851 /* No path is appended since the base URI is opaque. */
5853 "?test",Uri_CREATE_ALLOW_RELATIVE,
5873 {Uri_HOST_UNKNOWN,S_OK},
5875 {URL_SCHEME_UNKNOWN,S_OK},
5876 {URLZONE_INVALID,E_NOTIMPL}
5880 "../testing/test",Uri_CREATE_ALLOW_RELATIVE,
5883 {"file:///c:/testing/test",S_OK},
5885 {"file:///c:/testing/test",S_OK},
5891 {"/c:/testing/test",S_OK},
5892 {"/c:/testing/test",S_OK},
5894 {"file:///c:/testing/test",S_OK},
5900 {Uri_HOST_UNKNOWN,S_OK},
5902 {URL_SCHEME_FILE,S_OK},
5903 {URLZONE_INVALID,E_NOTIMPL}
5908 typedef struct _uri_parse_test {
5913 const char *property;
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) {
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);
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);
6014 static inline ULONG get_refcnt(IUri *uri) {
6016 return IUri_Release(uri);
6019 static void change_property(IUriBuilder *builder, const uri_builder_property *prop,
6024 valueW = a2w(prop->value);
6025 switch(prop->property) {
6026 case Uri_PROPERTY_FRAGMENT:
6027 hr = IUriBuilder_SetFragment(builder, valueW);
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);
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);
6040 case Uri_PROPERTY_HOST:
6041 hr = IUriBuilder_SetHost(builder, valueW);
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);
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);
6054 case Uri_PROPERTY_PASSWORD:
6055 hr = IUriBuilder_SetPassword(builder, valueW);
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);
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);
6068 case Uri_PROPERTY_PATH:
6069 hr = IUriBuilder_SetPath(builder, valueW);
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);
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);
6082 case Uri_PROPERTY_QUERY:
6083 hr = IUriBuilder_SetQuery(builder, valueW);
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);
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);
6096 case Uri_PROPERTY_SCHEME_NAME:
6097 hr = IUriBuilder_SetSchemeName(builder, valueW);
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);
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);
6110 case Uri_PROPERTY_USER_NAME:
6111 hr = IUriBuilder_SetUserName(builder, valueW);
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);
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);
6125 trace("Unsupported operation for %d on uri_builder_tests[%d].\n", prop->property, test_index);
6132 * Simple tests to make sure the CreateUri function handles invalid flag combinations
6135 static void test_CreateUri_InvalidFlags(void) {
6138 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
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) {
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) {
6177 for(i = 0; i < sizeof(invalid_uri_tests)/sizeof(invalid_uri_tests[0]); ++i) {
6178 invalid_uri test = invalid_uri_tests[i];
6183 uriW = a2w(test.uri);
6184 hr = pCreateUri(uriW, test.flags, 0, &uri);
6187 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x on invalid_uri_tests[%d].\n",
6188 hr, E_INVALIDARG, i);
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);
6200 static void test_IUri_GetPropertyBSTR(void) {
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);
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. */
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];
6236 uriW = a2w(test.uri);
6237 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6238 if(test.create_todo) {
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);
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);
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);
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);
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);
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);
6285 static void test_IUri_GetPropertyDWORD(void) {
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);
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];
6309 uriW = a2w(test.uri);
6310 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6311 if(test.create_todo) {
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);
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);
6324 /* Checks all the DWORD properties of the uri. */
6325 for(j = 0; j < sizeof(test.dword_props)/sizeof(test.dword_props[0]); ++j) {
6327 uri_dword_property prop = test.dword_props[j];
6329 hr = IUri_GetPropertyDWORD(uri, j+Uri_PROPERTY_DWORD_START, &received, 0);
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);
6336 ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n",
6337 prop.value, received, i, j);
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);
6354 /* Tests all the 'Get*' property functions which deal with strings. */
6355 static void test_IUri_GetStrProperties(void) {
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);
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];
6416 uriW = a2w(test.uri);
6417 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6418 if(test.create_todo) {
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);
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);
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);
6437 ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6438 hr, prop.expected, i);
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);
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);
6455 /* GetAuthority() tests. */
6456 prop = test.str_props[Uri_PROPERTY_AUTHORITY];
6457 hr = IUri_GetAuthority(uri, &received);
6460 ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6461 hr, prop.expected, i);
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);
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);
6476 /* GetDisplayUri() tests. */
6477 prop = test.str_props[Uri_PROPERTY_DISPLAY_URI];
6478 hr = IUri_GetDisplayUri(uri, &received);
6481 ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6482 hr, prop.expected, i);
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);
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);
6499 /* GetDomain() tests. */
6500 prop = test.str_props[Uri_PROPERTY_DOMAIN];
6501 hr = IUri_GetDomain(uri, &received);
6504 ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6505 hr, prop.expected, i);
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);
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);
6520 /* GetExtension() tests. */
6521 prop = test.str_props[Uri_PROPERTY_EXTENSION];
6522 hr = IUri_GetExtension(uri, &received);
6525 ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6526 hr, prop.expected, i);
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);
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);
6541 /* GetFragment() tests. */
6542 prop = test.str_props[Uri_PROPERTY_FRAGMENT];
6543 hr = IUri_GetFragment(uri, &received);
6546 ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6547 hr, prop.expected, i);
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);
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);
6562 /* GetHost() tests. */
6563 prop = test.str_props[Uri_PROPERTY_HOST];
6564 hr = IUri_GetHost(uri, &received);
6567 ok(hr == prop.expected, "Error: GetHost returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6568 hr, prop.expected, i);
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);
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);
6583 /* GetPassword() tests. */
6584 prop = test.str_props[Uri_PROPERTY_PASSWORD];
6585 hr = IUri_GetPassword(uri, &received);
6588 ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6589 hr, prop.expected, i);
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);
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);
6604 /* GetPath() tests. */
6605 prop = test.str_props[Uri_PROPERTY_PATH];
6606 hr = IUri_GetPath(uri, &received);
6609 ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6610 hr, prop.expected, i);
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);
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);
6625 /* GetPathAndQuery() tests. */
6626 prop = test.str_props[Uri_PROPERTY_PATH_AND_QUERY];
6627 hr = IUri_GetPathAndQuery(uri, &received);
6630 ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6631 hr, prop.expected, i);
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);
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);
6646 /* GetQuery() tests. */
6647 prop = test.str_props[Uri_PROPERTY_QUERY];
6648 hr = IUri_GetQuery(uri, &received);
6651 ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6652 hr, prop.expected, i);
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);
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);
6667 /* GetRawUri() tests. */
6668 prop = test.str_props[Uri_PROPERTY_RAW_URI];
6669 hr = IUri_GetRawUri(uri, &received);
6672 ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6673 hr, prop.expected, i);
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);
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);
6688 /* GetSchemeName() tests. */
6689 prop = test.str_props[Uri_PROPERTY_SCHEME_NAME];
6690 hr = IUri_GetSchemeName(uri, &received);
6693 ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6694 hr, prop.expected, i);
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);
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);
6709 /* GetUserInfo() tests. */
6710 prop = test.str_props[Uri_PROPERTY_USER_INFO];
6711 hr = IUri_GetUserInfo(uri, &received);
6714 ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6715 hr, prop.expected, i);
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);
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);
6730 /* GetUserName() tests. */
6731 prop = test.str_props[Uri_PROPERTY_USER_NAME];
6732 hr = IUri_GetUserName(uri, &received);
6735 ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6736 hr, prop.expected, i);
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);
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);
6757 static void test_IUri_GetDwordProperties(void) {
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);
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];
6785 uriW = a2w(test.uri);
6786 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6787 if(test.create_todo) {
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);
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);
6798 uri_dword_property prop;
6801 /* Assign an insane value so tests don't accidentally pass when
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);
6811 ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6812 hr, prop.expected, i);
6815 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
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);
6829 ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6830 hr, prop.expected, i);
6833 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
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);
6847 ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6848 hr, prop.expected, i);
6851 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
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);
6865 ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6866 hr, prop.expected, i);
6869 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
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);
6884 static void test_IUri_GetPropertyLength(void) {
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);
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];
6909 uriW = a2w(test.uri);
6910 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6911 if(test.create_todo) {
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);
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);
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. */
6934 hr = IUri_GetPropertyLength(uri, j, &receivedLen, 0);
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);
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);
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);
6961 static DWORD compute_expected_props(uri_properties *test)
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)
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)
6978 static void test_IUri_GetProperties(void) {
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);
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];
6996 uriW = a2w(test.uri);
6997 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6998 if(test.create_todo) {
7000 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7003 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7007 DWORD received = 0, expected_props;
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);
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);
7030 static void test_IUri_HasProperty(void) {
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);
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];
7048 uriW = a2w(test.uri);
7050 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
7051 if(test.create_todo) {
7053 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7056 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
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. */
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",
7072 if(expected_props & (1 << j)) {
7073 ok(received == TRUE, "Error: Expected to have property %d on uri_tests[%d].\n", j, i);
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);
7086 static void test_IUri_IsEqual(void) {
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)) {
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;
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) {
7122 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7126 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7130 hrB = pCreateUri(uriB_W, test.create_flags_b, 0, &uriB);
7131 if(test.create_todo_b) {
7133 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7137 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7141 if(SUCCEEDED(hrA) && SUCCEEDED(hrB)) {
7144 hrA = IUri_IsEqual(uriA, uriB, &equal);
7147 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x on equality_tests[%d].\n",
7151 ok(equal == test.equal, "Error: Expected the comparison to be %d on equality_tests[%d].\n", test.equal, i);
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);
7166 static void test_CreateUriWithFragment_InvalidArgs(void) {
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) {
7189 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
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) {
7203 for(i = 0; i < sizeof(uri_fragment_tests)/sizeof(uri_fragment_tests[0]); ++i) {
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) {
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);
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);
7225 BSTR received = NULL;
7227 hr = IUri_GetAbsoluteUri(uri, &received);
7228 if(test.expected_todo) {
7231 "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
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);
7240 ok(hr == S_OK, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
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);
7254 static void test_CreateIUriBuilder(void) {
7256 IUriBuilder *builder = NULL;
7259 hr = pCreateIUriBuilder(NULL, 0, 0, NULL);
7260 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x\n",
7263 /* CreateIUriBuilder increases the ref count of the IUri it receives. */
7264 hr = pCreateUri(http_urlW, 0, 0, &uri);
7265 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7267 ULONG cur_count, orig_count;
7269 orig_count = get_refcnt(uri);
7270 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
7271 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7272 ok(builder != NULL, "Error: Expecting builder not to be NULL\n");
7274 cur_count = get_refcnt(uri);
7275 ok(cur_count == orig_count+1, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count+1, cur_count);
7277 if(builder) IUriBuilder_Release(builder);
7278 cur_count = get_refcnt(uri);
7279 ok(cur_count == orig_count, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count, cur_count);
7281 if(uri) IUri_Release(uri);
7284 static void test_IUriBuilder_CreateUri(IUriBuilder *builder, const uri_builder_test *test,
7289 hr = IUriBuilder_CreateUri(builder, test->uri_flags, 0, 0, &uri);
7290 if(test->uri_todo) {
7292 ok(hr == test->uri_hres,
7293 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7294 hr, test->uri_hres, test_index);
7297 ok(hr == test->uri_hres,
7298 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7299 hr, test->uri_hres, test_index);
7305 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7306 uri_builder_str_property prop = test->expected_str_props[i];
7307 BSTR received = NULL;
7309 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7312 ok(hr == prop.result,
7313 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7314 hr, prop.result, test_index, i);
7317 ok(hr == prop.result,
7318 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7319 hr, prop.result, test_index, i);
7324 ok(!strcmp_aw(prop.expected, received),
7325 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7326 prop.expected, wine_dbgstr_w(received), test_index, i);
7329 ok(!strcmp_aw(prop.expected, received),
7330 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7331 prop.expected, wine_dbgstr_w(received), test_index, i);
7334 SysFreeString(received);
7337 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7338 uri_builder_dword_property prop = test->expected_dword_props[i];
7339 DWORD received = -2;
7341 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7344 ok(hr == prop.result,
7345 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7346 hr, prop.result, test_index, i);
7349 ok(hr == prop.result,
7350 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7351 hr, prop.result, test_index, i);
7356 ok(received == prop.expected,
7357 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7358 prop.expected, received, test_index, i);
7361 ok(received == prop.expected,
7362 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7363 prop.expected, received, test_index, i);
7368 if(uri) IUri_Release(uri);
7371 static void test_IUriBuilder_CreateUriSimple(IUriBuilder *builder, const uri_builder_test *test,
7376 hr = IUriBuilder_CreateUriSimple(builder, test->uri_simple_encode_flags, 0, &uri);
7377 if(test->uri_simple_todo) {
7379 ok(hr == test->uri_simple_hres,
7380 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7381 hr, test->uri_simple_hres, test_index);
7384 ok(hr == test->uri_simple_hres,
7385 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7386 hr, test->uri_simple_hres, test_index);
7392 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7393 uri_builder_str_property prop = test->expected_str_props[i];
7394 BSTR received = NULL;
7396 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7399 ok(hr == prop.result,
7400 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7401 hr, prop.result, test_index, i);
7404 ok(hr == prop.result,
7405 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7406 hr, prop.result, test_index, i);
7411 ok(!strcmp_aw(prop.expected, received),
7412 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7413 prop.expected, wine_dbgstr_w(received), test_index, i);
7416 ok(!strcmp_aw(prop.expected, received),
7417 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7418 prop.expected, wine_dbgstr_w(received), test_index, i);
7421 SysFreeString(received);
7424 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7425 uri_builder_dword_property prop = test->expected_dword_props[i];
7426 DWORD received = -2;
7428 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7431 ok(hr == prop.result,
7432 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7433 hr, prop.result, test_index, i);
7436 ok(hr == prop.result,
7437 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7438 hr, prop.result, test_index, i);
7443 ok(received == prop.expected,
7444 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7445 prop.expected, received, test_index, i);
7448 ok(received == prop.expected,
7449 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7450 prop.expected, received, test_index, i);
7455 if(uri) IUri_Release(uri);
7458 static void test_IUriBuilder_CreateUriWithFlags(IUriBuilder *builder, const uri_builder_test *test,
7463 hr = IUriBuilder_CreateUriWithFlags(builder, test->uri_with_flags, test->uri_with_builder_flags,
7464 test->uri_with_encode_flags, 0, &uri);
7465 if(test->uri_with_todo) {
7467 ok(hr == test->uri_with_hres,
7468 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7469 hr, test->uri_with_hres, test_index);
7472 ok(hr == test->uri_with_hres,
7473 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7474 hr, test->uri_with_hres, test_index);
7480 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7481 uri_builder_str_property prop = test->expected_str_props[i];
7482 BSTR received = NULL;
7484 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7487 ok(hr == prop.result,
7488 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7489 hr, prop.result, test_index, i);
7492 ok(hr == prop.result,
7493 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7494 hr, prop.result, test_index, i);
7499 ok(!strcmp_aw(prop.expected, received),
7500 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7501 prop.expected, wine_dbgstr_w(received), test_index, i);
7504 ok(!strcmp_aw(prop.expected, received),
7505 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7506 prop.expected, wine_dbgstr_w(received), test_index, i);
7509 SysFreeString(received);
7512 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7513 uri_builder_dword_property prop = test->expected_dword_props[i];
7514 DWORD received = -2;
7516 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7519 ok(hr == prop.result,
7520 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7521 hr, prop.result, test_index, i);
7524 ok(hr == prop.result,
7525 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7526 hr, prop.result, test_index, i);
7531 ok(received == prop.expected,
7532 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7533 prop.expected, received, test_index, i);
7536 ok(received == prop.expected,
7537 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7538 prop.expected, received, test_index, i);
7543 if(uri) IUri_Release(uri);
7546 static void test_IUriBuilder_CreateInvalidArgs(void) {
7547 IUriBuilder *builder;
7550 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7551 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7553 IUri *test = NULL, *uri = (void*) 0xdeadbeef;
7555 /* Test what happens if the IUriBuilder doesn't have a IUri set. */
7556 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, NULL);
7557 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
7559 uri = (void*) 0xdeadbeef;
7560 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7561 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_NOTIMPL);
7562 ok(uri == NULL, "Error: expected uri to be NULL, but was %p instead.\n", uri);
7564 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, NULL);
7565 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7568 uri = (void*) 0xdeadbeef;
7569 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7570 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7572 ok(!uri, "Error: Expected uri to NULL, but was %p instead.\n", uri);
7574 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, NULL);
7575 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7578 uri = (void*) 0xdeadbeef;
7579 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7580 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7582 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7584 hr = pCreateUri(http_urlW, 0, 0, &test);
7585 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7587 hr = IUriBuilder_SetIUri(builder, test);
7588 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7590 /* No longer returns E_NOTIMPL, since a IUri has been set and hasn't been modified. */
7592 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7593 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7594 ok(uri != NULL, "Error: The uri was NULL.\n");
7595 if(uri) IUri_Release(uri);
7598 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7599 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7601 ok(uri != NULL, "Error: uri was NULL.\n");
7602 if(uri) IUri_Release(uri);
7605 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &uri);
7606 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7608 ok(uri != NULL, "Error: uri was NULL.\n");
7609 if(uri) IUri_Release(uri);
7611 hr = IUriBuilder_SetFragment(builder, NULL);
7612 ok(hr == S_OK, "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7614 /* The IUriBuilder is changed, so it returns E_NOTIMPL again. */
7615 uri = (void*) 0xdeadbeef;
7616 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7617 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7618 ok(!uri, "Error: Expected uri to be NULL but was %p instead.\n", uri);
7620 uri = (void*) 0xdeadbeef;
7621 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7622 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7624 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7626 uri = (void*) 0xdeadbeef;
7627 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7628 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7630 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7632 if(test) IUri_Release(test);
7634 if(builder) IUriBuilder_Release(builder);
7637 /* Tests invalid args to the "Get*" functions. */
7638 static void test_IUriBuilder_GetInvalidArgs(void) {
7639 IUriBuilder *builder = NULL;
7642 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7643 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7645 LPCWSTR received = (void*) 0xdeadbeef;
7646 DWORD len = -1, port = -1;
7649 hr = IUriBuilder_GetFragment(builder, NULL, NULL);
7650 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7652 hr = IUriBuilder_GetFragment(builder, NULL, &received);
7653 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7655 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7656 hr = IUriBuilder_GetFragment(builder, &len, NULL);
7657 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7659 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7661 hr = IUriBuilder_GetHost(builder, NULL, NULL);
7662 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7664 received = (void*) 0xdeadbeef;
7665 hr = IUriBuilder_GetHost(builder, NULL, &received);
7666 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7668 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7670 hr = IUriBuilder_GetHost(builder, &len, NULL);
7671 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7673 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7675 hr = IUriBuilder_GetPassword(builder, NULL, NULL);
7676 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7678 received = (void*) 0xdeadbeef;
7679 hr = IUriBuilder_GetPassword(builder, NULL, &received);
7680 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7682 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7684 hr = IUriBuilder_GetPassword(builder, &len, NULL);
7685 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7687 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7689 hr = IUriBuilder_GetPath(builder, NULL, NULL);
7690 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7692 received = (void*) 0xdeadbeef;
7693 hr = IUriBuilder_GetPath(builder, NULL, &received);
7694 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7696 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7698 hr = IUriBuilder_GetPath(builder, &len, NULL);
7699 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7701 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7703 hr = IUriBuilder_GetPort(builder, NULL, NULL);
7704 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7706 hr = IUriBuilder_GetPort(builder, NULL, &port);
7707 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7709 ok(!port, "Error: Expected port to be 0, but was %d instead.\n", port);
7710 hr = IUriBuilder_GetPort(builder, &set, NULL);
7711 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7713 ok(!set, "Error: Expected set to be FALSE, but was %d instead.\n", set);
7715 hr = IUriBuilder_GetQuery(builder, NULL, NULL);
7716 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7718 received = (void*) 0xdeadbeef;
7719 hr = IUriBuilder_GetQuery(builder, NULL, &received);
7720 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7722 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7724 hr = IUriBuilder_GetQuery(builder, &len, NULL);
7725 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7727 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7729 hr = IUriBuilder_GetSchemeName(builder, NULL, NULL);
7730 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7732 received = (void*) 0xdeadbeef;
7733 hr = IUriBuilder_GetSchemeName(builder, NULL, &received);
7734 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7736 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7738 hr = IUriBuilder_GetSchemeName(builder, &len, NULL);
7739 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7741 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7743 hr = IUriBuilder_GetUserName(builder, NULL, NULL);
7744 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7746 received = (void*) 0xdeadbeef;
7747 hr = IUriBuilder_GetUserName(builder, NULL, &received);
7748 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7750 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7752 hr = IUriBuilder_GetUserName(builder, &len, NULL);
7753 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7755 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7757 if(builder) IUriBuilder_Release(builder);
7760 static void test_IUriBuilder_GetFragment(IUriBuilder *builder, const uri_builder_test *test,
7764 LPCWSTR received = NULL;
7766 const uri_builder_property *prop = NULL;
7768 /* Check if the property was set earlier. */
7769 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7770 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_FRAGMENT)
7771 prop = &(test->properties[i]);
7775 /* Use expected_value unless it's NULL, then use value. */
7776 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7777 hr = IUriBuilder_GetFragment(builder, &len, &received);
7780 ok(hr == (expected ? S_OK : S_FALSE),
7781 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7782 hr, (expected ? S_OK : S_FALSE), test_index);
7786 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7787 expected, wine_dbgstr_w(received), test_index);
7790 ok(lstrlen(expected) == len,
7791 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7792 lstrlen(expected), len, test_index);
7796 ok(hr == (expected ? S_OK : S_FALSE),
7797 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7798 hr, (expected ? S_OK : S_FALSE), test_index);
7799 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7800 expected, wine_dbgstr_w(received), test_index);
7801 ok(lstrlen(expected) == len,
7802 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7803 lstrlen(expected), len, test_index);
7806 /* The property wasn't set earlier, so it should return whatever
7807 * the base IUri contains (if anything).
7810 hr = IUriBuilder_GetIUri(builder, &uri);
7812 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7813 hr, S_OK, test_index);
7816 received = (void*) 0xdeadbeef;
7819 hr = IUriBuilder_GetFragment(builder, &len, &received);
7821 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7822 hr, S_FALSE, test_index);
7824 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
7826 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
7827 received, test_index);
7830 BOOL has_prop = FALSE;
7831 BSTR expected = NULL;
7833 hr = IUri_GetFragment(uri, &expected);
7835 "Error: Expected IUri_GetFragment to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
7837 has_prop = hr == S_OK;
7839 hr = IUriBuilder_GetFragment(builder, &len, &received);
7842 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7843 hr, S_OK, test_index);
7845 ok(!lstrcmpW(expected, received),
7846 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
7847 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
7848 ok(lstrlenW(expected) == len,
7849 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7850 lstrlenW(expected), len, test_index);
7854 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7855 hr, S_FALSE, test_index);
7857 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
7858 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
7862 SysFreeString(expected);
7865 if(uri) IUri_Release(uri);
7869 static void test_IUriBuilder_GetHost(IUriBuilder *builder, const uri_builder_test *test,
7873 LPCWSTR received = NULL;
7875 const uri_builder_property *prop = NULL;
7877 /* Check if the property was set earlier. */
7878 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7879 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_HOST)
7880 prop = &(test->properties[i]);
7884 /* Use expected_value unless it's NULL, then use value. */
7885 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7886 hr = IUriBuilder_GetHost(builder, &len, &received);
7889 ok(hr == (expected ? S_OK : S_FALSE),
7890 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7891 hr, (expected ? S_OK : S_FALSE), test_index);
7895 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7896 expected, wine_dbgstr_w(received), test_index);
7899 ok(lstrlen(expected) == len,
7900 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7901 lstrlen(expected), len, test_index);
7905 ok(hr == (expected ? S_OK : S_FALSE),
7906 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7907 hr, (expected ? S_OK : S_FALSE), test_index);
7908 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7909 expected, wine_dbgstr_w(received), test_index);
7910 ok(lstrlen(expected) == len,
7911 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7912 lstrlen(expected), len, test_index);
7915 /* The property wasn't set earlier, so it should return whatever
7916 * the base IUri contains (if anything).
7919 hr = IUriBuilder_GetIUri(builder, &uri);
7921 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7922 hr, S_OK, test_index);
7925 received = (void*) 0xdeadbeef;
7928 hr = IUriBuilder_GetHost(builder, &len, &received);
7930 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7931 hr, S_FALSE, test_index);
7933 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
7935 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
7936 received, test_index);
7939 BOOL has_prop = FALSE;
7940 BSTR expected = NULL;
7942 hr = IUri_GetHost(uri, &expected);
7944 "Error: Expected IUri_GetHost to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
7946 has_prop = hr == S_OK;
7948 hr = IUriBuilder_GetHost(builder, &len, &received);
7951 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7952 hr, S_OK, test_index);
7954 ok(!lstrcmpW(expected, received),
7955 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
7956 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
7957 ok(lstrlenW(expected) == len,
7958 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7959 lstrlenW(expected), len, test_index);
7963 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7964 hr, S_FALSE, test_index);
7966 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
7967 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
7971 SysFreeString(expected);
7974 if(uri) IUri_Release(uri);
7978 static void test_IUriBuilder_GetPassword(IUriBuilder *builder, const uri_builder_test *test,
7982 LPCWSTR received = NULL;
7984 const uri_builder_property *prop = NULL;
7986 /* Check if the property was set earlier. */
7987 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7988 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PASSWORD)
7989 prop = &(test->properties[i]);
7993 /* Use expected_value unless it's NULL, then use value. */
7994 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7995 hr = IUriBuilder_GetPassword(builder, &len, &received);
7998 ok(hr == (expected ? S_OK : S_FALSE),
7999 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8000 hr, (expected ? S_OK : S_FALSE), test_index);
8004 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8005 expected, wine_dbgstr_w(received), test_index);
8008 ok(lstrlen(expected) == len,
8009 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8010 lstrlen(expected), len, test_index);
8014 ok(hr == (expected ? S_OK : S_FALSE),
8015 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8016 hr, (expected ? S_OK : S_FALSE), test_index);
8017 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8018 expected, wine_dbgstr_w(received), test_index);
8019 ok(lstrlen(expected) == len,
8020 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8021 lstrlen(expected), len, test_index);
8024 /* The property wasn't set earlier, so it should return whatever
8025 * the base IUri contains (if anything).
8028 hr = IUriBuilder_GetIUri(builder, &uri);
8030 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8031 hr, S_OK, test_index);
8034 received = (void*) 0xdeadbeef;
8037 hr = IUriBuilder_GetPassword(builder, &len, &received);
8039 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8040 hr, S_FALSE, test_index);
8042 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8044 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8045 received, test_index);
8048 BOOL has_prop = FALSE;
8049 BSTR expected = NULL;
8051 hr = IUri_GetPassword(uri, &expected);
8053 "Error: Expected IUri_GetPassword to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8055 has_prop = hr == S_OK;
8057 hr = IUriBuilder_GetPassword(builder, &len, &received);
8060 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8061 hr, S_OK, test_index);
8063 ok(!lstrcmpW(expected, received),
8064 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8065 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8066 ok(lstrlenW(expected) == len,
8067 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8068 lstrlenW(expected), len, test_index);
8072 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8073 hr, S_FALSE, test_index);
8075 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8076 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8080 SysFreeString(expected);
8083 if(uri) IUri_Release(uri);
8087 static void test_IUriBuilder_GetPath(IUriBuilder *builder, const uri_builder_test *test,
8091 LPCWSTR received = NULL;
8093 const uri_builder_property *prop = NULL;
8095 /* Check if the property was set earlier. */
8096 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8097 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PATH)
8098 prop = &(test->properties[i]);
8102 /* Use expected_value unless it's NULL, then use value. */
8103 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8104 hr = IUriBuilder_GetPath(builder, &len, &received);
8107 ok(hr == (expected ? S_OK : S_FALSE),
8108 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8109 hr, (expected ? S_OK : S_FALSE), test_index);
8113 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8114 expected, wine_dbgstr_w(received), test_index);
8117 ok(lstrlen(expected) == len,
8118 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8119 lstrlen(expected), len, test_index);
8123 ok(hr == (expected ? S_OK : S_FALSE),
8124 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8125 hr, (expected ? S_OK : S_FALSE), test_index);
8126 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8127 expected, wine_dbgstr_w(received), test_index);
8128 ok(lstrlen(expected) == len,
8129 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8130 lstrlen(expected), len, test_index);
8133 /* The property wasn't set earlier, so it should return whatever
8134 * the base IUri contains (if anything).
8137 hr = IUriBuilder_GetIUri(builder, &uri);
8139 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8140 hr, S_OK, test_index);
8143 received = (void*) 0xdeadbeef;
8146 hr = IUriBuilder_GetPath(builder, &len, &received);
8148 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8149 hr, S_FALSE, test_index);
8151 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8153 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8154 received, test_index);
8157 BOOL has_prop = FALSE;
8158 BSTR expected = NULL;
8160 hr = IUri_GetPath(uri, &expected);
8162 "Error: Expected IUri_GetPath to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8164 has_prop = hr == S_OK;
8166 hr = IUriBuilder_GetPath(builder, &len, &received);
8169 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8170 hr, S_OK, test_index);
8172 ok(!lstrcmpW(expected, received),
8173 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8174 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8175 ok(lstrlenW(expected) == len,
8176 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8177 lstrlenW(expected), len, test_index);
8181 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8182 hr, S_FALSE, test_index);
8184 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8185 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8189 SysFreeString(expected);
8192 if(uri) IUri_Release(uri);
8196 static void test_IUriBuilder_GetPort(IUriBuilder *builder, const uri_builder_test *test,
8199 BOOL has_port = FALSE;
8200 DWORD received = -1;
8202 if(test->port_prop.change) {
8203 DWORD expected = test->port_prop.value;
8205 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8206 if(test->port_prop.todo) {
8209 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8210 hr, S_OK, test_index);
8214 ok(has_port == test->port_prop.set,
8215 "Error: Expected has_port to be %d but was %d instead on uri_builder_tests[%d].\n",
8216 test->port_prop.set, has_port, test_index);
8219 ok(received == expected,
8220 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8221 expected, received, test_index);
8226 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8227 hr, S_OK, test_index);
8228 ok(has_port == test->port_prop.set,
8229 "Error: Expected has_port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8230 test->port_prop.set, has_port, test_index);
8231 ok(received == test->port_prop.value,
8232 "Error: Expected port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8233 test->port_prop.value, received, test_index);
8238 hr = IUriBuilder_GetIUri(builder, &uri);
8240 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8241 hr, S_OK, test_index);
8244 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8246 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8247 hr, S_OK, test_index);
8249 ok(has_port == FALSE,
8250 "Error: Expected has_port to be FALSE, but was %d instead on uri_builder_tests[%d].\n",
8251 has_port, test_index);
8252 ok(!received, "Error: Expected received to be 0, but was %d instead on uri_builder_tests[%d].\n",
8253 received, test_index);
8258 hr = IUri_GetPort(uri, &expected);
8260 "Error: Expected IUri_Port to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8263 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8265 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8266 hr, S_OK, test_index);
8269 "Error: Expected has_port to be FALSE but was TRUE instead on uri_builder_tests[%d].\n",
8271 ok(received == expected,
8272 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8273 expected, received, test_index);
8277 if(uri) IUri_Release(uri);
8281 static void test_IUriBuilder_GetQuery(IUriBuilder *builder, const uri_builder_test *test,
8285 LPCWSTR received = NULL;
8287 const uri_builder_property *prop = NULL;
8289 /* Check if the property was set earlier. */
8290 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8291 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_QUERY)
8292 prop = &(test->properties[i]);
8296 /* Use expected_value unless it's NULL, then use value. */
8297 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8298 hr = IUriBuilder_GetQuery(builder, &len, &received);
8301 ok(hr == (expected ? S_OK : S_FALSE),
8302 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8303 hr, (expected ? S_OK : S_FALSE), test_index);
8307 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8308 expected, wine_dbgstr_w(received), test_index);
8311 ok(lstrlen(expected) == len,
8312 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8313 lstrlen(expected), len, test_index);
8317 ok(hr == (expected ? S_OK : S_FALSE),
8318 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8319 hr, (expected ? S_OK : S_FALSE), test_index);
8320 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8321 expected, wine_dbgstr_w(received), test_index);
8322 ok(lstrlen(expected) == len,
8323 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8324 lstrlen(expected), len, test_index);
8327 /* The property wasn't set earlier, so it should return whatever
8328 * the base IUri contains (if anything).
8331 hr = IUriBuilder_GetIUri(builder, &uri);
8333 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8334 hr, S_OK, test_index);
8337 received = (void*) 0xdeadbeef;
8340 hr = IUriBuilder_GetQuery(builder, &len, &received);
8342 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8343 hr, S_FALSE, test_index);
8345 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8347 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8348 received, test_index);
8351 BOOL has_prop = FALSE;
8352 BSTR expected = NULL;
8354 hr = IUri_GetQuery(uri, &expected);
8356 "Error: Expected IUri_GetQuery to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8358 has_prop = hr == S_OK;
8360 hr = IUriBuilder_GetQuery(builder, &len, &received);
8363 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8364 hr, S_OK, test_index);
8366 ok(!lstrcmpW(expected, received),
8367 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8368 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8369 ok(lstrlenW(expected) == len,
8370 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8371 lstrlenW(expected), len, test_index);
8375 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8376 hr, S_FALSE, test_index);
8378 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8379 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8383 SysFreeString(expected);
8386 if(uri) IUri_Release(uri);
8390 static void test_IUriBuilder_GetSchemeName(IUriBuilder *builder, const uri_builder_test *test,
8394 LPCWSTR received = NULL;
8396 const uri_builder_property *prop = NULL;
8398 /* Check if the property was set earlier. */
8399 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8400 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_SCHEME_NAME)
8401 prop = &(test->properties[i]);
8405 /* Use expected_value unless it's NULL, then use value. */
8406 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8407 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8410 ok(hr == (expected ? S_OK : S_FALSE),
8411 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8412 hr, (expected ? S_OK : S_FALSE), test_index);
8416 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8417 expected, wine_dbgstr_w(received), test_index);
8420 ok(lstrlen(expected) == len,
8421 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8422 lstrlen(expected), len, test_index);
8426 ok(hr == (expected ? S_OK : S_FALSE),
8427 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8428 hr, (expected ? S_OK : S_FALSE), test_index);
8429 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8430 expected, wine_dbgstr_w(received), test_index);
8431 ok(lstrlen(expected) == len,
8432 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8433 lstrlen(expected), len, test_index);
8436 /* The property wasn't set earlier, so it should return whatever
8437 * the base IUri contains (if anything).
8440 hr = IUriBuilder_GetIUri(builder, &uri);
8442 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8443 hr, S_OK, test_index);
8446 received = (void*) 0xdeadbeef;
8449 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8451 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8452 hr, S_FALSE, test_index);
8454 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8456 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8457 received, test_index);
8460 BOOL has_prop = FALSE;
8461 BSTR expected = NULL;
8463 hr = IUri_GetSchemeName(uri, &expected);
8465 "Error: Expected IUri_GetSchemeName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8467 has_prop = hr == S_OK;
8469 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8472 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8473 hr, S_OK, test_index);
8475 ok(!lstrcmpW(expected, received),
8476 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8477 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8478 ok(lstrlenW(expected) == len,
8479 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8480 lstrlenW(expected), len, test_index);
8484 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8485 hr, S_FALSE, test_index);
8487 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8488 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8492 SysFreeString(expected);
8495 if(uri) IUri_Release(uri);
8499 static void test_IUriBuilder_GetUserName(IUriBuilder *builder, const uri_builder_test *test,
8503 LPCWSTR received = NULL;
8505 const uri_builder_property *prop = NULL;
8507 /* Check if the property was set earlier. */
8508 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8509 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_USER_NAME)
8510 prop = &(test->properties[i]);
8513 if(prop && prop->value && *prop->value) {
8514 /* Use expected_value unless it's NULL, then use value. */
8515 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8516 hr = IUriBuilder_GetUserName(builder, &len, &received);
8519 ok(hr == (expected ? S_OK : S_FALSE),
8520 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8521 hr, (expected ? S_OK : S_FALSE), test_index);
8525 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8526 expected, wine_dbgstr_w(received), test_index);
8529 ok(lstrlen(expected) == len,
8530 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8531 lstrlen(expected), len, test_index);
8535 ok(hr == (expected ? S_OK : S_FALSE),
8536 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8537 hr, (expected ? S_OK : S_FALSE), test_index);
8538 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8539 expected, wine_dbgstr_w(received), test_index);
8540 ok(lstrlen(expected) == len,
8541 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8542 lstrlen(expected), len, test_index);
8545 /* The property wasn't set earlier, so it should return whatever
8546 * the base IUri contains (if anything).
8549 hr = IUriBuilder_GetIUri(builder, &uri);
8551 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8552 hr, S_OK, test_index);
8555 received = (void*) 0xdeadbeef;
8558 hr = IUriBuilder_GetUserName(builder, &len, &received);
8560 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8561 hr, S_FALSE, test_index);
8563 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8565 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8566 received, test_index);
8569 BSTR expected = NULL;
8570 BOOL has_prop = FALSE;
8572 hr = IUri_GetUserName(uri, &expected);
8574 "Error: Expected IUri_GetUserName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8576 has_prop = hr == S_OK;
8578 hr = IUriBuilder_GetUserName(builder, &len, &received);
8581 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8582 hr, S_OK, test_index);
8584 ok(!lstrcmpW(expected, received),
8585 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8586 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8587 ok(lstrlenW(expected) == len,
8588 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8589 lstrlenW(expected), len, test_index);
8593 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8594 hr, S_FALSE, test_index);
8596 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8597 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8601 SysFreeString(expected);
8604 if(uri) IUri_Release(uri);
8608 /* Tests IUriBuilder functions. */
8609 static void test_IUriBuilder(void) {
8611 IUriBuilder *builder;
8614 for(i = 0; i < sizeof(uri_builder_tests)/sizeof(uri_builder_tests[0]); ++i) {
8616 uri_builder_test test = uri_builder_tests[i];
8620 uriW = a2w(test.uri);
8621 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
8622 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8624 if(FAILED(hr)) continue;
8626 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
8627 if(test.create_builder_todo) {
8629 ok(hr == test.create_builder_expected,
8630 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8631 hr, test.create_builder_expected, i);
8634 ok(hr == test.create_builder_expected,
8635 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8636 hr, test.create_builder_expected, i);
8640 BOOL modified = FALSE, received = FALSE;
8642 /* Perform all the string property changes. */
8643 for(j = 0; j < URI_BUILDER_STR_PROPERTY_COUNT; ++j) {
8644 uri_builder_property prop = test.properties[j];
8646 change_property(builder, &prop, i);
8647 if(prop.property != Uri_PROPERTY_SCHEME_NAME &&
8648 prop.property != Uri_PROPERTY_HOST)
8650 else if(prop.value && *prop.value)
8652 else if(prop.value && !*prop.value && prop.property == Uri_PROPERTY_HOST)
8653 /* Host name property can't be NULL, but it can be empty. */
8658 if(test.port_prop.change) {
8659 hr = IUriBuilder_SetPort(builder, test.port_prop.set, test.port_prop.value);
8661 if(test.port_prop.todo) {
8663 ok(hr == test.port_prop.expected,
8664 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8665 hr, test.port_prop.expected, i);
8668 ok(hr == test.port_prop.expected,
8669 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8670 hr, test.port_prop.expected, i);
8674 hr = IUriBuilder_HasBeenModified(builder, &received);
8676 "Error IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8679 ok(received == modified,
8680 "Error: Expected received to be %d but was %d instead on uri_builder_tests[%d].\n",
8681 modified, received, i);
8683 /* Test the "Get*" functions. */
8684 test_IUriBuilder_GetFragment(builder, &test, i);
8685 test_IUriBuilder_GetHost(builder, &test, i);
8686 test_IUriBuilder_GetPassword(builder, &test, i);
8687 test_IUriBuilder_GetPath(builder, &test, i);
8688 test_IUriBuilder_GetPort(builder, &test, i);
8689 test_IUriBuilder_GetQuery(builder, &test, i);
8690 test_IUriBuilder_GetSchemeName(builder, &test, i);
8691 test_IUriBuilder_GetUserName(builder, &test, i);
8693 test_IUriBuilder_CreateUri(builder, &test, i);
8694 test_IUriBuilder_CreateUriSimple(builder, &test, i);
8695 test_IUriBuilder_CreateUriWithFlags(builder, &test, i);
8697 if(builder) IUriBuilder_Release(builder);
8698 if(uri) IUri_Release(uri);
8703 static void test_IUriBuilder_HasBeenModified(void) {
8705 IUriBuilder *builder = NULL;
8707 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8708 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8710 static const WCHAR hostW[] = {'g','o','o','g','l','e','.','c','o','m',0};
8714 hr = IUriBuilder_HasBeenModified(builder, NULL);
8715 ok(hr == E_POINTER, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8718 hr = IUriBuilder_SetHost(builder, hostW);
8719 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n",
8722 hr = IUriBuilder_HasBeenModified(builder, &received);
8723 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8726 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8728 hr = pCreateUri(http_urlW, 0, 0, &uri);
8729 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8734 hr = IUriBuilder_SetIUri(builder, uri);
8735 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n",
8738 hr = IUriBuilder_HasBeenModified(builder, &received);
8739 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8742 ok(received == FALSE, "Error: Expected received to be FALSE.\n");
8744 /* Test what happens with you call SetIUri with the same IUri again. */
8745 hr = IUriBuilder_SetHost(builder, hostW);
8746 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8748 hr = IUriBuilder_HasBeenModified(builder, &received);
8749 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8752 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8754 hr = IUriBuilder_SetIUri(builder, uri);
8755 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8757 /* IUriBuilder already had 'uri' as it's IUri property and so Windows doesn't
8758 * reset any of the changes that were made to the IUriBuilder.
8760 hr = IUriBuilder_HasBeenModified(builder, &received);
8761 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8763 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8765 hr = IUriBuilder_GetHost(builder, &len, &prop);
8766 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8768 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8769 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8770 ok(len == lstrlenW(hostW), "Error: Expected len to be %d, but was %d instead.\n",
8771 lstrlenW(hostW), len);
8774 hr = IUriBuilder_SetIUri(builder, NULL);
8775 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8777 hr = IUriBuilder_SetHost(builder, hostW);
8778 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8779 hr = IUriBuilder_HasBeenModified(builder, &received);
8780 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8783 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8785 hr = IUriBuilder_SetIUri(builder, NULL);
8786 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%09x.\n", hr, S_OK);
8788 hr = IUriBuilder_HasBeenModified(builder, &received);
8789 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8792 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8794 hr = IUriBuilder_GetHost(builder, &len, &prop);
8795 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8797 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8798 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8799 ok(len == lstrlenW(hostW), "Error: Expected len to %d, but was %d instead.\n",
8800 lstrlenW(hostW), len);
8803 if(uri) IUri_Release(uri);
8805 if(builder) IUriBuilder_Release(builder);
8808 /* Test IUriBuilder {Get,Set}IUri functions. */
8809 static void test_IUriBuilder_IUriProperty(void) {
8810 IUriBuilder *builder = NULL;
8813 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8814 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8818 hr = IUriBuilder_GetIUri(builder, NULL);
8819 ok(hr == E_POINTER, "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x.\n",
8822 hr = pCreateUri(http_urlW, 0, 0, &uri);
8825 ULONG cur_count, orig_count;
8827 /* IUriBuilder doesn't clone the IUri, it use the same IUri. */
8828 orig_count = get_refcnt(uri);
8829 hr = IUriBuilder_SetIUri(builder, uri);
8830 cur_count = get_refcnt(uri);
8832 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8833 orig_count+1, cur_count);
8835 hr = IUriBuilder_SetIUri(builder, NULL);
8836 cur_count = get_refcnt(uri);
8838 ok(cur_count == orig_count, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8839 orig_count, cur_count);
8841 /* CreateUri* functions will return back the same IUri if nothing has changed. */
8842 hr = IUriBuilder_SetIUri(builder, uri);
8843 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8844 orig_count = get_refcnt(uri);
8846 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, &test);
8847 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8849 cur_count = get_refcnt(uri);
8850 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8851 orig_count+1, cur_count);
8852 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n",
8855 if(test) IUri_Release(test);
8858 hr = IUriBuilder_CreateUri(builder, -1, 0, 0, &test);
8859 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8861 cur_count = get_refcnt(uri);
8862 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8863 orig_count+1, cur_count);
8864 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8866 if(test) IUri_Release(test);
8868 /* Doesn't return the same IUri, if the flag combination is different then the one that created
8872 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, &test);
8873 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8875 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
8877 if(test) IUri_Release(test);
8879 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
8880 * explicitly set (because it's a default flags).
8883 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_CANONICALIZE, 0, 0, &test);
8884 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8886 cur_count = get_refcnt(uri);
8887 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8888 orig_count+1, cur_count);
8889 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
8891 if(test) IUri_Release(test);
8894 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, &test);
8895 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8897 cur_count = get_refcnt(uri);
8898 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8899 orig_count+1, cur_count);
8900 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8902 if(test) IUri_Release(test);
8905 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &test);
8906 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
8909 cur_count = get_refcnt(uri);
8910 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8911 orig_count+1, cur_count);
8912 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
8914 if(test) IUri_Release(test);
8916 /* Doesn't return the same IUri, if the flag combination is different then the one that created
8920 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, 0, &test);
8921 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8923 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
8925 if(test) IUri_Release(test);
8927 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
8928 * explicitly set (because it's a default flags).
8931 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_CANONICALIZE, 0, 0, 0, &test);
8932 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8934 cur_count = get_refcnt(uri);
8935 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8936 orig_count+1, cur_count);
8937 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
8939 if(test) IUri_Release(test);
8941 if(uri) IUri_Release(uri);
8943 if(builder) IUriBuilder_Release(builder);
8946 static void test_IUriBuilder_RemoveProperties(void) {
8947 IUriBuilder *builder = NULL;
8951 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8952 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8954 /* Properties that can't be removed. */
8955 const DWORD invalid = Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_RAW_URI|Uri_HAS_HOST_TYPE|
8956 Uri_HAS_SCHEME|Uri_HAS_ZONE;
8958 for(i = Uri_PROPERTY_STRING_START; i <= Uri_PROPERTY_DWORD_LAST; ++i) {
8959 hr = IUriBuilder_RemoveProperties(builder, i << 1);
8960 if((i << 1) & invalid) {
8961 ok(hr == E_INVALIDARG,
8962 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
8963 hr, E_INVALIDARG, i);
8966 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
8971 /* Also doesn't accept anything that's outside the range of the
8974 hr = IUriBuilder_RemoveProperties(builder, (Uri_PROPERTY_DWORD_LAST+1) << 1);
8975 ok(hr == E_INVALIDARG, "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x.\n",
8978 if(builder) IUriBuilder_Release(builder);
8980 for(i = 0; i < sizeof(uri_builder_remove_tests)/sizeof(uri_builder_remove_tests[0]); ++i) {
8981 uri_builder_remove_test test = uri_builder_remove_tests[i];
8985 uriW = a2w(test.uri);
8986 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
8990 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
8991 if(test.create_builder_todo) {
8993 ok(hr == test.create_builder_expected,
8994 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
8995 hr, test.create_builder_expected, i);
8998 ok(hr == test.create_builder_expected,
8999 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9000 hr, test.create_builder_expected, i);
9003 hr = IUriBuilder_RemoveProperties(builder, test.remove_properties);
9004 if(test.remove_todo) {
9006 ok(hr == test.remove_expected,
9007 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x on test %d.\n",
9008 hr, test.remove_expected, i);
9011 ok(hr == test.remove_expected,
9012 "Error: IUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9013 hr, test.remove_expected, i);
9016 IUri *result = NULL;
9018 hr = IUriBuilder_CreateUri(builder, test.expected_flags, 0, 0, &result);
9019 if(test.expected_todo) {
9021 ok(hr == test.expected_hres,
9022 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9023 hr, test.expected_hres, i);
9026 ok(hr == test.expected_hres,
9027 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9028 hr, test.expected_hres, i);
9031 BSTR received = NULL;
9033 hr = IUri_GetAbsoluteUri(result, &received);
9034 ok(!strcmp_aw(test.expected_uri, received),
9035 "Error: Expected %s but got %s instead on test %d.\n",
9036 test.expected_uri, wine_dbgstr_w(received), i);
9037 SysFreeString(received);
9039 if(result) IUri_Release(result);
9042 if(builder) IUriBuilder_Release(builder);
9044 if(uri) IUri_Release(uri);
9049 static void test_IUriBuilder_Misc(void) {
9053 hr = pCreateUri(http_urlW, 0, 0, &uri);
9055 IUriBuilder *builder;
9057 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
9058 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9063 hr = IUriBuilder_GetPort(builder, &has, &port);
9064 ok(hr == S_OK, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9066 /* 'has' will be set to FALSE, even though uri had a port. */
9067 ok(has == FALSE, "Error: Expected 'has' to be FALSE, was %d instead.\n", has);
9068 /* Still sets 'port' to 80. */
9069 ok(port == 80, "Error: Expected the port to be 80, but, was %d instead.\n", port);
9072 if(builder) IUriBuilder_Release(builder);
9074 if(uri) IUri_Release(uri);
9077 static void test_IUriBuilderFactory(void) {
9080 IUriBuilderFactory *factory;
9081 IUriBuilder *builder;
9083 hr = pCreateUri(http_urlW, 0, 0, &uri);
9084 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9087 hr = IUri_QueryInterface(uri, &IID_IUriBuilderFactory, (void**)&factory);
9088 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x.\n", hr);
9089 ok(factory != NULL, "Error: Expected 'factory' to not be NULL.\n");
9092 builder = (void*) 0xdeadbeef;
9093 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 10, 0, &builder);
9094 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9096 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9098 builder = (void*) 0xdeadbeef;
9099 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 10, &builder);
9100 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9102 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9104 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, NULL);
9105 ok(hr == E_POINTER, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9109 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, &builder);
9110 ok(hr == S_OK, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9113 IUri *tmp = (void*) 0xdeadbeef;
9117 /* Seems microsoft had a bit of mixup naming this function. It
9118 * returns an uninitialized IUriBuilder.
9120 hr = IUriBuilder_GetIUri(builder, &tmp);
9121 ok(hr == S_OK, "Error: GetIUri returned 0x%08x, expected 0x%08x.\n",
9123 ok(!tmp, "Error: Expected 'tmp' to be NULL, but was %p instead.\n", tmp);
9125 hr = IUriBuilder_GetHost(builder, &result_len, &result);
9126 ok(hr == S_FALSE, "Error: GetHost returned 0x%08x, expected 0x%08x.\n",
9129 if(builder) IUriBuilder_Release(builder);
9131 builder = (void*) 0xdeadbeef;
9132 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 10, 0, &builder);
9133 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9135 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9137 builder = (void*) 0xdeadbeef;
9138 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 10, &builder);
9139 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9141 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9143 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, NULL);
9144 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9148 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, &builder);
9149 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9154 hr = IUriBuilder_GetIUri(builder, &tmp);
9155 ok(hr == S_OK, "Error: GetIUri return 0x%08x, expected 0x%08x.\n",
9157 ok(tmp == uri, "Error: Expected tmp to be %p, but was %p.\n", uri, tmp);
9158 if(uri) IUri_Release(uri);
9160 if(builder) IUriBuilder_Release(builder);
9162 if(factory) IUriBuilderFactory_Release(factory);
9164 if(uri) IUri_Release(uri);
9167 static void test_CoInternetCombineIUri(void) {
9169 IUri *base, *relative, *result;
9173 hr = pCreateUri(http_urlW, 0, 0, &base);
9174 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9176 result = (void*) 0xdeadbeef;
9177 hr = pCoInternetCombineIUri(base, NULL, 0, &result, 0);
9178 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9179 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9183 hr = pCreateUri(http_urlW, 0, 0, &relative);
9184 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9186 result = (void*) 0xdeadbeef;
9187 hr = pCoInternetCombineIUri(NULL, relative, 0, &result, 0);
9188 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9189 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9192 hr = pCoInternetCombineIUri(base, relative, 0, NULL, 0);
9193 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9195 if(base) IUri_Release(base);
9196 if(relative) IUri_Release(relative);
9198 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9199 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9201 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9202 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9204 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9206 hr = pCreateUri(relativeW, uri_combine_tests[i].relative_create_flags, 0, &relative);
9207 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9211 hr = pCoInternetCombineIUri(base, relative, uri_combine_tests[i].combine_flags, &result, 0);
9212 if(uri_combine_tests[i].todo) {
9214 ok(hr == uri_combine_tests[i].expected,
9215 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9216 hr, uri_combine_tests[i].expected, i);
9219 ok(hr == uri_combine_tests[i].expected,
9220 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9221 hr, uri_combine_tests[i]. expected, i);
9226 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9227 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9230 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9233 ok(hr == prop.expected,
9234 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9235 hr, prop.expected, i, j);
9238 ok(!strcmp_aw(prop.value, received) ||
9239 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9240 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9241 prop.value, wine_dbgstr_w(received), i, j);
9244 ok(hr == prop.expected,
9245 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9246 hr, prop.expected, i, j);
9247 ok(!strcmp_aw(prop.value, received) ||
9248 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9249 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9250 prop.value, wine_dbgstr_w(received), i, j);
9252 SysFreeString(received);
9255 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9256 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9259 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9262 ok(hr == prop.expected,
9263 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9264 hr, prop.expected, i, j);
9267 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9268 prop.value, received, i, j);
9271 ok(hr == prop.expected,
9272 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9273 hr, prop.expected, i, j);
9274 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9275 prop.value, received, i, j);
9279 if(result) IUri_Release(result);
9281 if(relative) IUri_Release(relative);
9282 heap_free(relativeW);
9284 if(base) IUri_Release(base);
9289 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
9290 REFIID riid, void **ppv)
9292 ok(0, "unexpected call\n");
9293 return E_NOINTERFACE;
9296 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
9301 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
9306 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
9307 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
9308 DWORD *pcchResult, DWORD dwReserved)
9310 CHECK_EXPECT(ParseUrl);
9311 ok(!lstrcmpW(pwzUrl, parse_urlW), "Error: Expected %s, but got %s instead.\n",
9312 wine_dbgstr_w(parse_urlW), wine_dbgstr_w(pwzUrl));
9313 ok(ParseAction == parse_action, "Error: Expected %d, but got %d.\n", parse_action, ParseAction);
9314 ok(dwParseFlags == parse_flags, "Error: Expected 0x%08x, but got 0x%08x.\n", parse_flags, dwParseFlags);
9315 ok(cchResult == 200, "Error: Got %d.\n", cchResult);
9317 memcpy(pwzResult, parse_resultW, sizeof(parse_resultW));
9318 *pcchResult = lstrlenW(parse_resultW);
9323 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
9324 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
9325 LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
9327 CHECK_EXPECT(CombineUrl);
9328 ok(!lstrcmpW(pwzBaseUrl, combine_baseW), "Error: Expected %s, but got %s instead.\n",
9329 wine_dbgstr_w(combine_baseW), wine_dbgstr_w(pwzBaseUrl));
9330 ok(!lstrcmpW(pwzRelativeUrl, combine_relativeW), "Error: Expected %s, but got %s instead.\n",
9331 wine_dbgstr_w(combine_relativeW), wine_dbgstr_w(pwzRelativeUrl));
9332 ok(dwCombineFlags == (URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO),
9333 "Error: Expected 0, but got 0x%08x.\n", dwCombineFlags);
9334 ok(cchResult == INTERNET_MAX_URL_LENGTH+1, "Error: Got %d.\n", cchResult);
9336 memcpy(pwzResult, combine_resultW, sizeof(combine_resultW));
9337 *pcchResult = lstrlenW(combine_resultW);
9342 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
9343 LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
9345 ok(0, "unexpected call\n");
9349 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
9350 LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
9351 DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
9353 ok(0, "unexpected call\n");
9357 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
9358 InternetProtocolInfo_QueryInterface,
9359 InternetProtocolInfo_AddRef,
9360 InternetProtocolInfo_Release,
9361 InternetProtocolInfo_ParseUrl,
9362 InternetProtocolInfo_CombineUrl,
9363 InternetProtocolInfo_CompareUrl,
9364 InternetProtocolInfo_QueryInfo
9367 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
9369 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
9371 if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
9372 *ppv = &protocol_info;
9376 ok(0, "unexpected call\n");
9377 return E_NOINTERFACE;
9380 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
9385 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
9390 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
9391 REFIID riid, void **ppv)
9393 ok(0, "unexpected call\n");
9397 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
9399 ok(0, "unexpected call\n");
9403 static const IClassFactoryVtbl ClassFactoryVtbl = {
9404 ClassFactory_QueryInterface,
9405 ClassFactory_AddRef,
9406 ClassFactory_Release,
9407 ClassFactory_CreateInstance,
9408 ClassFactory_LockServer
9411 static IClassFactory protocol_cf = { &ClassFactoryVtbl };
9413 static void register_protocols(void)
9415 IInternetSession *session;
9418 hres = pCoInternetGetSession(0, &session, 0);
9419 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
9423 hres = IInternetSession_RegisterNameSpace(session, &protocol_cf, &IID_NULL,
9424 winetestW, 0, NULL, 0);
9425 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
9427 IInternetSession_Release(session);
9430 static void unregister_protocols(void) {
9431 IInternetSession *session;
9434 hr = pCoInternetGetSession(0, &session, 0);
9435 ok(hr == S_OK, "CoInternetGetSession failed: 0x%08x\n", hr);
9439 hr = IInternetSession_UnregisterNameSpace(session, &protocol_cf, winetestW);
9440 ok(hr == S_OK, "UnregisterNameSpace failed: 0x%08x\n", hr);
9442 IInternetSession_Release(session);
9445 static void test_CoInternetCombineIUri_Pluggable(void) {
9449 hr = pCreateUri(combine_baseW, 0, 0, &base);
9450 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9452 IUri *relative = NULL;
9454 hr = pCreateUri(combine_relativeW, Uri_CREATE_ALLOW_RELATIVE, 0, &relative);
9455 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9457 IUri *result = NULL;
9459 SET_EXPECT(CombineUrl);
9461 hr = pCoInternetCombineIUri(base, relative, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9463 ok(hr == S_OK, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9465 CHECK_CALLED(CombineUrl);
9468 BSTR received = NULL;
9469 hr = IUri_GetAbsoluteUri(result, &received);
9470 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9472 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9473 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9475 SysFreeString(received);
9477 if(result) IUri_Release(result);
9479 if(relative) IUri_Release(relative);
9481 if(base) IUri_Release(base);
9484 static void test_CoInternetCombineUrlEx(void) {
9486 IUri *base, *result;
9490 hr = pCreateUri(http_urlW, 0, 0, &base);
9491 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9493 result = (void*) 0xdeadbeef;
9494 hr = pCoInternetCombineUrlEx(base, NULL, 0, &result, 0);
9495 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9497 ok(!result, "Error: Expected 'result' to be NULL was %p instead.\n", result);
9500 result = (void*) 0xdeadbeef;
9501 hr = pCoInternetCombineUrlEx(NULL, http_urlW, 0, &result, 0);
9502 ok(hr == E_INVALIDARG, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9504 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9506 result = (void*) 0xdeadbeef;
9507 hr = pCoInternetCombineUrlEx(NULL, NULL, 0, &result, 0);
9508 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9510 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9512 hr = pCoInternetCombineUrlEx(base, http_urlW, 0, NULL, 0);
9513 ok(hr == E_POINTER, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9515 if(base) IUri_Release(base);
9517 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9518 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9520 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9521 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_combine_tests[%d].\n", hr, i);
9523 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9525 hr = pCoInternetCombineUrlEx(base, relativeW, uri_combine_tests[i].combine_flags,
9527 if(uri_combine_tests[i].todo) {
9529 ok(hr == uri_combine_tests[i].expected,
9530 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9531 hr, uri_combine_tests[i].expected, i);
9534 ok(hr == uri_combine_tests[i].expected,
9535 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9536 hr, uri_combine_tests[i]. expected, i);
9541 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9542 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9544 LPCSTR value = (prop.value_ex) ? prop.value_ex : prop.value;
9546 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9549 ok(hr == prop.expected,
9550 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9551 hr, prop.expected, i, j);
9554 ok(!strcmp_aw(value, received) ||
9555 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9556 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9557 value, wine_dbgstr_w(received), i, j);
9560 ok(hr == prop.expected,
9561 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9562 hr, prop.expected, i, j);
9563 ok(!strcmp_aw(value, received) ||
9564 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9565 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9566 value, wine_dbgstr_w(received), i, j);
9568 SysFreeString(received);
9571 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9572 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9575 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9578 ok(hr == prop.expected,
9579 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9580 hr, prop.expected, i, j);
9583 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9584 prop.value, received, i, j);
9587 ok(hr == prop.expected,
9588 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9589 hr, prop.expected, i, j);
9590 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9591 prop.value, received, i, j);
9595 if(result) IUri_Release(result);
9596 heap_free(relativeW);
9598 if(base) IUri_Release(base);
9603 static void test_CoInternetCombineUrlEx_Pluggable(void) {
9607 hr = pCreateUri(combine_baseW, 0, 0, &base);
9608 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9610 IUri *result = NULL;
9612 SET_EXPECT(CombineUrl);
9614 hr = pCoInternetCombineUrlEx(base, combine_relativeW, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9616 ok(hr == S_OK, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9618 CHECK_CALLED(CombineUrl);
9621 BSTR received = NULL;
9622 hr = IUri_GetAbsoluteUri(result, &received);
9623 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9625 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9626 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9628 SysFreeString(received);
9630 if(result) IUri_Release(result);
9632 if(base) IUri_Release(base);
9635 static void test_CoInternetParseIUri_InvalidArgs(void) {
9641 hr = pCoInternetParseIUri(NULL, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9642 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9644 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9646 hr = pCreateUri(http_urlW, 0, 0, &uri);
9647 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9652 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, NULL, 0, &result, 0);
9653 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9655 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9657 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, NULL, 0);
9658 ok(hr == E_POINTER, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9662 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_URL, 0, tmp, 3, &result, 0);
9663 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x expected 0x%08x.\n",
9665 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9668 hr = pCoInternetParseIUri(uri, PARSE_MIME, 0, tmp, 3, &result, 0);
9669 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9671 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9674 hr = pCoInternetParseIUri(uri, PARSE_SERVER, 0, tmp, 3, &result, 0);
9675 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9677 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9680 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_DOMAIN, 0, tmp, 3, &result, 0);
9681 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9683 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9685 expected_len = lstrlenW(http_urlW);
9687 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9688 ok(hr == STRSAFE_E_INSUFFICIENT_BUFFER,
9689 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9690 hr, STRSAFE_E_INSUFFICIENT_BUFFER);
9691 ok(result == expected_len, "Error: Expected 'result' to be %d, but was %d instead.\n",
9692 expected_len, result);
9694 if(uri) IUri_Release(uri);
9697 static void test_CoInternetParseIUri(void) {
9700 for(i = 0; i < sizeof(uri_parse_tests)/sizeof(uri_parse_tests[0]); ++i) {
9704 uri_parse_test test = uri_parse_tests[i];
9706 uriW = a2w(test.uri);
9707 hr = pCreateUri(uriW, test.uri_flags, 0, &uri);
9708 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_parse_tests[%d].\n", hr, i);
9710 WCHAR result[INTERNET_MAX_URL_LENGTH+1];
9711 DWORD result_len = -1;
9713 hr = pCoInternetParseIUri(uri, test.action, test.flags, result, INTERNET_MAX_URL_LENGTH+1, &result_len, 0);
9716 ok(hr == test.expected,
9717 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9718 hr, test.expected, i);
9721 ok(hr == test.expected,
9722 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9723 hr, test.expected, i);
9726 DWORD len = lstrlenA(test.property);
9727 ok(!strcmp_aw(test.property, result),
9728 "Error: Expected %s but got %s instead on uri_parse_tests[%d].\n",
9729 test.property, wine_dbgstr_w(result), i);
9730 ok(len == result_len,
9731 "Error: Expected %d, but got %d instead on uri_parse_tests[%d].\n",
9732 len, result_len, i);
9735 "Error: Expected 'result_len' to be 0, but was %d on uri_parse_tests[%d].\n",
9739 if(uri) IUri_Release(uri);
9744 static void test_CoInternetParseIUri_Pluggable(void) {
9748 hr = pCreateUri(parse_urlW, 0, 0, &uri);
9749 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, but got 0x%08x.\n", hr);
9754 SET_EXPECT(ParseUrl);
9756 parse_action = PARSE_CANONICALIZE;
9757 parse_flags = URL_UNESCAPE|URL_ESCAPE_UNSAFE;
9759 hr = pCoInternetParseIUri(uri, parse_action, parse_flags, result, 200, &result_len, 0);
9760 ok(hr == S_OK, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9762 CHECK_CALLED(ParseUrl);
9765 ok(result_len == lstrlenW(parse_resultW), "Error: Expected %d, but got %d.\n",
9766 lstrlenW(parse_resultW), result_len);
9767 ok(!lstrcmpW(result, parse_resultW), "Error: Expected %s, but got %s.\n",
9768 wine_dbgstr_w(parse_resultW), wine_dbgstr_w(result));
9771 if(uri) IUri_Release(uri);
9777 hurlmon = GetModuleHandle("urlmon.dll");
9778 pCoInternetGetSession = (void*) GetProcAddress(hurlmon, "CoInternetGetSession");
9779 pCreateUri = (void*) GetProcAddress(hurlmon, "CreateUri");
9780 pCreateUriWithFragment = (void*) GetProcAddress(hurlmon, "CreateUriWithFragment");
9781 pCreateIUriBuilder = (void*) GetProcAddress(hurlmon, "CreateIUriBuilder");
9782 pCoInternetCombineIUri = (void*) GetProcAddress(hurlmon, "CoInternetCombineIUri");
9783 pCoInternetCombineUrlEx = (void*) GetProcAddress(hurlmon, "CoInternetCombineUrlEx");
9784 pCoInternetParseIUri = (void*) GetProcAddress(hurlmon, "CoInternetParseIUri");
9787 win_skip("CreateUri is not present, skipping tests.\n");
9791 trace("test CreateUri invalid flags...\n");
9792 test_CreateUri_InvalidFlags();
9794 trace("test CreateUri invalid args...\n");
9795 test_CreateUri_InvalidArgs();
9797 trace("test CreateUri invalid URIs...\n");
9798 test_CreateUri_InvalidUri();
9800 trace("test IUri_GetPropertyBSTR...\n");
9801 test_IUri_GetPropertyBSTR();
9803 trace("test IUri_GetPropertyDWORD...\n");
9804 test_IUri_GetPropertyDWORD();
9806 trace("test IUri_GetStrProperties...\n");
9807 test_IUri_GetStrProperties();
9809 trace("test IUri_GetDwordProperties...\n");
9810 test_IUri_GetDwordProperties();
9812 trace("test IUri_GetPropertyLength...\n");
9813 test_IUri_GetPropertyLength();
9815 trace("test IUri_GetProperties...\n");
9816 test_IUri_GetProperties();
9818 trace("test IUri_HasProperty...\n");
9819 test_IUri_HasProperty();
9821 trace("test IUri_IsEqual...\n");
9822 test_IUri_IsEqual();
9824 trace("test CreateUriWithFragment invalid args...\n");
9825 test_CreateUriWithFragment_InvalidArgs();
9827 trace("test CreateUriWithFragment invalid flags...\n");
9828 test_CreateUriWithFragment_InvalidFlags();
9830 trace("test CreateUriWithFragment...\n");
9831 test_CreateUriWithFragment();
9833 trace("test CreateIUriBuilder...\n");
9834 test_CreateIUriBuilder();
9836 trace("test IUriBuilder_CreateInvalidArgs...\n");
9837 test_IUriBuilder_CreateInvalidArgs();
9839 trace("test IUriBuilder...\n");
9842 trace("test IUriBuilder_GetInvalidArgs...\n");
9843 test_IUriBuilder_GetInvalidArgs();
9845 trace("test IUriBuilder_HasBeenModified...\n");
9846 test_IUriBuilder_HasBeenModified();
9848 trace("test IUriBuilder_IUriProperty...\n");
9849 test_IUriBuilder_IUriProperty();
9851 trace("test IUriBuilder_RemoveProperties...\n");
9852 test_IUriBuilder_RemoveProperties();
9854 trace("test IUriBuilder miscellaneous...\n");
9855 test_IUriBuilder_Misc();
9857 trace("test IUriBuilderFactory...\n");
9858 test_IUriBuilderFactory();
9860 trace("test CoInternetCombineIUri...\n");
9861 test_CoInternetCombineIUri();
9863 trace("test CoInternetCombineUrlEx...\n");
9864 test_CoInternetCombineUrlEx();
9866 trace("test CoInternetParseIUri Invalid Args...\n");
9867 test_CoInternetParseIUri_InvalidArgs();
9869 trace("test CoInternetParseIUri...\n");
9870 test_CoInternetParseIUri();
9872 register_protocols();
9874 trace("test CoInternetCombineIUri pluggable...\n");
9875 test_CoInternetCombineIUri_Pluggable();
9877 trace("test CoInternetCombineUrlEx Pluggable...\n");
9878 test_CoInternetCombineUrlEx_Pluggable();
9880 trace("test CoInternetParseIUri pluggable...\n");
9881 test_CoInternetParseIUri_Pluggable();
9883 unregister_protocols();