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 IBindCtx_Release(bctx);
241 static const WCHAR url1[] = {'r','e','s',':','/','/','m','s','h','t','m','l','.','d','l','l',
242 '/','b','l','a','n','k','.','h','t','m',0};
243 static const WCHAR url2[] = {'i','n','d','e','x','.','h','t','m',0};
244 static const WCHAR url3[] = {'f','i','l','e',':','c',':','\\','I','n','d','e','x','.','h','t','m',0};
245 static const WCHAR url4[] = {'f','i','l','e',':','s','o','m','e','%','2','0','f','i','l','e',
246 '%','2','e','j','p','g',0};
247 static const WCHAR url5[] = {'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q',
249 static const WCHAR url6[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
250 static const WCHAR url7[] = {'f','t','p',':','/','/','w','i','n','e','h','q','.','o','r','g','/',
251 'f','i','l','e','.','t','e','s','t',0};
252 static const WCHAR url8[] = {'t','e','s','t',':','1','2','3','a','b','c',0};
255 static const WCHAR url4e[] = {'f','i','l','e',':','s','o','m','e',' ','f','i','l','e',
258 static const WCHAR path3[] = {'c',':','\\','I','n','d','e','x','.','h','t','m',0};
259 static const WCHAR path4[] = {'s','o','m','e',' ','f','i','l','e','.','j','p','g',0};
261 static const WCHAR wszRes[] = {'r','e','s',0};
262 static const WCHAR wszFile[] = {'f','i','l','e',0};
263 static const WCHAR wszHttp[] = {'h','t','t','p',0};
264 static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
265 static const WCHAR wszEmpty[] = {0};
276 static const struct parse_test parse_tests[] = {
277 {url1, S_OK, url1, E_INVALIDARG, NULL, wszRes},
278 {url2, E_FAIL, url2, E_INVALIDARG, NULL, wszEmpty},
279 {url3, E_FAIL, url3, S_OK, path3, wszFile},
280 {url4, E_FAIL, url4e, S_OK, path4, wszFile},
281 {url5, E_FAIL, url5, E_INVALIDARG, NULL, wszHttp},
282 {url6, S_OK, url6, E_INVALIDARG, NULL, wszAbout}
285 static void test_CoInternetParseUrl(void)
291 static WCHAR buf[4096];
293 memset(buf, 0xf0, sizeof(buf));
294 hres = CoInternetParseUrl(parse_tests[0].url, PARSE_SCHEMA, 0, buf,
296 ok(hres == E_POINTER, "schema failed: %08x, expected E_POINTER\n", hres);
298 for(i=0; i < sizeof(parse_tests)/sizeof(parse_tests[0]); i++) {
299 memset(buf, 0xf0, sizeof(buf));
300 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SECURITY_URL, 0, buf,
301 sizeof(buf)/sizeof(WCHAR), &size, 0);
302 ok(hres == parse_tests[i].secur_hres, "[%d] security url failed: %08x, expected %08x\n",
303 i, hres, parse_tests[i].secur_hres);
305 memset(buf, 0xf0, sizeof(buf));
306 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_ENCODE, 0, buf,
307 sizeof(buf)/sizeof(WCHAR), &size, 0);
308 ok(hres == S_OK, "[%d] encoding failed: %08x\n", i, hres);
309 ok(size == lstrlenW(parse_tests[i].encoded_url), "[%d] wrong size\n", i);
310 ok(!lstrcmpW(parse_tests[i].encoded_url, buf), "[%d] wrong encoded url\n", i);
312 memset(buf, 0xf0, sizeof(buf));
313 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_PATH_FROM_URL, 0, buf,
314 sizeof(buf)/sizeof(WCHAR), &size, 0);
315 ok(hres == parse_tests[i].path_hres, "[%d] path failed: %08x, expected %08x\n",
316 i, hres, parse_tests[i].path_hres);
317 if(parse_tests[i].path) {
318 ok(size == lstrlenW(parse_tests[i].path), "[%d] wrong size\n", i);
319 ok(!lstrcmpW(parse_tests[i].path, buf), "[%d] wrong path\n", i);
322 memset(buf, 0xf0, sizeof(buf));
323 hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SCHEMA, 0, buf,
324 sizeof(buf)/sizeof(WCHAR), &size, 0);
325 ok(hres == S_OK, "[%d] schema failed: %08x\n", i, hres);
326 ok(size == lstrlenW(parse_tests[i].schema), "[%d] wrong size\n", i);
327 ok(!lstrcmpW(parse_tests[i].schema, buf), "[%d] wrong schema\n", i);
331 static const WCHAR mimeTextHtml[] = {'t','e','x','t','/','h','t','m','l',0};
332 static const WCHAR mimeTextPlain[] = {'t','e','x','t','/','p','l','a','i','n',0};
333 static const WCHAR mimeAppOctetStream[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
334 'o','c','t','e','t','-','s','t','r','e','a','m',0};
335 static const WCHAR mimeImagePjpeg[] = {'i','m','a','g','e','/','p','j','p','e','g',0};
336 static const WCHAR mimeImageGif[] = {'i','m','a','g','e','/','g','i','f',0};
337 static const WCHAR mimeImageBmp[] = {'i','m','a','g','e','/','b','m','p',0};
338 static const WCHAR mimeImageXPng[] = {'i','m','a','g','e','/','x','-','p','n','g',0};
339 static const WCHAR mimeImageTiff[] = {'i','m','a','g','e','/','t','i','f','f',0};
340 static const WCHAR mimeVideoAvi[] = {'v','i','d','e','o','/','a','v','i',0};
341 static const WCHAR mimeVideoMpeg[] = {'v','i','d','e','o','/','m','p','e','g',0};
343 static const struct {
347 {url1, mimeTextHtml},
348 {url2, mimeTextHtml},
349 {url3, mimeTextHtml},
356 static BYTE data1[] = "test data\n";
357 static BYTE data2[] = {31,'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0};
358 static BYTE data3[] = {0,0,0};
359 static BYTE data4[] = {'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0,0};
360 static BYTE data5[] = {0xa,0xa,0xa,'x',32,'x',0};
361 static BYTE data6[] = {0xfa,0xfa,0xfa,0xfa,'\n','\r','\t','x','x','x',1};
362 static BYTE data7[] = "<html>blahblah";
363 static BYTE data8[] = {'t','e','s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
364 static BYTE data9[] = {'t','e',0,'s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
365 static BYTE data10[] = "<HtmL>blahblah";
366 static BYTE data11[] = "blah<HTML>blahblah";
367 static BYTE data12[] = "blah<HTMLblahblah";
368 static BYTE data13[] = "blahHTML>blahblah";
369 static BYTE data14[] = "blah<HTMblahblah";
370 static BYTE data15[] = {0xff,0xd8};
371 static BYTE data16[] = {0xff,0xd8,'h'};
372 static BYTE data17[] = {0,0xff,0xd8};
373 static BYTE data18[] = {0xff,0xd8,'<','h','t','m','l','>'};
374 static BYTE data19[] = {'G','I','F','8','7','a'};
375 static BYTE data20[] = {'G','I','F','8','9','a'};
376 static BYTE data21[] = {'G','I','F','8','7'};
377 static BYTE data22[] = {'G','i','F','8','7','a'};
378 static BYTE data23[] = {'G','i','F','8','8','a'};
379 static BYTE data24[] = {'g','i','f','8','7','a'};
380 static BYTE data25[] = {'G','i','F','8','7','A'};
381 static BYTE data26[] = {'G','i','F','8','7','a','<','h','t','m','l','>'};
382 static BYTE data27[] = {0x30,'G','i','F','8','7','A'};
383 static BYTE data28[] = {0x42,0x4d,0x6e,0x42,0x1c,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x00};
384 static BYTE data29[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x','x'};
385 static BYTE data30[] = {0x42,0x4d,'x','x','x','x',0x00,0x01,0x00,0x00,'x','x','x','x'};
386 static BYTE data31[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'<','h','t','m','l','>'};
387 static BYTE data32[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
388 static BYTE data33[] = {0x00,0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
389 static BYTE data34[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
390 static BYTE data35[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x','x','x','x',0};
391 static BYTE data36[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,'x','x'};
392 static BYTE data37[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'<','h','t','m','l','>'};
393 static BYTE data38[] = {0x00,0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
394 static BYTE data39[] = {0x4d,0x4d,0x00,0x2a};
395 static BYTE data40[] = {0x4d,0x4d,0x00,0x2a,'<','h','t','m','l','>',0};
396 static BYTE data41[] = {0x4d,0x4d,0xff};
397 static BYTE data42[] = {0x4d,0x4d};
398 static BYTE data43[] = {0x00,0x4d,0x4d,0x00};
399 static BYTE data44[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
400 static BYTE data45[] = {'R','I','F','f',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
401 static BYTE data46[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20};
402 static BYTE data47[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x21,0xff};
403 static BYTE data48[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,'<','h','t','m','l','>'};
404 static BYTE data49[] = {'R','I','F','F',0x0f,0x0f,0xf0,0xf0,'A','V','I',0x20,0xf0,0x00};
405 static BYTE data50[] = {0x00,0x00,0x01,0xb3,0xff};
406 static BYTE data51[] = {0x00,0x00,0x01,0xba,0xff};
407 static BYTE data52[] = {0x00,0x00,0x01,0xb8,0xff};
408 static BYTE data53[] = {0x00,0x00,0x01,0xba};
409 static BYTE data54[] = {0x00,0x00,0x01,0xba,'<','h','t','m','l','>'};
411 static const struct {
416 {data1, sizeof(data1), mimeTextPlain},
417 {data2, sizeof(data2), mimeAppOctetStream},
418 {data3, sizeof(data3), mimeAppOctetStream},
419 {data4, sizeof(data4), mimeAppOctetStream},
420 {data5, sizeof(data5), mimeTextPlain},
421 {data6, sizeof(data6), mimeTextPlain},
422 {data7, sizeof(data7), mimeTextHtml},
423 {data8, sizeof(data8), mimeTextHtml},
424 {data9, sizeof(data9), mimeTextHtml},
425 {data10, sizeof(data10), mimeTextHtml},
426 {data11, sizeof(data11), mimeTextHtml},
427 {data12, sizeof(data12), mimeTextHtml},
428 {data13, sizeof(data13), mimeTextPlain},
429 {data14, sizeof(data14), mimeTextPlain},
430 {data15, sizeof(data15), mimeTextPlain},
431 {data16, sizeof(data16), mimeImagePjpeg},
432 {data17, sizeof(data17), mimeAppOctetStream},
433 {data18, sizeof(data18), mimeTextHtml},
434 {data19, sizeof(data19), mimeImageGif},
435 {data20, sizeof(data20), mimeImageGif},
436 {data21, sizeof(data21), mimeTextPlain},
437 {data22, sizeof(data22), mimeImageGif},
438 {data23, sizeof(data23), mimeTextPlain},
439 {data24, sizeof(data24), mimeImageGif},
440 {data25, sizeof(data25), mimeImageGif},
441 {data26, sizeof(data26), mimeTextHtml},
442 {data27, sizeof(data27), mimeTextPlain},
443 {data28, sizeof(data28), mimeImageBmp},
444 {data29, sizeof(data29), mimeImageBmp},
445 {data30, sizeof(data30), mimeAppOctetStream},
446 {data31, sizeof(data31), mimeTextHtml},
447 {data32, sizeof(data32), mimeAppOctetStream},
448 {data33, sizeof(data33), mimeAppOctetStream},
449 {data34, sizeof(data34), mimeImageXPng},
450 {data35, sizeof(data35), mimeImageXPng},
451 {data36, sizeof(data36), mimeAppOctetStream},
452 {data37, sizeof(data37), mimeTextHtml},
453 {data38, sizeof(data38), mimeAppOctetStream},
454 {data39, sizeof(data39), mimeImageTiff},
455 {data40, sizeof(data40), mimeTextHtml},
456 {data41, sizeof(data41), mimeImageTiff},
457 {data42, sizeof(data42), mimeTextPlain},
458 {data43, sizeof(data43), mimeAppOctetStream},
459 {data44, sizeof(data44), mimeVideoAvi},
460 {data45, sizeof(data45), mimeTextPlain},
461 {data46, sizeof(data46), mimeTextPlain},
462 {data47, sizeof(data47), mimeTextPlain},
463 {data48, sizeof(data48), mimeTextHtml},
464 {data49, sizeof(data49), mimeVideoAvi},
465 {data50, sizeof(data50), mimeVideoMpeg},
466 {data51, sizeof(data51), mimeVideoMpeg},
467 {data52, sizeof(data52), mimeAppOctetStream},
468 {data53, sizeof(data53), mimeAppOctetStream},
469 {data54, sizeof(data54), mimeTextHtml}
472 static void test_FindMimeFromData(void)
478 for(i=0; i<sizeof(mime_tests)/sizeof(mime_tests[0]); i++) {
479 mime = (LPWSTR)0xf0f0f0f0;
480 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, NULL, 0, &mime, 0);
481 if(mime_tests[i].mime) {
482 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
483 ok(!lstrcmpW(mime, mime_tests[i].mime), "[%d] wrong mime\n", i);
486 ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
487 ok(mime == (LPWSTR)0xf0f0f0f0, "[%d] mime != 0xf0f0f0f0\n", i);
490 mime = (LPWSTR)0xf0f0f0f0;
491 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeTextPlain, 0, &mime, 0);
492 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
493 ok(!lstrcmpW(mime, mimeTextPlain), "[%d] wrong mime\n", i);
496 mime = (LPWSTR)0xf0f0f0f0;
497 hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeAppOctetStream, 0, &mime, 0);
498 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
499 ok(!lstrcmpW(mime, mimeAppOctetStream), "[%d] wrong mime\n", i);
503 for(i=0; i < sizeof(mime_tests2)/sizeof(mime_tests2[0]); i++) {
504 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
506 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
507 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
510 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
511 mimeTextHtml, 0, &mime, 0);
512 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
513 if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime)
514 || !lstrcmpW(mimeTextPlain, mime_tests2[i].mime))
515 ok(!lstrcmpW(mime, mimeTextHtml), "[%d] wrong mime\n", i);
517 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
519 hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
520 mimeImagePjpeg, 0, &mime, 0);
521 ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
522 if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime) || i == 17)
523 ok(!lstrcmpW(mime, mimeImagePjpeg), "[%d] wrong mime\n", i);
525 ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
530 hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), NULL, 0, &mime, 0);
531 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
532 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
535 hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
536 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
537 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
540 hres = FindMimeFromData(NULL, url4, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
541 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
542 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
545 hres = FindMimeFromData(NULL, NULL, NULL, 0, NULL, 0, &mime, 0);
546 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, excepted E_INVALIDARG\n", hres);
548 hres = FindMimeFromData(NULL, NULL, NULL, 0, mimeTextPlain, 0, &mime, 0);
549 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
551 hres = FindMimeFromData(NULL, NULL, data1, 0, NULL, 0, &mime, 0);
552 ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
554 hres = FindMimeFromData(NULL, url1, data1, 0, NULL, 0, &mime, 0);
555 ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
557 hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, &mime, 0);
558 ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
559 ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
562 hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, NULL, 0);
563 ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
566 static const BYTE secid1[] = {'f','i','l','e',':',0,0,0,0};
567 static const BYTE secid4[] ={'f','i','l','e',':',3,0,0,0};
568 static const BYTE secid5[] = {'h','t','t','p',':','w','w','w','.','w','i','n','e','h','q',
569 '.','o','r','g',3,0,0,0};
570 static const BYTE secid6[] = {'a','b','o','u','t',':','b','l','a','n','k',3,0,0,0};
571 static const BYTE secid7[] = {'f','t','p',':','w','i','n','e','h','q','.','o','r','g',
574 static struct secmgr_test {
582 {url1, 0, S_OK, sizeof(secid1), secid1, S_OK},
583 {url2, 100, 0x80041001, 0, NULL, E_INVALIDARG},
584 {url3, 0, S_OK, sizeof(secid1), secid1, S_OK},
585 {url4, 3, S_OK, sizeof(secid4), secid4, S_OK},
586 {url5, 3, S_OK, sizeof(secid5), secid5, S_OK},
587 {url6, 3, S_OK, sizeof(secid6), secid6, S_OK},
588 {url7, 3, S_OK, sizeof(secid7), secid7, S_OK}
591 static void test_SecurityManager(void)
594 IInternetSecurityManager *secmgr = NULL;
599 hres = CoInternetCreateSecurityManager(NULL, &secmgr, 0);
600 ok(hres == S_OK, "CoInternetCreateSecurityManager failed: %08x\n", hres);
604 for(i=0; i < sizeof(secmgr_tests)/sizeof(secmgr_tests[0]); i++) {
606 hres = IInternetSecurityManager_MapUrlToZone(secmgr, secmgr_tests[i].url,
608 ok(hres == secmgr_tests[i].zone_hres,
609 "[%d] MapUrlToZone failed: %08x, expected %08x\n",
610 i, hres, secmgr_tests[i].zone_hres);
611 ok(zone == secmgr_tests[i].zone, "[%d] zone=%d, expected %d\n", i, zone,
612 secmgr_tests[i].zone);
615 memset(buf, 0xf0, sizeof(buf));
616 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[i].url,
618 ok(hres == secmgr_tests[i].secid_hres,
619 "[%d] GetSecurityId failed: %08x, expected %08x\n",
620 i, hres, secmgr_tests[i].secid_hres);
621 if(secmgr_tests[i].secid) {
622 ok(size == secmgr_tests[i].secid_size, "[%d] size=%d, expected %d\n",
623 i, size, secmgr_tests[i].secid_size);
624 ok(!memcmp(buf, secmgr_tests[i].secid, size), "[%d] wrong secid\n", i);
629 hres = IInternetSecurityManager_MapUrlToZone(secmgr, NULL, &zone, 0);
630 ok(hres == E_INVALIDARG, "MapUrlToZone failed: %08x, expected E_INVALIDARG\n", hres);
633 hres = IInternetSecurityManager_GetSecurityId(secmgr, NULL, buf, &size, 0);
634 ok(hres == E_INVALIDARG,
635 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
636 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[1].url,
638 ok(hres == E_INVALIDARG,
639 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
640 hres = IInternetSecurityManager_GetSecurityId(secmgr, secmgr_tests[1].url,
642 ok(hres == E_INVALIDARG,
643 "GetSecurityId failed: %08x, expected E_INVALIDARG\n", hres);
645 IInternetSecurityManager_Release(secmgr);
648 static void test_ZoneManager(void)
650 IInternetZoneManager *zonemgr = NULL;
654 hres = CoInternetCreateZoneManager(NULL, &zonemgr, 0);
655 ok(hres == S_OK, "CoInternetCreateZoneManager failed: %08x\n", hres);
659 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, buf,
660 sizeof(DWORD), URLZONEREG_DEFAULT);
661 ok(hres == S_OK, "GetZoneActionPolicy failed: %08x\n", hres);
662 ok(*(DWORD*)buf == 1, "policy=%d, expected 1\n", *(DWORD*)buf);
664 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, NULL,
665 sizeof(DWORD), URLZONEREG_DEFAULT);
666 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
668 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1a10, buf,
669 2, URLZONEREG_DEFAULT);
670 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
672 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, 0x1fff, buf,
673 sizeof(DWORD), URLZONEREG_DEFAULT);
674 ok(hres == E_FAIL, "GetZoneActionPolicy failed: %08x, expected E_FAIL\n", hres);
676 hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 13, 0x1a10, buf,
677 sizeof(DWORD), URLZONEREG_DEFAULT);
678 ok(hres == E_INVALIDARG, "GetZoneActionPolicy failed: %08x, expected E_INVALIDARG\n", hres);
680 IInternetZoneManager_Release(zonemgr);
683 static void register_protocols(void)
685 IInternetSession *session;
686 IClassFactory *factory;
689 static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
691 hres = CoInternetGetSession(0, &session, 0);
692 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
696 hres = CoGetClassObject(&CLSID_AboutProtocol, CLSCTX_INPROC_SERVER, NULL,
697 &IID_IClassFactory, (void**)&factory);
698 ok(hres == S_OK, "Coud not get AboutProtocol factory: %08x\n", hres);
702 IInternetSession_RegisterNameSpace(session, factory, &CLSID_AboutProtocol,
703 wszAbout, 0, NULL, 0);
704 IClassFactory_Release(factory);
708 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
709 REFIID riid, void **ppv)
711 ok(0, "unexpected call\n");
712 return E_NOINTERFACE;
715 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
720 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
725 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
726 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
727 DWORD *pcchResult, DWORD dwReserved)
729 CHECK_EXPECT(ParseUrl);
733 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
734 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
735 LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
737 ok(0, "unexpected call\n");
741 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
742 LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
744 ok(0, "unexpected call\n");
748 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
749 LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
750 DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
752 ok(0, "unexpected call\n");
756 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
757 InternetProtocolInfo_QueryInterface,
758 InternetProtocolInfo_AddRef,
759 InternetProtocolInfo_Release,
760 InternetProtocolInfo_ParseUrl,
761 InternetProtocolInfo_CombineUrl,
762 InternetProtocolInfo_CompareUrl,
763 InternetProtocolInfo_QueryInfo
766 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
768 static HRESULT qiret;
769 static IClassFactory *expect_cf;
771 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
773 if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
774 CHECK_EXPECT(QI_IInternetProtocolInfo);
775 ok(iface == expect_cf, "unexpected iface\n");
776 *ppv = &protocol_info;
780 ok(0, "unexpected call\n");
781 return E_NOINTERFACE;
784 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
789 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
794 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
795 REFIID riid, void **ppv)
797 CHECK_EXPECT(CreateInstance);
799 ok(iface == expect_cf, "unexpected iface\n");
800 ok(pOuter == NULL, "pOuter = %p\n", pOuter);
801 ok(IsEqualGUID(&IID_IInternetProtocolInfo, riid), "unexpected riid\n");
802 ok(ppv != NULL, "ppv == NULL\n");
804 *ppv = &protocol_info;
808 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
810 ok(0, "unexpected call\n");
814 static const IClassFactoryVtbl ClassFactoryVtbl = {
815 ClassFactory_QueryInterface,
817 ClassFactory_Release,
818 ClassFactory_CreateInstance,
819 ClassFactory_LockServer
822 static IClassFactory test_protocol_cf = { &ClassFactoryVtbl };
823 static IClassFactory test_protocol_cf2 = { &ClassFactoryVtbl };
825 static void test_NameSpace(void)
827 IInternetSession *session;
832 static const WCHAR wszTest[] = {'t','e','s','t',0};
834 hres = CoInternetGetSession(0, &session, 0);
835 ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
839 hres = IInternetSession_RegisterNameSpace(session, NULL, &IID_NULL,
840 wszTest, 0, NULL, 0);
841 ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
843 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
845 ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
847 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
848 wszTest, 0, NULL, 0);
849 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
851 qiret = E_NOINTERFACE;
852 expect_cf = &test_protocol_cf;
853 SET_EXPECT(QI_IInternetProtocolInfo);
854 SET_EXPECT(CreateInstance);
855 SET_EXPECT(ParseUrl);
857 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
859 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
861 CHECK_CALLED(QI_IInternetProtocolInfo);
862 CHECK_CALLED(CreateInstance);
863 CHECK_CALLED(ParseUrl);
866 SET_EXPECT(QI_IInternetProtocolInfo);
867 SET_EXPECT(ParseUrl);
869 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
871 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
873 CHECK_CALLED(QI_IInternetProtocolInfo);
874 CHECK_CALLED(ParseUrl);
876 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
877 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
879 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
881 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
883 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf2, &IID_NULL,
884 wszTest, 0, NULL, 0);
885 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
887 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
888 wszTest, 0, NULL, 0);
889 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
891 hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
892 wszTest, 0, NULL, 0);
893 ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
895 SET_EXPECT(QI_IInternetProtocolInfo);
896 SET_EXPECT(ParseUrl);
898 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
900 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
902 CHECK_CALLED(QI_IInternetProtocolInfo);
903 CHECK_CALLED(ParseUrl);
905 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
906 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
908 SET_EXPECT(QI_IInternetProtocolInfo);
909 SET_EXPECT(ParseUrl);
911 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
913 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
915 CHECK_CALLED(QI_IInternetProtocolInfo);
916 CHECK_CALLED(ParseUrl);
918 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
919 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
921 expect_cf = &test_protocol_cf2;
922 SET_EXPECT(QI_IInternetProtocolInfo);
923 SET_EXPECT(ParseUrl);
925 hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
927 ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
929 CHECK_CALLED(QI_IInternetProtocolInfo);
930 CHECK_CALLED(ParseUrl);
932 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
933 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
934 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
935 ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
936 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, NULL);
937 ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
938 hres = IInternetSession_UnregisterNameSpace(session, NULL, wszTest);
939 ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
941 hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf2, 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 IInternetSession_Release(session);
951 static ULONG WINAPI unk_Release(IUnknown *iface)
953 CHECK_EXPECT(unk_Release);
957 static const IUnknownVtbl unk_vtbl = {
963 static void test_ReleaseBindInfo(void)
966 IUnknown unk = { &unk_vtbl };
968 ReleaseBindInfo(NULL); /* shouldn't crash */
970 memset(&bi, 0, sizeof(bi));
971 bi.cbSize = sizeof(BINDINFO);
973 SET_EXPECT(unk_Release);
974 ReleaseBindInfo(&bi);
975 ok(bi.cbSize == sizeof(BINDINFO), "bi.cbSize=%d\n", bi.cbSize);
976 ok(bi.pUnk == NULL, "bi.pUnk=%p, expected NULL\n", bi.pUnk);
977 CHECK_CALLED(unk_Release);
979 memset(&bi, 0, sizeof(bi));
980 bi.cbSize = offsetof(BINDINFO, pUnk);
982 ReleaseBindInfo(&bi);
983 ok(bi.cbSize == offsetof(BINDINFO, pUnk), "bi.cbSize=%d\n", bi.cbSize);
984 ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
986 memset(&bi, 0, sizeof(bi));
988 ReleaseBindInfo(&bi);
989 ok(!bi.cbSize, "bi.cbSize=%d, expected 0\n", bi.cbSize);
990 ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
993 static void test_UrlMkGetSessionOption(void)
995 DWORD encoding, size;
998 size = encoding = 0xdeadbeef;
999 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1000 sizeof(encoding), &size, 0);
1001 ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1002 ok(encoding != 0xdeadbeef, "encoding not changed\n");
1003 ok(size == sizeof(encoding), "size=%d\n", size);
1005 size = encoding = 0xdeadbeef;
1006 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1007 sizeof(encoding)+1, &size, 0);
1008 ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1009 ok(encoding != 0xdeadbeef, "encoding not changed\n");
1010 ok(size == sizeof(encoding), "size=%d\n", size);
1012 size = encoding = 0xdeadbeef;
1013 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1014 sizeof(encoding)-1, &size, 0);
1015 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1016 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1017 ok(size == 0xdeadbeef, "size=%d\n", size);
1019 size = encoding = 0xdeadbeef;
1020 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, NULL,
1021 sizeof(encoding)-1, &size, 0);
1022 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1023 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1024 ok(size == 0xdeadbeef, "size=%d\n", size);
1026 encoding = 0xdeadbeef;
1027 hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1028 sizeof(encoding)-1, NULL, 0);
1029 ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1030 ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1035 OleInitialize(NULL);
1037 register_protocols();
1039 test_CreateFormatEnum();
1040 test_RegisterFormatEnumerator();
1041 test_CoInternetParseUrl();
1042 test_FindMimeFromData();
1043 test_SecurityManager();
1046 test_ReleaseBindInfo();
1047 test_UrlMkGetSessionOption();