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}
3967 { "mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg", 0, S_OK, FALSE,
3969 {"mk:@MSITStore:Z:\\dir\\test.chm::/images/xxx.jpg",S_OK,FALSE},
3971 {"mk:@MSITStore:Z:\\dir\\test.chm::/images/xxx.jpg",S_OK,FALSE},
3973 {".jpg",S_OK,FALSE},
3977 {"@MSITStore:Z:\\dir\\test.chm::/images/xxx.jpg",S_OK,FALSE},
3978 {"@MSITStore:Z:\\dir\\test.chm::/images/xxx.jpg",S_OK,FALSE},
3980 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
3986 {Uri_HOST_UNKNOWN,S_OK,FALSE},
3988 {URL_SCHEME_MK,S_OK,FALSE},
3989 {URLZONE_INVALID,E_NOTIMPL,FALSE}
3992 { "mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg", Uri_CREATE_NO_CANONICALIZE, S_OK, FALSE,
3994 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
3996 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
3998 {".jpg",S_OK,FALSE},
4002 {"@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4003 {"@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4005 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4011 {Uri_HOST_UNKNOWN,S_OK,FALSE},
4013 {URL_SCHEME_MK,S_OK,FALSE},
4014 {URLZONE_INVALID,E_NOTIMPL,FALSE}
4017 { "xx:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg", 0, S_OK, FALSE,
4019 {"xx:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4021 {"xx:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4023 {".jpg",S_OK,FALSE},
4027 {"@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4028 {"@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4030 {"xx:@MSITStore:Z:\\dir\\test.chm::/html/../images/xxx.jpg",S_OK,FALSE},
4036 {Uri_HOST_UNKNOWN,S_OK,FALSE},
4038 {URL_SCHEME_UNKNOWN,S_OK,FALSE},
4039 {URLZONE_INVALID,E_NOTIMPL,FALSE}
4042 { "mk:@MSITStore:Z:\\dir\\test.chm::/html/../../images/xxx.jpg", 0, S_OK, FALSE,
4044 {"mk:@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4046 {"mk:@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4048 {".jpg",S_OK,FALSE},
4052 {"@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4053 {"@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4055 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../../images/xxx.jpg",S_OK,FALSE},
4061 {Uri_HOST_UNKNOWN,S_OK,FALSE},
4063 {URL_SCHEME_MK,S_OK,FALSE},
4064 {URLZONE_INVALID,E_NOTIMPL,FALSE}
4067 { "mk:@MSITStore:Z:\\dir\\dir2\\..\\test.chm::/html/../../images/xxx.jpg", 0, S_OK, FALSE,
4069 {"mk:@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4071 {"mk:@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4073 {".jpg",S_OK,FALSE},
4077 {"@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4078 {"@MSITStore:Z:\\dir\\images/xxx.jpg",S_OK,FALSE},
4080 {"mk:@MSITStore:Z:\\dir\\dir2\\..\\test.chm::/html/../../images/xxx.jpg",S_OK,FALSE},
4086 {Uri_HOST_UNKNOWN,S_OK,FALSE},
4088 {URL_SCHEME_MK,S_OK,FALSE},
4089 {URLZONE_INVALID,E_NOTIMPL,FALSE}
4092 { "mk:@MSITStore:Z:\\dir\\test.chm::/html/../../../../images/xxx.jpg", 0, S_OK, FALSE,
4094 {"mk:images/xxx.jpg",S_OK,FALSE},
4096 {"mk:images/xxx.jpg",S_OK,FALSE},
4098 {".jpg",S_OK,FALSE},
4102 {"images/xxx.jpg",S_OK,FALSE},
4103 {"images/xxx.jpg",S_OK,FALSE},
4105 {"mk:@MSITStore:Z:\\dir\\test.chm::/html/../../../../images/xxx.jpg",S_OK,FALSE},
4111 {Uri_HOST_UNKNOWN,S_OK,FALSE},
4113 {URL_SCHEME_MK,S_OK,FALSE},
4114 {URLZONE_INVALID,E_NOTIMPL,FALSE}
4119 typedef struct _invalid_uri {
4125 static const invalid_uri invalid_uri_tests[] = {
4126 /* Has to have a scheme name. */
4127 {"://www.winehq.org",0,FALSE},
4128 /* Window's doesn't like URI's which are implicitly file paths without the
4129 * ALLOW_IMPLICIT_FILE_SCHEME flag set.
4131 {"C:/test/test.mp3",0,FALSE},
4132 {"\\\\Server/test/test.mp3",0,FALSE},
4133 {"C:/test/test.mp3",Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME,FALSE},
4134 {"\\\\Server/test/test.mp3",Uri_CREATE_ALLOW_RELATIVE,FALSE},
4135 /* Invalid schemes. */
4136 {"*abcd://not.valid.com",0,FALSE},
4137 {"*a*b*c*d://not.valid.com",0,FALSE},
4138 /* Not allowed to have invalid % encoded data. */
4139 {"ftp://google.co%XX/",0,FALSE},
4140 /* To many h16 components. */
4141 {"http://[1:2:3:4:5:6:7:8:9]",0,FALSE},
4142 /* Not enough room for IPv4 address. */
4143 {"http://[1:2:3:4:5:6:7:192.0.1.0]",0,FALSE},
4144 /* Not enough h16 components. */
4145 {"http://[1:2:3:4]",0,FALSE},
4146 /* Not enough components including IPv4. */
4147 {"http://[1:192.0.1.0]",0,FALSE},
4148 /* Not allowed to have partial IPv4 in IPv6. */
4149 {"http://[::192.0]",0,FALSE},
4150 /* Can't have elision of 1 h16 at beginning of address. */
4151 {"http://[::2:3:4:5:6:7:8]",0,FALSE},
4152 /* Can't have elision of 1 h16 at end of address. */
4153 {"http://[1:2:3:4:5:6:7::]",0,FALSE},
4154 /* Expects a valid IP Literal. */
4155 {"ftp://[not.valid.uri]/",0,FALSE},
4156 /* Expects valid port for a known scheme type. */
4157 {"ftp://www.winehq.org:123fgh",0,FALSE},
4158 /* Port exceeds USHORT_MAX for known scheme type. */
4159 {"ftp://www.winehq.org:65536",0,FALSE},
4160 /* Invalid port with IPv4 address. */
4161 {"http://www.winehq.org:1abcd",0,FALSE},
4162 /* Invalid port with IPv6 address. */
4163 {"http://[::ffff]:32xy",0,FALSE},
4164 /* Not allowed to have backslashes with NO_CANONICALIZE. */
4165 {"gopher://www.google.com\\test",Uri_CREATE_NO_CANONICALIZE,FALSE},
4166 /* Not allowed to have invalid % encoded data in opaque URI path. */
4167 {"news:test%XX",0,FALSE},
4168 {"mailto:wine@winehq%G8.com",0,FALSE},
4169 /* Known scheme types can't have invalid % encoded data in query string. */
4170 {"http://google.com/?query=te%xx",0,FALSE},
4171 /* Invalid % encoded data in fragment of know scheme type. */
4172 {"ftp://google.com/#Test%xx",0,FALSE},
4173 {" http://google.com/",Uri_CREATE_NO_PRE_PROCESS_HTML_URI,FALSE},
4174 {"\n\nhttp://google.com/",Uri_CREATE_NO_PRE_PROCESS_HTML_URI,FALSE},
4175 {"file://c:\\test<test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4176 {"file://c:\\test>test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4177 {"file://c:\\test\"test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4178 {"file:c:\\test<test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4179 {"file:c:\\test>test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4180 {"file:c:\\test\"test",Uri_CREATE_FILE_USE_DOS_PATH,FALSE},
4181 /* res URIs aren't allowed to have forbidden dos path characters in the
4184 {"res://c:\\te<st\\test/test",0,FALSE},
4185 {"res://c:\\te>st\\test/test",0,FALSE},
4186 {"res://c:\\te\"st\\test/test",0,FALSE},
4187 {"res://c:\\test/te%xxst",0,FALSE}
4190 typedef struct _uri_equality {
4192 DWORD create_flags_a;
4195 DWORD create_flags_b;
4201 static const uri_equality equality_tests[] = {
4203 "HTTP://www.winehq.org/test dir/./",0,FALSE,
4204 "http://www.winehq.org/test dir/../test dir/",0,FALSE,
4208 /* http://www.winehq.org/test%20dir */
4209 "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,
4210 "http://www.winehq.org/test dir",0,FALSE,
4214 "c:\\test.mp3",Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME,FALSE,
4215 "file:///c:/test.mp3",0,FALSE,
4219 "ftp://ftp.winehq.org/",0,FALSE,
4220 "ftp://ftp.winehq.org",0,FALSE,
4224 "ftp://ftp.winehq.org/test/test2/../../testB/",0,FALSE,
4225 "ftp://ftp.winehq.org/t%45stB/",0,FALSE,
4229 "http://google.com/TEST",0,FALSE,
4230 "http://google.com/test",0,FALSE,
4234 "http://GOOGLE.com/",0,FALSE,
4235 "http://google.com/",0,FALSE,
4238 /* Performs case insensitive compare of host names (for known scheme types). */
4240 "ftp://GOOGLE.com/",Uri_CREATE_NO_CANONICALIZE,FALSE,
4241 "ftp://google.com/",0,FALSE,
4245 "zip://GOOGLE.com/",0,FALSE,
4246 "zip://google.com/",0,FALSE,
4250 "file:///c:/TEST/TeST/",0,FALSE,
4251 "file:///c:/test/test/",0,FALSE,
4255 "file:///server/TEST",0,FALSE,
4256 "file:///SERVER/TEST",0,FALSE,
4260 "http://google.com",Uri_CREATE_NO_CANONICALIZE,FALSE,
4261 "http://google.com/",0,FALSE,
4265 "ftp://google.com:21/",0,FALSE,
4266 "ftp://google.com/",0,FALSE,
4270 "http://google.com:80/",Uri_CREATE_NO_CANONICALIZE,FALSE,
4271 "http://google.com/",0,FALSE,
4275 "http://google.com:70/",0,FALSE,
4276 "http://google.com:71/",0,FALSE,
4281 typedef struct _uri_with_fragment {
4283 const char* fragment;
4285 HRESULT create_expected;
4288 const char* expected_uri;
4290 } uri_with_fragment;
4292 static const uri_with_fragment uri_fragment_tests[] = {
4294 "http://google.com/","#fragment",0,S_OK,FALSE,
4295 "http://google.com/#fragment",FALSE
4298 "http://google.com/","fragment",0,S_OK,FALSE,
4299 "http://google.com/#fragment",FALSE
4302 "zip://test.com/","?test",0,S_OK,FALSE,
4303 "zip://test.com/#?test",FALSE
4305 /* The fragment can be empty. */
4307 "ftp://ftp.google.com/","",0,S_OK,FALSE,
4308 "ftp://ftp.google.com/#",FALSE
4312 typedef struct _uri_builder_property {
4315 const char *expected_value;
4316 Uri_PROPERTY property;
4319 } uri_builder_property;
4321 typedef struct _uri_builder_port {
4329 typedef struct _uri_builder_str_property {
4330 const char* expected;
4333 } uri_builder_str_property;
4335 typedef struct _uri_builder_dword_property {
4339 } uri_builder_dword_property;
4341 typedef struct _uri_builder_test {
4344 HRESULT create_builder_expected;
4345 BOOL create_builder_todo;
4347 uri_builder_property properties[URI_BUILDER_STR_PROPERTY_COUNT];
4349 uri_builder_port port_prop;
4355 DWORD uri_simple_encode_flags;
4356 HRESULT uri_simple_hres;
4357 BOOL uri_simple_todo;
4359 DWORD uri_with_flags;
4360 DWORD uri_with_builder_flags;
4361 DWORD uri_with_encode_flags;
4362 HRESULT uri_with_hres;
4365 uri_builder_str_property expected_str_props[URI_STR_PROPERTY_COUNT];
4366 uri_builder_dword_property expected_dword_props[URI_DWORD_PROPERTY_COUNT];
4369 static const uri_builder_test uri_builder_tests[] = {
4370 { "http://google.com/",0,S_OK,FALSE,
4372 {TRUE,"#fragment",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE},
4373 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE},
4374 {TRUE,"?query=x",NULL,Uri_PROPERTY_QUERY,S_OK,FALSE},
4375 {TRUE,"username",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
4382 {"http://username:password@google.com/?query=x#fragment",S_OK},
4383 {"username:password@google.com",S_OK},
4384 {"http://google.com/?query=x#fragment",S_OK},
4385 {"google.com",S_OK},
4388 {"google.com",S_OK},
4393 {"http://username:password@google.com/?query=x#fragment",S_OK},
4395 {"username:password",S_OK},
4399 {Uri_HOST_DNS,S_OK},
4401 {URL_SCHEME_HTTP,S_OK},
4402 {URLZONE_INVALID,E_NOTIMPL}
4405 { "http://google.com/",0,S_OK,FALSE,
4407 {TRUE,"test",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE}
4409 {TRUE,TRUE,120,S_OK,FALSE},
4414 {"test://google.com:120/",S_OK},
4415 {"google.com:120",S_OK},
4416 {"test://google.com:120/",S_OK},
4417 {"google.com",S_OK},
4420 {"google.com",S_OK},
4425 {"test://google.com:120/",S_OK},
4431 {Uri_HOST_DNS,S_OK},
4433 {URL_SCHEME_UNKNOWN,S_OK},
4434 {URLZONE_INVALID,E_NOTIMPL}
4437 { "/Test/test dir",Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4439 {TRUE,"http",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE},
4440 {TRUE,"::192.2.3.4",NULL,Uri_PROPERTY_HOST,S_OK,FALSE},
4441 {TRUE,NULL,NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
4448 {"http://[::192.2.3.4]/",S_OK},
4449 {"[::192.2.3.4]",S_OK},
4450 {"http://[::192.2.3.4]/",S_OK},
4454 {"::192.2.3.4",S_OK},
4459 {"http://[::192.2.3.4]/",S_OK},
4465 {Uri_HOST_IPV6,S_OK},
4467 {URL_SCHEME_HTTP,S_OK},
4468 {URLZONE_INVALID,E_NOTIMPL}
4471 { "http://google.com/",0,S_OK,FALSE,
4473 {TRUE,"Frag","#Frag",Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4480 {"http://google.com/#Frag",S_OK},
4481 {"google.com",S_OK},
4482 {"http://google.com/#Frag",S_OK},
4483 {"google.com",S_OK},
4486 {"google.com",S_OK},
4491 {"http://google.com/#Frag",S_OK},
4497 {Uri_HOST_DNS,S_OK},
4499 {URL_SCHEME_HTTP,S_OK},
4500 {URLZONE_INVALID,E_NOTIMPL}
4503 { "http://google.com/",0,S_OK,FALSE,
4505 {TRUE,"","#",Uri_PROPERTY_FRAGMENT,S_OK,FALSE},
4512 {"http://google.com/#",S_OK},
4513 {"google.com",S_OK},
4514 {"http://google.com/#",S_OK},
4515 {"google.com",S_OK},
4518 {"google.com",S_OK},
4523 {"http://google.com/#",S_OK},
4529 {Uri_HOST_DNS,S_OK},
4531 {URL_SCHEME_HTTP,S_OK},
4532 {URLZONE_INVALID,E_NOTIMPL}
4535 { "http://google.com/",0,S_OK,FALSE,
4537 {TRUE,":password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4544 {"http://::password@google.com/",S_OK},
4545 {"::password@google.com",S_OK},
4546 {"http://google.com/",S_OK},
4547 {"google.com",S_OK},
4550 {"google.com",S_OK},
4555 {"http://::password@google.com/",S_OK},
4557 {"::password",S_OK},
4561 {Uri_HOST_DNS,S_OK},
4563 {URL_SCHEME_HTTP,S_OK},
4564 {URLZONE_INVALID,E_NOTIMPL}
4567 { "test/test",Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4569 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
4572 Uri_CREATE_ALLOW_RELATIVE,S_OK,FALSE,
4574 Uri_CREATE_ALLOW_RELATIVE,0,0,S_OK,FALSE,
4576 {":password@test/test",S_OK},
4577 {":password@",S_OK},
4578 {":password@test/test",S_OK},
4587 {":password@test/test",S_OK},
4593 {Uri_HOST_UNKNOWN,S_OK},
4595 {URL_SCHEME_UNKNOWN,S_OK},
4596 {URLZONE_INVALID,E_NOTIMPL}
4599 { "http://google.com/",0,S_OK,FALSE,
4601 {TRUE,"test/test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
4608 {"http://google.com/test/test",S_OK},
4609 {"google.com",S_OK},
4610 {"http://google.com/test/test",S_OK},
4611 {"google.com",S_OK},
4614 {"google.com",S_OK},
4616 {"/test/test",S_OK},
4617 {"/test/test",S_OK},
4619 {"http://google.com/test/test",S_OK},
4625 {Uri_HOST_DNS,S_OK},
4627 {URL_SCHEME_HTTP,S_OK},
4628 {URLZONE_INVALID,E_NOTIMPL}
4631 { "zip:testing/test",0,S_OK,FALSE,
4633 {TRUE,"test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
4657 {Uri_HOST_UNKNOWN,S_OK},
4659 {URL_SCHEME_UNKNOWN,S_OK},
4660 {URLZONE_INVALID,E_NOTIMPL}
4663 { "http://google.com/",0,S_OK,FALSE,
4667 /* 555 will be returned from GetPort even though FALSE was passed as the hasPort parameter. */
4668 {TRUE,FALSE,555,S_OK,FALSE},
4673 {"http://google.com/",S_OK},
4674 {"google.com",S_OK},
4675 {"http://google.com/",S_OK},
4676 {"google.com",S_OK},
4679 {"google.com",S_OK},
4684 {"http://google.com/",S_OK},
4690 {Uri_HOST_DNS,S_OK},
4691 /* Still returns 80, even though earlier the port was disabled. */
4693 {URL_SCHEME_HTTP,S_OK},
4694 {URLZONE_INVALID,E_NOTIMPL}
4697 { "http://google.com/",0,S_OK,FALSE,
4701 /* Instead of getting "TRUE" back as the "hasPort" parameter in GetPort,
4702 * you'll get 122345 instead.
4704 {TRUE,122345,222,S_OK,FALSE},
4709 {"http://google.com:222/",S_OK},
4710 {"google.com:222",S_OK},
4711 {"http://google.com:222/",S_OK},
4712 {"google.com",S_OK},
4715 {"google.com",S_OK},
4720 {"http://google.com:222/",S_OK},
4726 {Uri_HOST_DNS,S_OK},
4728 {URL_SCHEME_HTTP,S_OK},
4729 {URLZONE_INVALID,E_NOTIMPL}
4732 /* IUri's created with the IUriBuilder can have ports that exceed USHORT_MAX. */
4733 { "http://google.com/",0,S_OK,FALSE,
4737 {TRUE,TRUE,999999,S_OK,FALSE},
4742 {"http://google.com:999999/",S_OK},
4743 {"google.com:999999",S_OK},
4744 {"http://google.com:999999/",S_OK},
4745 {"google.com",S_OK},
4748 {"google.com",S_OK},
4753 {"http://google.com:999999/",S_OK},
4759 {Uri_HOST_DNS,S_OK},
4761 {URL_SCHEME_HTTP,S_OK},
4762 {URLZONE_INVALID,E_NOTIMPL}
4765 { "http://google.com/",0,S_OK,FALSE,
4767 {TRUE,"test","?test",Uri_PROPERTY_QUERY,S_OK,FALSE},
4775 {"http://google.com/?test",S_OK},
4776 {"google.com",S_OK},
4777 {"http://google.com/?test",S_OK},
4778 {"google.com",S_OK},
4781 {"google.com",S_OK},
4786 {"http://google.com/?test",S_OK},
4792 {Uri_HOST_DNS,S_OK},
4794 {URL_SCHEME_HTTP,S_OK},
4795 {URLZONE_INVALID,E_NOTIMPL}
4798 { "http://:password@google.com/",0,S_OK,FALSE,
4807 {"http://:password@google.com/",S_OK},
4808 {":password@google.com",S_OK},
4809 {"http://google.com/",S_OK},
4810 {"google.com",S_OK},
4813 {"google.com",S_OK},
4818 {"http://:password@google.com/",S_OK},
4824 {Uri_HOST_DNS,S_OK},
4826 {URL_SCHEME_HTTP,S_OK},
4827 {URLZONE_INVALID,E_NOTIMPL}
4830 /* IUriBuilder doesn't need a base IUri to build a IUri. */
4831 { NULL,0,S_OK,FALSE,
4833 {TRUE,"http",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE},
4834 {TRUE,"google.com",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
4841 {"http://google.com/",S_OK},
4842 {"google.com",S_OK},
4843 {"http://google.com/",S_OK},
4844 {"google.com",S_OK},
4847 {"google.com",S_OK},
4852 {"http://google.com/",S_OK},
4858 {Uri_HOST_DNS,S_OK},
4860 {URL_SCHEME_HTTP,S_OK},
4861 {URLZONE_INVALID,E_NOTIMPL}
4864 /* Can't set the scheme name to NULL. */
4865 { "zip://google.com/",0,S_OK,FALSE,
4867 {TRUE,NULL,"zip",Uri_PROPERTY_SCHEME_NAME,E_INVALIDARG,FALSE}
4874 {"zip://google.com/",S_OK},
4875 {"google.com",S_OK},
4876 {"zip://google.com/",S_OK},
4877 {"google.com",S_OK},
4880 {"google.com",S_OK},
4885 {"zip://google.com/",S_OK},
4891 {Uri_HOST_DNS,S_OK},
4893 {URL_SCHEME_UNKNOWN,S_OK},
4894 {URLZONE_INVALID,E_NOTIMPL}
4897 /* Can't set the scheme name to an empty string. */
4898 { "zip://google.com/",0,S_OK,FALSE,
4900 {TRUE,"","zip",Uri_PROPERTY_SCHEME_NAME,E_INVALIDARG,FALSE}
4907 {"zip://google.com/",S_OK},
4908 {"google.com",S_OK},
4909 {"zip://google.com/",S_OK},
4910 {"google.com",S_OK},
4913 {"google.com",S_OK},
4918 {"zip://google.com/",S_OK},
4924 {Uri_HOST_DNS,S_OK},
4926 {URL_SCHEME_UNKNOWN,S_OK},
4927 {URLZONE_INVALID,E_NOTIMPL}
4930 /* -1 to CreateUri makes it use the same flags as the base IUri was created with.
4931 * CreateUriSimple always uses the flags the base IUri was created with (if any).
4933 { "http://google.com/../../",Uri_CREATE_NO_CANONICALIZE,S_OK,FALSE,
4938 0,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
4940 {"http://google.com/../../",S_OK},
4941 {"google.com",S_OK},
4942 {"http://google.com/../../",S_OK},
4943 {"google.com",S_OK},
4946 {"google.com",S_OK},
4951 {"http://google.com/../../",S_OK},
4957 {Uri_HOST_DNS,S_OK},
4959 {URL_SCHEME_HTTP,S_OK},
4960 {URLZONE_INVALID,E_NOTIMPL}
4963 { "http://google.com/",0,S_OK,FALSE,
4965 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
4970 Uri_CREATE_NO_DECODE_EXTRA_INFO,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
4972 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4973 {"google.com",S_OK},
4974 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
4975 {"google.com",S_OK},
4977 {"#Fr%3C%7C%3Eg",S_OK},
4978 {"google.com",S_OK},
4983 {"http://google.com/#Fr<|>g",S_OK},
4989 {Uri_HOST_DNS,S_OK},
4991 {URL_SCHEME_HTTP,S_OK},
4992 {URLZONE_INVALID,E_NOTIMPL}
4995 { "http://google.com/",0,S_OK,FALSE,
4997 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
5000 Uri_CREATE_CANONICALIZE|Uri_CREATE_NO_CANONICALIZE,E_INVALIDARG,FALSE,
5002 Uri_CREATE_CANONICALIZE|Uri_CREATE_NO_CANONICALIZE,UriBuilder_USE_ORIGINAL_FLAGS,0,S_OK,FALSE,
5004 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
5005 {"google.com",S_OK},
5006 {"http://google.com/#Fr%3C%7C%3Eg",S_OK},
5007 {"google.com",S_OK},
5009 {"#Fr%3C%7C%3Eg",S_OK},
5010 {"google.com",S_OK},
5015 {"http://google.com/#Fr<|>g",S_OK},
5021 {Uri_HOST_DNS,S_OK},
5023 {URL_SCHEME_HTTP,S_OK},
5024 {URLZONE_INVALID,E_NOTIMPL}
5027 { NULL,0,S_OK,FALSE,
5029 {TRUE,"/test/test/",NULL,Uri_PROPERTY_PATH,S_OK,FALSE},
5030 {TRUE,"#Fr<|>g",NULL,Uri_PROPERTY_FRAGMENT,S_OK,FALSE}
5033 0,INET_E_INVALID_URL,FALSE,
5034 0,INET_E_INVALID_URL,FALSE,
5035 0,0,0,INET_E_INVALID_URL,FALSE
5037 { "http://google.com/",0,S_OK,FALSE,
5039 {TRUE,"ht%xxtp",NULL,Uri_PROPERTY_SCHEME_NAME,S_OK,FALSE}
5042 0,INET_E_INVALID_URL,FALSE,
5043 0,INET_E_INVALID_URL,FALSE,
5044 0,0,0,INET_E_INVALID_URL,FALSE
5046 /* File scheme's can't have a username set. */
5047 { "file://google.com/",0,S_OK,FALSE,
5049 {TRUE,"username",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5052 0,INET_E_INVALID_URL,FALSE,
5053 0,INET_E_INVALID_URL,FALSE,
5054 0,0,0,INET_E_INVALID_URL,FALSE
5056 /* File schemes can't have a password set. */
5057 { "file://google.com/",0,S_OK,FALSE,
5059 {TRUE,"password",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
5062 0,INET_E_INVALID_URL,FALSE,
5063 0,INET_E_INVALID_URL,FALSE,
5064 0,0,0,INET_E_INVALID_URL,FALSE
5066 /* UserName can't contain any character that is a delimeter for another
5067 * component that appears after it in a normal URI.
5069 { "http://google.com/",0,S_OK,FALSE,
5071 {TRUE,"user:pass",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5074 0,INET_E_INVALID_URL,FALSE,
5075 0,INET_E_INVALID_URL,FALSE,
5076 0,0,0,INET_E_INVALID_URL,FALSE
5078 { "http://google.com/",0,S_OK,FALSE,
5080 {TRUE,"user@google.com",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5083 0,INET_E_INVALID_URL,FALSE,
5084 0,INET_E_INVALID_URL,FALSE,
5085 0,0,0,INET_E_INVALID_URL,FALSE
5087 { "http://google.com/",0,S_OK,FALSE,
5089 {TRUE,"user/path",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5092 0,INET_E_INVALID_URL,FALSE,
5093 0,INET_E_INVALID_URL,FALSE,
5094 0,0,0,INET_E_INVALID_URL,FALSE
5096 { "http://google.com/",0,S_OK,FALSE,
5098 {TRUE,"user?Query",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5101 0,INET_E_INVALID_URL,FALSE,
5102 0,INET_E_INVALID_URL,FALSE,
5103 0,0,0,INET_E_INVALID_URL,FALSE
5105 { "http://google.com/",0,S_OK,FALSE,
5107 {TRUE,"user#Frag",NULL,Uri_PROPERTY_USER_NAME,S_OK,FALSE}
5110 0,INET_E_INVALID_URL,FALSE,
5111 0,INET_E_INVALID_URL,FALSE,
5112 0,0,0,INET_E_INVALID_URL,FALSE
5114 { "http://google.com/",0,S_OK,FALSE,
5116 {TRUE,"pass@google.com",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
5119 0,INET_E_INVALID_URL,FALSE,
5120 0,INET_E_INVALID_URL,FALSE,
5121 0,0,0,INET_E_INVALID_URL,FALSE
5123 { "http://google.com/",0,S_OK,FALSE,
5125 {TRUE,"pass/path",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
5128 0,INET_E_INVALID_URL,FALSE,
5129 0,INET_E_INVALID_URL,FALSE,
5130 0,0,0,INET_E_INVALID_URL,FALSE
5132 { "http://google.com/",0,S_OK,FALSE,
5134 {TRUE,"pass?query",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
5137 0,INET_E_INVALID_URL,FALSE,
5138 0,INET_E_INVALID_URL,FALSE,
5139 0,0,0,INET_E_INVALID_URL,FALSE
5141 { "http://google.com/",0,S_OK,FALSE,
5143 {TRUE,"pass#frag",NULL,Uri_PROPERTY_PASSWORD,S_OK,FALSE}
5146 0,INET_E_INVALID_URL,FALSE,
5147 0,INET_E_INVALID_URL,FALSE,
5148 0,0,0,INET_E_INVALID_URL,FALSE
5150 { "http://google.com/",0,S_OK,FALSE,
5152 {TRUE,"winehq.org/test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5155 0,INET_E_INVALID_URL,FALSE,
5156 0,INET_E_INVALID_URL,FALSE,
5157 0,0,0,INET_E_INVALID_URL,FALSE
5159 { "http://google.com/",0,S_OK,FALSE,
5161 {TRUE,"winehq.org?test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5164 0,INET_E_INVALID_URL,FALSE,
5165 0,INET_E_INVALID_URL,FALSE,
5166 0,0,0,INET_E_INVALID_URL,FALSE
5168 { "http://google.com/",0,S_OK,FALSE,
5170 {TRUE,"winehq.org#test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5173 0,INET_E_INVALID_URL,FALSE,
5174 0,INET_E_INVALID_URL,FALSE,
5175 0,0,0,INET_E_INVALID_URL,FALSE
5177 /* Hostname is allowed to contain a ':' (even for known scheme types). */
5178 { "http://google.com/",0,S_OK,FALSE,
5180 {TRUE,"winehq.org:test",NULL,Uri_PROPERTY_HOST,S_OK,FALSE},
5187 {"http://winehq.org:test/",S_OK},
5188 {"winehq.org:test",S_OK},
5189 {"http://winehq.org:test/",S_OK},
5190 {"winehq.org:test",S_OK},
5193 {"winehq.org:test",S_OK},
5198 {"http://winehq.org:test/",S_OK},
5204 {Uri_HOST_DNS,S_OK},
5206 {URL_SCHEME_HTTP,S_OK},
5207 {URLZONE_INVALID,E_NOTIMPL}
5210 /* Can't set the host name to NULL. */
5211 { "http://google.com/",0,S_OK,FALSE,
5213 {TRUE,NULL,"google.com",Uri_PROPERTY_HOST,E_INVALIDARG,FALSE}
5220 {"http://google.com/",S_OK},
5221 {"google.com",S_OK},
5222 {"http://google.com/",S_OK},
5223 {"google.com",S_OK},
5226 {"google.com",S_OK},
5231 {"http://google.com/",S_OK},
5237 {Uri_HOST_DNS,S_OK},
5239 {URL_SCHEME_HTTP,S_OK},
5240 {URLZONE_INVALID,E_NOTIMPL}
5243 /* Can set the host name to an empty string. */
5244 { "http://google.com/",0,S_OK,FALSE,
5246 {TRUE,"",NULL,Uri_PROPERTY_HOST,S_OK,FALSE}
5270 {Uri_HOST_UNKNOWN,S_OK},
5272 {URL_SCHEME_HTTP,S_OK},
5273 {URLZONE_INVALID,E_NOTIMPL}
5276 { "http://google.com/",0,S_OK,FALSE,
5278 {TRUE,"/path?query",NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
5281 0,INET_E_INVALID_URL,FALSE,
5282 0,INET_E_INVALID_URL,FALSE,
5283 0,0,0,INET_E_INVALID_URL,FALSE
5285 { "http://google.com/",0,S_OK,FALSE,
5287 {TRUE,"/path#test",NULL,Uri_PROPERTY_PATH,S_OK,FALSE}
5290 0,INET_E_INVALID_URL,FALSE,
5291 0,INET_E_INVALID_URL,FALSE,
5292 0,0,0,INET_E_INVALID_URL,FALSE
5294 { "http://google.com/",0,S_OK,FALSE,
5296 {TRUE,"?path#test",NULL,Uri_PROPERTY_QUERY,S_OK,FALSE}
5299 0,INET_E_INVALID_URL,FALSE,
5300 0,INET_E_INVALID_URL,FALSE,
5301 0,0,0,INET_E_INVALID_URL,FALSE
5305 typedef struct _uri_builder_remove_test {
5308 HRESULT create_builder_expected;
5309 BOOL create_builder_todo;
5311 DWORD remove_properties;
5312 HRESULT remove_expected;
5315 const char *expected_uri;
5316 DWORD expected_flags;
5317 HRESULT expected_hres;
5319 } uri_builder_remove_test;
5321 static const uri_builder_remove_test uri_builder_remove_tests[] = {
5322 { "http://google.com/test?test=y#Frag",0,S_OK,FALSE,
5323 Uri_HAS_FRAGMENT|Uri_HAS_PATH|Uri_HAS_QUERY,S_OK,FALSE,
5324 "http://google.com/",0,S_OK,FALSE
5326 { "http://user:pass@winehq.org/",0,S_OK,FALSE,
5327 Uri_HAS_USER_NAME|Uri_HAS_PASSWORD,S_OK,FALSE,
5328 "http://winehq.org/",0,S_OK,FALSE
5330 { "zip://google.com?Test=x",0,S_OK,FALSE,
5331 Uri_HAS_HOST,S_OK,FALSE,
5332 "zip:/?Test=x",0,S_OK,FALSE
5334 /* Doesn't remove the whole userinfo component. */
5335 { "http://username:pass@google.com/",0,S_OK,FALSE,
5336 Uri_HAS_USER_INFO,S_OK,FALSE,
5337 "http://username:pass@google.com/",0,S_OK,FALSE
5339 /* Doesn't remove the domain. */
5340 { "http://google.com/",0,S_OK,FALSE,
5341 Uri_HAS_DOMAIN,S_OK,FALSE,
5342 "http://google.com/",0,S_OK,FALSE
5344 { "http://google.com:120/",0,S_OK,FALSE,
5345 Uri_HAS_AUTHORITY,S_OK,FALSE,
5346 "http://google.com:120/",0,S_OK,FALSE
5348 { "http://google.com/test.com/",0,S_OK,FALSE,
5349 Uri_HAS_EXTENSION,S_OK,FALSE,
5350 "http://google.com/test.com/",0,S_OK,FALSE
5352 { "http://google.com/?test=x",0,S_OK,FALSE,
5353 Uri_HAS_PATH_AND_QUERY,S_OK,FALSE,
5354 "http://google.com/?test=x",0,S_OK,FALSE
5356 /* Can't remove the scheme name. */
5357 { "http://google.com/?test=x",0,S_OK,FALSE,
5358 Uri_HAS_SCHEME_NAME|Uri_HAS_QUERY,E_INVALIDARG,FALSE,
5359 "http://google.com/?test=x",0,S_OK,FALSE
5363 typedef struct _uri_combine_str_property {
5367 const char *broken_value;
5368 const char *value_ex;
5369 } uri_combine_str_property;
5371 typedef struct _uri_combine_test {
5372 const char *base_uri;
5373 DWORD base_create_flags;
5374 const char *relative_uri;
5375 DWORD relative_create_flags;
5376 DWORD combine_flags;
5380 uri_combine_str_property str_props[URI_STR_PROPERTY_COUNT];
5381 uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT];
5384 static const uri_combine_test uri_combine_tests[] = {
5385 { "http://google.com/fun/stuff",0,
5386 "../not/fun/stuff",Uri_CREATE_ALLOW_RELATIVE,
5389 {"http://google.com/not/fun/stuff",S_OK},
5390 {"google.com",S_OK},
5391 {"http://google.com/not/fun/stuff",S_OK},
5392 {"google.com",S_OK},
5395 {"google.com",S_OK},
5397 {"/not/fun/stuff",S_OK},
5398 {"/not/fun/stuff",S_OK},
5400 {"http://google.com/not/fun/stuff",S_OK},
5406 {Uri_HOST_DNS,S_OK},
5408 {URL_SCHEME_HTTP,S_OK},
5409 {URLZONE_INVALID,E_NOTIMPL}
5412 { "http://google.com/test",0,
5413 "zip://test.com/cool",0,
5416 {"zip://test.com/cool",S_OK},
5418 {"zip://test.com/cool",S_OK},
5427 {"zip://test.com/cool",S_OK},
5433 {Uri_HOST_DNS,S_OK},
5435 {URL_SCHEME_UNKNOWN,S_OK},
5436 {URLZONE_INVALID,E_NOTIMPL}
5439 { "http://google.com/use/base/path",0,
5440 "?relative",Uri_CREATE_ALLOW_RELATIVE,
5443 {"http://google.com/use/base/path?relative",S_OK},
5444 {"google.com",S_OK},
5445 {"http://google.com/use/base/path?relative",S_OK},
5446 {"google.com",S_OK},
5449 {"google.com",S_OK},
5451 {"/use/base/path",S_OK},
5452 {"/use/base/path?relative",S_OK},
5454 {"http://google.com/use/base/path?relative",S_OK},
5460 {Uri_HOST_DNS,S_OK},
5462 {URL_SCHEME_HTTP,S_OK},
5463 {URLZONE_INVALID,E_NOTIMPL}
5466 { "http://google.com/path",0,
5467 "/test/../test/.././testing",Uri_CREATE_ALLOW_RELATIVE,
5470 {"http://google.com/testing",S_OK},
5471 {"google.com",S_OK},
5472 {"http://google.com/testing",S_OK},
5473 {"google.com",S_OK},
5476 {"google.com",S_OK},
5481 {"http://google.com/testing",S_OK},
5487 {Uri_HOST_DNS,S_OK},
5489 {URL_SCHEME_HTTP,S_OK},
5490 {URLZONE_INVALID,E_NOTIMPL}
5493 { "http://google.com/path",0,
5494 "/test/../test/.././testing",Uri_CREATE_ALLOW_RELATIVE,
5495 URL_DONT_SIMPLIFY,S_OK,FALSE,
5497 {"http://google.com:80/test/../test/.././testing",S_OK},
5498 {"google.com",S_OK},
5499 {"http://google.com:80/test/../test/.././testing",S_OK},
5500 {"google.com",S_OK},
5503 {"google.com",S_OK},
5505 {"/test/../test/.././testing",S_OK},
5506 {"/test/../test/.././testing",S_OK},
5508 {"http://google.com:80/test/../test/.././testing",S_OK},
5514 {Uri_HOST_DNS,S_OK},
5516 {URL_SCHEME_HTTP,S_OK},
5517 {URLZONE_INVALID,E_NOTIMPL}
5520 { "http://winehq.org/test/abc",0,
5521 "testing/abc/../test",Uri_CREATE_ALLOW_RELATIVE,
5524 {"http://winehq.org/test/testing/test",S_OK},
5525 {"winehq.org",S_OK},
5526 {"http://winehq.org/test/testing/test",S_OK},
5527 {"winehq.org",S_OK},
5530 {"winehq.org",S_OK},
5532 {"/test/testing/test",S_OK},
5533 {"/test/testing/test",S_OK},
5535 {"http://winehq.org/test/testing/test",S_OK},
5541 {Uri_HOST_DNS,S_OK},
5543 {URL_SCHEME_HTTP,S_OK},
5544 {URLZONE_INVALID,E_NOTIMPL}
5547 { "http://winehq.org/test/abc",0,
5548 "testing/abc/../test",Uri_CREATE_ALLOW_RELATIVE,
5549 URL_DONT_SIMPLIFY,S_OK,FALSE,
5551 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5552 /* Default port is hidden in the authority. */
5553 {"winehq.org",S_OK},
5554 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5555 {"winehq.org",S_OK},
5558 {"winehq.org",S_OK},
5560 {"/test/testing/abc/../test",S_OK},
5561 {"/test/testing/abc/../test",S_OK},
5563 {"http://winehq.org:80/test/testing/abc/../test",S_OK},
5569 {Uri_HOST_DNS,S_OK},
5571 {URL_SCHEME_HTTP,S_OK},
5572 {URLZONE_INVALID,E_NOTIMPL}
5575 { "http://winehq.org/test?query",0,
5576 "testing",Uri_CREATE_ALLOW_RELATIVE,
5579 {"http://winehq.org/testing",S_OK},
5580 {"winehq.org",S_OK},
5581 {"http://winehq.org/testing",S_OK},
5582 {"winehq.org",S_OK},
5585 {"winehq.org",S_OK},
5590 {"http://winehq.org/testing",S_OK},
5596 {Uri_HOST_DNS,S_OK},
5598 {URL_SCHEME_HTTP,S_OK},
5599 {URLZONE_INVALID,E_NOTIMPL}
5602 { "http://winehq.org/test#frag",0,
5603 "testing",Uri_CREATE_ALLOW_RELATIVE,
5606 {"http://winehq.org/testing",S_OK},
5607 {"winehq.org",S_OK},
5608 {"http://winehq.org/testing",S_OK},
5609 {"winehq.org",S_OK},
5612 {"winehq.org",S_OK},
5617 {"http://winehq.org/testing",S_OK},
5623 {Uri_HOST_DNS,S_OK},
5625 {URL_SCHEME_HTTP,S_OK},
5626 {URLZONE_INVALID,E_NOTIMPL}
5629 { "testing?query#frag",Uri_CREATE_ALLOW_RELATIVE,
5630 "test",Uri_CREATE_ALLOW_RELATIVE,
5650 {Uri_HOST_UNKNOWN,S_OK},
5652 {URL_SCHEME_UNKNOWN,S_OK},
5653 {URLZONE_INVALID,E_NOTIMPL}
5656 { "file:///c:/test/test",0,
5657 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5658 URL_FILE_USE_PATHURL,S_OK,FALSE,
5660 {"file://c:\\testing.mp3",S_OK},
5662 {"file://c:\\testing.mp3",S_OK},
5668 {"c:\\testing.mp3",S_OK},
5669 {"c:\\testing.mp3",S_OK},
5671 {"file://c:\\testing.mp3",S_OK},
5677 {Uri_HOST_UNKNOWN,S_OK},
5679 {URL_SCHEME_FILE,S_OK},
5680 {URLZONE_INVALID,E_NOTIMPL}
5683 { "file:///c:/test/test",0,
5684 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5687 {"file:///c:/testing.mp3",S_OK},
5689 {"file:///c:/testing.mp3",S_OK},
5695 {"/c:/testing.mp3",S_OK},
5696 {"/c:/testing.mp3",S_OK},
5698 {"file:///c:/testing.mp3",S_OK},
5704 {Uri_HOST_UNKNOWN,S_OK},
5706 {URL_SCHEME_FILE,S_OK},
5707 {URLZONE_INVALID,E_NOTIMPL}
5710 { "file://test.com/test/test",0,
5711 "/testing.mp3",Uri_CREATE_ALLOW_RELATIVE,
5712 URL_FILE_USE_PATHURL,S_OK,FALSE,
5714 {"file://\\\\test.com\\testing.mp3",S_OK},
5716 {"file://\\\\test.com\\testing.mp3",S_OK},
5722 {"\\testing.mp3",S_OK},
5723 {"\\testing.mp3",S_OK},
5725 {"file://\\\\test.com\\testing.mp3",S_OK},
5731 {Uri_HOST_DNS,S_OK},
5733 {URL_SCHEME_FILE,S_OK},
5734 {URLZONE_INVALID,E_NOTIMPL}
5737 /* URL_DONT_SIMPLIFY has no effect. */
5738 { "http://google.com/test",0,
5739 "zip://test.com/cool/../cool/test",0,
5740 URL_DONT_SIMPLIFY,S_OK,FALSE,
5742 {"zip://test.com/cool/test",S_OK,FALSE,NULL,"zip://test.com/cool/../cool/test"},
5744 {"zip://test.com/cool/test",S_OK,FALSE,NULL,"zip://test.com/cool/../cool/test"},
5750 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
5751 {"/cool/test",S_OK,FALSE,NULL,"/cool/../cool/test"},
5753 /* The resulting IUri has the same Raw URI as the relative URI (only IE 8).
5754 * On IE 7 it reduces the path in the Raw URI.
5756 {"zip://test.com/cool/../cool/test",S_OK,FALSE,"zip://test.com/cool/test"},
5762 {Uri_HOST_DNS,S_OK},
5764 {URL_SCHEME_UNKNOWN,S_OK},
5765 {URLZONE_INVALID,E_NOTIMPL}
5768 /* FILE_USE_PATHURL has no effect in IE 8, in IE 7 the
5769 * resulting URI is converted into a dos path.
5771 { "http://google.com/test",0,
5772 "file:///c:/test/",0,
5773 URL_FILE_USE_PATHURL,S_OK,FALSE,
5775 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5777 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5783 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5784 {"/c:/test/",S_OK,FALSE,"c:\\test\\"},
5786 {"file:///c:/test/",S_OK,FALSE,"file://c:\\test\\"},
5792 {Uri_HOST_UNKNOWN,S_OK},
5794 {URL_SCHEME_FILE,S_OK},
5795 {URLZONE_INVALID,E_NOTIMPL}
5798 { "http://google.com/test",0,
5799 "http://test.com/test#%30test",0,
5800 URL_DONT_UNESCAPE_EXTRA_INFO,S_OK,FALSE,
5802 {"http://test.com/test#0test",S_OK,FALSE,NULL,"http://test.com/test#%30test"},
5804 {"http://test.com/test#0test",S_OK,FALSE,NULL,"http://test.com/test#%30test"},
5807 {"#0test",S_OK,FALSE,NULL,"#%30test"},
5813 /* IE 7 decodes the %30 to a 0 in the Raw URI. */
5814 {"http://test.com/test#%30test",S_OK,FALSE,"http://test.com/test#0test"},
5820 {Uri_HOST_DNS,S_OK},
5822 {URL_SCHEME_HTTP,S_OK},
5823 {URLZONE_INVALID,E_NOTIMPL}
5826 /* Windows validates the path component from the relative Uri. */
5827 { "http://google.com/test",0,
5828 "/Te%XXst",Uri_CREATE_ALLOW_RELATIVE,
5829 0,E_INVALIDARG,FALSE
5831 /* Windows doesn't validate the query from the relative Uri. */
5832 { "http://google.com/test",0,
5833 "?Tes%XXt",Uri_CREATE_ALLOW_RELATIVE,
5836 {"http://google.com/test?Tes%XXt",S_OK},
5837 {"google.com",S_OK},
5838 {"http://google.com/test?Tes%XXt",S_OK},
5839 {"google.com",S_OK},
5842 {"google.com",S_OK},
5845 {"/test?Tes%XXt",S_OK},
5847 {"http://google.com/test?Tes%XXt",S_OK},
5853 {Uri_HOST_DNS,S_OK},
5855 {URL_SCHEME_HTTP,S_OK},
5856 {URLZONE_INVALID,E_NOTIMPL}
5859 /* Windows doesn't validate the fragment from the relative Uri. */
5860 { "http://google.com/test",0,
5861 "#Tes%XXt",Uri_CREATE_ALLOW_RELATIVE,
5864 {"http://google.com/test#Tes%XXt",S_OK},
5865 {"google.com",S_OK},
5866 {"http://google.com/test#Tes%XXt",S_OK},
5867 {"google.com",S_OK},
5870 {"google.com",S_OK},
5875 {"http://google.com/test#Tes%XXt",S_OK},
5881 {Uri_HOST_DNS,S_OK},
5883 {URL_SCHEME_HTTP,S_OK},
5884 {URLZONE_INVALID,E_NOTIMPL}
5887 /* Creates an IUri which contains an invalid dos path char. */
5888 { "file:///c:/test",0,
5889 "/test<ing",Uri_CREATE_ALLOW_RELATIVE,
5890 URL_FILE_USE_PATHURL,S_OK,FALSE,
5892 {"file://c:\\test<ing",S_OK},
5894 {"file://c:\\test<ing",S_OK},
5900 {"c:\\test<ing",S_OK},
5901 {"c:\\test<ing",S_OK},
5903 {"file://c:\\test<ing",S_OK},
5909 {Uri_HOST_UNKNOWN,S_OK},
5911 {URL_SCHEME_FILE,S_OK},
5912 {URLZONE_INVALID,E_NOTIMPL}
5915 /* Appends the path after the drive letter (if any). */
5916 { "file:///c:/test",0,
5917 "/c:/testing",Uri_CREATE_ALLOW_RELATIVE,
5920 {"file:///c:/c:/testing",S_OK},
5922 {"file:///c:/c:/testing",S_OK},
5928 {"/c:/c:/testing",S_OK},
5929 {"/c:/c:/testing",S_OK},
5931 {"file:///c:/c:/testing",S_OK},
5937 {Uri_HOST_UNKNOWN,S_OK},
5939 {URL_SCHEME_FILE,S_OK},
5940 {URLZONE_INVALID,E_NOTIMPL}
5943 /* A '/' is added if the base URI doesn't have a path and the
5944 * relative URI doesn't contain a path (since the base URI is
5947 { "http://google.com",Uri_CREATE_NO_CANONICALIZE,
5948 "?test",Uri_CREATE_ALLOW_RELATIVE,
5951 {"http://google.com/?test",S_OK},
5952 {"google.com",S_OK},
5953 {"http://google.com/?test",S_OK},
5954 {"google.com",S_OK},
5957 {"google.com",S_OK},
5962 {"http://google.com/?test",S_OK},
5968 {Uri_HOST_DNS,S_OK},
5970 {URL_SCHEME_HTTP,S_OK},
5971 {URLZONE_INVALID,E_NOTIMPL}
5974 { "zip://google.com",Uri_CREATE_NO_CANONICALIZE,
5975 "?test",Uri_CREATE_ALLOW_RELATIVE,
5978 {"zip://google.com/?test",S_OK},
5979 {"google.com",S_OK},
5980 {"zip://google.com/?test",S_OK},
5981 {"google.com",S_OK},
5984 {"google.com",S_OK},
5989 {"zip://google.com/?test",S_OK},
5995 {Uri_HOST_DNS,S_OK},
5997 {URL_SCHEME_UNKNOWN,S_OK},
5998 {URLZONE_INVALID,E_NOTIMPL}
6001 /* No path is appended since the base URI is opaque. */
6003 "?test",Uri_CREATE_ALLOW_RELATIVE,
6023 {Uri_HOST_UNKNOWN,S_OK},
6025 {URL_SCHEME_UNKNOWN,S_OK},
6026 {URLZONE_INVALID,E_NOTIMPL}
6030 "../testing/test",Uri_CREATE_ALLOW_RELATIVE,
6033 {"file:///c:/testing/test",S_OK},
6035 {"file:///c:/testing/test",S_OK},
6041 {"/c:/testing/test",S_OK},
6042 {"/c:/testing/test",S_OK},
6044 {"file:///c:/testing/test",S_OK},
6050 {Uri_HOST_UNKNOWN,S_OK},
6052 {URL_SCHEME_FILE,S_OK},
6053 {URLZONE_INVALID,E_NOTIMPL}
6058 typedef struct _uri_parse_test {
6063 const char *property;
6068 static const uri_parse_test uri_parse_tests[] = {
6069 /* PARSE_CANONICALIZE tests. */
6070 {"zip://google.com/test<|>",0,PARSE_CANONICALIZE,0,"zip://google.com/test<|>",S_OK,FALSE},
6071 {"http://google.com/test<|>",0,PARSE_CANONICALIZE,0,"http://google.com/test%3C%7C%3E",S_OK,FALSE},
6072 {"http://google.com/%30%23%3F",0,PARSE_CANONICALIZE,URL_UNESCAPE,"http://google.com/0#?",S_OK,FALSE},
6073 {"test <|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_ESCAPE_UNSAFE,"test %3C%7C%3E",S_OK,FALSE},
6074 {"test <|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_ESCAPE_SPACES_ONLY,"test%20<|>",S_OK,FALSE},
6075 {"test%20<|>",Uri_CREATE_ALLOW_RELATIVE,PARSE_CANONICALIZE,URL_UNESCAPE|URL_ESCAPE_UNSAFE,"test%20%3C%7C%3E",S_OK,FALSE},
6076 {"http://google.com/%20",0,PARSE_CANONICALIZE,URL_ESCAPE_PERCENT,"http://google.com/%2520",S_OK,FALSE},
6077 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_DONT_SIMPLIFY,"http://google.com/test/../",S_OK,FALSE},
6078 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_NO_META,"http://google.com/test/../",S_OK,FALSE},
6079 {"http://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,0,"http://google.com/",S_OK,FALSE},
6080 {"zip://google.com/test/../",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,0,"zip://google.com/",S_OK,FALSE},
6081 {"file:///c:/test/../test",Uri_CREATE_NO_CANONICALIZE,PARSE_CANONICALIZE,URL_DONT_SIMPLIFY,"file:///c:/test/../test",S_OK,FALSE},
6083 /* PARSE_FRIENDLY tests. */
6084 {"http://test@google.com/test#test",0,PARSE_FRIENDLY,0,"http://google.com/test#test",S_OK,FALSE},
6085 {"zip://test@google.com/test",0,PARSE_FRIENDLY,0,"zip://test@google.com/test",S_OK,FALSE},
6087 /* PARSE_ROOTDOCUMENT tests. */
6088 {"http://google.com:200/test/test",0,PARSE_ROOTDOCUMENT,0,"http://google.com:200/",S_OK,FALSE},
6089 {"http://google.com",Uri_CREATE_NO_CANONICALIZE,PARSE_ROOTDOCUMENT,0,"http://google.com/",S_OK,FALSE},
6090 {"zip://google.com/",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
6091 {"file:///c:/testing/",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
6092 {"file://server/test",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
6093 {"zip:test/test",0,PARSE_ROOTDOCUMENT,0,"",S_OK,FALSE},
6095 /* PARSE_DOCUMENT tests. */
6096 {"http://test@google.com/test?query#frag",0,PARSE_DOCUMENT,0,"http://test@google.com/test?query",S_OK,FALSE},
6097 {"http:testing#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
6098 {"file:///c:/test#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
6099 {"zip://google.com/#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
6100 {"zip:test#frag",0,PARSE_DOCUMENT,0,"",S_OK,FALSE},
6101 {"testing#frag",Uri_CREATE_ALLOW_RELATIVE,PARSE_DOCUMENT,0,"",S_OK,FALSE},
6103 /* PARSE_PATH_FROM_URL tests. */
6104 {"file:///c:/test.mp3",0,PARSE_PATH_FROM_URL,0,"c:\\test.mp3",S_OK,FALSE},
6105 {"file:///c:/t<|>est.mp3",0,PARSE_PATH_FROM_URL,0,"c:\\t<|>est.mp3",S_OK,FALSE},
6106 {"file:///c:/te%XX t/",0,PARSE_PATH_FROM_URL,0,"c:\\te%XX t\\",S_OK,FALSE},
6107 {"file://server/test",0,PARSE_PATH_FROM_URL,0,"\\\\server\\test",S_OK,FALSE},
6108 {"http://google.com/",0,PARSE_PATH_FROM_URL,0,"",E_INVALIDARG,FALSE},
6110 /* PARSE_URL_FROM_PATH tests. */
6111 /* This function almost seems to useless (just returns the absolute uri). */
6112 {"test.com",Uri_CREATE_ALLOW_RELATIVE,PARSE_URL_FROM_PATH,0,"test.com",S_OK,FALSE},
6113 {"/test/test",Uri_CREATE_ALLOW_RELATIVE,PARSE_URL_FROM_PATH,0,"/test/test",S_OK,FALSE},
6114 {"file://c:\\test\\test",Uri_CREATE_FILE_USE_DOS_PATH,PARSE_URL_FROM_PATH,0,"file://c:\\test\\test",S_OK,FALSE},
6115 {"file:c:/test",0,PARSE_URL_FROM_PATH,0,"",S_OK,FALSE},
6116 {"http:google.com/",0,PARSE_URL_FROM_PATH,0,"",S_OK,FALSE},
6118 /* PARSE_SCHEMA tests. */
6119 {"http://google.com/test",0,PARSE_SCHEMA,0,"http",S_OK,FALSE},
6120 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_SCHEMA,0,"",S_OK,FALSE},
6122 /* PARSE_SITE tests. */
6123 {"http://google.uk.com/",0,PARSE_SITE,0,"google.uk.com",S_OK,FALSE},
6124 {"http://google.com.com/",0,PARSE_SITE,0,"google.com.com",S_OK,FALSE},
6125 {"google.com",Uri_CREATE_ALLOW_RELATIVE,PARSE_SITE,0,"",S_OK,FALSE},
6126 {"file://server/test",0,PARSE_SITE,0,"server",S_OK,FALSE},
6128 /* PARSE_DOMAIN tests. */
6129 {"http://google.com.uk/",0,PARSE_DOMAIN,0,"google.com.uk",S_OK,FALSE},
6130 {"http://google.com.com/",0,PARSE_DOMAIN,0,"com.com",S_OK,FALSE},
6131 {"test/test",Uri_CREATE_ALLOW_RELATIVE,PARSE_DOMAIN,0,"",S_OK,FALSE},
6132 {"file://server/test",0,PARSE_DOMAIN,0,"",S_OK,FALSE},
6134 /* PARSE_LOCATION and PARSE_ANCHOR tests. */
6135 {"http://google.com/test#Test",0,PARSE_ANCHOR,0,"#Test",S_OK,FALSE},
6136 {"http://google.com/test#Test",0,PARSE_LOCATION,0,"#Test",S_OK,FALSE},
6137 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_ANCHOR,0,"",S_OK,FALSE},
6138 {"test",Uri_CREATE_ALLOW_RELATIVE,PARSE_LOCATION,0,"",S_OK,FALSE}
6141 static inline LPWSTR a2w(LPCSTR str) {
6145 DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
6146 ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
6147 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
6153 static inline BOOL heap_free(void* mem) {
6154 return HeapFree(GetProcessHeap(), 0, mem);
6157 static inline DWORD strcmp_aw(LPCSTR strA, LPCWSTR strB) {
6158 LPWSTR strAW = a2w(strA);
6159 DWORD ret = lstrcmpW(strAW, strB);
6164 static inline ULONG get_refcnt(IUri *uri) {
6166 return IUri_Release(uri);
6169 static void change_property(IUriBuilder *builder, const uri_builder_property *prop,
6174 valueW = a2w(prop->value);
6175 switch(prop->property) {
6176 case Uri_PROPERTY_FRAGMENT:
6177 hr = IUriBuilder_SetFragment(builder, valueW);
6180 ok(hr == prop->expected,
6181 "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6182 hr, prop->expected, test_index);
6185 ok(hr == prop->expected,
6186 "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6187 hr, prop->expected, test_index);
6190 case Uri_PROPERTY_HOST:
6191 hr = IUriBuilder_SetHost(builder, valueW);
6194 ok(hr == prop->expected,
6195 "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6196 hr, prop->expected, test_index);
6199 ok(hr == prop->expected,
6200 "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6201 hr, prop->expected, test_index);
6204 case Uri_PROPERTY_PASSWORD:
6205 hr = IUriBuilder_SetPassword(builder, valueW);
6208 ok(hr == prop->expected,
6209 "Error: IUriBuilder_SetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6210 hr, prop->expected, test_index);
6213 ok(hr == prop->expected,
6214 "Error: IUriBuilder_SetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6215 hr, prop->expected, test_index);
6218 case Uri_PROPERTY_PATH:
6219 hr = IUriBuilder_SetPath(builder, valueW);
6222 ok(hr == prop->expected,
6223 "Error: IUriBuilder_SetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6224 hr, prop->expected, test_index);
6227 ok(hr == prop->expected,
6228 "Error: IUriBuilder_SetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6229 hr, prop->expected, test_index);
6232 case Uri_PROPERTY_QUERY:
6233 hr = IUriBuilder_SetQuery(builder, valueW);
6236 ok(hr == prop->expected,
6237 "Error: IUriBuilder_SetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6238 hr, prop->expected, test_index);
6241 ok(hr == prop->expected,
6242 "Error: IUriBuilder_SetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6243 hr, prop->expected, test_index);
6246 case Uri_PROPERTY_SCHEME_NAME:
6247 hr = IUriBuilder_SetSchemeName(builder, valueW);
6250 ok(hr == prop->expected,
6251 "Error: IUriBuilder_SetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6252 hr, prop->expected, test_index);
6255 ok(hr == prop->expected,
6256 "Error: IUriBuilder_SetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6257 hr, prop->expected, test_index);
6260 case Uri_PROPERTY_USER_NAME:
6261 hr = IUriBuilder_SetUserName(builder, valueW);
6264 ok(hr == prop->expected,
6265 "Error: IUriBuilder_SetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6266 hr, prop->expected, test_index);
6269 ok(hr == prop->expected,
6270 "Error: IUriBuilder_SetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
6271 hr, prop->expected, test_index);
6275 trace("Unsupported operation for %d on uri_builder_tests[%d].\n", prop->property, test_index);
6282 * Simple tests to make sure the CreateUri function handles invalid flag combinations
6285 static void test_CreateUri_InvalidFlags(void) {
6288 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
6290 IUri *uri = (void*) 0xdeadbeef;
6292 hr = pCreateUri(http_urlW, invalid_flag_tests[i].flags, 0, &uri);
6293 ok(hr == invalid_flag_tests[i].expected, "Error: CreateUri returned 0x%08x, expected 0x%08x, flags=0x%08x\n",
6294 hr, invalid_flag_tests[i].expected, invalid_flag_tests[i].flags);
6295 ok(uri == NULL, "Error: expected the IUri to be NULL, but it was %p instead\n", uri);
6299 static void test_CreateUri_InvalidArgs(void) {
6301 IUri *uri = (void*) 0xdeadbeef;
6303 const WCHAR invalidW[] = {'i','n','v','a','l','i','d',0};
6304 static const WCHAR emptyW[] = {0};
6306 hr = pCreateUri(http_urlW, 0, 0, NULL);
6307 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG);
6309 hr = pCreateUri(NULL, 0, 0, &uri);
6310 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG);
6311 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6313 uri = (void*) 0xdeadbeef;
6314 hr = pCreateUri(invalidW, 0, 0, &uri);
6315 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6316 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6318 uri = (void*) 0xdeadbeef;
6319 hr = pCreateUri(emptyW, 0, 0, &uri);
6320 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6321 ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri);
6324 static void test_CreateUri_InvalidUri(void) {
6327 for(i = 0; i < sizeof(invalid_uri_tests)/sizeof(invalid_uri_tests[0]); ++i) {
6328 invalid_uri test = invalid_uri_tests[i];
6333 uriW = a2w(test.uri);
6334 hr = pCreateUri(uriW, test.flags, 0, &uri);
6337 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x on invalid_uri_tests[%d].\n",
6338 hr, E_INVALIDARG, i);
6341 ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x on invalid_uri_tests[%d].\n",
6342 hr, E_INVALIDARG, i);
6344 if(uri) IUri_Release(uri);
6350 static void test_IUri_GetPropertyBSTR(void) {
6355 /* Make sure GetPropertyBSTR handles invalid args correctly. */
6356 hr = pCreateUri(http_urlW, 0, 0, &uri);
6357 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6359 BSTR received = NULL;
6361 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_RAW_URI, NULL, 0);
6362 ok(hr == E_POINTER, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6364 /* Make sure it handles a invalid Uri_PROPERTY's correctly. */
6365 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_PORT, &received, 0);
6366 ok(hr == S_OK, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6367 ok(received != NULL, "Error: Expected the string not to be NULL.\n");
6368 ok(!SysStringLen(received), "Error: Expected the string to be of len=0 but it was %d instead.\n", SysStringLen(received));
6369 SysFreeString(received);
6371 /* Make sure it handles the ZONE property correctly. */
6373 hr = IUri_GetPropertyBSTR(uri, Uri_PROPERTY_ZONE, &received, 0);
6374 ok(hr == S_FALSE, "Error: GetPropertyBSTR returned 0x%08x, expected 0x%08x.\n", hr, S_FALSE);
6375 ok(received != NULL, "Error: Expected the string not to be NULL.\n");
6376 ok(!SysStringLen(received), "Error: Expected the string to be of len=0 but it was %d instead.\n", SysStringLen(received));
6377 SysFreeString(received);
6379 if(uri) IUri_Release(uri);
6381 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6382 uri_properties test = uri_tests[i];
6386 uriW = a2w(test.uri);
6387 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6388 if(test.create_todo) {
6390 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6391 hr, test.create_expected, i);
6394 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6395 hr, test.create_expected, i);
6401 /* Checks all the string properties of the uri. */
6402 for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) {
6403 BSTR received = NULL;
6404 uri_str_property prop = test.str_props[j];
6406 hr = IUri_GetPropertyBSTR(uri, j, &received, 0);
6409 ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n",
6410 hr, prop.expected, i, j);
6413 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6414 "Expected %s but got %s on uri_tests[%d].str_props[%d].\n",
6415 prop.value, wine_dbgstr_w(received), i, j);
6418 ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n",
6419 hr, prop.expected, i, j);
6420 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6421 "Expected %s but got %s on uri_tests[%d].str_props[%d].\n",
6422 prop.value, wine_dbgstr_w(received), i, j);
6425 SysFreeString(received);
6429 if(uri) IUri_Release(uri);
6435 static void test_IUri_GetPropertyDWORD(void) {
6440 hr = pCreateUri(http_urlW, 0, 0, &uri);
6441 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6443 DWORD received = 0xdeadbeef;
6445 hr = IUri_GetPropertyDWORD(uri, Uri_PROPERTY_DWORD_START, NULL, 0);
6446 ok(hr == E_INVALIDARG, "Error: GetPropertyDWORD returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6448 hr = IUri_GetPropertyDWORD(uri, Uri_PROPERTY_ABSOLUTE_URI, &received, 0);
6449 ok(hr == E_INVALIDARG, "Error: GetPropertyDWORD returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6450 ok(received == 0, "Error: Expected received=%d but instead received=%d.\n", 0, received);
6452 if(uri) IUri_Release(uri);
6454 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6455 uri_properties test = uri_tests[i];
6459 uriW = a2w(test.uri);
6460 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6461 if(test.create_todo) {
6463 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6464 hr, test.create_expected, i);
6467 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n",
6468 hr, test.create_expected, i);
6474 /* Checks all the DWORD properties of the uri. */
6475 for(j = 0; j < sizeof(test.dword_props)/sizeof(test.dword_props[0]); ++j) {
6477 uri_dword_property prop = test.dword_props[j];
6479 hr = IUri_GetPropertyDWORD(uri, j+Uri_PROPERTY_DWORD_START, &received, 0);
6482 ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n",
6483 hr, prop.expected, i, j);
6486 ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n",
6487 prop.value, received, i, j);
6490 ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n",
6491 hr, prop.expected, i, j);
6492 ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n",
6493 prop.value, received, i, j);
6498 if(uri) IUri_Release(uri);
6504 /* Tests all the 'Get*' property functions which deal with strings. */
6505 static void test_IUri_GetStrProperties(void) {
6510 /* Make sure all the 'Get*' string property functions handle invalid args correctly. */
6511 hr = pCreateUri(http_urlW, 0, 0, &uri);
6512 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6514 hr = IUri_GetAbsoluteUri(uri, NULL);
6515 ok(hr == E_POINTER, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6517 hr = IUri_GetAuthority(uri, NULL);
6518 ok(hr == E_POINTER, "Error: GetAuthority returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6520 hr = IUri_GetDisplayUri(uri, NULL);
6521 ok(hr == E_POINTER, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6523 hr = IUri_GetDomain(uri, NULL);
6524 ok(hr == E_POINTER, "Error: GetDomain returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6526 hr = IUri_GetExtension(uri, NULL);
6527 ok(hr == E_POINTER, "Error: GetExtension returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6529 hr = IUri_GetFragment(uri, NULL);
6530 ok(hr == E_POINTER, "Error: GetFragment returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6532 hr = IUri_GetHost(uri, NULL);
6533 ok(hr == E_POINTER, "Error: GetHost returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6535 hr = IUri_GetPassword(uri, NULL);
6536 ok(hr == E_POINTER, "Error: GetPassword returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6538 hr = IUri_GetPath(uri, NULL);
6539 ok(hr == E_POINTER, "Error: GetPath returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6541 hr = IUri_GetPathAndQuery(uri, NULL);
6542 ok(hr == E_POINTER, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6544 hr = IUri_GetQuery(uri, NULL);
6545 ok(hr == E_POINTER, "Error: GetQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6547 hr = IUri_GetRawUri(uri, NULL);
6548 ok(hr == E_POINTER, "Error: GetRawUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6550 hr = IUri_GetSchemeName(uri, NULL);
6551 ok(hr == E_POINTER, "Error: GetSchemeName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6553 hr = IUri_GetUserInfo(uri, NULL);
6554 ok(hr == E_POINTER, "Error: GetUserInfo returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6556 hr = IUri_GetUserName(uri, NULL);
6557 ok(hr == E_POINTER, "Error: GetUserName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
6559 if(uri) IUri_Release(uri);
6561 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6562 uri_properties test = uri_tests[i];
6566 uriW = a2w(test.uri);
6567 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6568 if(test.create_todo) {
6570 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6571 hr, test.create_expected, i);
6574 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6575 hr, test.create_expected, i);
6579 uri_str_property prop;
6580 BSTR received = NULL;
6582 /* GetAbsoluteUri() tests. */
6583 prop = test.str_props[Uri_PROPERTY_ABSOLUTE_URI];
6584 hr = IUri_GetAbsoluteUri(uri, &received);
6587 ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6588 hr, prop.expected, i);
6591 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6592 "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: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6597 hr, prop.expected, i);
6598 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6599 "Error: Expected %s but got %s on uri_tests[%d].\n",
6600 prop.value, wine_dbgstr_w(received), i);
6602 SysFreeString(received);
6605 /* GetAuthority() tests. */
6606 prop = test.str_props[Uri_PROPERTY_AUTHORITY];
6607 hr = IUri_GetAuthority(uri, &received);
6610 ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6611 hr, prop.expected, i);
6614 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6615 prop.value, wine_dbgstr_w(received), i);
6618 ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6619 hr, prop.expected, i);
6620 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6621 prop.value, wine_dbgstr_w(received), i);
6623 SysFreeString(received);
6626 /* GetDisplayUri() tests. */
6627 prop = test.str_props[Uri_PROPERTY_DISPLAY_URI];
6628 hr = IUri_GetDisplayUri(uri, &received);
6631 ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6632 hr, prop.expected, i);
6635 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6636 "Error: Expected %s but got %s on uri_test[%d].\n",
6637 prop.value, wine_dbgstr_w(received), i);
6640 ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6641 hr, prop.expected, i);
6642 ok(!strcmp_aw(prop.value, received) || broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
6643 "Error: Expected %s but got %s on uri_tests[%d].\n",
6644 prop.value, wine_dbgstr_w(received), i);
6646 SysFreeString(received);
6649 /* GetDomain() tests. */
6650 prop = test.str_props[Uri_PROPERTY_DOMAIN];
6651 hr = IUri_GetDomain(uri, &received);
6654 ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6655 hr, prop.expected, i);
6658 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6659 prop.value, wine_dbgstr_w(received), i);
6662 ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6663 hr, prop.expected, i);
6664 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6665 prop.value, wine_dbgstr_w(received), i);
6667 SysFreeString(received);
6670 /* GetExtension() tests. */
6671 prop = test.str_props[Uri_PROPERTY_EXTENSION];
6672 hr = IUri_GetExtension(uri, &received);
6675 ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6676 hr, prop.expected, i);
6679 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6680 prop.value, wine_dbgstr_w(received), i);
6683 ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6684 hr, prop.expected, i);
6685 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6686 prop.value, wine_dbgstr_w(received), i);
6688 SysFreeString(received);
6691 /* GetFragment() tests. */
6692 prop = test.str_props[Uri_PROPERTY_FRAGMENT];
6693 hr = IUri_GetFragment(uri, &received);
6696 ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6697 hr, prop.expected, i);
6700 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6701 prop.value, wine_dbgstr_w(received), i);
6704 ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6705 hr, prop.expected, i);
6706 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6707 prop.value, wine_dbgstr_w(received), i);
6709 SysFreeString(received);
6712 /* GetHost() tests. */
6713 prop = test.str_props[Uri_PROPERTY_HOST];
6714 hr = IUri_GetHost(uri, &received);
6717 ok(hr == prop.expected, "Error: GetHost returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6718 hr, prop.expected, i);
6721 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6722 prop.value, wine_dbgstr_w(received), i);
6725 ok(hr == prop.expected, "Error: GetHost returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6726 hr, prop.expected, i);
6727 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6728 prop.value, wine_dbgstr_w(received), i);
6730 SysFreeString(received);
6733 /* GetPassword() tests. */
6734 prop = test.str_props[Uri_PROPERTY_PASSWORD];
6735 hr = IUri_GetPassword(uri, &received);
6738 ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6739 hr, prop.expected, i);
6742 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6743 prop.value, wine_dbgstr_w(received), i);
6746 ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6747 hr, prop.expected, i);
6748 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6749 prop.value, wine_dbgstr_w(received), i);
6751 SysFreeString(received);
6754 /* GetPath() tests. */
6755 prop = test.str_props[Uri_PROPERTY_PATH];
6756 hr = IUri_GetPath(uri, &received);
6759 ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6760 hr, prop.expected, i);
6763 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6764 prop.value, wine_dbgstr_w(received), i);
6767 ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6768 hr, prop.expected, i);
6769 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6770 prop.value, wine_dbgstr_w(received), i);
6772 SysFreeString(received);
6775 /* GetPathAndQuery() tests. */
6776 prop = test.str_props[Uri_PROPERTY_PATH_AND_QUERY];
6777 hr = IUri_GetPathAndQuery(uri, &received);
6780 ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6781 hr, prop.expected, i);
6784 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6785 prop.value, wine_dbgstr_w(received), i);
6788 ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6789 hr, prop.expected, i);
6790 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6791 prop.value, wine_dbgstr_w(received), i);
6793 SysFreeString(received);
6796 /* GetQuery() tests. */
6797 prop = test.str_props[Uri_PROPERTY_QUERY];
6798 hr = IUri_GetQuery(uri, &received);
6801 ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6802 hr, prop.expected, i);
6805 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6806 prop.value, wine_dbgstr_w(received), i);
6809 ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6810 hr, prop.expected, i);
6811 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6812 prop.value, wine_dbgstr_w(received), i);
6814 SysFreeString(received);
6817 /* GetRawUri() tests. */
6818 prop = test.str_props[Uri_PROPERTY_RAW_URI];
6819 hr = IUri_GetRawUri(uri, &received);
6822 ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6823 hr, prop.expected, i);
6826 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6827 prop.value, wine_dbgstr_w(received), i);
6830 ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6831 hr, prop.expected, i);
6832 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6833 prop.value, wine_dbgstr_w(received), i);
6835 SysFreeString(received);
6838 /* GetSchemeName() tests. */
6839 prop = test.str_props[Uri_PROPERTY_SCHEME_NAME];
6840 hr = IUri_GetSchemeName(uri, &received);
6843 ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6844 hr, prop.expected, i);
6847 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6848 prop.value, wine_dbgstr_w(received), i);
6851 ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6852 hr, prop.expected, i);
6853 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6854 prop.value, wine_dbgstr_w(received), i);
6856 SysFreeString(received);
6859 /* GetUserInfo() tests. */
6860 prop = test.str_props[Uri_PROPERTY_USER_INFO];
6861 hr = IUri_GetUserInfo(uri, &received);
6864 ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6865 hr, prop.expected, i);
6868 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6869 prop.value, wine_dbgstr_w(received), i);
6872 ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6873 hr, prop.expected, i);
6874 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6875 prop.value, wine_dbgstr_w(received), i);
6877 SysFreeString(received);
6880 /* GetUserName() tests. */
6881 prop = test.str_props[Uri_PROPERTY_USER_NAME];
6882 hr = IUri_GetUserName(uri, &received);
6885 ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6886 hr, prop.expected, i);
6889 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6890 prop.value, wine_dbgstr_w(received), i);
6893 ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6894 hr, prop.expected, i);
6895 ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n",
6896 prop.value, wine_dbgstr_w(received), i);
6898 SysFreeString(received);
6901 if(uri) IUri_Release(uri);
6907 static void test_IUri_GetDwordProperties(void) {
6912 /* Make sure all the 'Get*' dword property functions handle invalid args correctly. */
6913 hr = pCreateUri(http_urlW, 0, 0, &uri);
6914 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
6916 hr = IUri_GetHostType(uri, NULL);
6917 ok(hr == E_INVALIDARG, "Error: GetHostType returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6919 hr = IUri_GetPort(uri, NULL);
6920 ok(hr == E_INVALIDARG, "Error: GetPort returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6922 hr = IUri_GetScheme(uri, NULL);
6923 ok(hr == E_INVALIDARG, "Error: GetScheme returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6925 hr = IUri_GetZone(uri, NULL);
6926 ok(hr == E_INVALIDARG, "Error: GetZone returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
6928 if(uri) IUri_Release(uri);
6930 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
6931 uri_properties test = uri_tests[i];
6935 uriW = a2w(test.uri);
6936 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
6937 if(test.create_todo) {
6939 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6940 hr, test.create_expected, i);
6943 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6944 hr, test.create_expected, i);
6948 uri_dword_property prop;
6951 /* Assign an insane value so tests don't accidentally pass when
6954 received = -9999999;
6956 /* GetHostType() tests. */
6957 prop = test.dword_props[Uri_PROPERTY_HOST_TYPE-Uri_PROPERTY_DWORD_START];
6958 hr = IUri_GetHostType(uri, &received);
6961 ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6962 hr, prop.expected, i);
6965 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6968 ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6969 hr, prop.expected, i);
6970 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6972 received = -9999999;
6974 /* GetPort() tests. */
6975 prop = test.dword_props[Uri_PROPERTY_PORT-Uri_PROPERTY_DWORD_START];
6976 hr = IUri_GetPort(uri, &received);
6979 ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6980 hr, prop.expected, i);
6983 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6986 ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6987 hr, prop.expected, i);
6988 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
6990 received = -9999999;
6992 /* GetScheme() tests. */
6993 prop = test.dword_props[Uri_PROPERTY_SCHEME-Uri_PROPERTY_DWORD_START];
6994 hr = IUri_GetScheme(uri, &received);
6997 ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
6998 hr, prop.expected, i);
7001 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
7004 ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
7005 hr, prop.expected, i);
7006 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
7008 received = -9999999;
7010 /* GetZone() tests. */
7011 prop = test.dword_props[Uri_PROPERTY_ZONE-Uri_PROPERTY_DWORD_START];
7012 hr = IUri_GetZone(uri, &received);
7015 ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
7016 hr, prop.expected, i);
7019 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
7022 ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
7023 hr, prop.expected, i);
7024 ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i);
7028 if(uri) IUri_Release(uri);
7034 static void test_IUri_GetPropertyLength(void) {
7039 /* Make sure it handles invalid args correctly. */
7040 hr = pCreateUri(http_urlW, 0, 0, &uri);
7041 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7043 DWORD received = 0xdeadbeef;
7045 hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_STRING_START, NULL, 0);
7046 ok(hr == E_INVALIDARG, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7048 hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_DWORD_START, &received, 0);
7049 ok(hr == E_INVALIDARG, "Error: GetPropertyLength return 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7050 ok(received == 0xdeadbeef, "Error: Expected 0xdeadbeef but got 0x%08x.\n", received);
7052 if(uri) IUri_Release(uri);
7054 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
7055 uri_properties test = uri_tests[i];
7059 uriW = a2w(test.uri);
7060 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
7061 if(test.create_todo) {
7063 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n",
7064 hr, test.create_expected, i);
7067 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_test[%d].\n",
7068 hr, test.create_expected, i);
7074 for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) {
7075 DWORD expectedLen, brokenLen, receivedLen;
7076 uri_str_property prop = test.str_props[j];
7078 expectedLen = lstrlen(prop.value);
7079 brokenLen = lstrlen(prop.broken_value);
7081 /* This won't be necessary once GetPropertyLength is implemented. */
7084 hr = IUri_GetPropertyLength(uri, j, &receivedLen, 0);
7087 ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n",
7088 hr, prop.expected, i, j);
7091 ok(receivedLen == expectedLen || broken(receivedLen == brokenLen),
7092 "Error: Expected a length of %d but got %d on uri_tests[%d].str_props[%d].\n",
7093 expectedLen, receivedLen, i, j);
7096 ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n",
7097 hr, prop.expected, i, j);
7098 ok(receivedLen == expectedLen || broken(receivedLen == brokenLen),
7099 "Error: Expected a length of %d but got %d on uri_tests[%d].str_props[%d].\n",
7100 expectedLen, receivedLen, i, j);
7105 if(uri) IUri_Release(uri);
7111 static DWORD compute_expected_props(uri_properties *test)
7115 for(i=Uri_PROPERTY_STRING_START; i <= Uri_PROPERTY_STRING_LAST; i++) {
7116 if(test->str_props[i-Uri_PROPERTY_STRING_START].expected == S_OK)
7120 for(i=Uri_PROPERTY_DWORD_START; i <= Uri_PROPERTY_DWORD_LAST; i++) {
7121 if(test->dword_props[i-Uri_PROPERTY_DWORD_START].expected == S_OK)
7128 static void test_IUri_GetProperties(void) {
7133 hr = pCreateUri(http_urlW, 0, 0, &uri);
7134 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7136 hr = IUri_GetProperties(uri, NULL);
7137 ok(hr == E_INVALIDARG, "Error: GetProperties returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7139 if(uri) IUri_Release(uri);
7141 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
7142 uri_properties test = uri_tests[i];
7146 uriW = a2w(test.uri);
7147 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
7148 if(test.create_todo) {
7150 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7153 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7157 DWORD received = 0, expected_props;
7160 hr = IUri_GetProperties(uri, &received);
7161 ok(hr == S_OK, "Error: GetProperties returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7163 expected_props = compute_expected_props(&test);
7165 for(j = 0; j <= Uri_PROPERTY_DWORD_LAST; ++j) {
7166 /* (1 << j) converts a Uri_PROPERTY to its corresponding Uri_HAS_* flag mask. */
7167 if(expected_props & (1 << j))
7168 ok(received & (1 << j), "Error: Expected flag for property %d on uri_tests[%d].\n", j, i);
7170 ok(!(received & (1 << j)), "Error: Received flag for property %d when not expected on uri_tests[%d].\n", j, i);
7174 if(uri) IUri_Release(uri);
7180 static void test_IUri_HasProperty(void) {
7185 hr = pCreateUri(http_urlW, 0, 0, &uri);
7186 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7188 hr = IUri_HasProperty(uri, Uri_PROPERTY_RAW_URI, NULL);
7189 ok(hr == E_INVALIDARG, "Error: HasProperty returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7191 if(uri) IUri_Release(uri);
7193 for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) {
7194 uri_properties test = uri_tests[i];
7198 uriW = a2w(test.uri);
7200 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
7201 if(test.create_todo) {
7203 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7206 ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, test.create_expected);
7210 DWORD expected_props, j;
7212 expected_props = compute_expected_props(&test);
7214 for(j = 0; j <= Uri_PROPERTY_DWORD_LAST; ++j) {
7215 /* Assign -1, then explicitly test for TRUE or FALSE later. */
7218 hr = IUri_HasProperty(uri, j, &received);
7219 ok(hr == S_OK, "Error: HasProperty returned 0x%08x, expected 0x%08x for property %d on uri_tests[%d].\n",
7222 if(expected_props & (1 << j)) {
7223 ok(received == TRUE, "Error: Expected to have property %d on uri_tests[%d].\n", j, i);
7225 ok(received == FALSE, "Error: Wasn't expecting to have property %d on uri_tests[%d].\n", j, i);
7230 if(uri) IUri_Release(uri);
7236 static void test_IUri_IsEqual(void) {
7243 /* Make sure IsEqual handles invalid args correctly. */
7244 hrA = pCreateUri(http_urlW, 0, 0, &uriA);
7245 hrB = pCreateUri(http_urlW, 0, 0, &uriB);
7246 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hrA, S_OK);
7247 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hrB, S_OK);
7248 if(SUCCEEDED(hrA) && SUCCEEDED(hrB)) {
7250 hrA = IUri_IsEqual(uriA, NULL, &equal);
7251 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x.\n", hrA, S_OK);
7252 ok(equal == FALSE, "Error: Expected equal to be FALSE, but was %d instead.\n", equal);
7254 hrA = IUri_IsEqual(uriA, uriB, NULL);
7255 ok(hrA == E_POINTER, "Error: IsEqual returned 0x%08x, expected 0x%08x.\n", hrA, E_POINTER);
7257 if(uriA) IUri_Release(uriA);
7258 if(uriB) IUri_Release(uriB);
7260 for(i = 0; i < sizeof(equality_tests)/sizeof(equality_tests[0]); ++i) {
7261 uri_equality test = equality_tests[i];
7262 LPWSTR uriA_W, uriB_W;
7266 uriA_W = a2w(test.a);
7267 uriB_W = a2w(test.b);
7269 hrA = pCreateUri(uriA_W, test.create_flags_a, 0, &uriA);
7270 if(test.create_todo_a) {
7272 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7276 ok(hrA == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].a\n",
7280 hrB = pCreateUri(uriB_W, test.create_flags_b, 0, &uriB);
7281 if(test.create_todo_b) {
7283 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7287 ok(hrB == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on equality_tests[%d].b\n",
7291 if(SUCCEEDED(hrA) && SUCCEEDED(hrB)) {
7294 hrA = IUri_IsEqual(uriA, uriB, &equal);
7297 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x on equality_tests[%d].\n",
7301 ok(equal == test.equal, "Error: Expected the comparison to be %d on equality_tests[%d].\n", test.equal, i);
7304 ok(hrA == S_OK, "Error: IsEqual returned 0x%08x, expected 0x%08x on equality_tests[%d].\n", hrA, S_OK, i);
7305 ok(equal == test.equal, "Error: Expected the comparison to be %d on equality_tests[%d].\n", test.equal, i);
7308 if(uriA) IUri_Release(uriA);
7309 if(uriB) IUri_Release(uriB);
7316 static void test_CreateUriWithFragment_InvalidArgs(void) {
7318 IUri *uri = (void*) 0xdeadbeef;
7319 const WCHAR fragmentW[] = {'#','f','r','a','g','m','e','n','t',0};
7321 hr = pCreateUriWithFragment(NULL, fragmentW, 0, 0, &uri);
7322 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7323 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7325 hr = pCreateUriWithFragment(http_urlW, fragmentW, 0, 0, NULL);
7326 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7328 /* Original URI can't already contain a fragment component. */
7329 uri = (void*) 0xdeadbeef;
7330 hr = pCreateUriWithFragment(http_url_fragW, fragmentW, 0, 0, &uri);
7331 ok(hr == E_INVALIDARG, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
7332 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7335 /* CreateUriWithFragment has the same invalid flag combinations as CreateUri. */
7336 static void test_CreateUriWithFragment_InvalidFlags(void) {
7339 for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) {
7341 IUri *uri = (void*) 0xdeadbeef;
7343 hr = pCreateUriWithFragment(http_urlW, NULL, invalid_flag_tests[i].flags, 0, &uri);
7344 ok(hr == invalid_flag_tests[i].expected, "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x. flags=0x%08x.\n",
7345 hr, invalid_flag_tests[i].expected, invalid_flag_tests[i].flags);
7346 ok(uri == NULL, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7350 static void test_CreateUriWithFragment(void) {
7353 for(i = 0; i < sizeof(uri_fragment_tests)/sizeof(uri_fragment_tests[0]); ++i) {
7357 uri_with_fragment test = uri_fragment_tests[i];
7359 uriW = a2w(test.uri);
7360 fragW = a2w(test.fragment);
7362 hr = pCreateUriWithFragment(uriW, fragW, test.create_flags, 0, &uri);
7363 if(test.expected_todo) {
7365 ok(hr == test.create_expected,
7366 "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7367 hr, test.create_expected, i);
7370 ok(hr == test.create_expected,
7371 "Error: CreateUriWithFragment returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7372 hr, test.create_expected, i);
7375 BSTR received = NULL;
7377 hr = IUri_GetAbsoluteUri(uri, &received);
7378 if(test.expected_todo) {
7381 "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7385 ok(!strcmp_aw(test.expected_uri, received),
7386 "Error: Expected %s but got %s on uri_fragment_tests[%d].\n",
7387 test.expected_uri, wine_dbgstr_w(received), i);
7390 ok(hr == S_OK, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_fragment_tests[%d].\n",
7392 ok(!strcmp_aw(test.expected_uri, received), "Error: Expected %s but got %s on uri_fragment_tests[%d].\n",
7393 test.expected_uri, wine_dbgstr_w(received), i);
7396 SysFreeString(received);
7399 if(uri) IUri_Release(uri);
7405 static void test_CreateIUriBuilder(void) {
7407 IUriBuilder *builder = NULL;
7410 hr = pCreateIUriBuilder(NULL, 0, 0, NULL);
7411 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x\n",
7414 /* CreateIUriBuilder increases the ref count of the IUri it receives. */
7415 hr = pCreateUri(http_urlW, 0, 0, &uri);
7416 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7418 ULONG cur_count, orig_count;
7420 orig_count = get_refcnt(uri);
7421 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
7422 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7423 ok(builder != NULL, "Error: Expecting builder not to be NULL\n");
7425 cur_count = get_refcnt(uri);
7426 ok(cur_count == orig_count+1, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count+1, cur_count);
7428 if(builder) IUriBuilder_Release(builder);
7429 cur_count = get_refcnt(uri);
7430 ok(cur_count == orig_count, "Error: Expected the ref count to be %u, but was %u instead.\n", orig_count, cur_count);
7432 if(uri) IUri_Release(uri);
7435 static void test_IUriBuilder_CreateUri(IUriBuilder *builder, const uri_builder_test *test,
7440 hr = IUriBuilder_CreateUri(builder, test->uri_flags, 0, 0, &uri);
7441 if(test->uri_todo) {
7443 ok(hr == test->uri_hres,
7444 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7445 hr, test->uri_hres, test_index);
7448 ok(hr == test->uri_hres,
7449 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7450 hr, test->uri_hres, test_index);
7456 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7457 uri_builder_str_property prop = test->expected_str_props[i];
7458 BSTR received = NULL;
7460 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7463 ok(hr == prop.result,
7464 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7465 hr, prop.result, test_index, i);
7468 ok(hr == prop.result,
7469 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7470 hr, prop.result, test_index, i);
7475 ok(!strcmp_aw(prop.expected, received),
7476 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7477 prop.expected, wine_dbgstr_w(received), test_index, i);
7480 ok(!strcmp_aw(prop.expected, received),
7481 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7482 prop.expected, wine_dbgstr_w(received), test_index, i);
7485 SysFreeString(received);
7488 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7489 uri_builder_dword_property prop = test->expected_dword_props[i];
7490 DWORD received = -2;
7492 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7495 ok(hr == prop.result,
7496 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7497 hr, prop.result, test_index, i);
7500 ok(hr == prop.result,
7501 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7502 hr, prop.result, test_index, i);
7507 ok(received == prop.expected,
7508 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7509 prop.expected, received, test_index, i);
7512 ok(received == prop.expected,
7513 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7514 prop.expected, received, test_index, i);
7519 if(uri) IUri_Release(uri);
7522 static void test_IUriBuilder_CreateUriSimple(IUriBuilder *builder, const uri_builder_test *test,
7527 hr = IUriBuilder_CreateUriSimple(builder, test->uri_simple_encode_flags, 0, &uri);
7528 if(test->uri_simple_todo) {
7530 ok(hr == test->uri_simple_hres,
7531 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7532 hr, test->uri_simple_hres, test_index);
7535 ok(hr == test->uri_simple_hres,
7536 "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7537 hr, test->uri_simple_hres, test_index);
7543 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7544 uri_builder_str_property prop = test->expected_str_props[i];
7545 BSTR received = NULL;
7547 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7550 ok(hr == prop.result,
7551 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7552 hr, prop.result, test_index, i);
7555 ok(hr == prop.result,
7556 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7557 hr, prop.result, test_index, i);
7562 ok(!strcmp_aw(prop.expected, received),
7563 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7564 prop.expected, wine_dbgstr_w(received), test_index, i);
7567 ok(!strcmp_aw(prop.expected, received),
7568 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7569 prop.expected, wine_dbgstr_w(received), test_index, i);
7572 SysFreeString(received);
7575 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7576 uri_builder_dword_property prop = test->expected_dword_props[i];
7577 DWORD received = -2;
7579 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7582 ok(hr == prop.result,
7583 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7584 hr, prop.result, test_index, i);
7587 ok(hr == prop.result,
7588 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7589 hr, prop.result, test_index, i);
7594 ok(received == prop.expected,
7595 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7596 prop.expected, received, test_index, i);
7599 ok(received == prop.expected,
7600 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7601 prop.expected, received, test_index, i);
7606 if(uri) IUri_Release(uri);
7609 static void test_IUriBuilder_CreateUriWithFlags(IUriBuilder *builder, const uri_builder_test *test,
7614 hr = IUriBuilder_CreateUriWithFlags(builder, test->uri_with_flags, test->uri_with_builder_flags,
7615 test->uri_with_encode_flags, 0, &uri);
7616 if(test->uri_with_todo) {
7618 ok(hr == test->uri_with_hres,
7619 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7620 hr, test->uri_with_hres, test_index);
7623 ok(hr == test->uri_with_hres,
7624 "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7625 hr, test->uri_with_hres, test_index);
7631 for(i = 0; i < sizeof(test->expected_str_props)/sizeof(test->expected_str_props[0]); ++i) {
7632 uri_builder_str_property prop = test->expected_str_props[i];
7633 BSTR received = NULL;
7635 hr = IUri_GetPropertyBSTR(uri, i, &received, 0);
7638 ok(hr == prop.result,
7639 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7640 hr, prop.result, test_index, i);
7643 ok(hr == prop.result,
7644 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_str_props[%d].\n",
7645 hr, prop.result, test_index, i);
7650 ok(!strcmp_aw(prop.expected, received),
7651 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7652 prop.expected, wine_dbgstr_w(received), test_index, i);
7655 ok(!strcmp_aw(prop.expected, received),
7656 "Error: Expected %s but got %s instead on uri_builder_tests[%d].expected_str_props[%d].\n",
7657 prop.expected, wine_dbgstr_w(received), test_index, i);
7660 SysFreeString(received);
7663 for(i = 0; i < sizeof(test->expected_dword_props)/sizeof(test->expected_dword_props[0]); ++i) {
7664 uri_builder_dword_property prop = test->expected_dword_props[i];
7665 DWORD received = -2;
7667 hr = IUri_GetPropertyDWORD(uri, i+Uri_PROPERTY_DWORD_START, &received, 0);
7670 ok(hr == prop.result,
7671 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7672 hr, prop.result, test_index, i);
7675 ok(hr == prop.result,
7676 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].expected_dword_props[%d].\n",
7677 hr, prop.result, test_index, i);
7682 ok(received == prop.expected,
7683 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7684 prop.expected, received, test_index, i);
7687 ok(received == prop.expected,
7688 "Error: Expected %d but got %d instead on uri_builder_tests[%d].expected_dword_props[%d].\n",
7689 prop.expected, received, test_index, i);
7694 if(uri) IUri_Release(uri);
7697 static void test_IUriBuilder_CreateInvalidArgs(void) {
7698 IUriBuilder *builder;
7701 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7702 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7704 IUri *test = NULL, *uri = (void*) 0xdeadbeef;
7706 /* Test what happens if the IUriBuilder doesn't have a IUri set. */
7707 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, NULL);
7708 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER);
7710 uri = (void*) 0xdeadbeef;
7711 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7712 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, E_NOTIMPL);
7713 ok(uri == NULL, "Error: expected uri to be NULL, but was %p instead.\n", uri);
7715 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, NULL);
7716 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7719 uri = (void*) 0xdeadbeef;
7720 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7721 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7723 ok(!uri, "Error: Expected uri to NULL, but was %p instead.\n", uri);
7725 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, NULL);
7726 ok(hr == E_POINTER, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7729 uri = (void*) 0xdeadbeef;
7730 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7731 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7733 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7735 hr = pCreateUri(http_urlW, 0, 0, &test);
7736 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7738 hr = IUriBuilder_SetIUri(builder, test);
7739 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7741 /* No longer returns E_NOTIMPL, since a IUri has been set and hasn't been modified. */
7743 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7744 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7745 ok(uri != NULL, "Error: The uri was NULL.\n");
7746 if(uri) IUri_Release(uri);
7749 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7750 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7752 ok(uri != NULL, "Error: uri was NULL.\n");
7753 if(uri) IUri_Release(uri);
7756 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &uri);
7757 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7759 ok(uri != NULL, "Error: uri was NULL.\n");
7760 if(uri) IUri_Release(uri);
7762 hr = IUriBuilder_SetFragment(builder, NULL);
7763 ok(hr == S_OK, "Error: IUriBuilder_SetFragment returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7765 /* The IUriBuilder is changed, so it returns E_NOTIMPL again. */
7766 uri = (void*) 0xdeadbeef;
7767 hr = IUriBuilder_CreateUri(builder, 0, Uri_HAS_USER_NAME, 0, &uri);
7768 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7769 ok(!uri, "Error: Expected uri to be NULL but was %p instead.\n", uri);
7771 uri = (void*) 0xdeadbeef;
7772 hr = IUriBuilder_CreateUriSimple(builder, Uri_HAS_USER_NAME, 0, &uri);
7773 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n",
7775 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7777 uri = (void*) 0xdeadbeef;
7778 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, Uri_HAS_USER_NAME, 0, &uri);
7779 ok(hr == E_NOTIMPL, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
7781 ok(!uri, "Error: Expected uri to be NULL, but was %p instead.\n", uri);
7783 if(test) IUri_Release(test);
7785 if(builder) IUriBuilder_Release(builder);
7788 /* Tests invalid args to the "Get*" functions. */
7789 static void test_IUriBuilder_GetInvalidArgs(void) {
7790 IUriBuilder *builder = NULL;
7793 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
7794 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
7796 LPCWSTR received = (void*) 0xdeadbeef;
7797 DWORD len = -1, port = -1;
7800 hr = IUriBuilder_GetFragment(builder, NULL, NULL);
7801 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7803 hr = IUriBuilder_GetFragment(builder, NULL, &received);
7804 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7806 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7807 hr = IUriBuilder_GetFragment(builder, &len, NULL);
7808 ok(hr == E_POINTER, "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x.\n",
7810 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7812 hr = IUriBuilder_GetHost(builder, NULL, NULL);
7813 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7815 received = (void*) 0xdeadbeef;
7816 hr = IUriBuilder_GetHost(builder, NULL, &received);
7817 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7819 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7821 hr = IUriBuilder_GetHost(builder, &len, NULL);
7822 ok(hr == E_POINTER, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n",
7824 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7826 hr = IUriBuilder_GetPassword(builder, NULL, NULL);
7827 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7829 received = (void*) 0xdeadbeef;
7830 hr = IUriBuilder_GetPassword(builder, NULL, &received);
7831 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7833 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7835 hr = IUriBuilder_GetPassword(builder, &len, NULL);
7836 ok(hr == E_POINTER, "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x.\n",
7838 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7840 hr = IUriBuilder_GetPath(builder, NULL, NULL);
7841 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7843 received = (void*) 0xdeadbeef;
7844 hr = IUriBuilder_GetPath(builder, NULL, &received);
7845 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7847 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7849 hr = IUriBuilder_GetPath(builder, &len, NULL);
7850 ok(hr == E_POINTER, "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x.\n",
7852 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7854 hr = IUriBuilder_GetPort(builder, NULL, NULL);
7855 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7857 hr = IUriBuilder_GetPort(builder, NULL, &port);
7858 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7860 ok(!port, "Error: Expected port to be 0, but was %d instead.\n", port);
7861 hr = IUriBuilder_GetPort(builder, &set, NULL);
7862 ok(hr == E_POINTER, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n",
7864 ok(!set, "Error: Expected set to be FALSE, but was %d instead.\n", set);
7866 hr = IUriBuilder_GetQuery(builder, NULL, NULL);
7867 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7869 received = (void*) 0xdeadbeef;
7870 hr = IUriBuilder_GetQuery(builder, NULL, &received);
7871 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7873 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7875 hr = IUriBuilder_GetQuery(builder, &len, NULL);
7876 ok(hr == E_POINTER, "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x.\n",
7878 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7880 hr = IUriBuilder_GetSchemeName(builder, NULL, NULL);
7881 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7883 received = (void*) 0xdeadbeef;
7884 hr = IUriBuilder_GetSchemeName(builder, NULL, &received);
7885 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7887 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7889 hr = IUriBuilder_GetSchemeName(builder, &len, NULL);
7890 ok(hr == E_POINTER, "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x.\n",
7892 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7894 hr = IUriBuilder_GetUserName(builder, NULL, NULL);
7895 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7897 received = (void*) 0xdeadbeef;
7898 hr = IUriBuilder_GetUserName(builder, NULL, &received);
7899 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7901 ok(!received, "Error: Expected received to be NULL, but was %p instead.\n", received);
7903 hr = IUriBuilder_GetUserName(builder, &len, NULL);
7904 ok(hr == E_POINTER, "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x.\n",
7906 ok(!len, "Error: Expected len to be 0, but was %d instead.\n", len);
7908 if(builder) IUriBuilder_Release(builder);
7911 static void test_IUriBuilder_GetFragment(IUriBuilder *builder, const uri_builder_test *test,
7915 LPCWSTR received = NULL;
7917 const uri_builder_property *prop = NULL;
7919 /* Check if the property was set earlier. */
7920 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
7921 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_FRAGMENT)
7922 prop = &(test->properties[i]);
7926 /* Use expected_value unless it's NULL, then use value. */
7927 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
7928 hr = IUriBuilder_GetFragment(builder, &len, &received);
7931 ok(hr == (expected ? S_OK : S_FALSE),
7932 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7933 hr, (expected ? S_OK : S_FALSE), test_index);
7937 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7938 expected, wine_dbgstr_w(received), test_index);
7941 ok(lstrlen(expected) == len,
7942 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7943 lstrlen(expected), len, test_index);
7947 ok(hr == (expected ? S_OK : S_FALSE),
7948 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7949 hr, (expected ? S_OK : S_FALSE), test_index);
7950 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
7951 expected, wine_dbgstr_w(received), test_index);
7952 ok(lstrlen(expected) == len,
7953 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
7954 lstrlen(expected), len, test_index);
7957 /* The property wasn't set earlier, so it should return whatever
7958 * the base IUri contains (if anything).
7961 hr = IUriBuilder_GetIUri(builder, &uri);
7963 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7964 hr, S_OK, test_index);
7967 received = (void*) 0xdeadbeef;
7970 hr = IUriBuilder_GetFragment(builder, &len, &received);
7972 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7973 hr, S_FALSE, test_index);
7975 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
7977 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
7978 received, test_index);
7981 BOOL has_prop = FALSE;
7982 BSTR expected = NULL;
7984 hr = IUri_GetFragment(uri, &expected);
7986 "Error: Expected IUri_GetFragment to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
7988 has_prop = hr == S_OK;
7990 hr = IUriBuilder_GetFragment(builder, &len, &received);
7993 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
7994 hr, S_OK, test_index);
7996 ok(!lstrcmpW(expected, received),
7997 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
7998 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
7999 ok(lstrlenW(expected) == len,
8000 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8001 lstrlenW(expected), len, test_index);
8005 "Error: IUriBuilder_GetFragment returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8006 hr, S_FALSE, test_index);
8008 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8009 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8013 SysFreeString(expected);
8016 if(uri) IUri_Release(uri);
8020 static void test_IUriBuilder_GetHost(IUriBuilder *builder, const uri_builder_test *test,
8024 LPCWSTR received = NULL;
8026 const uri_builder_property *prop = NULL;
8028 /* Check if the property was set earlier. */
8029 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8030 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_HOST)
8031 prop = &(test->properties[i]);
8035 /* Use expected_value unless it's NULL, then use value. */
8036 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8037 hr = IUriBuilder_GetHost(builder, &len, &received);
8040 ok(hr == (expected ? S_OK : S_FALSE),
8041 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8042 hr, (expected ? S_OK : S_FALSE), test_index);
8046 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8047 expected, wine_dbgstr_w(received), test_index);
8050 ok(lstrlen(expected) == len,
8051 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8052 lstrlen(expected), len, test_index);
8056 ok(hr == (expected ? S_OK : S_FALSE),
8057 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8058 hr, (expected ? S_OK : S_FALSE), test_index);
8059 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8060 expected, wine_dbgstr_w(received), test_index);
8061 ok(lstrlen(expected) == len,
8062 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8063 lstrlen(expected), len, test_index);
8066 /* The property wasn't set earlier, so it should return whatever
8067 * the base IUri contains (if anything).
8070 hr = IUriBuilder_GetIUri(builder, &uri);
8072 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8073 hr, S_OK, test_index);
8076 received = (void*) 0xdeadbeef;
8079 hr = IUriBuilder_GetHost(builder, &len, &received);
8081 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8082 hr, S_FALSE, test_index);
8084 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8086 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8087 received, test_index);
8090 BOOL has_prop = FALSE;
8091 BSTR expected = NULL;
8093 hr = IUri_GetHost(uri, &expected);
8095 "Error: Expected IUri_GetHost to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8097 has_prop = hr == S_OK;
8099 hr = IUriBuilder_GetHost(builder, &len, &received);
8102 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8103 hr, S_OK, test_index);
8105 ok(!lstrcmpW(expected, received),
8106 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8107 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8108 ok(lstrlenW(expected) == len,
8109 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8110 lstrlenW(expected), len, test_index);
8114 "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8115 hr, S_FALSE, test_index);
8117 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8118 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8122 SysFreeString(expected);
8125 if(uri) IUri_Release(uri);
8129 static void test_IUriBuilder_GetPassword(IUriBuilder *builder, const uri_builder_test *test,
8133 LPCWSTR received = NULL;
8135 const uri_builder_property *prop = NULL;
8137 /* Check if the property was set earlier. */
8138 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8139 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PASSWORD)
8140 prop = &(test->properties[i]);
8144 /* Use expected_value unless it's NULL, then use value. */
8145 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8146 hr = IUriBuilder_GetPassword(builder, &len, &received);
8149 ok(hr == (expected ? S_OK : S_FALSE),
8150 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8151 hr, (expected ? S_OK : S_FALSE), test_index);
8155 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8156 expected, wine_dbgstr_w(received), test_index);
8159 ok(lstrlen(expected) == len,
8160 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8161 lstrlen(expected), len, test_index);
8165 ok(hr == (expected ? S_OK : S_FALSE),
8166 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8167 hr, (expected ? S_OK : S_FALSE), test_index);
8168 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8169 expected, wine_dbgstr_w(received), test_index);
8170 ok(lstrlen(expected) == len,
8171 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8172 lstrlen(expected), len, test_index);
8175 /* The property wasn't set earlier, so it should return whatever
8176 * the base IUri contains (if anything).
8179 hr = IUriBuilder_GetIUri(builder, &uri);
8181 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8182 hr, S_OK, test_index);
8185 received = (void*) 0xdeadbeef;
8188 hr = IUriBuilder_GetPassword(builder, &len, &received);
8190 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8191 hr, S_FALSE, test_index);
8193 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8195 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8196 received, test_index);
8199 BOOL has_prop = FALSE;
8200 BSTR expected = NULL;
8202 hr = IUri_GetPassword(uri, &expected);
8204 "Error: Expected IUri_GetPassword to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8206 has_prop = hr == S_OK;
8208 hr = IUriBuilder_GetPassword(builder, &len, &received);
8211 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8212 hr, S_OK, test_index);
8214 ok(!lstrcmpW(expected, received),
8215 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8216 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8217 ok(lstrlenW(expected) == len,
8218 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8219 lstrlenW(expected), len, test_index);
8223 "Error: IUriBuilder_GetPassword returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8224 hr, S_FALSE, test_index);
8226 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8227 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8231 SysFreeString(expected);
8234 if(uri) IUri_Release(uri);
8238 static void test_IUriBuilder_GetPath(IUriBuilder *builder, const uri_builder_test *test,
8242 LPCWSTR received = NULL;
8244 const uri_builder_property *prop = NULL;
8246 /* Check if the property was set earlier. */
8247 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8248 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_PATH)
8249 prop = &(test->properties[i]);
8253 /* Use expected_value unless it's NULL, then use value. */
8254 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8255 hr = IUriBuilder_GetPath(builder, &len, &received);
8258 ok(hr == (expected ? S_OK : S_FALSE),
8259 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8260 hr, (expected ? S_OK : S_FALSE), test_index);
8264 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8265 expected, wine_dbgstr_w(received), test_index);
8268 ok(lstrlen(expected) == len,
8269 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8270 lstrlen(expected), len, test_index);
8274 ok(hr == (expected ? S_OK : S_FALSE),
8275 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8276 hr, (expected ? S_OK : S_FALSE), test_index);
8277 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8278 expected, wine_dbgstr_w(received), test_index);
8279 ok(lstrlen(expected) == len,
8280 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8281 lstrlen(expected), len, test_index);
8284 /* The property wasn't set earlier, so it should return whatever
8285 * the base IUri contains (if anything).
8288 hr = IUriBuilder_GetIUri(builder, &uri);
8290 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8291 hr, S_OK, test_index);
8294 received = (void*) 0xdeadbeef;
8297 hr = IUriBuilder_GetPath(builder, &len, &received);
8299 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8300 hr, S_FALSE, test_index);
8302 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8304 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8305 received, test_index);
8308 BOOL has_prop = FALSE;
8309 BSTR expected = NULL;
8311 hr = IUri_GetPath(uri, &expected);
8313 "Error: Expected IUri_GetPath to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8315 has_prop = hr == S_OK;
8317 hr = IUriBuilder_GetPath(builder, &len, &received);
8320 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8321 hr, S_OK, test_index);
8323 ok(!lstrcmpW(expected, received),
8324 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8325 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8326 ok(lstrlenW(expected) == len,
8327 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8328 lstrlenW(expected), len, test_index);
8332 "Error: IUriBuilder_GetPath returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8333 hr, S_FALSE, test_index);
8335 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8336 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8340 SysFreeString(expected);
8343 if(uri) IUri_Release(uri);
8347 static void test_IUriBuilder_GetPort(IUriBuilder *builder, const uri_builder_test *test,
8350 BOOL has_port = FALSE;
8351 DWORD received = -1;
8353 if(test->port_prop.change) {
8354 DWORD expected = test->port_prop.value;
8356 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8357 if(test->port_prop.todo) {
8360 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8361 hr, S_OK, test_index);
8365 ok(has_port == test->port_prop.set,
8366 "Error: Expected has_port to be %d but was %d instead on uri_builder_tests[%d].\n",
8367 test->port_prop.set, has_port, test_index);
8370 ok(received == expected,
8371 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8372 expected, received, test_index);
8377 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8378 hr, S_OK, test_index);
8379 ok(has_port == test->port_prop.set,
8380 "Error: Expected has_port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8381 test->port_prop.set, has_port, test_index);
8382 ok(received == test->port_prop.value,
8383 "Error: Expected port to be %d, but was %d instead on uri_builder_tests[%d].\n",
8384 test->port_prop.value, received, test_index);
8389 hr = IUriBuilder_GetIUri(builder, &uri);
8391 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8392 hr, S_OK, test_index);
8395 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8397 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8398 hr, S_OK, test_index);
8400 ok(has_port == FALSE,
8401 "Error: Expected has_port to be FALSE, but was %d instead on uri_builder_tests[%d].\n",
8402 has_port, test_index);
8403 ok(!received, "Error: Expected received to be 0, but was %d instead on uri_builder_tests[%d].\n",
8404 received, test_index);
8409 hr = IUri_GetPort(uri, &expected);
8411 "Error: Expected IUri_Port to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8414 hr = IUriBuilder_GetPort(builder, &has_port, &received);
8416 "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8417 hr, S_OK, test_index);
8420 "Error: Expected has_port to be FALSE but was TRUE instead on uri_builder_tests[%d].\n",
8422 ok(received == expected,
8423 "Error: Expected received to be %d, but was %d instead on uri_builder_tests[%d].\n",
8424 expected, received, test_index);
8428 if(uri) IUri_Release(uri);
8432 static void test_IUriBuilder_GetQuery(IUriBuilder *builder, const uri_builder_test *test,
8436 LPCWSTR received = NULL;
8438 const uri_builder_property *prop = NULL;
8440 /* Check if the property was set earlier. */
8441 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8442 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_QUERY)
8443 prop = &(test->properties[i]);
8447 /* Use expected_value unless it's NULL, then use value. */
8448 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8449 hr = IUriBuilder_GetQuery(builder, &len, &received);
8452 ok(hr == (expected ? S_OK : S_FALSE),
8453 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8454 hr, (expected ? S_OK : S_FALSE), test_index);
8458 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8459 expected, wine_dbgstr_w(received), test_index);
8462 ok(lstrlen(expected) == len,
8463 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8464 lstrlen(expected), len, test_index);
8468 ok(hr == (expected ? S_OK : S_FALSE),
8469 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8470 hr, (expected ? S_OK : S_FALSE), test_index);
8471 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8472 expected, wine_dbgstr_w(received), test_index);
8473 ok(lstrlen(expected) == len,
8474 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8475 lstrlen(expected), len, test_index);
8478 /* The property wasn't set earlier, so it should return whatever
8479 * the base IUri contains (if anything).
8482 hr = IUriBuilder_GetIUri(builder, &uri);
8484 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8485 hr, S_OK, test_index);
8488 received = (void*) 0xdeadbeef;
8491 hr = IUriBuilder_GetQuery(builder, &len, &received);
8493 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8494 hr, S_FALSE, test_index);
8496 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8498 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8499 received, test_index);
8502 BOOL has_prop = FALSE;
8503 BSTR expected = NULL;
8505 hr = IUri_GetQuery(uri, &expected);
8507 "Error: Expected IUri_GetQuery to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8509 has_prop = hr == S_OK;
8511 hr = IUriBuilder_GetQuery(builder, &len, &received);
8514 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8515 hr, S_OK, test_index);
8517 ok(!lstrcmpW(expected, received),
8518 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8519 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8520 ok(lstrlenW(expected) == len,
8521 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8522 lstrlenW(expected), len, test_index);
8526 "Error: IUriBuilder_GetQuery returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8527 hr, S_FALSE, test_index);
8529 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8530 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8534 SysFreeString(expected);
8537 if(uri) IUri_Release(uri);
8541 static void test_IUriBuilder_GetSchemeName(IUriBuilder *builder, const uri_builder_test *test,
8545 LPCWSTR received = NULL;
8547 const uri_builder_property *prop = NULL;
8549 /* Check if the property was set earlier. */
8550 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8551 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_SCHEME_NAME)
8552 prop = &(test->properties[i]);
8556 /* Use expected_value unless it's NULL, then use value. */
8557 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8558 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8561 ok(hr == (expected ? S_OK : S_FALSE),
8562 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8563 hr, (expected ? S_OK : S_FALSE), test_index);
8567 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8568 expected, wine_dbgstr_w(received), test_index);
8571 ok(lstrlen(expected) == len,
8572 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8573 lstrlen(expected), len, test_index);
8577 ok(hr == (expected ? S_OK : S_FALSE),
8578 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8579 hr, (expected ? S_OK : S_FALSE), test_index);
8580 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8581 expected, wine_dbgstr_w(received), test_index);
8582 ok(lstrlen(expected) == len,
8583 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8584 lstrlen(expected), len, test_index);
8587 /* The property wasn't set earlier, so it should return whatever
8588 * the base IUri contains (if anything).
8591 hr = IUriBuilder_GetIUri(builder, &uri);
8593 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8594 hr, S_OK, test_index);
8597 received = (void*) 0xdeadbeef;
8600 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8602 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8603 hr, S_FALSE, test_index);
8605 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8607 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8608 received, test_index);
8611 BOOL has_prop = FALSE;
8612 BSTR expected = NULL;
8614 hr = IUri_GetSchemeName(uri, &expected);
8616 "Error: Expected IUri_GetSchemeName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8618 has_prop = hr == S_OK;
8620 hr = IUriBuilder_GetSchemeName(builder, &len, &received);
8623 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8624 hr, S_OK, test_index);
8626 ok(!lstrcmpW(expected, received),
8627 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8628 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8629 ok(lstrlenW(expected) == len,
8630 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8631 lstrlenW(expected), len, test_index);
8635 "Error: IUriBuilder_GetSchemeName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8636 hr, S_FALSE, test_index);
8638 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8639 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8643 SysFreeString(expected);
8646 if(uri) IUri_Release(uri);
8650 static void test_IUriBuilder_GetUserName(IUriBuilder *builder, const uri_builder_test *test,
8654 LPCWSTR received = NULL;
8656 const uri_builder_property *prop = NULL;
8658 /* Check if the property was set earlier. */
8659 for(i = 0; i < sizeof(test->properties)/sizeof(test->properties[0]); ++i) {
8660 if(test->properties[i].change && test->properties[i].property == Uri_PROPERTY_USER_NAME)
8661 prop = &(test->properties[i]);
8664 if(prop && prop->value && *prop->value) {
8665 /* Use expected_value unless it's NULL, then use value. */
8666 LPCSTR expected = prop->expected_value ? prop->expected_value : prop->value;
8667 hr = IUriBuilder_GetUserName(builder, &len, &received);
8670 ok(hr == (expected ? S_OK : S_FALSE),
8671 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8672 hr, (expected ? S_OK : S_FALSE), test_index);
8676 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8677 expected, wine_dbgstr_w(received), test_index);
8680 ok(lstrlen(expected) == len,
8681 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8682 lstrlen(expected), len, test_index);
8686 ok(hr == (expected ? S_OK : S_FALSE),
8687 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8688 hr, (expected ? S_OK : S_FALSE), test_index);
8689 ok(!strcmp_aw(expected, received), "Error: Expected %s but got %s on uri_builder_tests[%d].\n",
8690 expected, wine_dbgstr_w(received), test_index);
8691 ok(lstrlen(expected) == len,
8692 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8693 lstrlen(expected), len, test_index);
8696 /* The property wasn't set earlier, so it should return whatever
8697 * the base IUri contains (if anything).
8700 hr = IUriBuilder_GetIUri(builder, &uri);
8702 "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8703 hr, S_OK, test_index);
8706 received = (void*) 0xdeadbeef;
8709 hr = IUriBuilder_GetUserName(builder, &len, &received);
8711 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8712 hr, S_FALSE, test_index);
8714 ok(!len, "Error: Expected len to be 0, but was %d instead on uri_builder_tests[%d].\n",
8716 ok(!received, "Error: Expected received to be NULL, but was %p instead on uri_builder_tests[%d].\n",
8717 received, test_index);
8720 BSTR expected = NULL;
8721 BOOL has_prop = FALSE;
8723 hr = IUri_GetUserName(uri, &expected);
8725 "Error: Expected IUri_GetUserName to succeed, but got 0x%08x instead on uri_builder_tests[%d].\n",
8727 has_prop = hr == S_OK;
8729 hr = IUriBuilder_GetUserName(builder, &len, &received);
8732 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8733 hr, S_OK, test_index);
8735 ok(!lstrcmpW(expected, received),
8736 "Error: Expected %s but got %s instead on uri_builder_tests[%d].\n",
8737 wine_dbgstr_w(expected), wine_dbgstr_w(received), test_index);
8738 ok(lstrlenW(expected) == len,
8739 "Error: Expected the length to be %d, but was %d instead on uri_builder_tests[%d].\n",
8740 lstrlenW(expected), len, test_index);
8744 "Error: IUriBuilder_GetUserName returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8745 hr, S_FALSE, test_index);
8747 ok(!received, "Error: Expected received to be NULL on uri_builder_tests[%d].\n", test_index);
8748 ok(!len, "Error: Expected the length to be 0, but was %d instead on uri_builder_tests[%d].\n",
8752 SysFreeString(expected);
8755 if(uri) IUri_Release(uri);
8759 /* Tests IUriBuilder functions. */
8760 static void test_IUriBuilder(void) {
8762 IUriBuilder *builder;
8765 for(i = 0; i < sizeof(uri_builder_tests)/sizeof(uri_builder_tests[0]); ++i) {
8767 uri_builder_test test = uri_builder_tests[i];
8771 uriW = a2w(test.uri);
8772 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
8773 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8775 if(FAILED(hr)) continue;
8777 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
8778 if(test.create_builder_todo) {
8780 ok(hr == test.create_builder_expected,
8781 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8782 hr, test.create_builder_expected, i);
8785 ok(hr == test.create_builder_expected,
8786 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8787 hr, test.create_builder_expected, i);
8791 BOOL modified = FALSE, received = FALSE;
8793 /* Perform all the string property changes. */
8794 for(j = 0; j < URI_BUILDER_STR_PROPERTY_COUNT; ++j) {
8795 uri_builder_property prop = test.properties[j];
8797 change_property(builder, &prop, i);
8798 if(prop.property != Uri_PROPERTY_SCHEME_NAME &&
8799 prop.property != Uri_PROPERTY_HOST)
8801 else if(prop.value && *prop.value)
8803 else if(prop.value && !*prop.value && prop.property == Uri_PROPERTY_HOST)
8804 /* Host name property can't be NULL, but it can be empty. */
8809 if(test.port_prop.change) {
8810 hr = IUriBuilder_SetPort(builder, test.port_prop.set, test.port_prop.value);
8812 if(test.port_prop.todo) {
8814 ok(hr == test.port_prop.expected,
8815 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8816 hr, test.port_prop.expected, i);
8819 ok(hr == test.port_prop.expected,
8820 "Error: IUriBuilder_SetPort returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8821 hr, test.port_prop.expected, i);
8825 hr = IUriBuilder_HasBeenModified(builder, &received);
8827 "Error IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x on uri_builder_tests[%d].\n",
8830 ok(received == modified,
8831 "Error: Expected received to be %d but was %d instead on uri_builder_tests[%d].\n",
8832 modified, received, i);
8834 /* Test the "Get*" functions. */
8835 test_IUriBuilder_GetFragment(builder, &test, i);
8836 test_IUriBuilder_GetHost(builder, &test, i);
8837 test_IUriBuilder_GetPassword(builder, &test, i);
8838 test_IUriBuilder_GetPath(builder, &test, i);
8839 test_IUriBuilder_GetPort(builder, &test, i);
8840 test_IUriBuilder_GetQuery(builder, &test, i);
8841 test_IUriBuilder_GetSchemeName(builder, &test, i);
8842 test_IUriBuilder_GetUserName(builder, &test, i);
8844 test_IUriBuilder_CreateUri(builder, &test, i);
8845 test_IUriBuilder_CreateUriSimple(builder, &test, i);
8846 test_IUriBuilder_CreateUriWithFlags(builder, &test, i);
8848 if(builder) IUriBuilder_Release(builder);
8849 if(uri) IUri_Release(uri);
8854 static void test_IUriBuilder_HasBeenModified(void) {
8856 IUriBuilder *builder = NULL;
8858 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8859 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8861 static const WCHAR hostW[] = {'g','o','o','g','l','e','.','c','o','m',0};
8865 hr = IUriBuilder_HasBeenModified(builder, NULL);
8866 ok(hr == E_POINTER, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8869 hr = IUriBuilder_SetHost(builder, hostW);
8870 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n",
8873 hr = IUriBuilder_HasBeenModified(builder, &received);
8874 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8877 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8879 hr = pCreateUri(http_urlW, 0, 0, &uri);
8880 ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8885 hr = IUriBuilder_SetIUri(builder, uri);
8886 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n",
8889 hr = IUriBuilder_HasBeenModified(builder, &received);
8890 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8893 ok(received == FALSE, "Error: Expected received to be FALSE.\n");
8895 /* Test what happens with you call SetIUri with the same IUri again. */
8896 hr = IUriBuilder_SetHost(builder, hostW);
8897 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8899 hr = IUriBuilder_HasBeenModified(builder, &received);
8900 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8903 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8905 hr = IUriBuilder_SetIUri(builder, uri);
8906 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8908 /* IUriBuilder already had 'uri' as it's IUri property and so Windows doesn't
8909 * reset any of the changes that were made to the IUriBuilder.
8911 hr = IUriBuilder_HasBeenModified(builder, &received);
8912 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8914 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8916 hr = IUriBuilder_GetHost(builder, &len, &prop);
8917 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8919 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8920 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8921 ok(len == lstrlenW(hostW), "Error: Expected len to be %d, but was %d instead.\n",
8922 lstrlenW(hostW), len);
8925 hr = IUriBuilder_SetIUri(builder, NULL);
8926 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8928 hr = IUriBuilder_SetHost(builder, hostW);
8929 ok(hr == S_OK, "Error: IUriBuilder_SetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8930 hr = IUriBuilder_HasBeenModified(builder, &received);
8931 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8934 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8936 hr = IUriBuilder_SetIUri(builder, NULL);
8937 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%09x.\n", hr, S_OK);
8939 hr = IUriBuilder_HasBeenModified(builder, &received);
8940 ok(hr == S_OK, "Error: IUriBuilder_HasBeenModified returned 0x%08x, expected 0x%08x.\n",
8943 ok(received == TRUE, "Error: Expected received to be TRUE.\n");
8945 hr = IUriBuilder_GetHost(builder, &len, &prop);
8946 ok(hr == S_OK, "Error: IUriBuilder_GetHost returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8948 ok(!lstrcmpW(prop, hostW), "Error: Expected %s but got %s instead.\n",
8949 wine_dbgstr_w(hostW), wine_dbgstr_w(prop));
8950 ok(len == lstrlenW(hostW), "Error: Expected len to %d, but was %d instead.\n",
8951 lstrlenW(hostW), len);
8954 if(uri) IUri_Release(uri);
8956 if(builder) IUriBuilder_Release(builder);
8959 /* Test IUriBuilder {Get,Set}IUri functions. */
8960 static void test_IUriBuilder_IUriProperty(void) {
8961 IUriBuilder *builder = NULL;
8964 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
8965 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8969 hr = IUriBuilder_GetIUri(builder, NULL);
8970 ok(hr == E_POINTER, "Error: IUriBuilder_GetIUri returned 0x%08x, expected 0x%08x.\n",
8973 hr = pCreateUri(http_urlW, 0, 0, &uri);
8976 ULONG cur_count, orig_count;
8978 /* IUriBuilder doesn't clone the IUri, it use the same IUri. */
8979 orig_count = get_refcnt(uri);
8980 hr = IUriBuilder_SetIUri(builder, uri);
8981 cur_count = get_refcnt(uri);
8983 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8984 orig_count+1, cur_count);
8986 hr = IUriBuilder_SetIUri(builder, NULL);
8987 cur_count = get_refcnt(uri);
8989 ok(cur_count == orig_count, "Error: Expected uri ref count to be %d, but was %d instead.\n",
8990 orig_count, cur_count);
8992 /* CreateUri* functions will return back the same IUri if nothing has changed. */
8993 hr = IUriBuilder_SetIUri(builder, uri);
8994 ok(hr == S_OK, "Error: IUriBuilder_SetIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
8995 orig_count = get_refcnt(uri);
8997 hr = IUriBuilder_CreateUri(builder, 0, 0, 0, &test);
8998 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9000 cur_count = get_refcnt(uri);
9001 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9002 orig_count+1, cur_count);
9003 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n",
9006 if(test) IUri_Release(test);
9009 hr = IUriBuilder_CreateUri(builder, -1, 0, 0, &test);
9010 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9012 cur_count = get_refcnt(uri);
9013 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9014 orig_count+1, cur_count);
9015 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
9017 if(test) IUri_Release(test);
9019 /* Doesn't return the same IUri, if the flag combination is different then the one that created
9023 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, &test);
9024 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9026 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
9028 if(test) IUri_Release(test);
9030 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
9031 * explicitly set (because it's a default flags).
9034 hr = IUriBuilder_CreateUri(builder, Uri_CREATE_CANONICALIZE, 0, 0, &test);
9035 ok(hr == S_OK, "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9037 cur_count = get_refcnt(uri);
9038 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9039 orig_count+1, cur_count);
9040 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
9042 if(test) IUri_Release(test);
9045 hr = IUriBuilder_CreateUriSimple(builder, 0, 0, &test);
9046 ok(hr == S_OK, "Error: IUriBuilder_CreateUriSimple returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9048 cur_count = get_refcnt(uri);
9049 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9050 orig_count+1, cur_count);
9051 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
9053 if(test) IUri_Release(test);
9056 hr = IUriBuilder_CreateUriWithFlags(builder, 0, 0, 0, 0, &test);
9057 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n",
9060 cur_count = get_refcnt(uri);
9061 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9062 orig_count+1, cur_count);
9063 ok(test == uri, "Error: Expected test to be %p, but was %p instead.\n", uri, test);
9065 if(test) IUri_Release(test);
9067 /* Doesn't return the same IUri, if the flag combination is different then the one that created
9071 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_ALLOW_RELATIVE, 0, 0, 0, &test);
9072 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9074 ok(test != uri, "Error: Wasn't expecting 'test' to be 'uri'\n");
9076 if(test) IUri_Release(test);
9078 /* Still returns the same IUri, even though the base one wasn't created with CREATE_CANONICALIZE
9079 * explicitly set (because it's a default flags).
9082 hr = IUriBuilder_CreateUriWithFlags(builder, Uri_CREATE_CANONICALIZE, 0, 0, 0, &test);
9083 ok(hr == S_OK, "Error: IUriBuilder_CreateUriWithFlags returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9085 cur_count = get_refcnt(uri);
9086 ok(cur_count == orig_count+1, "Error: Expected uri ref count to be %d, but was %d instead.\n",
9087 orig_count+1, cur_count);
9088 ok(test == uri, "Error: Expected 'test' to be %p, but was %p instead.\n", uri, test);
9090 if(test) IUri_Release(test);
9092 if(uri) IUri_Release(uri);
9094 if(builder) IUriBuilder_Release(builder);
9097 static void test_IUriBuilder_RemoveProperties(void) {
9098 IUriBuilder *builder = NULL;
9102 hr = pCreateIUriBuilder(NULL, 0, 0, &builder);
9103 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9105 /* Properties that can't be removed. */
9106 const DWORD invalid = Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_RAW_URI|Uri_HAS_HOST_TYPE|
9107 Uri_HAS_SCHEME|Uri_HAS_ZONE;
9109 for(i = Uri_PROPERTY_STRING_START; i <= Uri_PROPERTY_DWORD_LAST; ++i) {
9110 hr = IUriBuilder_RemoveProperties(builder, i << 1);
9111 if((i << 1) & invalid) {
9112 ok(hr == E_INVALIDARG,
9113 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
9114 hr, E_INVALIDARG, i);
9117 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x with prop=%d.\n",
9122 /* Also doesn't accept anything that's outside the range of the
9125 hr = IUriBuilder_RemoveProperties(builder, (Uri_PROPERTY_DWORD_LAST+1) << 1);
9126 ok(hr == E_INVALIDARG, "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x.\n",
9129 if(builder) IUriBuilder_Release(builder);
9131 for(i = 0; i < sizeof(uri_builder_remove_tests)/sizeof(uri_builder_remove_tests[0]); ++i) {
9132 uri_builder_remove_test test = uri_builder_remove_tests[i];
9136 uriW = a2w(test.uri);
9137 hr = pCreateUri(uriW, test.create_flags, 0, &uri);
9141 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
9142 if(test.create_builder_todo) {
9144 ok(hr == test.create_builder_expected,
9145 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9146 hr, test.create_builder_expected, i);
9149 ok(hr == test.create_builder_expected,
9150 "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9151 hr, test.create_builder_expected, i);
9154 hr = IUriBuilder_RemoveProperties(builder, test.remove_properties);
9155 if(test.remove_todo) {
9157 ok(hr == test.remove_expected,
9158 "Error: IUriBuilder_RemoveProperties returned 0x%08x, expected 0x%08x on test %d.\n",
9159 hr, test.remove_expected, i);
9162 ok(hr == test.remove_expected,
9163 "Error: IUriBuilder returned 0x%08x, expected 0x%08x on test %d.\n",
9164 hr, test.remove_expected, i);
9167 IUri *result = NULL;
9169 hr = IUriBuilder_CreateUri(builder, test.expected_flags, 0, 0, &result);
9170 if(test.expected_todo) {
9172 ok(hr == test.expected_hres,
9173 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9174 hr, test.expected_hres, i);
9177 ok(hr == test.expected_hres,
9178 "Error: IUriBuilder_CreateUri returned 0x%08x, expected 0x%08x on test %d.\n",
9179 hr, test.expected_hres, i);
9182 BSTR received = NULL;
9184 hr = IUri_GetAbsoluteUri(result, &received);
9185 ok(!strcmp_aw(test.expected_uri, received),
9186 "Error: Expected %s but got %s instead on test %d.\n",
9187 test.expected_uri, wine_dbgstr_w(received), i);
9188 SysFreeString(received);
9190 if(result) IUri_Release(result);
9193 if(builder) IUriBuilder_Release(builder);
9195 if(uri) IUri_Release(uri);
9200 static void test_IUriBuilder_Misc(void) {
9204 hr = pCreateUri(http_urlW, 0, 0, &uri);
9206 IUriBuilder *builder;
9208 hr = pCreateIUriBuilder(uri, 0, 0, &builder);
9209 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9214 hr = IUriBuilder_GetPort(builder, &has, &port);
9215 ok(hr == S_OK, "Error: IUriBuilder_GetPort returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9217 /* 'has' will be set to FALSE, even though uri had a port. */
9218 ok(has == FALSE, "Error: Expected 'has' to be FALSE, was %d instead.\n", has);
9219 /* Still sets 'port' to 80. */
9220 ok(port == 80, "Error: Expected the port to be 80, but, was %d instead.\n", port);
9223 if(builder) IUriBuilder_Release(builder);
9225 if(uri) IUri_Release(uri);
9228 static void test_IUriBuilderFactory(void) {
9231 IUriBuilderFactory *factory;
9232 IUriBuilder *builder;
9234 hr = pCreateUri(http_urlW, 0, 0, &uri);
9235 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9238 hr = IUri_QueryInterface(uri, &IID_IUriBuilderFactory, (void**)&factory);
9239 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x.\n", hr);
9240 ok(factory != NULL, "Error: Expected 'factory' to not be NULL.\n");
9243 builder = (void*) 0xdeadbeef;
9244 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 10, 0, &builder);
9245 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9247 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9249 builder = (void*) 0xdeadbeef;
9250 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 10, &builder);
9251 ok(hr == E_INVALIDARG, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9253 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9255 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, NULL);
9256 ok(hr == E_POINTER, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9260 hr = IUriBuilderFactory_CreateIUriBuilder(factory, 0, 0, &builder);
9261 ok(hr == S_OK, "Error: CreateInitializedIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9264 IUri *tmp = (void*) 0xdeadbeef;
9268 hr = IUriBuilder_GetIUri(builder, &tmp);
9269 ok(hr == S_OK, "Error: GetIUri returned 0x%08x, expected 0x%08x.\n",
9271 ok(!tmp, "Error: Expected 'tmp' to be NULL, but was %p instead.\n", tmp);
9273 hr = IUriBuilder_GetHost(builder, &result_len, &result);
9274 ok(hr == S_FALSE, "Error: GetHost returned 0x%08x, expected 0x%08x.\n",
9277 if(builder) IUriBuilder_Release(builder);
9279 builder = (void*) 0xdeadbeef;
9280 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 10, 0, &builder);
9281 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9283 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9285 builder = (void*) 0xdeadbeef;
9286 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 10, &builder);
9287 ok(hr == E_INVALIDARG, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9289 ok(!builder, "Error: Expected 'builder' to be NULL, but was %p.\n", builder);
9291 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, NULL);
9292 ok(hr == E_POINTER, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9296 hr = IUriBuilderFactory_CreateInitializedIUriBuilder(factory, 0, 0, &builder);
9297 ok(hr == S_OK, "Error: CreateIUriBuilder returned 0x%08x, expected 0x%08x.\n",
9302 hr = IUriBuilder_GetIUri(builder, &tmp);
9303 ok(hr == S_OK, "Error: GetIUri return 0x%08x, expected 0x%08x.\n",
9305 ok(tmp == uri, "Error: Expected tmp to be %p, but was %p.\n", uri, tmp);
9306 if(uri) IUri_Release(uri);
9308 if(builder) IUriBuilder_Release(builder);
9310 if(factory) IUriBuilderFactory_Release(factory);
9312 if(uri) IUri_Release(uri);
9315 static void test_CoInternetCombineIUri(void) {
9317 IUri *base, *relative, *result;
9321 hr = pCreateUri(http_urlW, 0, 0, &base);
9322 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9324 result = (void*) 0xdeadbeef;
9325 hr = pCoInternetCombineIUri(base, NULL, 0, &result, 0);
9326 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9327 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9331 hr = pCreateUri(http_urlW, 0, 0, &relative);
9332 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x.\n", hr);
9334 result = (void*) 0xdeadbeef;
9335 hr = pCoInternetCombineIUri(NULL, relative, 0, &result, 0);
9336 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9337 ok(!result, "Error: Expected 'result' to be NULL, was %p.\n", result);
9340 hr = pCoInternetCombineIUri(base, relative, 0, NULL, 0);
9341 ok(hr == E_INVALIDARG, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG);
9343 if(base) IUri_Release(base);
9344 if(relative) IUri_Release(relative);
9346 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9347 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9349 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9350 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9352 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9354 hr = pCreateUri(relativeW, uri_combine_tests[i].relative_create_flags, 0, &relative);
9355 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, got 0x%08x on uri_combine_tests[%d].\n", hr, i);
9359 hr = pCoInternetCombineIUri(base, relative, uri_combine_tests[i].combine_flags, &result, 0);
9360 if(uri_combine_tests[i].todo) {
9362 ok(hr == uri_combine_tests[i].expected,
9363 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9364 hr, uri_combine_tests[i].expected, i);
9367 ok(hr == uri_combine_tests[i].expected,
9368 "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9369 hr, uri_combine_tests[i]. expected, i);
9374 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9375 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9378 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9381 ok(hr == prop.expected,
9382 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9383 hr, prop.expected, i, j);
9386 ok(!strcmp_aw(prop.value, received) ||
9387 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9388 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9389 prop.value, wine_dbgstr_w(received), i, j);
9392 ok(hr == prop.expected,
9393 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9394 hr, prop.expected, i, j);
9395 ok(!strcmp_aw(prop.value, received) ||
9396 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9397 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9398 prop.value, wine_dbgstr_w(received), i, j);
9400 SysFreeString(received);
9403 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9404 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9407 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9410 ok(hr == prop.expected,
9411 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9412 hr, prop.expected, i, j);
9415 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9416 prop.value, received, i, j);
9419 ok(hr == prop.expected,
9420 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9421 hr, prop.expected, i, j);
9422 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9423 prop.value, received, i, j);
9427 if(result) IUri_Release(result);
9429 if(relative) IUri_Release(relative);
9430 heap_free(relativeW);
9432 if(base) IUri_Release(base);
9437 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
9438 REFIID riid, void **ppv)
9440 ok(0, "unexpected call\n");
9441 return E_NOINTERFACE;
9444 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
9449 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
9454 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
9455 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
9456 DWORD *pcchResult, DWORD dwReserved)
9458 CHECK_EXPECT(ParseUrl);
9459 ok(!lstrcmpW(pwzUrl, parse_urlW), "Error: Expected %s, but got %s instead.\n",
9460 wine_dbgstr_w(parse_urlW), wine_dbgstr_w(pwzUrl));
9461 ok(ParseAction == parse_action, "Error: Expected %d, but got %d.\n", parse_action, ParseAction);
9462 ok(dwParseFlags == parse_flags, "Error: Expected 0x%08x, but got 0x%08x.\n", parse_flags, dwParseFlags);
9463 ok(cchResult == 200, "Error: Got %d.\n", cchResult);
9465 memcpy(pwzResult, parse_resultW, sizeof(parse_resultW));
9466 *pcchResult = lstrlenW(parse_resultW);
9471 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
9472 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
9473 LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
9475 CHECK_EXPECT(CombineUrl);
9476 ok(!lstrcmpW(pwzBaseUrl, combine_baseW), "Error: Expected %s, but got %s instead.\n",
9477 wine_dbgstr_w(combine_baseW), wine_dbgstr_w(pwzBaseUrl));
9478 ok(!lstrcmpW(pwzRelativeUrl, combine_relativeW), "Error: Expected %s, but got %s instead.\n",
9479 wine_dbgstr_w(combine_relativeW), wine_dbgstr_w(pwzRelativeUrl));
9480 ok(dwCombineFlags == (URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO),
9481 "Error: Expected 0, but got 0x%08x.\n", dwCombineFlags);
9482 ok(cchResult == INTERNET_MAX_URL_LENGTH+1, "Error: Got %d.\n", cchResult);
9484 memcpy(pwzResult, combine_resultW, sizeof(combine_resultW));
9485 *pcchResult = lstrlenW(combine_resultW);
9490 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
9491 LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
9493 ok(0, "unexpected call\n");
9497 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
9498 LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
9499 DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
9501 ok(0, "unexpected call\n");
9505 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
9506 InternetProtocolInfo_QueryInterface,
9507 InternetProtocolInfo_AddRef,
9508 InternetProtocolInfo_Release,
9509 InternetProtocolInfo_ParseUrl,
9510 InternetProtocolInfo_CombineUrl,
9511 InternetProtocolInfo_CompareUrl,
9512 InternetProtocolInfo_QueryInfo
9515 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
9517 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
9519 if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
9520 *ppv = &protocol_info;
9524 ok(0, "unexpected call\n");
9525 return E_NOINTERFACE;
9528 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
9533 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
9538 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
9539 REFIID riid, void **ppv)
9541 ok(0, "unexpected call\n");
9545 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
9547 ok(0, "unexpected call\n");
9551 static const IClassFactoryVtbl ClassFactoryVtbl = {
9552 ClassFactory_QueryInterface,
9553 ClassFactory_AddRef,
9554 ClassFactory_Release,
9555 ClassFactory_CreateInstance,
9556 ClassFactory_LockServer
9559 static IClassFactory protocol_cf = { &ClassFactoryVtbl };
9561 static void register_protocols(void)
9563 IInternetSession *session;
9566 hres = pCoInternetGetSession(0, &session, 0);
9567 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
9571 hres = IInternetSession_RegisterNameSpace(session, &protocol_cf, &IID_NULL,
9572 winetestW, 0, NULL, 0);
9573 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
9575 IInternetSession_Release(session);
9578 static void unregister_protocols(void) {
9579 IInternetSession *session;
9582 hr = pCoInternetGetSession(0, &session, 0);
9583 ok(hr == S_OK, "CoInternetGetSession failed: 0x%08x\n", hr);
9587 hr = IInternetSession_UnregisterNameSpace(session, &protocol_cf, winetestW);
9588 ok(hr == S_OK, "UnregisterNameSpace failed: 0x%08x\n", hr);
9590 IInternetSession_Release(session);
9593 static void test_CoInternetCombineIUri_Pluggable(void) {
9597 hr = pCreateUri(combine_baseW, 0, 0, &base);
9598 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9600 IUri *relative = NULL;
9602 hr = pCreateUri(combine_relativeW, Uri_CREATE_ALLOW_RELATIVE, 0, &relative);
9603 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9605 IUri *result = NULL;
9607 SET_EXPECT(CombineUrl);
9609 hr = pCoInternetCombineIUri(base, relative, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9611 ok(hr == S_OK, "Error: CoInternetCombineIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9613 CHECK_CALLED(CombineUrl);
9616 BSTR received = NULL;
9617 hr = IUri_GetAbsoluteUri(result, &received);
9618 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9620 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9621 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9623 SysFreeString(received);
9625 if(result) IUri_Release(result);
9627 if(relative) IUri_Release(relative);
9629 if(base) IUri_Release(base);
9632 static void test_CoInternetCombineUrlEx(void) {
9634 IUri *base, *result;
9638 hr = pCreateUri(http_urlW, 0, 0, &base);
9639 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9641 result = (void*) 0xdeadbeef;
9642 hr = pCoInternetCombineUrlEx(base, NULL, 0, &result, 0);
9643 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9645 ok(!result, "Error: Expected 'result' to be NULL was %p instead.\n", result);
9648 result = (void*) 0xdeadbeef;
9649 hr = pCoInternetCombineUrlEx(NULL, http_urlW, 0, &result, 0);
9650 ok(hr == E_INVALIDARG, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9652 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9654 result = (void*) 0xdeadbeef;
9655 hr = pCoInternetCombineUrlEx(NULL, NULL, 0, &result, 0);
9656 ok(hr == E_UNEXPECTED, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9658 ok(!result, "Error: Expected 'result' to be NULL, but was %p instead.\n", result);
9660 hr = pCoInternetCombineUrlEx(base, http_urlW, 0, NULL, 0);
9661 ok(hr == E_POINTER, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n",
9663 if(base) IUri_Release(base);
9665 for(i = 0; i < sizeof(uri_combine_tests)/sizeof(uri_combine_tests[0]); ++i) {
9666 LPWSTR baseW = a2w(uri_combine_tests[i].base_uri);
9668 hr = pCreateUri(baseW, uri_combine_tests[i].base_create_flags, 0, &base);
9669 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_combine_tests[%d].\n", hr, i);
9671 LPWSTR relativeW = a2w(uri_combine_tests[i].relative_uri);
9673 hr = pCoInternetCombineUrlEx(base, relativeW, uri_combine_tests[i].combine_flags,
9675 if(uri_combine_tests[i].todo) {
9677 ok(hr == uri_combine_tests[i].expected,
9678 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9679 hr, uri_combine_tests[i].expected, i);
9682 ok(hr == uri_combine_tests[i].expected,
9683 "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].\n",
9684 hr, uri_combine_tests[i]. expected, i);
9689 for(j = 0; j < sizeof(uri_combine_tests[i].str_props)/sizeof(uri_combine_tests[i].str_props[0]); ++j) {
9690 uri_combine_str_property prop = uri_combine_tests[i].str_props[j];
9692 LPCSTR value = (prop.value_ex) ? prop.value_ex : prop.value;
9694 hr = IUri_GetPropertyBSTR(result, j, &received, 0);
9697 ok(hr == prop.expected,
9698 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9699 hr, prop.expected, i, j);
9702 ok(!strcmp_aw(value, received) ||
9703 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9704 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9705 value, wine_dbgstr_w(received), i, j);
9708 ok(hr == prop.expected,
9709 "Error: IUri_GetPropertyBSTR returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].str_props[%d].\n",
9710 hr, prop.expected, i, j);
9711 ok(!strcmp_aw(value, received) ||
9712 broken(prop.broken_value && !strcmp_aw(prop.broken_value, received)),
9713 "Error: Expected %s but got %s instead on uri_combine_tests[%d].str_props[%d].\n",
9714 value, wine_dbgstr_w(received), i, j);
9716 SysFreeString(received);
9719 for(j = 0; j < sizeof(uri_combine_tests[i].dword_props)/sizeof(uri_combine_tests[i].dword_props[0]); ++j) {
9720 uri_dword_property prop = uri_combine_tests[i].dword_props[j];
9723 hr = IUri_GetPropertyDWORD(result, j+Uri_PROPERTY_DWORD_START, &received, 0);
9726 ok(hr == prop.expected,
9727 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9728 hr, prop.expected, i, j);
9731 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9732 prop.value, received, i, j);
9735 ok(hr == prop.expected,
9736 "Error: IUri_GetPropertyDWORD returned 0x%08x, expected 0x%08x on uri_combine_tests[%d].dword_props[%d].\n",
9737 hr, prop.expected, i, j);
9738 ok(prop.value == received, "Error: Expected %d, but got %d instead on uri_combine_tests[%d].dword_props[%d].\n",
9739 prop.value, received, i, j);
9743 if(result) IUri_Release(result);
9744 heap_free(relativeW);
9746 if(base) IUri_Release(base);
9751 static void test_CoInternetCombineUrlEx_Pluggable(void) {
9755 hr = pCreateUri(combine_baseW, 0, 0, &base);
9756 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9758 IUri *result = NULL;
9760 SET_EXPECT(CombineUrl);
9762 hr = pCoInternetCombineUrlEx(base, combine_relativeW, URL_DONT_SIMPLIFY|URL_FILE_USE_PATHURL|URL_DONT_UNESCAPE_EXTRA_INFO,
9764 ok(hr == S_OK, "Error: CoInternetCombineUrlEx returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9766 CHECK_CALLED(CombineUrl);
9769 BSTR received = NULL;
9770 hr = IUri_GetAbsoluteUri(result, &received);
9771 ok(hr == S_OK, "Error: Expected S_OK, but got 0x%08x instead.\n", hr);
9773 ok(!lstrcmpW(combine_resultW, received), "Error: Expected %s, but got %s.\n",
9774 wine_dbgstr_w(combine_resultW), wine_dbgstr_w(received));
9776 SysFreeString(received);
9778 if(result) IUri_Release(result);
9780 if(base) IUri_Release(base);
9783 static void test_CoInternetParseIUri_InvalidArgs(void) {
9789 hr = pCoInternetParseIUri(NULL, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9790 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9792 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9794 hr = pCreateUri(http_urlW, 0, 0, &uri);
9795 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x.\n", hr);
9800 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, NULL, 0, &result, 0);
9801 ok(hr == E_INVALIDARG, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9803 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9805 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, NULL, 0);
9806 ok(hr == E_POINTER, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9810 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_URL, 0, tmp, 3, &result, 0);
9811 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x expected 0x%08x.\n",
9813 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9816 hr = pCoInternetParseIUri(uri, PARSE_MIME, 0, tmp, 3, &result, 0);
9817 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9819 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9822 hr = pCoInternetParseIUri(uri, PARSE_SERVER, 0, tmp, 3, &result, 0);
9823 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9825 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9828 hr = pCoInternetParseIUri(uri, PARSE_SECURITY_DOMAIN, 0, tmp, 3, &result, 0);
9829 ok(hr == E_FAIL, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9831 ok(!result, "Error: Expected 'result' to be 0, but was %d.\n", result);
9833 expected_len = lstrlenW(http_urlW);
9835 hr = pCoInternetParseIUri(uri, PARSE_CANONICALIZE, 0, tmp, 3, &result, 0);
9836 ok(hr == STRSAFE_E_INSUFFICIENT_BUFFER,
9837 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n",
9838 hr, STRSAFE_E_INSUFFICIENT_BUFFER);
9839 ok(result == expected_len, "Error: Expected 'result' to be %d, but was %d instead.\n",
9840 expected_len, result);
9842 if(uri) IUri_Release(uri);
9845 static void test_CoInternetParseIUri(void) {
9848 for(i = 0; i < sizeof(uri_parse_tests)/sizeof(uri_parse_tests[0]); ++i) {
9852 uri_parse_test test = uri_parse_tests[i];
9854 uriW = a2w(test.uri);
9855 hr = pCreateUri(uriW, test.uri_flags, 0, &uri);
9856 ok(SUCCEEDED(hr), "Error: CreateUri returned 0x%08x on uri_parse_tests[%d].\n", hr, i);
9858 WCHAR result[INTERNET_MAX_URL_LENGTH+1];
9859 DWORD result_len = -1;
9861 hr = pCoInternetParseIUri(uri, test.action, test.flags, result, INTERNET_MAX_URL_LENGTH+1, &result_len, 0);
9864 ok(hr == test.expected,
9865 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9866 hr, test.expected, i);
9869 ok(hr == test.expected,
9870 "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x on uri_parse_tests[%d].\n",
9871 hr, test.expected, i);
9874 DWORD len = lstrlenA(test.property);
9875 ok(!strcmp_aw(test.property, result),
9876 "Error: Expected %s but got %s instead on uri_parse_tests[%d].\n",
9877 test.property, wine_dbgstr_w(result), i);
9878 ok(len == result_len,
9879 "Error: Expected %d, but got %d instead on uri_parse_tests[%d].\n",
9880 len, result_len, i);
9883 "Error: Expected 'result_len' to be 0, but was %d on uri_parse_tests[%d].\n",
9887 if(uri) IUri_Release(uri);
9892 static void test_CoInternetParseIUri_Pluggable(void) {
9896 hr = pCreateUri(parse_urlW, 0, 0, &uri);
9897 ok(SUCCEEDED(hr), "Error: Expected CreateUri to succeed, but got 0x%08x.\n", hr);
9902 SET_EXPECT(ParseUrl);
9904 parse_action = PARSE_CANONICALIZE;
9905 parse_flags = URL_UNESCAPE|URL_ESCAPE_UNSAFE;
9907 hr = pCoInternetParseIUri(uri, parse_action, parse_flags, result, 200, &result_len, 0);
9908 ok(hr == S_OK, "Error: CoInternetParseIUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK);
9910 CHECK_CALLED(ParseUrl);
9913 ok(result_len == lstrlenW(parse_resultW), "Error: Expected %d, but got %d.\n",
9914 lstrlenW(parse_resultW), result_len);
9915 ok(!lstrcmpW(result, parse_resultW), "Error: Expected %s, but got %s.\n",
9916 wine_dbgstr_w(parse_resultW), wine_dbgstr_w(result));
9919 if(uri) IUri_Release(uri);
9925 hurlmon = GetModuleHandle("urlmon.dll");
9926 pCoInternetGetSession = (void*) GetProcAddress(hurlmon, "CoInternetGetSession");
9927 pCreateUri = (void*) GetProcAddress(hurlmon, "CreateUri");
9928 pCreateUriWithFragment = (void*) GetProcAddress(hurlmon, "CreateUriWithFragment");
9929 pCreateIUriBuilder = (void*) GetProcAddress(hurlmon, "CreateIUriBuilder");
9930 pCoInternetCombineIUri = (void*) GetProcAddress(hurlmon, "CoInternetCombineIUri");
9931 pCoInternetCombineUrlEx = (void*) GetProcAddress(hurlmon, "CoInternetCombineUrlEx");
9932 pCoInternetParseIUri = (void*) GetProcAddress(hurlmon, "CoInternetParseIUri");
9935 win_skip("CreateUri is not present, skipping tests.\n");
9939 trace("test CreateUri invalid flags...\n");
9940 test_CreateUri_InvalidFlags();
9942 trace("test CreateUri invalid args...\n");
9943 test_CreateUri_InvalidArgs();
9945 trace("test CreateUri invalid URIs...\n");
9946 test_CreateUri_InvalidUri();
9948 trace("test IUri_GetPropertyBSTR...\n");
9949 test_IUri_GetPropertyBSTR();
9951 trace("test IUri_GetPropertyDWORD...\n");
9952 test_IUri_GetPropertyDWORD();
9954 trace("test IUri_GetStrProperties...\n");
9955 test_IUri_GetStrProperties();
9957 trace("test IUri_GetDwordProperties...\n");
9958 test_IUri_GetDwordProperties();
9960 trace("test IUri_GetPropertyLength...\n");
9961 test_IUri_GetPropertyLength();
9963 trace("test IUri_GetProperties...\n");
9964 test_IUri_GetProperties();
9966 trace("test IUri_HasProperty...\n");
9967 test_IUri_HasProperty();
9969 trace("test IUri_IsEqual...\n");
9970 test_IUri_IsEqual();
9972 trace("test CreateUriWithFragment invalid args...\n");
9973 test_CreateUriWithFragment_InvalidArgs();
9975 trace("test CreateUriWithFragment invalid flags...\n");
9976 test_CreateUriWithFragment_InvalidFlags();
9978 trace("test CreateUriWithFragment...\n");
9979 test_CreateUriWithFragment();
9981 trace("test CreateIUriBuilder...\n");
9982 test_CreateIUriBuilder();
9984 trace("test IUriBuilder_CreateInvalidArgs...\n");
9985 test_IUriBuilder_CreateInvalidArgs();
9987 trace("test IUriBuilder...\n");
9990 trace("test IUriBuilder_GetInvalidArgs...\n");
9991 test_IUriBuilder_GetInvalidArgs();
9993 trace("test IUriBuilder_HasBeenModified...\n");
9994 test_IUriBuilder_HasBeenModified();
9996 trace("test IUriBuilder_IUriProperty...\n");
9997 test_IUriBuilder_IUriProperty();
9999 trace("test IUriBuilder_RemoveProperties...\n");
10000 test_IUriBuilder_RemoveProperties();
10002 trace("test IUriBuilder miscellaneous...\n");
10003 test_IUriBuilder_Misc();
10005 trace("test IUriBuilderFactory...\n");
10006 test_IUriBuilderFactory();
10008 trace("test CoInternetCombineIUri...\n");
10009 test_CoInternetCombineIUri();
10011 trace("test CoInternetCombineUrlEx...\n");
10012 test_CoInternetCombineUrlEx();
10014 trace("test CoInternetParseIUri Invalid Args...\n");
10015 test_CoInternetParseIUri_InvalidArgs();
10017 trace("test CoInternetParseIUri...\n");
10018 test_CoInternetParseIUri();
10020 register_protocols();
10022 trace("test CoInternetCombineIUri pluggable...\n");
10023 test_CoInternetCombineIUri_Pluggable();
10025 trace("test CoInternetCombineUrlEx Pluggable...\n");
10026 test_CoInternetCombineUrlEx_Pluggable();
10028 trace("test CoInternetParseIUri pluggable...\n");
10029 test_CoInternetParseIUri_Pluggable();
10031 unregister_protocols();