2 * Copyright 2005-2006 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <wine/test.h>
33 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
35 #define DEFINE_EXPECT(func) \
36 static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
38 #define SET_EXPECT(func) \
39 expect_ ## func = TRUE
41 #define CHECK_EXPECT(func) \
43 ok(expect_ ##func, "unexpected call " #func "\n"); \
44 expect_ ## func = FALSE; \
45 called_ ## func = TRUE; \
48 #define CHECK_EXPECT2(func) \
50 ok(expect_ ##func, "unexpected call " #func "\n"); \
51 called_ ## func = TRUE; \
54 #define CHECK_CALLED(func) \
56 ok(called_ ## func, "expected " #func "\n"); \
57 expect_ ## func = called_ ## func = FALSE; \
60 DEFINE_EXPECT(ParseUrl);
61 DEFINE_EXPECT(QI_IInternetProtocolInfo);
62 DEFINE_EXPECT(CreateInstance);
63 DEFINE_EXPECT(unk_Release);
65 static void test_CreateFormatEnum(void)
67 IEnumFORMATETC *fenum = NULL, *fenum2 = NULL;
72 static DVTARGETDEVICE dev = {sizeof(dev),0,0,0,0,{0}};
73 static FORMATETC formatetc[] = {
81 hres = CreateFormatEnumerator(0, formatetc, &fenum);
82 ok(hres == E_FAIL, "CreateFormatEnumerator failed: %08x, expected E_FAIL\n", hres);
83 hres = CreateFormatEnumerator(0, formatetc, NULL);
84 ok(hres == E_INVALIDARG, "CreateFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
85 hres = CreateFormatEnumerator(5, formatetc, NULL);
86 ok(hres == E_INVALIDARG, "CreateFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
89 hres = CreateFormatEnumerator(5, formatetc, &fenum);
90 ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
94 hres = IEnumFORMATETC_Next(fenum, 2, NULL, &ul);
95 ok(hres == E_INVALIDARG, "Next failed: %08x, expected E_INVALIDARG\n", hres);
97 hres = IEnumFORMATETC_Next(fenum, 0, fetc, &ul);
98 ok(hres == S_OK, "Next failed: %08x\n", hres);
99 ok(ul == 0, "ul=%d, expected 0\n", ul);
101 hres = IEnumFORMATETC_Next(fenum, 2, fetc, &ul);
102 ok(hres == S_OK, "Next failed: %08x\n", hres);
103 ok(fetc[0].lindex == 0, "fetc[0].lindex=%d, expected 0\n", fetc[0].lindex);
104 ok(fetc[1].lindex == 1, "fetc[1].lindex=%d, expected 1\n", fetc[1].lindex);
105 ok(fetc[0].ptd == &dev, "fetc[0].ptd=%p, expected %p\n", fetc[0].ptd, &dev);
106 ok(ul == 2, "ul=%d, expected 2\n", ul);
108 hres = IEnumFORMATETC_Skip(fenum, 1);
109 ok(hres == S_OK, "Skip failed: %08x\n", hres);
111 hres = IEnumFORMATETC_Next(fenum, 4, fetc, &ul);
112 ok(hres == S_FALSE, "Next failed: %08x, expected S_FALSE\n", hres);
113 ok(fetc[0].lindex == 3, "fetc[0].lindex=%d, expected 3\n", fetc[0].lindex);
114 ok(fetc[1].lindex == 4, "fetc[1].lindex=%d, expected 4\n", fetc[1].lindex);
115 ok(fetc[0].ptd == NULL, "fetc[0].ptd=%p, expected NULL\n", fetc[0].ptd);
116 ok(ul == 2, "ul=%d, expected 2\n", ul);
118 hres = IEnumFORMATETC_Next(fenum, 4, fetc, &ul);
119 ok(hres == S_FALSE, "Next failed: %08x, expected S_FALSE\n", hres);
120 ok(ul == 0, "ul=%d, expected 0\n", ul);
122 hres = IEnumFORMATETC_Next(fenum, 0, fetc, &ul);
123 ok(hres == S_OK, "Next failed: %08x\n", hres);
124 ok(ul == 0, "ul=%d, expected 0\n", ul);
126 hres = IEnumFORMATETC_Skip(fenum, 3);
127 ok(hres == S_FALSE, "Skip failed: %08x, expected S_FALSE\n", hres);
129 hres = IEnumFORMATETC_Reset(fenum);
130 ok(hres == S_OK, "Reset failed: %08x\n", hres);
132 hres = IEnumFORMATETC_Next(fenum, 5, fetc, NULL);
133 ok(hres == S_OK, "Next failed: %08x\n", hres);
134 ok(fetc[0].lindex == 0, "fetc[0].lindex=%d, expected 0\n", fetc[0].lindex);
136 hres = IEnumFORMATETC_Reset(fenum);
137 ok(hres == S_OK, "Reset failed: %08x\n", hres);
139 hres = IEnumFORMATETC_Skip(fenum, 2);
140 ok(hres == S_OK, "Skip failed: %08x\n", hres);
142 hres = IEnumFORMATETC_Clone(fenum, NULL);
143 ok(hres == E_INVALIDARG, "Clone failed: %08x, expected E_INVALIDARG\n", hres);
145 hres = IEnumFORMATETC_Clone(fenum, &fenum2);
146 ok(hres == S_OK, "Clone failed: %08x\n", hres);
148 if(SUCCEEDED(hres)) {
149 ok(fenum != fenum2, "fenum == fenum2\n");
151 hres = IEnumFORMATETC_Next(fenum2, 2, fetc, &ul);
152 ok(hres == S_OK, "Next failed: %08x\n", hres);
153 ok(fetc[0].lindex == 2, "fetc[0].lindex=%d, expected 2\n", fetc[0].lindex);
155 IEnumFORMATETC_Release(fenum2);
158 hres = IEnumFORMATETC_Next(fenum, 2, fetc, &ul);
159 ok(hres == S_OK, "Next failed: %08x\n", hres);
160 ok(fetc[0].lindex == 2, "fetc[0].lindex=%d, expected 2\n", fetc[0].lindex);
162 hres = IEnumFORMATETC_Skip(fenum, 1);
163 ok(hres == S_OK, "Skip failed: %08x\n", hres);
165 IEnumFORMATETC_Release(fenum);
168 static void test_RegisterFormatEnumerator(void)
170 IBindCtx *bctx = NULL;
171 IEnumFORMATETC *format = NULL, *format2 = NULL;
172 IUnknown *unk = NULL;
175 static FORMATETC formatetc = {0,NULL,0,0,0};
176 static WCHAR wszEnumFORMATETC[] =
177 {'_','E','n','u','m','F','O','R','M','A','T','E','T','C','_',0};
179 CreateBindCtx(0, &bctx);
181 hres = CreateFormatEnumerator(1, &formatetc, &format);
182 ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
186 hres = RegisterFormatEnumerator(NULL, format, 0);
187 ok(hres == E_INVALIDARG,
188 "RegisterFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
189 hres = RegisterFormatEnumerator(bctx, NULL, 0);
190 ok(hres == E_INVALIDARG,
191 "RegisterFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
193 hres = RegisterFormatEnumerator(bctx, format, 0);
194 ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
196 hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
197 ok(hres == S_OK, "GetObjectParam failed: %08x\n", hres);
198 ok(unk == (IUnknown*)format, "unk != format\n");
200 hres = RevokeFormatEnumerator(NULL, format);
201 ok(hres == E_INVALIDARG,
202 "RevokeFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
204 hres = RevokeFormatEnumerator(bctx, format);
205 ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
207 hres = RevokeFormatEnumerator(bctx, format);
208 ok(hres == E_FAIL, "RevokeFormatEnumerator failed: %08x, expected E_FAIL\n", hres);
210 hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
211 ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
213 hres = RegisterFormatEnumerator(bctx, format, 0);
214 ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
216 hres = CreateFormatEnumerator(1, &formatetc, &format2);
217 ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
219 if(SUCCEEDED(hres)) {
220 hres = RevokeFormatEnumerator(bctx, format);
221 ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
223 IEnumFORMATETC_Release(format2);
226 hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
227 ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
229 IEnumFORMATETC_Release(format);
231 hres = RegisterFormatEnumerator(bctx, format, 0);
232 ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
233 hres = RevokeFormatEnumerator(bctx, NULL);
234 ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
235 hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
236 ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
238 IEnumFORMATETC_Release(format);
239 IBindCtx_Release(bctx);
242 static const WCHAR url1[] = {'r','e','s',':','/','/','m','s','h','t','m','l','.','d','l','l',
243 '/','b','l','a','n','k','.','h','t','m',0};
244 static const WCHAR url2[] = {'i','n','d','e','x','.','h','t','m',0};
245 static const WCHAR url3[] = {'f','i','l','e',':','c',':','\\','I','n','d','e','x','.','h','t','m',0};
246 static const WCHAR url4[] = {'f','i','l','e',':','s','o','m','e','%','2','0','f','i','l','e',
247 '%','2','e','j','p','g',0};
248 static const WCHAR url5[] = {'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q',
250 static const WCHAR url6[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
251 static const WCHAR url7[] = {'f','t','p',':','/','/','w','i','n','e','h','q','.','o','r','g','/',
252 'f','i','l','e','.','t','e','s','t',0};
253 static const WCHAR url8[] = {'t','e','s','t',':','1','2','3','a','b','c',0};
256 static const WCHAR url4e[] = {'f','i','l','e',':','s','o','m','e',' ','f','i','l','e',
259 static const WCHAR path3[] = {'c',':','\\','I','n','d','e','x','.','h','t','m',0};
260 static const WCHAR path4[] = {'s','o','m','e',' ','f','i','l','e','.','j','p','g',0};
262 static const WCHAR wszRes[] = {'r','e','s',0};
263 static const WCHAR wszFile[] = {'f','i','l','e',0};
264 static const WCHAR wszHttp[] = {'h','t','t','p',0};
265 static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
266 static const WCHAR wszEmpty[] = {0};
277 static const struct parse_test parse_tests[] = {
278 {url1, S_OK, url1, E_INVALIDARG, NULL, wszRes},
279 {url2, E_FAIL, url2, E_INVALIDARG, NULL, wszEmpty},
280 {url3, E_FAIL, url3, S_OK, path3, wszFile},
281 {url4, E_FAIL, url4e, S_OK, path4, wszFile},
282 {url5, E_FAIL, url5, E_INVALIDARG, NULL, wszHttp},
283 {url6, S_OK, url6, E_INVALIDARG, NULL, wszAbout}
286 static void test_CoInternetParseUrl(void)
292 static WCHAR buf[4096];
294 memset(buf, 0xf0, sizeof(buf));
295 hres = CoInternetParseUrl(parse_tests[0].url, PARSE_SCHEMA, 0, buf,
297 ok(hres == E_POINTER, "schema failed: %08x, expected E_POINTER\n", hres);
299 for(i=0; i < sizeof(parse_tests)/sizeof(parse_tests[0]); i++) {
300 memset(buf, 0xf0, sizeof(buf));
301 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SECURITY_URL, 0, buf,
302 sizeof(buf)/sizeof(WCHAR), &size, 0);
303 ok(hres == parse_tests[i].secur_hres, "[%d] security url failed: %08x, expected %08x\n",
304 i, hres, parse_tests[i].secur_hres);
306 memset(buf, 0xf0, sizeof(buf));
307 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_ENCODE, 0, buf,
308 sizeof(buf)/sizeof(WCHAR), &size, 0);
309 ok(hres == S_OK, "[%d] encoding failed: %08x\n", i, hres);
310 ok(size == lstrlenW(parse_tests[i].encoded_url), "[%d] wrong size\n", i);
311 ok(!lstrcmpW(parse_tests[i].encoded_url, buf), "[%d] wrong encoded url\n", i);
313 memset(buf, 0xf0, sizeof(buf));
314 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_PATH_FROM_URL, 0, buf,
315 sizeof(buf)/sizeof(WCHAR), &size, 0);
316 ok(hres == parse_tests[i].path_hres, "[%d] path failed: %08x, expected %08x\n",
317 i, hres, parse_tests[i].path_hres);
318 if(parse_tests[i].path) {
319 ok(size == lstrlenW(parse_tests[i].path), "[%d] wrong size\n", i);
320 ok(!lstrcmpW(parse_tests[i].path, buf), "[%d] wrong path\n", i);
323 memset(buf, 0xf0, sizeof(buf));
324 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SCHEMA, 0, buf,
325 sizeof(buf)/sizeof(WCHAR), &size, 0);
326 ok(hres == S_OK, "[%d] schema failed: %08x\n", i, hres);
327 ok(size == lstrlenW(parse_tests[i].schema), "[%d] wrong size\n", i);
328 ok(!lstrcmpW(parse_tests[i].schema, buf), "[%d] wrong schema\n", i);
332 static void test_CoInternetCompareUrl(void)
336 hres = CoInternetCompareUrl(url1, url1, 0);
337 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
339 hres = CoInternetCompareUrl(url1, url3, 0);
340 ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres);
342 hres = CoInternetCompareUrl(url3, url1, 0);
343 ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres);
346 static const WCHAR mimeTextHtml[] = {'t','e','x','t','/','h','t','m','l',0};
347 static const WCHAR mimeTextPlain[] = {'t','e','x','t','/','p','l','a','i','n',0};
348 static const WCHAR mimeAppOctetStream[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
349 'o','c','t','e','t','-','s','t','r','e','a','m',0};
350 static const WCHAR mimeImagePjpeg[] = {'i','m','a','g','e','/','p','j','p','e','g',0};
351 static const WCHAR mimeImageGif[] = {'i','m','a','g','e','/','g','i','f',0};
352 static const WCHAR mimeImageBmp[] = {'i','m','a','g','e','/','b','m','p',0};
353 static const WCHAR mimeImageXPng[] = {'i','m','a','g','e','/','x','-','p','n','g',0};
354 static const WCHAR mimeImageTiff[] = {'i','m','a','g','e','/','t','i','f','f',0};
355 static const WCHAR mimeVideoAvi[] = {'v','i','d','e','o','/','a','v','i',0};
356 static const WCHAR mimeVideoMpeg[] = {'v','i','d','e','o','/','m','p','e','g',0};
357 static const WCHAR mimeAppXCompressed[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
358 'x','-','c','o','m','p','r','e','s','s','e','d',0};
359 static const WCHAR mimeAppXZip[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
360 'x','-','z','i','p','-','c','o','m','p','r','e','s','s','e','d',0};
361 static const WCHAR mimeAppXGzip[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
362 'x','-','g','z','i','p','-','c','o','m','p','r','e','s','s','e','d',0};
363 static const WCHAR mimeAppJava[] = {'a','p','p','l','i','c','a','t','i','o','n','/','j','a','v','a',0};
364 static const WCHAR mimeAppPdf[] = {'a','p','p','l','i','c','a','t','i','o','n','/','p','d','f',0};
365 static const WCHAR mimeAppXMSDownload[] =
366 {'a','p','p','l','i','c','a','t','i','o','n','/','x','-','m','s','d','o','w','n','l','o','a','d',0};
368 static const struct {
373 {url1, mimeTextHtml, S_OK},
374 {url2, mimeTextHtml, S_OK},
375 {url3, mimeTextHtml, S_OK},
376 {url4, NULL, E_FAIL},
377 {url5, NULL, __HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)},
378 {url6, NULL, E_FAIL},
379 {url7, NULL, __HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)}
382 static BYTE data1[] = "test data\n";
383 static BYTE data2[] = {31,'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0};
384 static BYTE data3[] = {0,0,0};
385 static BYTE data4[] = {'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0,0};
386 static BYTE data5[] = {0xa,0xa,0xa,'x',32,'x',0};
387 static BYTE data6[] = {0xfa,0xfa,0xfa,0xfa,'\n','\r','\t','x','x','x',1};
388 static BYTE data7[] = "<html>blahblah";
389 static BYTE data8[] = {'t','e','s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
390 static BYTE data9[] = {'t','e',0,'s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
391 static BYTE data10[] = "<HtmL>blahblah";
392 static BYTE data11[] = "blah<HTML>blahblah";
393 static BYTE data12[] = "blah<HTMLblahblah";
394 static BYTE data13[] = "blahHTML>blahblah";
395 static BYTE data14[] = "blah<HTMblahblah";
396 static BYTE data15[] = {0xff,0xd8};
397 static BYTE data16[] = {0xff,0xd8,'h'};
398 static BYTE data17[] = {0,0xff,0xd8};
399 static BYTE data18[] = {0xff,0xd8,'<','h','t','m','l','>'};
400 static BYTE data19[] = {'G','I','F','8','7','a'};
401 static BYTE data20[] = {'G','I','F','8','9','a'};
402 static BYTE data21[] = {'G','I','F','8','7'};
403 static BYTE data22[] = {'G','i','F','8','7','a'};
404 static BYTE data23[] = {'G','i','F','8','8','a'};
405 static BYTE data24[] = {'g','i','f','8','7','a'};
406 static BYTE data25[] = {'G','i','F','8','7','A'};
407 static BYTE data26[] = {'G','i','F','8','7','a','<','h','t','m','l','>'};
408 static BYTE data27[] = {0x30,'G','i','F','8','7','A'};
409 static BYTE data28[] = {0x42,0x4d,0x6e,0x42,0x1c,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x00};
410 static BYTE data29[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x','x'};
411 static BYTE data30[] = {0x42,0x4d,'x','x','x','x',0x00,0x01,0x00,0x00,'x','x','x','x'};
412 static BYTE data31[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'<','h','t','m','l','>'};
413 static BYTE data32[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
414 static BYTE data33[] = {0x00,0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
415 static BYTE data34[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
416 static BYTE data35[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x','x','x','x',0};
417 static BYTE data36[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,'x','x'};
418 static BYTE data37[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'<','h','t','m','l','>'};
419 static BYTE data38[] = {0x00,0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
420 static BYTE data39[] = {0x4d,0x4d,0x00,0x2a};
421 static BYTE data40[] = {0x4d,0x4d,0x00,0x2a,'<','h','t','m','l','>',0};
422 static BYTE data41[] = {0x4d,0x4d,0xff};
423 static BYTE data42[] = {0x4d,0x4d};
424 static BYTE data43[] = {0x00,0x4d,0x4d,0x00};
425 static BYTE data44[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
426 static BYTE data45[] = {'R','I','F','f',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
427 static BYTE data46[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20};
428 static BYTE data47[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x21,0xff};
429 static BYTE data48[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,'<','h','t','m','l','>'};
430 static BYTE data49[] = {'R','I','F','F',0x0f,0x0f,0xf0,0xf0,'A','V','I',0x20,0xf0,0x00};
431 static BYTE data50[] = {0x00,0x00,0x01,0xb3,0xff};
432 static BYTE data51[] = {0x00,0x00,0x01,0xba,0xff};
433 static BYTE data52[] = {0x00,0x00,0x01,0xb8,0xff};
434 static BYTE data53[] = {0x00,0x00,0x01,0xba};
435 static BYTE data54[] = {0x00,0x00,0x01,0xba,'<','h','t','m','l','>'};
436 static BYTE data55[] = {0x1f,0x8b,'x'};
437 static BYTE data56[] = {0x1f};
438 static BYTE data57[] = {0x1f,0x8b,'<','h','t','m','l','>','t','e','s','t',0};
439 static BYTE data58[] = {0x1f,0x8b};
440 static BYTE data59[] = {0x50,0x4b,'x'};
441 static BYTE data60[] = {0x50,0x4b};
442 static BYTE data61[] = {0x50,0x4b,'<','h','t','m','l','>',0};
443 static BYTE data62[] = {0xca,0xfe,0xba,0xbe,'x'};
444 static BYTE data63[] = {0xca,0xfe,0xba,0xbe};
445 static BYTE data64[] = {0xca,0xfe,0xba,0xbe,'<','h','t','m','l','>',0};
446 static BYTE data65[] = {0x25,0x50,0x44,0x46,'x'};
447 static BYTE data66[] = {0x25,0x50,0x44,0x46};
448 static BYTE data67[] = {0x25,0x50,0x44,0x46,'x','<','h','t','m','l','>'};
449 static BYTE data68[] = {'M','Z','x'};
450 static BYTE data69[] = {'M','Z'};
451 static BYTE data70[] = {'M','Z','<','h','t','m','l','>',0xff};
453 static const struct {
458 {data1, sizeof(data1), mimeTextPlain},
459 {data2, sizeof(data2), mimeAppOctetStream},
460 {data3, sizeof(data3), mimeAppOctetStream},
461 {data4, sizeof(data4), mimeAppOctetStream},
462 {data5, sizeof(data5), mimeTextPlain},
463 {data6, sizeof(data6), mimeTextPlain},
464 {data7, sizeof(data7), mimeTextHtml},
465 {data8, sizeof(data8), mimeTextHtml},
466 {data9, sizeof(data9), mimeTextHtml},
467 {data10, sizeof(data10), mimeTextHtml},
468 {data11, sizeof(data11), mimeTextHtml},
469 {data12, sizeof(data12), mimeTextHtml},
470 {data13, sizeof(data13), mimeTextPlain},
471 {data14, sizeof(data14), mimeTextPlain},
472 {data15, sizeof(data15), mimeTextPlain},
473 {data16, sizeof(data16), mimeImagePjpeg},
474 {data17, sizeof(data17), mimeAppOctetStream},
475 {data18, sizeof(data18), mimeTextHtml},
476 {data19, sizeof(data19), mimeImageGif},
477 {data20, sizeof(data20), mimeImageGif},
478 {data21, sizeof(data21), mimeTextPlain},
479 {data22, sizeof(data22), mimeImageGif},
480 {data23, sizeof(data23), mimeTextPlain},
481 {data24, sizeof(data24), mimeImageGif},
482 {data25, sizeof(data25), mimeImageGif},
483 {data26, sizeof(data26), mimeTextHtml},
484 {data27, sizeof(data27), mimeTextPlain},
485 {data28, sizeof(data28), mimeImageBmp},
486 {data29, sizeof(data29), mimeImageBmp},
487 {data30, sizeof(data30), mimeAppOctetStream},
488 {data31, sizeof(data31), mimeTextHtml},
489 {data32, sizeof(data32), mimeAppOctetStream},
490 {data33, sizeof(data33), mimeAppOctetStream},
491 {data34, sizeof(data34), mimeImageXPng},
492 {data35, sizeof(data35), mimeImageXPng},
493 {data36, sizeof(data36), mimeAppOctetStream},
494 {data37, sizeof(data37), mimeTextHtml},
495 {data38, sizeof(data38), mimeAppOctetStream},
496 {data39, sizeof(data39), mimeImageTiff},
497 {data40, sizeof(data40), mimeTextHtml},
498 {data41, sizeof(data41), mimeImageTiff},
499 {data42, sizeof(data42), mimeTextPlain},
500 {data43, sizeof(data43), mimeAppOctetStream},
501 {data44, sizeof(data44), mimeVideoAvi},
502 {data45, sizeof(data45), mimeTextPlain},
503 {data46, sizeof(data46), mimeTextPlain},
504 {data47, sizeof(data47), mimeTextPlain},
505 {data48, sizeof(data48), mimeTextHtml},
506 {data49, sizeof(data49), mimeVideoAvi},
507 {data50, sizeof(data50), mimeVideoMpeg},
508 {data51, sizeof(data51), mimeVideoMpeg},
509 {data52, sizeof(data52), mimeAppOctetStream},
510 {data53, sizeof(data53), mimeAppOctetStream},
511 {data54, sizeof(data54), mimeTextHtml},
512 {data55, sizeof(data55), mimeAppXGzip},
513 {data56, sizeof(data56), mimeTextPlain},
514 {data57, sizeof(data57), mimeTextHtml},
515 {data58, sizeof(data58), mimeAppOctetStream},
516 {data59, sizeof(data59), mimeAppXZip},
517 {data60, sizeof(data60), mimeTextPlain},
518 {data61, sizeof(data61), mimeTextHtml},
519 {data62, sizeof(data62), mimeAppJava},
520 {data63, sizeof(data63), mimeTextPlain},
521 {data64, sizeof(data64), mimeTextHtml},
522 {data65, sizeof(data65), mimeAppPdf},
523 {data66, sizeof(data66), mimeTextPlain},
524 {data67, sizeof(data67), mimeTextHtml},
525 {data68, sizeof(data68), mimeAppXMSDownload},
526 {data69, sizeof(data69), mimeTextPlain},
527 {data70, sizeof(data70), mimeTextHtml}
530 static void test_FindMimeFromData(void)
536 for(i=0; i<sizeof(mime_tests)/sizeof(mime_tests[0]); i++) {
537 mime = (LPWSTR)0xf0f0f0f0;
538 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, NULL, 0, &mime, 0);
539 if(mime_tests[i].mime) {
540 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
541 ok(!lstrcmpW(mime, mime_tests[i].mime), "[%d] wrong mime\n", i);
544 ok(hres == E_FAIL || hres == mime_tests[i].hres,
545 "[%d] FindMimeFromData failed: %08x, expected %08x\n",
546 i, hres, mime_tests[i].hres);
547 ok(mime == (LPWSTR)0xf0f0f0f0, "[%d] mime != 0xf0f0f0f0\n", i);
550 mime = (LPWSTR)0xf0f0f0f0;
551 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeTextPlain, 0, &mime, 0);
552 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
553 ok(!lstrcmpW(mime, mimeTextPlain), "[%d] wrong mime\n", i);
556 mime = (LPWSTR)0xf0f0f0f0;
557 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeAppOctetStream, 0, &mime, 0);
558 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
559 ok(!lstrcmpW(mime, mimeAppOctetStream), "[%d] wrong mime\n", i);
563 for(i=0; i < sizeof(mime_tests2)/sizeof(mime_tests2[0]); i++) {
564 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
566 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
567 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
570 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
571 mimeTextHtml, 0, &mime, 0);
572 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
573 if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime)
574 || !lstrcmpW(mimeTextPlain, mime_tests2[i].mime))
575 ok(!lstrcmpW(mime, mimeTextHtml), "[%d] wrong mime\n", i);
577 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
579 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
580 mimeImagePjpeg, 0, &mime, 0);
581 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
582 if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime) || i == 17)
583 ok(!lstrcmpW(mime, mimeImagePjpeg), "[%d] wrong mime\n", i);
585 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
590 hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), NULL, 0, &mime, 0);
591 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
592 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
595 hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
596 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
597 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
600 hres = FindMimeFromData(NULL, url4, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
601 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
602 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
605 hres = FindMimeFromData(NULL, NULL, NULL, 0, NULL, 0, &mime, 0);
606 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, excepted E_INVALIDARG\n", hres);
608 hres = FindMimeFromData(NULL, NULL, NULL, 0, mimeTextPlain, 0, &mime, 0);
609 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
611 hres = FindMimeFromData(NULL, NULL, data1, 0, NULL, 0, &mime, 0);
612 ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
614 hres = FindMimeFromData(NULL, url1, data1, 0, NULL, 0, &mime, 0);
615 ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
617 hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, &mime, 0);
618 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
619 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
622 hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, NULL, 0);
623 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
626 static const BYTE secid1[] = {'f','i','l','e',':',0,0,0,0};
627 static const BYTE secid4[] ={'f','i','l','e',':',3,0,0,0};
628 static const BYTE secid5[] = {'h','t','t','p',':','w','w','w','.','w','i','n','e','h','q',
629 '.','o','r','g',3,0,0,0};
630 static const BYTE secid6[] = {'a','b','o','u','t',':','b','l','a','n','k',3,0,0,0};
631 static const BYTE secid7[] = {'f','t','p',':','w','i','n','e','h','q','.','o','r','g',
634 static struct secmgr_test {
642 {url1, 0, S_OK, sizeof(secid1), secid1, S_OK},
643 {url2, 100, 0x80041001, 0, NULL, E_INVALIDARG},
644 {url3, 0, S_OK, sizeof(secid1), secid1, S_OK},
645 {url4, 3, S_OK, sizeof(secid4), secid4, S_OK},
646 {url5, 3, S_OK, sizeof(secid5), secid5, S_OK},
647 {url6, 3, S_OK, sizeof(secid6), secid6, S_OK},
648 {url7, 3, S_OK, sizeof(secid7), secid7, S_OK}
651 static void test_SecurityManager(void)
654 IInternetSecurityManager *secmgr = NULL;
659 hres = CoInternetCreateSecurityManager(NULL, &secmgr, 0);
660 ok(hres == S_OK, "CoInternetCreateSecurityManager failed: %08x\n", hres);
664 for(i=0; i < sizeof(secmgr_tests)/sizeof(secmgr_tests[0]); i++) {
666 hres = IInternetSecurityManager_MapUrlToZone(secmgr, secmgr_tests[i].url,
668 ok(hres == secmgr_tests[i].zone_hres,
669 "[%d] MapUrlToZone failed: %08x, expected %08x\n",
670 i, hres, secmgr_tests[i].zone_hres);
672 ok(zone == secmgr_tests[i].zone, "[%d] zone=%d, expected %d\n", i, zone,
673 secmgr_tests[i].zone);
675 ok(zone == secmgr_tests[i].zone || zone == -1, "[%d] zone=%d\n", i, zone);
678 memset(buf, 0xf0, sizeof(buf));
679 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[i].url,
681 ok(hres == secmgr_tests[i].secid_hres,
682 "[%d] GetSecurityId failed: %08x, expected %08x\n",
683 i, hres, secmgr_tests[i].secid_hres);
684 if(secmgr_tests[i].secid) {
685 ok(size == secmgr_tests[i].secid_size, "[%d] size=%d, expected %d\n",
686 i, size, secmgr_tests[i].secid_size);
687 ok(!memcmp(buf, secmgr_tests[i].secid, size), "[%d] wrong secid\n", i);
692 hres = IInternetSecurityManager_MapUrlToZone(secmgr, NULL, &zone, 0);
693 ok(hres == E_INVALIDARG, "MapUrlToZone failed: %08x, expected E_INVALIDARG\n", hres);
694 ok(zone == 100 || zone == -1, "zone=%d\n", zone);
697 hres = IInternetSecurityManager_GetSecurityId(secmgr, NULL, buf, &size, 0);
698 ok(hres == E_INVALIDARG,
699 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
700 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[1].url,
702 ok(hres == E_INVALIDARG,
703 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
704 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[1].url,
706 ok(hres == E_INVALIDARG,
707 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
709 IInternetSecurityManager_Release(secmgr);
712 static void test_ZoneManager(void)
714 IInternetZoneManager *zonemgr = NULL;
718 hres = CoInternetCreateZoneManager(NULL, &zonemgr, 0);
719 ok(hres == S_OK, "CoInternetCreateZoneManager failed: %08x\n", hres);
723 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, buf,
724 sizeof(DWORD), URLZONEREG_DEFAULT);
725 ok(hres == S_OK, "GetZoneActionPolicy failed: %08x\n", hres);
726 ok(*(DWORD*)buf == 1, "policy=%d, expected 1\n", *(DWORD*)buf);
728 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, NULL,
729 sizeof(DWORD), URLZONEREG_DEFAULT);
730 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
732 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, buf,
733 2, URLZONEREG_DEFAULT);
734 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
736 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1fff, buf,
737 sizeof(DWORD), URLZONEREG_DEFAULT);
738 ok(hres == E_FAIL, "GetZoneActionPolicy failed: %08x, expected E_FAIL\n", hres);
740 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 13, 0x1a10, buf,
741 sizeof(DWORD), URLZONEREG_DEFAULT);
742 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
744 IInternetZoneManager_Release(zonemgr);
747 static void register_protocols(void)
749 IInternetSession *session;
750 IClassFactory *factory;
753 static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
755 hres = CoInternetGetSession(0, &session, 0);
756 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
760 hres = CoGetClassObject(&CLSID_AboutProtocol, CLSCTX_INPROC_SERVER, NULL,
761 &IID_IClassFactory, (void**)&factory);
762 ok(hres == S_OK, "Coud not get AboutProtocol factory: %08x\n", hres);
766 IInternetSession_RegisterNameSpace(session, factory, &CLSID_AboutProtocol,
767 wszAbout, 0, NULL, 0);
768 IClassFactory_Release(factory);
770 IInternetSession_Release(session);
773 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
774 REFIID riid, void **ppv)
776 ok(0, "unexpected call\n");
777 return E_NOINTERFACE;
780 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
785 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
790 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
791 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
792 DWORD *pcchResult, DWORD dwReserved)
794 CHECK_EXPECT(ParseUrl);
798 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
799 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
800 LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
802 ok(0, "unexpected call\n");
806 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
807 LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
809 ok(0, "unexpected call\n");
813 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
814 LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
815 DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
817 ok(0, "unexpected call\n");
821 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
822 InternetProtocolInfo_QueryInterface,
823 InternetProtocolInfo_AddRef,
824 InternetProtocolInfo_Release,
825 InternetProtocolInfo_ParseUrl,
826 InternetProtocolInfo_CombineUrl,
827 InternetProtocolInfo_CompareUrl,
828 InternetProtocolInfo_QueryInfo
831 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
833 static HRESULT qiret;
834 static IClassFactory *expect_cf;
836 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
838 if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
839 CHECK_EXPECT(QI_IInternetProtocolInfo);
840 ok(iface == expect_cf, "unexpected iface\n");
841 *ppv = &protocol_info;
845 ok(0, "unexpected call\n");
846 return E_NOINTERFACE;
849 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
854 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
859 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
860 REFIID riid, void **ppv)
862 CHECK_EXPECT(CreateInstance);
864 ok(iface == expect_cf, "unexpected iface\n");
865 ok(pOuter == NULL, "pOuter = %p\n", pOuter);
866 ok(IsEqualGUID(&IID_IInternetProtocolInfo, riid), "unexpected riid\n");
867 ok(ppv != NULL, "ppv == NULL\n");
869 *ppv = &protocol_info;
873 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
875 ok(0, "unexpected call\n");
879 static const IClassFactoryVtbl ClassFactoryVtbl = {
880 ClassFactory_QueryInterface,
882 ClassFactory_Release,
883 ClassFactory_CreateInstance,
884 ClassFactory_LockServer
887 static IClassFactory test_protocol_cf = { &ClassFactoryVtbl };
888 static IClassFactory test_protocol_cf2 = { &ClassFactoryVtbl };
890 static void test_NameSpace(void)
892 IInternetSession *session;
897 static const WCHAR wszTest[] = {'t','e','s','t',0};
899 hres = CoInternetGetSession(0, &session, 0);
900 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
904 hres = IInternetSession_RegisterNameSpace(session, NULL, &IID_NULL,
905 wszTest, 0, NULL, 0);
906 ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
908 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
910 ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
912 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
913 wszTest, 0, NULL, 0);
914 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
916 qiret = E_NOINTERFACE;
917 expect_cf = &test_protocol_cf;
918 SET_EXPECT(QI_IInternetProtocolInfo);
919 SET_EXPECT(CreateInstance);
920 SET_EXPECT(ParseUrl);
922 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
924 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
926 CHECK_CALLED(QI_IInternetProtocolInfo);
927 CHECK_CALLED(CreateInstance);
928 CHECK_CALLED(ParseUrl);
931 SET_EXPECT(QI_IInternetProtocolInfo);
932 SET_EXPECT(ParseUrl);
934 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
936 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
938 CHECK_CALLED(QI_IInternetProtocolInfo);
939 CHECK_CALLED(ParseUrl);
941 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
942 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
944 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
946 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
948 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf2, &IID_NULL,
949 wszTest, 0, NULL, 0);
950 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
952 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
953 wszTest, 0, NULL, 0);
954 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
956 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
957 wszTest, 0, NULL, 0);
958 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
960 SET_EXPECT(QI_IInternetProtocolInfo);
961 SET_EXPECT(ParseUrl);
963 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
965 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
967 CHECK_CALLED(QI_IInternetProtocolInfo);
968 CHECK_CALLED(ParseUrl);
970 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
971 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
973 SET_EXPECT(QI_IInternetProtocolInfo);
974 SET_EXPECT(ParseUrl);
976 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
978 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
980 CHECK_CALLED(QI_IInternetProtocolInfo);
981 CHECK_CALLED(ParseUrl);
983 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
984 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
986 expect_cf = &test_protocol_cf2;
987 SET_EXPECT(QI_IInternetProtocolInfo);
988 SET_EXPECT(ParseUrl);
990 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
992 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
994 CHECK_CALLED(QI_IInternetProtocolInfo);
995 CHECK_CALLED(ParseUrl);
997 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
998 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
999 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
1000 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
1001 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, NULL);
1002 ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
1003 hres = IInternetSession_UnregisterNameSpace(session, NULL, wszTest);
1004 ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
1006 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf2, wszTest);
1007 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
1009 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
1011 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
1013 IInternetSession_Release(session);
1016 static ULONG WINAPI unk_Release(IUnknown *iface)
1018 CHECK_EXPECT(unk_Release);
1022 static const IUnknownVtbl unk_vtbl = {
1028 static void test_ReleaseBindInfo(void)
1031 IUnknown unk = { &unk_vtbl };
1033 ReleaseBindInfo(NULL); /* shouldn't crash */
1035 memset(&bi, 0, sizeof(bi));
1036 bi.cbSize = sizeof(BINDINFO);
1038 SET_EXPECT(unk_Release);
1039 ReleaseBindInfo(&bi);
1040 ok(bi.cbSize == sizeof(BINDINFO), "bi.cbSize=%d\n", bi.cbSize);
1041 ok(bi.pUnk == NULL, "bi.pUnk=%p, expected NULL\n", bi.pUnk);
1042 CHECK_CALLED(unk_Release);
1044 memset(&bi, 0, sizeof(bi));
1045 bi.cbSize = offsetof(BINDINFO, pUnk);
1047 ReleaseBindInfo(&bi);
1048 ok(bi.cbSize == offsetof(BINDINFO, pUnk), "bi.cbSize=%d\n", bi.cbSize);
1049 ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
1051 memset(&bi, 0, sizeof(bi));
1053 ReleaseBindInfo(&bi);
1054 ok(!bi.cbSize, "bi.cbSize=%d, expected 0\n", bi.cbSize);
1055 ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
1058 static void test_UrlMkGetSessionOption(void)
1060 DWORD encoding, size;
1063 size = encoding = 0xdeadbeef;
1064 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1065 sizeof(encoding), &size, 0);
1066 ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1067 ok(encoding != 0xdeadbeef, "encoding not changed\n");
1068 ok(size == sizeof(encoding), "size=%d\n", size);
1070 size = encoding = 0xdeadbeef;
1071 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1072 sizeof(encoding)+1, &size, 0);
1073 ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1074 ok(encoding != 0xdeadbeef, "encoding not changed\n");
1075 ok(size == sizeof(encoding), "size=%d\n", size);
1077 size = encoding = 0xdeadbeef;
1078 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1079 sizeof(encoding)-1, &size, 0);
1080 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1081 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1082 ok(size == 0xdeadbeef, "size=%d\n", size);
1084 size = encoding = 0xdeadbeef;
1085 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, NULL,
1086 sizeof(encoding)-1, &size, 0);
1087 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1088 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1089 ok(size == 0xdeadbeef, "size=%d\n", size);
1091 encoding = 0xdeadbeef;
1092 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1093 sizeof(encoding)-1, NULL, 0);
1094 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1095 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1098 static void test_ObtainUserAgentString(void)
1100 static const CHAR expected[] = "Mozilla/4.0 (compatible; MSIE ";
1106 hres = ObtainUserAgentString(0, NULL, NULL);
1107 ok(hres == E_INVALIDARG, "ObtainUserAgentString failed: %08x\n", hres);
1110 hres = ObtainUserAgentString(0, NULL, &size);
1111 ok(hres == E_INVALIDARG, "ObtainUserAgentString failed: %08x\n", hres);
1112 ok(size == 100, "size=%d, expected %d\n", size, 100);
1115 hres = ObtainUserAgentString(0, str, &size);
1116 ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1117 ok(size > 0, "size=%d, expected non-zero\n", size);
1121 hres = ObtainUserAgentString(0, str, &size);
1122 ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1123 ok(size > 0, "size=%d, expected non-zero\n", size);
1124 ok(str[0] == 'a', "str[0]=%c, expected 'a'\n", str[0]);
1127 hres = ObtainUserAgentString(1, str, &size);
1128 ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1129 ok(size > 0, "size=%d, expected non-zero\n", size);
1131 str2 = HeapAlloc(GetProcessHeap(), 0, (size+20)*sizeof(CHAR));
1134 skip("skipping rest of ObtainUserAgent tests, out of memory\n");
1139 hres = ObtainUserAgentString(0, str2, &size);
1140 ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
1141 ok(size == saved, "size=%d, expected %d\n", size, saved);
1142 ok(strlen(expected) <= strlen(str2) &&
1143 !memcmp(expected, str2, strlen(expected)*sizeof(CHAR)),
1144 "user agent was \"%s\", expected to start with \"%s\"\n",
1148 hres = ObtainUserAgentString(0, str2, &size);
1149 ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
1150 ok(size == saved, "size=%d, expected %d\n", size, saved);
1152 HeapFree(GetProcessHeap(), 0, str2);
1157 OleInitialize(NULL);
1159 register_protocols();
1161 test_CreateFormatEnum();
1162 test_RegisterFormatEnumerator();
1163 test_CoInternetParseUrl();
1164 test_CoInternetCompareUrl();
1165 test_FindMimeFromData();
1166 test_SecurityManager();
1169 test_ReleaseBindInfo();
1170 test_UrlMkGetSessionOption();
1171 test_ObtainUserAgentString();