ole32: Fix memory leaks in the storage test.
[wine] / dlls / urlmon / tests / misc.c
1 /*
2  * Copyright 2005-2006 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #define COBJMACROS
20 #define CONST_VTABLE
21 #define NONAMELESSUNION
22
23 #include <wine/test.h>
24 #include <stdarg.h>
25 #include <stddef.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "ole2.h"
30 #include "urlmon.h"
31
32 #include "initguid.h"
33
34 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
35
36 #define DEFINE_EXPECT(func) \
37     static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
38
39 #define SET_EXPECT(func) \
40     expect_ ## func = TRUE
41
42 #define CHECK_EXPECT(func) \
43     do { \
44         ok(expect_ ##func, "unexpected call " #func "\n"); \
45         expect_ ## func = FALSE; \
46         called_ ## func = TRUE; \
47     }while(0)
48
49 #define CHECK_EXPECT2(func) \
50     do { \
51         ok(expect_ ##func, "unexpected call " #func "\n"); \
52         called_ ## func = TRUE; \
53     }while(0)
54
55 #define CHECK_CALLED(func) \
56     do { \
57         ok(called_ ## func, "expected " #func "\n"); \
58         expect_ ## func = called_ ## func = FALSE; \
59     }while(0)
60
61 DEFINE_EXPECT(ParseUrl);
62 DEFINE_EXPECT(QI_IInternetProtocolInfo);
63 DEFINE_EXPECT(CreateInstance);
64 DEFINE_EXPECT(unk_Release);
65
66 static void test_CreateFormatEnum(void)
67 {
68     IEnumFORMATETC *fenum = NULL, *fenum2 = NULL;
69     FORMATETC fetc[5];
70     ULONG ul;
71     HRESULT hres;
72
73     static DVTARGETDEVICE dev = {sizeof(dev),0,0,0,0,{0}};
74     static FORMATETC formatetc[] = {
75         {0,&dev,0,0,0},
76         {0,&dev,0,1,0},
77         {0,NULL,0,2,0},
78         {0,NULL,0,3,0},
79         {0,NULL,0,4,0}
80     };
81
82     hres = CreateFormatEnumerator(0, formatetc, &fenum);
83     ok(hres == E_FAIL, "CreateFormatEnumerator failed: %08x, expected E_FAIL\n", hres);
84     hres = CreateFormatEnumerator(0, formatetc, NULL);
85     ok(hres == E_INVALIDARG, "CreateFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
86     hres = CreateFormatEnumerator(5, formatetc, NULL);
87     ok(hres == E_INVALIDARG, "CreateFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
88
89
90     hres = CreateFormatEnumerator(5, formatetc, &fenum);
91     ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
92     if(FAILED(hres))
93         return;
94
95     hres = IEnumFORMATETC_Next(fenum, 2, NULL, &ul);
96     ok(hres == E_INVALIDARG, "Next failed: %08x, expected E_INVALIDARG\n", hres);
97     ul = 100;
98     hres = IEnumFORMATETC_Next(fenum, 0, fetc, &ul);
99     ok(hres == S_OK, "Next failed: %08x\n", hres);
100     ok(ul == 0, "ul=%d, expected 0\n", ul);
101
102     hres = IEnumFORMATETC_Next(fenum, 2, fetc, &ul);
103     ok(hres == S_OK, "Next failed: %08x\n", hres);
104     ok(fetc[0].lindex == 0, "fetc[0].lindex=%d, expected 0\n", fetc[0].lindex);
105     ok(fetc[1].lindex == 1, "fetc[1].lindex=%d, expected 1\n", fetc[1].lindex);
106     ok(fetc[0].ptd == &dev, "fetc[0].ptd=%p, expected %p\n", fetc[0].ptd, &dev);
107     ok(ul == 2, "ul=%d, expected 2\n", ul);
108
109     hres = IEnumFORMATETC_Skip(fenum, 1);
110     ok(hres == S_OK, "Skip failed: %08x\n", hres);
111
112     hres = IEnumFORMATETC_Next(fenum, 4, fetc, &ul);
113     ok(hres == S_FALSE, "Next failed: %08x, expected S_FALSE\n", hres);
114     ok(fetc[0].lindex == 3, "fetc[0].lindex=%d, expected 3\n", fetc[0].lindex);
115     ok(fetc[1].lindex == 4, "fetc[1].lindex=%d, expected 4\n", fetc[1].lindex);
116     ok(fetc[0].ptd == NULL, "fetc[0].ptd=%p, expected NULL\n", fetc[0].ptd);
117     ok(ul == 2, "ul=%d, expected 2\n", ul);
118
119     hres = IEnumFORMATETC_Next(fenum, 4, fetc, &ul);
120     ok(hres == S_FALSE, "Next failed: %08x, expected S_FALSE\n", hres);
121     ok(ul == 0, "ul=%d, expected 0\n", ul);
122     ul = 100;
123     hres = IEnumFORMATETC_Next(fenum, 0, fetc, &ul);
124     ok(hres == S_OK, "Next failed: %08x\n", hres);
125     ok(ul == 0, "ul=%d, expected 0\n", ul);
126
127     hres = IEnumFORMATETC_Skip(fenum, 3);
128     ok(hres == S_FALSE, "Skip failed: %08x, expected S_FALSE\n", hres);
129
130     hres = IEnumFORMATETC_Reset(fenum);
131     ok(hres == S_OK, "Reset failed: %08x\n", hres);
132
133     hres = IEnumFORMATETC_Next(fenum, 5, fetc, NULL);
134     ok(hres == S_OK, "Next failed: %08x\n", hres);
135     ok(fetc[0].lindex == 0, "fetc[0].lindex=%d, expected 0\n", fetc[0].lindex);
136
137     hres = IEnumFORMATETC_Reset(fenum);
138     ok(hres == S_OK, "Reset failed: %08x\n", hres);
139
140     hres = IEnumFORMATETC_Skip(fenum, 2);
141     ok(hres == S_OK, "Skip failed: %08x\n", hres);
142
143     hres = IEnumFORMATETC_Clone(fenum, NULL);
144     ok(hres == E_INVALIDARG, "Clone failed: %08x, expected E_INVALIDARG\n", hres);
145
146     hres = IEnumFORMATETC_Clone(fenum, &fenum2);
147     ok(hres == S_OK, "Clone failed: %08x\n", hres);
148
149     if(SUCCEEDED(hres)) {
150         ok(fenum != fenum2, "fenum == fenum2\n");
151
152         hres = IEnumFORMATETC_Next(fenum2, 2, fetc, &ul);
153         ok(hres == S_OK, "Next failed: %08x\n", hres);
154         ok(fetc[0].lindex == 2, "fetc[0].lindex=%d, expected 2\n", fetc[0].lindex);
155
156         IEnumFORMATETC_Release(fenum2);
157     }
158
159     hres = IEnumFORMATETC_Next(fenum, 2, fetc, &ul);
160     ok(hres == S_OK, "Next failed: %08x\n", hres);
161     ok(fetc[0].lindex == 2, "fetc[0].lindex=%d, expected 2\n", fetc[0].lindex);
162
163     hres = IEnumFORMATETC_Skip(fenum, 1);
164     ok(hres == S_OK, "Skip failed: %08x\n", hres);
165     
166     IEnumFORMATETC_Release(fenum);
167 }
168
169 static void test_RegisterFormatEnumerator(void)
170 {
171     IBindCtx *bctx = NULL;
172     IEnumFORMATETC *format = NULL, *format2 = NULL;
173     IUnknown *unk = NULL;
174     HRESULT hres;
175
176     static FORMATETC formatetc = {0,NULL,0,0,0};
177     static WCHAR wszEnumFORMATETC[] =
178         {'_','E','n','u','m','F','O','R','M','A','T','E','T','C','_',0};
179
180     CreateBindCtx(0, &bctx);
181
182     hres = CreateFormatEnumerator(1, &formatetc, &format);
183     ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
184     if(FAILED(hres))
185         return;
186
187     hres = RegisterFormatEnumerator(NULL, format, 0);
188     ok(hres == E_INVALIDARG,
189             "RegisterFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
190     hres = RegisterFormatEnumerator(bctx, NULL, 0);
191     ok(hres == E_INVALIDARG,
192             "RegisterFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
193
194     hres = RegisterFormatEnumerator(bctx, format, 0);
195     ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
196
197     hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
198     ok(hres == S_OK, "GetObjectParam failed: %08x\n", hres);
199     ok(unk == (IUnknown*)format, "unk != format\n");
200
201     hres = RevokeFormatEnumerator(NULL, format);
202     ok(hres == E_INVALIDARG,
203             "RevokeFormatEnumerator failed: %08x, expected E_INVALIDARG\n", hres);
204
205     hres = RevokeFormatEnumerator(bctx, format);
206     ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
207
208     hres = RevokeFormatEnumerator(bctx, format);
209     ok(hres == E_FAIL, "RevokeFormatEnumerator failed: %08x, expected E_FAIL\n", hres);
210
211     hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
212     ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
213
214     hres = RegisterFormatEnumerator(bctx, format, 0);
215     ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
216
217     hres = CreateFormatEnumerator(1, &formatetc, &format2);
218     ok(hres == S_OK, "CreateFormatEnumerator failed: %08x\n", hres);
219
220     if(SUCCEEDED(hres)) {
221         hres = RevokeFormatEnumerator(bctx, format);
222         ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
223
224         IEnumFORMATETC_Release(format2);
225     }
226
227     hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
228     ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
229
230     IEnumFORMATETC_Release(format);
231
232     hres = RegisterFormatEnumerator(bctx, format, 0);
233     ok(hres == S_OK, "RegisterFormatEnumerator failed: %08x\n", hres);
234     hres = RevokeFormatEnumerator(bctx, NULL);
235     ok(hres == S_OK, "RevokeFormatEnumerator failed: %08x\n", hres);
236     hres = IBindCtx_GetObjectParam(bctx, wszEnumFORMATETC, &unk);
237     ok(hres == E_FAIL, "GetObjectParam failed: %08x, expected E_FAIL\n", hres);
238
239     IEnumFORMATETC_Release(format);
240     IBindCtx_Release(bctx);
241 }
242
243 static const WCHAR url1[] = {'r','e','s',':','/','/','m','s','h','t','m','l','.','d','l','l',
244         '/','b','l','a','n','k','.','h','t','m',0};
245 static const WCHAR url2[] = {'i','n','d','e','x','.','h','t','m',0};
246 static const WCHAR url3[] = {'f','i','l','e',':','/','/','c',':','\\','I','n','d','e','x','.','h','t','m',0};
247 static const WCHAR url4[] = {'f','i','l','e',':','s','o','m','e','%','2','0','f','i','l','e',
248         '%','2','e','j','p','g',0};
249 static const WCHAR url5[] = {'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q',
250         '.','o','r','g',0};
251 static const WCHAR url6[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
252 static const WCHAR url7[] = {'f','t','p',':','/','/','w','i','n','e','h','q','.','o','r','g','/',
253         'f','i','l','e','.','t','e','s','t',0};
254 static const WCHAR url8[] = {'t','e','s','t',':','1','2','3','a','b','c',0};
255 static const WCHAR url9[] =
256     {'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q','.','o','r','g',
257      '/','s','i','t','e','/','a','b','o','u','t',0};
258 static const WCHAR url10[] = {'f','i','l','e',':','/','/','s','o','m','e','%','2','0','f','i','l','e',
259         '.','j','p','g',0};
260
261 static const WCHAR url4e[] = {'f','i','l','e',':','s','o','m','e',' ','f','i','l','e',
262         '.','j','p','g',0};
263
264 static const WCHAR path3[] = {'c',':','\\','I','n','d','e','x','.','h','t','m',0};
265 static const WCHAR path4[] = {'s','o','m','e',' ','f','i','l','e','.','j','p','g',0};
266
267 static const WCHAR wszRes[] = {'r','e','s',0};
268 static const WCHAR wszFile[] = {'f','i','l','e',0};
269 static const WCHAR wszHttp[] = {'h','t','t','p',0};
270 static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
271 static const WCHAR wszEmpty[] = {0};
272
273 static const WCHAR wszWineHQ[] = {'w','w','w','.','w','i','n','e','h','q','.','o','r','g',0};
274 static const WCHAR wszHttpWineHQ[] = {'h','t','t','p',':','/','/','w','w','w','.',
275     'w','i','n','e','h','q','.','o','r','g',0};
276
277 struct parse_test {
278     LPCWSTR url;
279     HRESULT secur_hres;
280     LPCWSTR encoded_url;
281     HRESULT path_hres;
282     LPCWSTR path;
283     LPCWSTR schema;
284     LPCWSTR domain;
285     HRESULT domain_hres;
286     LPCWSTR rootdocument;
287     HRESULT rootdocument_hres;
288 };
289
290 static const struct parse_test parse_tests[] = {
291     {url1, S_OK,   url1,  E_INVALIDARG, NULL, wszRes, NULL, E_FAIL, NULL, E_FAIL},
292     {url2, E_FAIL, url2,  E_INVALIDARG, NULL, wszEmpty, NULL, E_FAIL, NULL, E_FAIL},
293     {url3, E_FAIL, url3,  S_OK, path3,        wszFile, wszEmpty, S_OK, NULL, E_FAIL},
294     {url4, E_FAIL, url4e, S_OK, path4,        wszFile, wszEmpty, S_OK, NULL, E_FAIL},
295     {url5, E_FAIL, url5,  E_INVALIDARG, NULL, wszHttp, wszWineHQ, S_OK, wszHttpWineHQ, S_OK},
296     {url6, S_OK,   url6,  E_INVALIDARG, NULL, wszAbout, NULL, E_FAIL, NULL, E_FAIL},
297 };
298
299 static void test_CoInternetParseUrl(void)
300 {
301     HRESULT hres;
302     DWORD size;
303     int i;
304
305     static WCHAR buf[4096];
306
307     memset(buf, 0xf0, sizeof(buf));
308     hres = CoInternetParseUrl(parse_tests[0].url, PARSE_SCHEMA, 0, buf,
309             3, &size, 0);
310     ok(hres == E_POINTER, "schema failed: %08x, expected E_POINTER\n", hres);
311
312     for(i=0; i < sizeof(parse_tests)/sizeof(parse_tests[0]); i++) {
313         memset(buf, 0xf0, sizeof(buf));
314         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SECURITY_URL, 0, buf,
315                 sizeof(buf)/sizeof(WCHAR), &size, 0);
316         ok(hres == parse_tests[i].secur_hres, "[%d] security url failed: %08x, expected %08x\n",
317                 i, hres, parse_tests[i].secur_hres);
318
319         memset(buf, 0xf0, sizeof(buf));
320         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_ENCODE, 0, buf,
321                 sizeof(buf)/sizeof(WCHAR), &size, 0);
322         ok(hres == S_OK, "[%d] encoding failed: %08x\n", i, hres);
323         ok(size == lstrlenW(parse_tests[i].encoded_url), "[%d] wrong size\n", i);
324         ok(!lstrcmpW(parse_tests[i].encoded_url, buf), "[%d] wrong encoded url\n", i);
325
326         memset(buf, 0xf0, sizeof(buf));
327         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_PATH_FROM_URL, 0, buf,
328                 sizeof(buf)/sizeof(WCHAR), &size, 0);
329         ok(hres == parse_tests[i].path_hres, "[%d] path failed: %08x, expected %08x\n",
330                 i, hres, parse_tests[i].path_hres);
331         if(parse_tests[i].path) {
332             ok(size == lstrlenW(parse_tests[i].path), "[%d] wrong size\n", i);
333             ok(!lstrcmpW(parse_tests[i].path, buf), "[%d] wrong path\n", i);
334         }
335
336         memset(buf, 0xf0, sizeof(buf));
337         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_SCHEMA, 0, buf,
338                 sizeof(buf)/sizeof(WCHAR), &size, 0);
339         ok(hres == S_OK, "[%d] schema failed: %08x\n", i, hres);
340         ok(size == lstrlenW(parse_tests[i].schema), "[%d] wrong size\n", i);
341         ok(!lstrcmpW(parse_tests[i].schema, buf), "[%d] wrong schema\n", i);
342
343         memset(buf, 0xf0, sizeof(buf));
344         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_DOMAIN, 0, buf,
345                 sizeof(buf)/sizeof(WCHAR), &size, 0);
346         ok(hres == parse_tests[i].domain_hres, "[%d] domain failed: %08x\n", i, hres);
347         if(parse_tests[i].domain)
348             ok(!lstrcmpW(parse_tests[i].domain, buf), "[%d] wrong domain, received %s\n", i, wine_dbgstr_w(buf));
349
350         memset(buf, 0xf0, sizeof(buf));
351         hres = CoInternetParseUrl(parse_tests[i].url, PARSE_ROOTDOCUMENT, 0, buf,
352                 sizeof(buf)/sizeof(WCHAR), &size, 0);
353         ok(hres == parse_tests[i].rootdocument_hres, "[%d] rootdocument failed: %08x\n", i, hres);
354         if(parse_tests[i].rootdocument)
355             ok(!lstrcmpW(parse_tests[i].rootdocument, buf), "[%d] wrong rootdocument, received %s\n", i, wine_dbgstr_w(buf));
356     }
357 }
358
359 static void test_CoInternetCompareUrl(void)
360 {
361     HRESULT hres;
362
363     hres = CoInternetCompareUrl(url1, url1, 0);
364     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
365
366     hres = CoInternetCompareUrl(url1, url3, 0);
367     ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres);
368
369     hres = CoInternetCompareUrl(url3, url1, 0);
370     ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres);
371 }
372
373 static const struct {
374     LPCWSTR url;
375     DWORD uses_net;
376 } query_info_tests[] = {
377     {url1, 0},
378     {url2, 0},
379     {url3, 0},
380     {url4, 0},
381     {url5, 0},
382     {url6, 0},
383     {url7, 0},
384     {url8, 0}
385 };
386
387 static void test_CoInternetQueryInfo(void)
388 {
389     BYTE buf[100];
390     DWORD cb, i;
391     HRESULT hres;
392
393     for(i=0; i < sizeof(query_info_tests)/sizeof(query_info_tests[0]); i++) {
394         cb = 0xdeadbeef;
395         memset(buf, '?', sizeof(buf));
396         hres = CoInternetQueryInfo(query_info_tests[0].url, QUERY_USES_NETWORK, 0, buf, sizeof(buf), &cb, 0);
397         ok(hres == S_OK, "[%d] CoInternetQueryInfo failed: %08x\n", i, hres);
398         ok(cb == sizeof(DWORD), "[%d] cb = %d\n", i, cb);
399         ok(*(DWORD*)buf == query_info_tests[i].uses_net, "[%d] ret %x, expected %x\n",
400            i, *(DWORD*)buf, query_info_tests[i].uses_net);
401
402         hres = CoInternetQueryInfo(query_info_tests[0].url, QUERY_USES_NETWORK, 0, buf, 3, &cb, 0);
403         ok(hres == E_FAIL, "[%d] CoInternetQueryInfo failed: %08x, expected E_FAIL\n", i, hres);
404         hres = CoInternetQueryInfo(query_info_tests[0].url, QUERY_USES_NETWORK, 0, NULL, sizeof(buf), &cb, 0);
405         ok(hres == E_FAIL, "[%d] CoInternetQueryInfo failed: %08x, expected E_FAIL\n", i, hres);
406
407         memset(buf, '?', sizeof(buf));
408         hres = CoInternetQueryInfo(query_info_tests[0].url, QUERY_USES_NETWORK, 0, buf, sizeof(buf), NULL, 0);
409         ok(hres == S_OK, "[%d] CoInternetQueryInfo failed: %08x\n", i, hres);
410         ok(*(DWORD*)buf == query_info_tests[i].uses_net, "[%d] ret %x, expected %x\n",
411            i, *(DWORD*)buf, query_info_tests[i].uses_net);
412     }
413 }
414
415 static const WCHAR mimeTextHtml[] = {'t','e','x','t','/','h','t','m','l',0};
416 static const WCHAR mimeTextPlain[] = {'t','e','x','t','/','p','l','a','i','n',0};
417 static const WCHAR mimeTextRichtext[] = {'t','e','x','t','/','r','i','c','h','t','e','x','t',0};
418 static const WCHAR mimeAppOctetStream[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
419     'o','c','t','e','t','-','s','t','r','e','a','m',0};
420 static const WCHAR mimeImagePjpeg[] = {'i','m','a','g','e','/','p','j','p','e','g',0};
421 static const WCHAR mimeImageGif[] = {'i','m','a','g','e','/','g','i','f',0};
422 static const WCHAR mimeImageBmp[] = {'i','m','a','g','e','/','b','m','p',0};
423 static const WCHAR mimeImageXPng[] = {'i','m','a','g','e','/','x','-','p','n','g',0};
424 static const WCHAR mimeImageTiff[] = {'i','m','a','g','e','/','t','i','f','f',0};
425 static const WCHAR mimeVideoAvi[] = {'v','i','d','e','o','/','a','v','i',0};
426 static const WCHAR mimeVideoMpeg[] = {'v','i','d','e','o','/','m','p','e','g',0};
427 static const WCHAR mimeAppPostscript[] =
428     {'a','p','p','l','i','c','a','t','i','o','n','/','p','o','s','t','s','c','r','i','p','t',0};
429 static const WCHAR mimeAppXCompressed[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
430                                     'x','-','c','o','m','p','r','e','s','s','e','d',0};
431 static const WCHAR mimeAppXZip[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
432                                     'x','-','z','i','p','-','c','o','m','p','r','e','s','s','e','d',0};
433 static const WCHAR mimeAppXGzip[] = {'a','p','p','l','i','c','a','t','i','o','n','/',
434                                     'x','-','g','z','i','p','-','c','o','m','p','r','e','s','s','e','d',0};
435 static const WCHAR mimeAppJava[] = {'a','p','p','l','i','c','a','t','i','o','n','/','j','a','v','a',0};
436 static const WCHAR mimeAppPdf[] = {'a','p','p','l','i','c','a','t','i','o','n','/','p','d','f',0};
437 static const WCHAR mimeAppXMSDownload[] =
438     {'a','p','p','l','i','c','a','t','i','o','n','/','x','-','m','s','d','o','w','n','l','o','a','d',0};
439 static const WCHAR mimeAudioWav[] = {'a','u','d','i','o','/','w','a','v',0};
440 static const WCHAR mimeAudioBasic[] = {'a','u','d','i','o','/','b','a','s','i','c',0};
441
442 static const struct {
443     LPCWSTR url;
444     LPCWSTR mime;
445     HRESULT hres;
446 } mime_tests[] = {
447     {url1, mimeTextHtml, S_OK},
448     {url2, mimeTextHtml, S_OK},
449     {url3, mimeTextHtml, S_OK},
450     {url4, NULL, E_FAIL},
451     {url5, NULL, __HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)},
452     {url6, NULL, E_FAIL},
453     {url7, NULL, __HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)}
454 };
455
456 static BYTE data1[] = "test data\n";
457 static BYTE data2[] = {31,'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0};
458 static BYTE data3[] = {0,0,0};
459 static BYTE data4[] = {'t','e','s',0xfa,'t',' ','d','a','t','a','\n',0,0};
460 static BYTE data5[] = {0xa,0xa,0xa,'x',32,'x',0};
461 static BYTE data6[] = {0xfa,0xfa,0xfa,0xfa,'\n','\r','\t','x','x','x',1};
462 static BYTE data7[] = "<html>blahblah";
463 static BYTE data8[] = {'t','e','s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
464 static BYTE data9[] = {'t','e',0,'s',0xfa,'t',' ','<','h','t','m','l','>','d','a','t','a','\n',0,0};
465 static BYTE data10[] = "<HtmL>blahblah";
466 static BYTE data11[] = "blah<HTML>blahblah";
467 static BYTE data12[] = "blah<HTMLblahblah";
468 static BYTE data13[] = "blahHTML>blahblah";
469 static BYTE data14[] = "blah<HTMblahblah";
470 static BYTE data15[] = {0xff,0xd8};
471 static BYTE data16[] = {0xff,0xd8,'h'};
472 static BYTE data17[] = {0,0xff,0xd8};
473 static BYTE data18[] = {0xff,0xd8,'<','h','t','m','l','>'};
474 static BYTE data19[] = {'G','I','F','8','7','a'};
475 static BYTE data20[] = {'G','I','F','8','9','a'};
476 static BYTE data21[] = {'G','I','F','8','7'};
477 static BYTE data22[] = {'G','i','F','8','7','a'};
478 static BYTE data23[] = {'G','i','F','8','8','a'};
479 static BYTE data24[] = {'g','i','f','8','7','a'};
480 static BYTE data25[] = {'G','i','F','8','7','A'};
481 static BYTE data26[] = {'G','i','F','8','7','a','<','h','t','m','l','>'};
482 static BYTE data27[] = {0x30,'G','i','F','8','7','A'};
483 static BYTE data28[] = {0x42,0x4d,0x6e,0x42,0x1c,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x00};
484 static BYTE data29[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x','x'};
485 static BYTE data30[] = {0x42,0x4d,'x','x','x','x',0x00,0x01,0x00,0x00,'x','x','x','x'};
486 static BYTE data31[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'<','h','t','m','l','>'};
487 static BYTE data32[] = {0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
488 static BYTE data33[] = {0x00,0x42,0x4d,'x','x','x','x',0x00,0x00,0x00,0x00,'x','x','x'};
489 static BYTE data34[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
490 static BYTE data35[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x','x','x','x',0};
491 static BYTE data36[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,'x','x'};
492 static BYTE data37[] = {0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'<','h','t','m','l','>'};
493 static BYTE data38[] = {0x00,0x89,'P','N','G',0x0d,0x0a,0x1a,0x0a,'x'};
494 static BYTE data39[] = {0x4d,0x4d,0x00,0x2a};
495 static BYTE data40[] = {0x4d,0x4d,0x00,0x2a,'<','h','t','m','l','>',0};
496 static BYTE data41[] = {0x4d,0x4d,0xff};
497 static BYTE data42[] = {0x4d,0x4d};
498 static BYTE data43[] = {0x00,0x4d,0x4d,0x00};
499 static BYTE data44[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
500 static BYTE data45[] = {'R','I','F','f',0xff,0xff,0xff,0xff,'A','V','I',0x20,0xff};
501 static BYTE data46[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20};
502 static BYTE data47[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x21,0xff};
503 static BYTE data48[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'A','V','I',0x20,'<','h','t','m','l','>'};
504 static BYTE data49[] = {'R','I','F','F',0x0f,0x0f,0xf0,0xf0,'A','V','I',0x20,0xf0,0x00};
505 static BYTE data50[] = {0x00,0x00,0x01,0xb3,0xff};
506 static BYTE data51[] = {0x00,0x00,0x01,0xba,0xff};
507 static BYTE data52[] = {0x00,0x00,0x01,0xb8,0xff};
508 static BYTE data53[] = {0x00,0x00,0x01,0xba};
509 static BYTE data54[] = {0x00,0x00,0x01,0xba,'<','h','t','m','l','>'};
510 static BYTE data55[] = {0x1f,0x8b,'x'};
511 static BYTE data56[] = {0x1f};
512 static BYTE data57[] = {0x1f,0x8b,'<','h','t','m','l','>','t','e','s','t',0};
513 static BYTE data58[] = {0x1f,0x8b};
514 static BYTE data59[] = {0x50,0x4b,'x'};
515 static BYTE data60[] = {0x50,0x4b};
516 static BYTE data61[] = {0x50,0x4b,'<','h','t','m','l','>',0};
517 static BYTE data62[] = {0xca,0xfe,0xba,0xbe,'x'};
518 static BYTE data63[] = {0xca,0xfe,0xba,0xbe};
519 static BYTE data64[] = {0xca,0xfe,0xba,0xbe,'<','h','t','m','l','>',0};
520 static BYTE data65[] = {0x25,0x50,0x44,0x46,'x'};
521 static BYTE data66[] = {0x25,0x50,0x44,0x46};
522 static BYTE data67[] = {0x25,0x50,0x44,0x46,'x','<','h','t','m','l','>'};
523 static BYTE data68[] = {'M','Z','x'};
524 static BYTE data69[] = {'M','Z'};
525 static BYTE data70[] = {'M','Z','<','h','t','m','l','>',0xff};
526 static BYTE data71[] = {'{','\\','r','t','f',0};
527 static BYTE data72[] = {'{','\\','r','t','f'};
528 static BYTE data73[] = {' ','{','\\','r','t','f',' '};
529 static BYTE data74[] = {'{','\\','r','t','f','<','h','t','m','l','>',' '};
530 static BYTE data75[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'W','A','V','E',0xff};
531 static BYTE data76[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'W','A','V','E'};
532 static BYTE data77[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'W','A','V',0xff,0xff};
533 static BYTE data78[] = {'R','I','F','F',0xff,0xff,0xff,0xff,'<','h','t','m','l','>',0xff};
534 static BYTE data79[] = {'%','!',0xff};
535 static BYTE data80[] = {'%','!'};
536 static BYTE data81[] = {'%','!','P','S','<','h','t','m','l','>'};
537 static BYTE data82[] = {'.','s','n','d',0};
538 static BYTE data83[] = {'.','s','n','d'};
539 static BYTE data84[] = {'.','s','n','d',0,'<','h','t','m','l','>',1,1};
540 static BYTE data85[] = {'.','S','N','D',0};
541
542 static const struct {
543     BYTE *data;
544     DWORD size;
545     LPCWSTR mime, mime_alt;
546 } mime_tests2[] = {
547     {data1, sizeof(data1), mimeTextPlain},
548     {data2, sizeof(data2), mimeAppOctetStream},
549     {data3, sizeof(data3), mimeAppOctetStream},
550     {data4, sizeof(data4), mimeAppOctetStream},
551     {data5, sizeof(data5), mimeTextPlain},
552     {data6, sizeof(data6), mimeTextPlain},
553     {data7, sizeof(data7), mimeTextHtml, mimeTextPlain /* IE8 */},
554     {data8, sizeof(data8), mimeTextHtml, mimeTextPlain /* IE8 */},
555     {data9, sizeof(data9), mimeTextHtml, mimeImagePjpeg /* IE8 */},
556     {data10, sizeof(data10), mimeTextHtml, mimeTextPlain /* IE8 */},
557     {data11, sizeof(data11), mimeTextHtml, mimeTextPlain /* IE8 */},
558     {data12, sizeof(data12), mimeTextHtml, mimeTextPlain /* IE8 */},
559     {data13, sizeof(data13), mimeTextPlain},
560     {data14, sizeof(data14), mimeTextPlain},
561     {data15, sizeof(data15), mimeTextPlain},
562     {data16, sizeof(data16), mimeImagePjpeg},
563     {data17, sizeof(data17), mimeAppOctetStream},
564     {data18, sizeof(data18), mimeTextHtml},
565     {data19, sizeof(data19), mimeImageGif},
566     {data20, sizeof(data20), mimeImageGif},
567     {data21, sizeof(data21), mimeTextPlain},
568     {data22, sizeof(data22), mimeImageGif},
569     {data23, sizeof(data23), mimeTextPlain},
570     {data24, sizeof(data24), mimeImageGif},
571     {data25, sizeof(data25), mimeImageGif},
572     {data26, sizeof(data26), mimeTextHtml, mimeImageGif /* IE8 */},
573     {data27, sizeof(data27), mimeTextPlain},
574     {data28, sizeof(data28), mimeImageBmp},
575     {data29, sizeof(data29), mimeImageBmp},
576     {data30, sizeof(data30), mimeAppOctetStream},
577     {data31, sizeof(data31), mimeTextHtml, mimeImageBmp /* IE8 */},
578     {data32, sizeof(data32), mimeAppOctetStream},
579     {data33, sizeof(data33), mimeAppOctetStream},
580     {data34, sizeof(data34), mimeImageXPng},
581     {data35, sizeof(data35), mimeImageXPng},
582     {data36, sizeof(data36), mimeAppOctetStream},
583     {data37, sizeof(data37), mimeTextHtml, mimeImageXPng /* IE8 */},
584     {data38, sizeof(data38), mimeAppOctetStream},
585     {data39, sizeof(data39), mimeImageTiff},
586     {data40, sizeof(data40), mimeTextHtml, mimeImageTiff /* IE8 */},
587     {data41, sizeof(data41), mimeImageTiff},
588     {data42, sizeof(data42), mimeTextPlain},
589     {data43, sizeof(data43), mimeAppOctetStream},
590     {data44, sizeof(data44), mimeVideoAvi},
591     {data45, sizeof(data45), mimeTextPlain},
592     {data46, sizeof(data46), mimeTextPlain},
593     {data47, sizeof(data47), mimeTextPlain},
594     {data48, sizeof(data48), mimeTextHtml, mimeVideoAvi /* IE8 */},
595     {data49, sizeof(data49), mimeVideoAvi},
596     {data50, sizeof(data50), mimeVideoMpeg},
597     {data51, sizeof(data51), mimeVideoMpeg},
598     {data52, sizeof(data52), mimeAppOctetStream},
599     {data53, sizeof(data53), mimeAppOctetStream},
600     {data54, sizeof(data54), mimeTextHtml, mimeVideoMpeg /* IE8 */},
601     {data55, sizeof(data55), mimeAppXGzip},
602     {data56, sizeof(data56), mimeTextPlain},
603     {data57, sizeof(data57), mimeTextHtml, mimeAppXGzip /* IE8 */},
604     {data58, sizeof(data58), mimeAppOctetStream},
605     {data59, sizeof(data59), mimeAppXZip},
606     {data60, sizeof(data60), mimeTextPlain},
607     {data61, sizeof(data61), mimeTextHtml, mimeAppXZip /* IE8 */},
608     {data62, sizeof(data62), mimeAppJava},
609     {data63, sizeof(data63), mimeTextPlain},
610     {data64, sizeof(data64), mimeTextHtml, mimeAppJava /* IE8 */},
611     {data65, sizeof(data65), mimeAppPdf},
612     {data66, sizeof(data66), mimeTextPlain},
613     {data67, sizeof(data67), mimeTextHtml, mimeAppPdf /* IE8 */},
614     {data68, sizeof(data68), mimeAppXMSDownload},
615     {data69, sizeof(data69), mimeTextPlain},
616     {data70, sizeof(data70), mimeTextHtml, mimeAppXMSDownload /* IE8 */},
617     {data71, sizeof(data71), mimeTextRichtext},
618     {data72, sizeof(data72), mimeTextPlain},
619     {data73, sizeof(data73), mimeTextPlain},
620     {data74, sizeof(data74), mimeTextHtml, mimeTextRichtext /* IE8 */},
621     {data75, sizeof(data75), mimeAudioWav},
622     {data76, sizeof(data76), mimeTextPlain},
623     {data77, sizeof(data77), mimeTextPlain},
624     {data78, sizeof(data78), mimeTextHtml, mimeTextPlain /* IE8 */},
625     {data79, sizeof(data79), mimeAppPostscript},
626     {data80, sizeof(data80), mimeTextPlain},
627     {data81, sizeof(data81), mimeTextHtml, mimeAppPostscript /* IE8 */},
628     {data82, sizeof(data82), mimeAudioBasic},
629     {data83, sizeof(data83), mimeTextPlain},
630     {data84, sizeof(data84), mimeTextHtml, mimeAudioBasic /* IE8 */},
631     {data85, sizeof(data85), mimeTextPlain}
632 };
633
634 static void test_FindMimeFromData(void)
635 {
636     HRESULT hres;
637     LPWSTR mime;
638     int i;
639
640     for(i=0; i<sizeof(mime_tests)/sizeof(mime_tests[0]); i++) {
641         mime = (LPWSTR)0xf0f0f0f0;
642         hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, NULL, 0, &mime, 0);
643         if(mime_tests[i].mime) {
644             ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
645             ok(!lstrcmpW(mime, mime_tests[i].mime), "[%d] wrong mime\n", i);
646             CoTaskMemFree(mime);
647         }else {
648             ok(hres == E_FAIL || hres == mime_tests[i].hres,
649                "[%d] FindMimeFromData failed: %08x, expected %08x\n",
650                i, hres, mime_tests[i].hres);
651             ok(mime == (LPWSTR)0xf0f0f0f0, "[%d] mime != 0xf0f0f0f0\n", i);
652         }
653
654         mime = (LPWSTR)0xf0f0f0f0;
655         hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeTextPlain, 0, &mime, 0);
656         ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
657         ok(!lstrcmpW(mime, mimeTextPlain), "[%d] wrong mime\n", i);
658         CoTaskMemFree(mime);
659
660         mime = (LPWSTR)0xf0f0f0f0;
661         hres = FindMimeFromData(NULL, mime_tests[i].url, NULL, 0, mimeAppOctetStream, 0, &mime, 0);
662         ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
663         ok(!lstrcmpW(mime, mimeAppOctetStream), "[%d] wrong mime\n", i);
664         CoTaskMemFree(mime);
665     }
666
667     for(i=0; i < sizeof(mime_tests2)/sizeof(mime_tests2[0]); i++) {
668         hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
669                 NULL, 0, &mime, 0);
670         ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
671         ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime: %s\n", i, wine_dbgstr_w(mime));
672         CoTaskMemFree(mime);
673
674         hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
675                 mimeTextHtml, 0, &mime, 0);
676         ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
677         if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime)
678            || !lstrcmpW(mimeTextPlain, mime_tests2[i].mime))
679             ok(!lstrcmpW(mime, mimeTextHtml), "[%d] wrong mime\n", i);
680         else
681             ok(!lstrcmpW(mime, mime_tests2[i].mime), "[%d] wrong mime\n", i);
682         CoTaskMemFree(mime);
683
684         hres = FindMimeFromData(NULL, NULL, mime_tests2[i].data, mime_tests2[i].size,
685                 mimeImagePjpeg, 0, &mime, 0);
686         ok(hres == S_OK, "[%d] FindMimeFromData failed: %08x\n", i, hres);
687         if(!lstrcmpW(mimeAppOctetStream, mime_tests2[i].mime) || i == 17)
688             ok(!lstrcmpW(mime, mimeImagePjpeg), "[%d] wrong mime\n", i);
689         else
690             ok(!lstrcmpW(mime, mime_tests2[i].mime) ||
691                     (mime_tests2[i].mime_alt && !lstrcmpW(mime, mime_tests2[i].mime_alt)),
692                     "[%d] wrong mime, got %s\n", i, wine_dbgstr_w(mime));
693
694         CoTaskMemFree(mime);
695     }
696
697     hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), NULL, 0, &mime, 0);
698     ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
699     ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
700     CoTaskMemFree(mime);
701
702     hres = FindMimeFromData(NULL, url1, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
703     ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
704     ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
705     CoTaskMemFree(mime);
706
707     hres = FindMimeFromData(NULL, url4, data1, sizeof(data1), mimeAppOctetStream, 0, &mime, 0);
708     ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
709     ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
710     CoTaskMemFree(mime);
711
712     hres = FindMimeFromData(NULL, NULL, NULL, 0, NULL, 0, &mime, 0);
713     ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, excepted E_INVALIDARG\n", hres);
714
715     hres = FindMimeFromData(NULL, NULL, NULL, 0, mimeTextPlain, 0, &mime, 0);
716     ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
717
718     hres = FindMimeFromData(NULL, NULL, data1, 0, NULL, 0, &mime, 0);
719     ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
720
721     hres = FindMimeFromData(NULL, url1, data1, 0, NULL, 0, &mime, 0);
722     ok(hres == E_FAIL, "FindMimeFromData failed: %08x, expected E_FAIL\n", hres);
723
724     hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, &mime, 0);
725     ok(hres == S_OK, "FindMimeFromData failed: %08x\n", hres);
726     ok(!lstrcmpW(mime, mimeTextPlain), "wrong mime\n");
727     CoTaskMemFree(mime);
728
729     hres = FindMimeFromData(NULL, NULL, data1, 0, mimeTextPlain, 0, NULL, 0);
730     ok(hres == E_INVALIDARG, "FindMimeFromData failed: %08x, expected E_INVALIDARG\n", hres);
731 }
732
733 static void register_protocols(void)
734 {
735     IInternetSession *session;
736     IClassFactory *factory;
737     HRESULT hres;
738
739     static const WCHAR wszAbout[] = {'a','b','o','u','t',0};
740
741     hres = CoInternetGetSession(0, &session, 0);
742     ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
743     if(FAILED(hres))
744         return;
745
746     hres = CoGetClassObject(&CLSID_AboutProtocol, CLSCTX_INPROC_SERVER, NULL,
747             &IID_IClassFactory, (void**)&factory);
748     ok(hres == S_OK, "Coud not get AboutProtocol factory: %08x\n", hres);
749     if(FAILED(hres))
750         return;
751
752     IInternetSession_RegisterNameSpace(session, factory, &CLSID_AboutProtocol,
753                                        wszAbout, 0, NULL, 0);
754     IClassFactory_Release(factory);
755
756     IInternetSession_Release(session);
757 }
758
759 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
760                                                           REFIID riid, void **ppv)
761 {
762     ok(0, "unexpected call\n");
763     return E_NOINTERFACE;
764 }
765
766 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
767 {
768     return 2;
769 }
770
771 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
772 {
773     return 1;
774 }
775
776 static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
777         PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
778         DWORD *pcchResult, DWORD dwReserved)
779 {
780     CHECK_EXPECT(ParseUrl);
781     return E_NOTIMPL;
782 }
783
784 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
785         LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
786         LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)
787 {
788     ok(0, "unexpected call\n");
789     return E_NOTIMPL;
790 }
791
792 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface,
793         LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)
794 {
795     ok(0, "unexpected call\n");
796     return E_NOTIMPL;
797 }
798
799 static HRESULT WINAPI InternetProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
800         LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer,
801         DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)
802 {
803     ok(0, "unexpected call\n");
804     return E_NOTIMPL;
805 }
806
807 static const IInternetProtocolInfoVtbl InternetProtocolInfoVtbl = {
808     InternetProtocolInfo_QueryInterface,
809     InternetProtocolInfo_AddRef,
810     InternetProtocolInfo_Release,
811     InternetProtocolInfo_ParseUrl,
812     InternetProtocolInfo_CombineUrl,
813     InternetProtocolInfo_CompareUrl,
814     InternetProtocolInfo_QueryInfo
815 };
816
817 static IInternetProtocolInfo protocol_info = { &InternetProtocolInfoVtbl };
818
819 static HRESULT qiret;
820 static IClassFactory *expect_cf;
821
822 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
823 {
824     if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
825         CHECK_EXPECT(QI_IInternetProtocolInfo);
826         ok(iface == expect_cf, "unexpected iface\n");
827         *ppv = &protocol_info;
828         return qiret;
829     }
830
831     ok(0, "unexpected call\n");
832     return E_NOINTERFACE;
833 }
834
835 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
836 {
837     return 2;
838 }
839
840 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
841 {
842     return 1;
843 }
844
845 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
846                                         REFIID riid, void **ppv)
847 {
848     ok(0, "unexpected call\n");
849     return E_NOTIMPL;
850 }
851
852 static HRESULT WINAPI ProtocolCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
853                                         REFIID riid, void **ppv)
854 {
855     CHECK_EXPECT(CreateInstance);
856
857     ok(iface == expect_cf, "unexpected iface\n");
858     ok(pOuter == NULL, "pOuter = %p\n", pOuter);
859     ok(IsEqualGUID(&IID_IInternetProtocolInfo, riid), "unexpected riid\n");
860     ok(ppv != NULL, "ppv == NULL\n");
861
862     *ppv = &protocol_info;
863     return S_OK;
864 }
865
866 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
867 {
868     ok(0, "unexpected call\n");
869     return S_OK;
870 }
871
872 static const IClassFactoryVtbl ClassFactoryVtbl = {
873     ClassFactory_QueryInterface,
874     ClassFactory_AddRef,
875     ClassFactory_Release,
876     ClassFactory_CreateInstance,
877     ClassFactory_LockServer
878 };
879
880 static const IClassFactoryVtbl ProtocolCFVtbl = {
881     ClassFactory_QueryInterface,
882     ClassFactory_AddRef,
883     ClassFactory_Release,
884     ProtocolCF_CreateInstance,
885     ClassFactory_LockServer
886 };
887
888 static IClassFactory test_protocol_cf = { &ProtocolCFVtbl };
889 static IClassFactory test_protocol_cf2 = { &ProtocolCFVtbl };
890 static IClassFactory test_cf = { &ClassFactoryVtbl };
891
892 static void test_NameSpace(void)
893 {
894     IInternetSession *session;
895     WCHAR buf[200];
896     DWORD size;
897     HRESULT hres;
898
899     static const WCHAR wszTest[] = {'t','e','s','t',0};
900
901     hres = CoInternetGetSession(0, &session, 0);
902     ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
903     if(FAILED(hres))
904         return;
905
906     hres = IInternetSession_RegisterNameSpace(session, NULL, &IID_NULL,
907                                               wszTest, 0, NULL, 0);
908     ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
909
910     hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
911                                               NULL, 0, NULL, 0);
912     ok(hres == E_INVALIDARG, "RegisterNameSpace failed: %08x\n", hres);
913
914     hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
915                                               wszTest, 0, NULL, 0);
916     ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
917
918     qiret = E_NOINTERFACE;
919     expect_cf = &test_protocol_cf;
920     SET_EXPECT(QI_IInternetProtocolInfo);
921     SET_EXPECT(CreateInstance);
922     SET_EXPECT(ParseUrl);
923
924     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
925                               &size, 0);
926     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
927
928     CHECK_CALLED(QI_IInternetProtocolInfo);
929     CHECK_CALLED(CreateInstance);
930     CHECK_CALLED(ParseUrl);
931
932     qiret = S_OK;
933     SET_EXPECT(QI_IInternetProtocolInfo);
934     SET_EXPECT(ParseUrl);
935
936     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
937                               &size, 0);
938     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
939
940     CHECK_CALLED(QI_IInternetProtocolInfo);
941     CHECK_CALLED(ParseUrl);
942
943     hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
944     ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
945
946     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
947                               &size, 0);
948     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
949
950     hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf2, &IID_NULL,
951                                               wszTest, 0, NULL, 0);
952     ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
953
954     hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
955                                               wszTest, 0, NULL, 0);
956     ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
957
958     hres = IInternetSession_RegisterNameSpace(session, &test_protocol_cf, &IID_NULL,
959                                               wszTest, 0, NULL, 0);
960     ok(hres == S_OK, "RegisterNameSpace failed: %08x\n", hres);
961
962     SET_EXPECT(QI_IInternetProtocolInfo);
963     SET_EXPECT(ParseUrl);
964
965     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
966                               &size, 0);
967     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
968
969     CHECK_CALLED(QI_IInternetProtocolInfo);
970     CHECK_CALLED(ParseUrl);
971
972     hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
973     ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
974
975     SET_EXPECT(QI_IInternetProtocolInfo);
976     SET_EXPECT(ParseUrl);
977
978     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
979                               &size, 0);
980     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
981
982     CHECK_CALLED(QI_IInternetProtocolInfo);
983     CHECK_CALLED(ParseUrl);
984
985     hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, wszTest);
986     ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
987
988     expect_cf = &test_protocol_cf2;
989     SET_EXPECT(QI_IInternetProtocolInfo);
990     SET_EXPECT(ParseUrl);
991
992     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
993                               &size, 0);
994     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
995
996     CHECK_CALLED(QI_IInternetProtocolInfo);
997     CHECK_CALLED(ParseUrl);
998
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, wszTest);
1002     ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
1003     hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf, NULL);
1004     ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
1005     hres = IInternetSession_UnregisterNameSpace(session, NULL, wszTest);
1006     ok(hres == E_INVALIDARG, "UnregisterNameSpace failed: %08x\n", hres);
1007
1008     hres = IInternetSession_UnregisterNameSpace(session, &test_protocol_cf2, wszTest);
1009     ok(hres == S_OK, "UnregisterNameSpace failed: %08x\n", hres);
1010
1011     hres = CoInternetParseUrl(url8, PARSE_ENCODE, 0, buf, sizeof(buf)/sizeof(WCHAR),
1012                               &size, 0);
1013     ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres);
1014
1015     IInternetSession_Release(session);
1016 }
1017
1018 static void test_MimeFilter(void)
1019 {
1020     IInternetSession *session;
1021     HRESULT hres;
1022
1023     static const WCHAR mimeW[] = {'t','e','s','t','/','m','i','m','e',0};
1024
1025     hres = CoInternetGetSession(0, &session, 0);
1026     ok(hres == S_OK, "CoInternetGetSession failed: %08x\n", hres);
1027     if(FAILED(hres))
1028         return;
1029
1030     hres = IInternetSession_RegisterMimeFilter(session, &test_cf, &IID_NULL, mimeW);
1031     ok(hres == S_OK, "RegisterMimeFilter failed: %08x\n", hres);
1032
1033     hres = IInternetSession_UnregisterMimeFilter(session, &test_cf, mimeW);
1034     ok(hres == S_OK, "UnregisterMimeFilter failed: %08x\n", hres);
1035
1036     hres = IInternetSession_UnregisterMimeFilter(session, &test_cf, mimeW);
1037     ok(hres == S_OK, "UnregisterMimeFilter failed: %08x\n", hres);
1038
1039     hres = IInternetSession_UnregisterMimeFilter(session, (void*)0xdeadbeef, mimeW);
1040     ok(hres == S_OK, "UnregisterMimeFilter failed: %08x\n", hres);
1041
1042     IInternetSession_Release(session);
1043 }
1044
1045 static ULONG WINAPI unk_Release(IUnknown *iface)
1046 {
1047     CHECK_EXPECT(unk_Release);
1048     return 0;
1049 }
1050
1051 static const IUnknownVtbl unk_vtbl = {
1052     (void*)0xdeadbeef,
1053     (void*)0xdeadbeef,
1054     unk_Release
1055 };
1056
1057 static void test_ReleaseBindInfo(void)
1058 {
1059     BINDINFO bi;
1060     IUnknown unk = { &unk_vtbl };
1061
1062     ReleaseBindInfo(NULL); /* shouldn't crash */
1063
1064     memset(&bi, 0, sizeof(bi));
1065     bi.cbSize = sizeof(BINDINFO);
1066     bi.pUnk = &unk;
1067     SET_EXPECT(unk_Release);
1068     ReleaseBindInfo(&bi);
1069     ok(bi.cbSize == sizeof(BINDINFO), "bi.cbSize=%d\n", bi.cbSize);
1070     ok(bi.pUnk == NULL, "bi.pUnk=%p, expected NULL\n", bi.pUnk);
1071     CHECK_CALLED(unk_Release);
1072
1073     memset(&bi, 0, sizeof(bi));
1074     bi.cbSize = offsetof(BINDINFO, pUnk);
1075     bi.pUnk = &unk;
1076     ReleaseBindInfo(&bi);
1077     ok(bi.cbSize == offsetof(BINDINFO, pUnk), "bi.cbSize=%d\n", bi.cbSize);
1078     ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
1079
1080     memset(&bi, 0, sizeof(bi));
1081     bi.pUnk = &unk;
1082     ReleaseBindInfo(&bi);
1083     ok(!bi.cbSize, "bi.cbSize=%d, expected 0\n", bi.cbSize);
1084     ok(bi.pUnk == &unk, "bi.pUnk=%p, expected %p\n", bi.pUnk, &unk);
1085 }
1086
1087 static void test_CopyStgMedium(void)
1088 {
1089     STGMEDIUM src, dst;
1090     HGLOBAL empty;
1091     HRESULT hres;
1092
1093     static WCHAR fileW[] = {'f','i','l','e',0};
1094
1095     memset(&src, 0xf0, sizeof(src));
1096     memset(&dst, 0xe0, sizeof(dst));
1097     memset(&empty, 0xf0, sizeof(empty));
1098     src.tymed = TYMED_NULL;
1099     src.pUnkForRelease = NULL;
1100     hres = CopyStgMedium(&src, &dst);
1101     ok(hres == S_OK, "CopyStgMedium failed: %08x\n", hres);
1102     ok(dst.tymed == TYMED_NULL, "tymed=%d\n", dst.tymed);
1103     ok(dst.u.hGlobal == empty, "u=%p\n", dst.u.hGlobal);
1104     ok(!dst.pUnkForRelease, "pUnkForRelease=%p, expected NULL\n", dst.pUnkForRelease);
1105
1106     memset(&dst, 0xe0, sizeof(dst));
1107     src.tymed = TYMED_ISTREAM;
1108     src.u.pstm = NULL;
1109     src.pUnkForRelease = NULL;
1110     hres = CopyStgMedium(&src, &dst);
1111     ok(hres == S_OK, "CopyStgMedium failed: %08x\n", hres);
1112     ok(dst.tymed == TYMED_ISTREAM, "tymed=%d\n", dst.tymed);
1113     ok(!dst.u.pstm, "pstm=%p\n", dst.u.pstm);
1114     ok(!dst.pUnkForRelease, "pUnkForRelease=%p, expected NULL\n", dst.pUnkForRelease);
1115
1116     memset(&dst, 0xe0, sizeof(dst));
1117     src.tymed = TYMED_FILE;
1118     src.u.lpszFileName = fileW;
1119     src.pUnkForRelease = NULL;
1120     hres = CopyStgMedium(&src, &dst);
1121     ok(hres == S_OK, "CopyStgMedium failed: %08x\n", hres);
1122     ok(dst.tymed == TYMED_FILE, "tymed=%d\n", dst.tymed);
1123     ok(dst.u.lpszFileName && dst.u.lpszFileName != fileW, "lpszFileName=%p\n", dst.u.lpszFileName);
1124     ok(!lstrcmpW(dst.u.lpszFileName, fileW), "wrong file name\n");
1125     ok(!dst.pUnkForRelease, "pUnkForRelease=%p, expected NULL\n", dst.pUnkForRelease);
1126
1127     hres = CopyStgMedium(&src, NULL);
1128     ok(hres == E_POINTER, "CopyStgMedium failed: %08x, expected E_POINTER\n", hres);
1129     hres = CopyStgMedium(NULL, &dst);
1130     ok(hres == E_POINTER, "CopyStgMedium failed: %08x, expected E_POINTER\n", hres);
1131 }
1132
1133 static void test_UrlMkGetSessionOption(void)
1134 {
1135     DWORD encoding, size;
1136     HRESULT hres;
1137
1138     size = encoding = 0xdeadbeef;
1139     hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1140                                  sizeof(encoding), &size, 0);
1141     ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1142     ok(encoding != 0xdeadbeef, "encoding not changed\n");
1143     ok(size == sizeof(encoding), "size=%d\n", size);
1144
1145     size = encoding = 0xdeadbeef;
1146     hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1147                                  sizeof(encoding)+1, &size, 0);
1148     ok(hres == S_OK, "UrlMkGetSessionOption failed: %08x\n", hres);
1149     ok(encoding != 0xdeadbeef, "encoding not changed\n");
1150     ok(size == sizeof(encoding), "size=%d\n", size);
1151
1152     size = encoding = 0xdeadbeef;
1153     hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1154                                  sizeof(encoding)-1, &size, 0);
1155     ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1156     ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1157     ok(size == 0xdeadbeef, "size=%d\n", size);
1158
1159     size = encoding = 0xdeadbeef;
1160     hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, NULL,
1161                                  sizeof(encoding)-1, &size, 0);
1162     ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1163     ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1164     ok(size == 0xdeadbeef, "size=%d\n", size);
1165
1166     encoding = 0xdeadbeef;
1167     hres = UrlMkGetSessionOption(URLMON_OPTION_URL_ENCODING, &encoding,
1168                                  sizeof(encoding)-1, NULL, 0);
1169     ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1170     ok(encoding == 0xdeadbeef, "encoding = %08x, exepcted 0xdeadbeef\n", encoding);
1171 }
1172
1173 static void test_user_agent(void)
1174 {
1175     static const CHAR expected[] = "Mozilla/4.0 (compatible; MSIE ";
1176     static char test_str[] = "test";
1177     static char test2_str[] = "test\0test";
1178     static CHAR str[3];
1179     LPSTR str2 = NULL;
1180     HRESULT hres;
1181     DWORD size, saved;
1182
1183     hres = ObtainUserAgentString(0, NULL, NULL);
1184     ok(hres == E_INVALIDARG, "ObtainUserAgentString failed: %08x\n", hres);
1185
1186     size = 100;
1187     hres = ObtainUserAgentString(0, NULL, &size);
1188     ok(hres == E_INVALIDARG, "ObtainUserAgentString failed: %08x\n", hres);
1189     ok(size == 100, "size=%d, expected %d\n", size, 100);
1190
1191     size = 0;
1192     hres = ObtainUserAgentString(0, str, &size);
1193     ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1194     ok(size > 0, "size=%d, expected non-zero\n", size);
1195
1196     size = 2;
1197     str[0] = 'a';
1198     hres = ObtainUserAgentString(0, str, &size);
1199     ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1200     ok(size > 0, "size=%d, expected non-zero\n", size);
1201     ok(str[0] == 'a', "str[0]=%c, expected 'a'\n", str[0]);
1202
1203     size = 0;
1204     hres = ObtainUserAgentString(1, str, &size);
1205     ok(hres == E_OUTOFMEMORY, "ObtainUserAgentString failed: %08x\n", hres);
1206     ok(size > 0, "size=%d, expected non-zero\n", size);
1207
1208     str2 = HeapAlloc(GetProcessHeap(), 0, (size+20)*sizeof(CHAR));
1209     saved = size;
1210     hres = ObtainUserAgentString(0, str2, &size);
1211     ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
1212     ok(size == saved, "size=%d, expected %d\n", size, saved);
1213     ok(strlen(expected) <= strlen(str2) &&
1214        !memcmp(expected, str2, strlen(expected)*sizeof(CHAR)),
1215        "user agent was \"%s\", expected to start with \"%s\"\n",
1216        str2, expected);
1217
1218     size = saved+10;
1219     hres = ObtainUserAgentString(0, str2, &size);
1220     ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
1221     ok(size == saved, "size=%d, expected %d\n", size, saved);
1222
1223     size = 0;
1224     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, NULL, 0, &size, 0);
1225     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1226     ok(size, "size == 0\n");
1227
1228     size = 0xdeadbeef;
1229     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, NULL, 1000, &size, 0);
1230     ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1231     ok(size, "size == 0\n");
1232
1233     saved = size;
1234     size = 0;
1235     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved+10, &size, 0);
1236     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1237     ok(size == saved, "size = %d, expected %d\n", size, saved);
1238     ok(sizeof(expected) <= strlen(str2) && !memcmp(expected, str2, sizeof(expected)-1),
1239        "user agent was \"%s\", expected to start with \"%s\"\n",
1240        str2, expected);
1241
1242     size = 0;
1243     str2[0] = 0;
1244     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved, &size, 0);
1245     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1246     ok(size == saved, "size = %d, expected %d\n", size, saved);
1247     ok(sizeof(expected) <= strlen(str2) && !memcmp(expected, str2, sizeof(expected)-1),
1248        "user agent was \"%s\", expected to start with \"%s\"\n",
1249        str2, expected);
1250
1251     size = saved;
1252     str2[0] = 0;
1253     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved-1, &size, 0);
1254     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1255     ok(size == saved, "size = %d, expected %d\n", size, saved);
1256     ok(!str2[0], "buf changed\n");
1257
1258     size = saved;
1259     str2[0] = 0;
1260     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved, NULL, 0);
1261     ok(hres == E_INVALIDARG, "UrlMkGetSessionOption failed: %08x\n", hres);
1262     ok(!str2[0], "buf changed\n");
1263
1264     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, test_str, sizeof(test_str), 0);
1265     ok(hres == S_OK, "UrlMkSetSessionOption failed: %08x\n", hres);
1266
1267     size = 0;
1268     str2[0] = 0;
1269     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved, &size, 0);
1270     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1271     ok(size == sizeof(test_str) && !memcmp(str2, test_str, sizeof(test_str)), "wrong user agent\n");
1272
1273     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, test2_str, sizeof(test2_str), 0);
1274     ok(hres == S_OK, "UrlMkSetSessionOption failed: %08x\n", hres);
1275
1276     size = 0;
1277     str2[0] = 0;
1278     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved, &size, 0);
1279     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1280     ok(size == sizeof(test_str) && !memcmp(str2, test_str, sizeof(test_str)), "wrong user agent\n");
1281
1282     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, test_str, 2, 0);
1283     ok(hres == S_OK, "UrlMkSetSessionOption failed: %08x\n", hres);
1284
1285     size = 0;
1286     str2[0] = 0;
1287     hres = UrlMkGetSessionOption(URLMON_OPTION_USERAGENT, str2, saved, &size, 0);
1288     ok(hres == E_OUTOFMEMORY, "UrlMkGetSessionOption failed: %08x\n", hres);
1289     ok(size == 3 && !strcmp(str2, "te"), "wrong user agent\n");
1290
1291     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, test_str, 0, 0);
1292     ok(hres == E_INVALIDARG, "UrlMkSetSessionOption failed: %08x\n", hres);
1293
1294     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, NULL, sizeof(test_str), 0);
1295     ok(hres == E_INVALIDARG, "UrlMkSetSessionOption failed: %08x\n", hres);
1296
1297     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, NULL, 0, 0);
1298     ok(hres == E_INVALIDARG, "UrlMkSetSessionOption failed: %08x\n", hres);
1299
1300     HeapFree(GetProcessHeap(), 0, str2);
1301 }
1302
1303 static void test_MkParseDisplayNameEx(void)
1304 {
1305     IMoniker *mon = NULL;
1306     LPWSTR name;
1307     DWORD issys;
1308     ULONG eaten = 0;
1309     IBindCtx *bctx;
1310     HRESULT hres;
1311
1312     static const WCHAR clsid_nameW[] = {'c','l','s','i','d',':',
1313             '2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-','A','2','D','8',
1314             '-','0','8','0','0','2','B','3','0','3','0','9','D',':',0};
1315
1316     CreateBindCtx(0, &bctx);
1317
1318     hres = MkParseDisplayNameEx(bctx, url9, &eaten, &mon);
1319     ok(hres == S_OK, "MkParseDisplayNameEx failed: %08x\n", hres);
1320     ok(eaten == sizeof(url9)/sizeof(WCHAR)-1, "eaten=%d\n", eaten);
1321     ok(mon != NULL, "mon == NULL\n");
1322
1323     hres = IMoniker_GetDisplayName(mon, NULL, 0, &name);
1324     ok(hres == S_OK, "GetDiasplayName failed: %08x\n", hres);
1325     ok(!lstrcmpW(name, url9), "wrong display name %s\n", wine_dbgstr_w(name));
1326     CoTaskMemFree(name);
1327
1328     hres = IMoniker_IsSystemMoniker(mon, &issys);
1329     ok(hres == S_OK, "IsSystemMoniker failed: %08x\n", hres);
1330     ok(issys == MKSYS_URLMONIKER, "issys=%x\n", issys);
1331
1332     IMoniker_Release(mon);
1333
1334     hres = MkParseDisplayNameEx(bctx, clsid_nameW, &eaten, &mon);
1335     ok(hres == S_OK, "MkParseDisplayNameEx failed: %08x\n", hres);
1336     ok(eaten == sizeof(clsid_nameW)/sizeof(WCHAR)-1, "eaten=%d\n", eaten);
1337     ok(mon != NULL, "mon == NULL\n");
1338
1339     hres = IMoniker_IsSystemMoniker(mon, &issys);
1340     ok(hres == S_OK, "IsSystemMoniker failed: %08x\n", hres);
1341     ok(issys == MKSYS_CLASSMONIKER, "issys=%x\n", issys);
1342
1343     IMoniker_Release(mon);
1344
1345     hres = MkParseDisplayNameEx(bctx, url8, &eaten, &mon);
1346     ok(FAILED(hres), "MkParseDisplayNameEx succeeded: %08x\n", hres);
1347
1348     IBindCtx_Release(bctx);
1349 }
1350
1351 static void test_IsValidURL(void)
1352 {
1353     HRESULT hr;
1354
1355     hr = IsValidURL(NULL, 0, 0);
1356     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
1357 }
1358
1359 START_TEST(misc)
1360 {
1361     OleInitialize(NULL);
1362
1363     register_protocols();
1364
1365     test_CreateFormatEnum();
1366     test_RegisterFormatEnumerator();
1367     test_CoInternetParseUrl();
1368     test_CoInternetCompareUrl();
1369     test_CoInternetQueryInfo();
1370     test_FindMimeFromData();
1371     test_NameSpace();
1372     test_MimeFilter();
1373     test_ReleaseBindInfo();
1374     test_CopyStgMedium();
1375     test_UrlMkGetSessionOption();
1376     test_user_agent();
1377     test_MkParseDisplayNameEx();
1378     test_IsValidURL();
1379
1380     OleUninitialize();
1381 }