2 * Copyright 2005-2007 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 DEFINE_EXPECT(func) \
34 static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
36 #define SET_EXPECT(func) \
37 expect_ ## func = TRUE
39 #define CHECK_EXPECT2(func) \
41 ok(expect_ ##func, "unexpected call " #func "\n"); \
42 called_ ## func = TRUE; \
45 #define CHECK_EXPECT(func) \
47 CHECK_EXPECT2(func); \
48 expect_ ## func = FALSE; \
51 #define CHECK_CALLED(func) \
53 ok(called_ ## func, "expected " #func "\n"); \
54 expect_ ## func = called_ ## func = FALSE; \
57 #define CHECK_NOT_CALLED(func) \
59 ok(!called_ ## func, "unexpected " #func "\n"); \
60 expect_ ## func = called_ ## func = FALSE; \
63 #define CLEAR_CALLED(func) \
64 expect_ ## func = called_ ## func = FALSE
66 DEFINE_EXPECT(GetBindInfo
);
67 DEFINE_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
68 DEFINE_EXPECT(ReportProgress_DIRECTBIND
);
69 DEFINE_EXPECT(ReportProgress_RAWMIMETYPE
);
70 DEFINE_EXPECT(ReportProgress_FINDINGRESOURCE
);
71 DEFINE_EXPECT(ReportProgress_CONNECTING
);
72 DEFINE_EXPECT(ReportProgress_SENDINGREQUEST
);
73 DEFINE_EXPECT(ReportProgress_CACHEFILENAMEAVAILABLE
);
74 DEFINE_EXPECT(ReportProgress_VERIFIEDMIMETYPEAVAILABLE
);
75 DEFINE_EXPECT(ReportProgress_PROTOCOLCLASSID
);
76 DEFINE_EXPECT(ReportProgress_COOKIE_SENT
);
77 DEFINE_EXPECT(ReportProgress_REDIRECTING
);
78 DEFINE_EXPECT(ReportData
);
79 DEFINE_EXPECT(ReportResult
);
80 DEFINE_EXPECT(GetBindString_ACCEPT_MIMES
);
81 DEFINE_EXPECT(GetBindString_USER_AGENT
);
82 DEFINE_EXPECT(GetBindString_POST_COOKIE
);
83 DEFINE_EXPECT(QueryService_HttpNegotiate
);
84 DEFINE_EXPECT(QueryService_InternetProtocol
);
85 DEFINE_EXPECT(BeginningTransaction
);
86 DEFINE_EXPECT(GetRootSecurityId
);
87 DEFINE_EXPECT(OnResponse
);
88 DEFINE_EXPECT(Switch
);
89 DEFINE_EXPECT(Continue
);
90 DEFINE_EXPECT(CreateInstance
);
92 DEFINE_EXPECT(Terminate
);
94 DEFINE_EXPECT(SetPriority
);
95 DEFINE_EXPECT(LockRequest
);
96 DEFINE_EXPECT(UnlockRequest
);
98 static const WCHAR wszIndexHtml
[] = {'i','n','d','e','x','.','h','t','m','l',0};
99 static const WCHAR index_url
[] =
100 {'f','i','l','e',':','i','n','d','e','x','.','h','t','m','l',0};
102 static const WCHAR acc_mimeW
[] = {'*','/','*',0};
103 static const WCHAR user_agentW
[] = {'W','i','n','e',0};
104 static const WCHAR text_htmlW
[] = {'t','e','x','t','/','h','t','m','l',0};
105 static const WCHAR hostW
[] = {'w','w','w','.','w','i','n','e','h','q','.','o','r','g',0};
106 static const WCHAR winehq_ipW
[] = {'2','0','9','.','4','6','.','2','5','.','1','3','4',0};
107 static const WCHAR emptyW
[] = {0};
109 static HRESULT expect_hrResult
;
110 static LPCWSTR file_name
, http_url
, expect_wsz
;
111 static IInternetProtocol
*http_protocol
= NULL
;
112 static BOOL first_data_notif
= FALSE
, http_is_first
= FALSE
,
113 http_post_test
= FALSE
;
114 static int state
= 0, prot_state
;
115 static DWORD bindf
= 0, ex_priority
= 0;
116 static IInternetProtocol
*binding_protocol
;
117 static IInternetBindInfo
*prot_bind_info
;
118 static IInternetProtocolSink
*binding_sink
;
119 static void *expect_pv
;
120 static HANDLE event_complete
, event_complete2
;
121 static BOOL binding_test
;
122 static PROTOCOLDATA protocoldata
, *pdata
;
123 static DWORD prot_read
;
132 static const WCHAR protocol_names
[][10] = {
139 static const WCHAR binding_urls
[][30] = {
140 {'f','i','l','e',':','t','e','s','t','.','h','t','m','l',0},
141 {'h','t','t','p',':','/','/','t','e','s','t','/','t','e','s','t','.','h','t','m','l',0},
142 {'m','k',':','t','e','s','t',0},
143 {'t','e','s','t',':','/','/','f','i','l','e','.','h','t','m','l',0}
146 static const char *debugstr_w(LPCWSTR str
)
148 static char buf
[512];
151 WideCharToMultiByte(CP_ACP
, 0, str
, -1, buf
, sizeof(buf
), NULL
, NULL
);
155 static const char *debugstr_guid(REFIID riid
)
159 sprintf(buf
, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
160 riid
->Data1
, riid
->Data2
, riid
->Data3
, riid
->Data4
[0],
161 riid
->Data4
[1], riid
->Data4
[2], riid
->Data4
[3], riid
->Data4
[4],
162 riid
->Data4
[5], riid
->Data4
[6], riid
->Data4
[7]);
167 static HRESULT WINAPI
HttpNegotiate_QueryInterface(IHttpNegotiate2
*iface
, REFIID riid
, void **ppv
)
169 if(IsEqualGUID(&IID_IUnknown
, riid
)
170 || IsEqualGUID(&IID_IHttpNegotiate
, riid
)
171 || IsEqualGUID(&IID_IHttpNegotiate2
, riid
)) {
176 ok(0, "unexpected call\n");
177 return E_NOINTERFACE
;
180 static ULONG WINAPI
HttpNegotiate_AddRef(IHttpNegotiate2
*iface
)
185 static ULONG WINAPI
HttpNegotiate_Release(IHttpNegotiate2
*iface
)
190 static HRESULT WINAPI
HttpNegotiate_BeginningTransaction(IHttpNegotiate2
*iface
, LPCWSTR szURL
,
191 LPCWSTR szHeaders
, DWORD dwReserved
, LPWSTR
*pszAdditionalHeaders
)
195 static const WCHAR wszHeaders
[] =
196 {'C','o','n','t','e','n','t','-','T','y','p','e',':',' ','a','p','p','l','i','c','a','t',
197 'i','o','n','/','x','-','w','w','w','-','f','o','r','m','-','u','r','l','e','n','c','o',
198 'd','e','d','\r','\n',0};
200 CHECK_EXPECT(BeginningTransaction
);
203 ok(!lstrcmpW(szURL
, binding_urls
[tested_protocol
]), "szURL != http_url\n");
205 ok(!lstrcmpW(szURL
, http_url
), "szURL != http_url\n");
206 ok(!dwReserved
, "dwReserved=%d, expected 0\n", dwReserved
);
207 ok(pszAdditionalHeaders
!= NULL
, "pszAdditionalHeaders == NULL\n");
208 if(pszAdditionalHeaders
)
210 ok(*pszAdditionalHeaders
== NULL
, "*pszAdditionalHeaders != NULL\n");
213 addl_headers
= CoTaskMemAlloc(sizeof(wszHeaders
));
216 http_post_test
= FALSE
;
217 skip("Out of memory\n");
218 return E_OUTOFMEMORY
;
220 lstrcpyW(addl_headers
, wszHeaders
);
221 *pszAdditionalHeaders
= addl_headers
;
228 static HRESULT WINAPI
HttpNegotiate_OnResponse(IHttpNegotiate2
*iface
, DWORD dwResponseCode
,
229 LPCWSTR szResponseHeaders
, LPCWSTR szRequestHeaders
, LPWSTR
*pszAdditionalRequestHeaders
)
231 CHECK_EXPECT(OnResponse
);
233 ok(dwResponseCode
== 200, "dwResponseCode=%d, expected 200\n", dwResponseCode
);
234 ok(szResponseHeaders
!= NULL
, "szResponseHeaders == NULL\n");
235 ok(szRequestHeaders
== NULL
, "szRequestHeaders != NULL\n");
236 ok(pszAdditionalRequestHeaders
== NULL
, "pszAdditionalHeaders != NULL\n");
241 static HRESULT WINAPI
HttpNegotiate_GetRootSecurityId(IHttpNegotiate2
*iface
,
242 BYTE
*pbSecurityId
, DWORD
*pcbSecurityId
, DWORD_PTR dwReserved
)
244 static const BYTE sec_id
[] = {'h','t','t','p',':','t','e','s','t',1,0,0,0};
246 CHECK_EXPECT(GetRootSecurityId
);
248 ok(!dwReserved
, "dwReserved=%ld, expected 0\n", dwReserved
);
249 ok(pbSecurityId
!= NULL
, "pbSecurityId == NULL\n");
250 ok(pcbSecurityId
!= NULL
, "pcbSecurityId == NULL\n");
253 ok(*pcbSecurityId
== 512, "*pcbSecurityId=%d, expected 512\n", *pcbSecurityId
);
254 *pcbSecurityId
= sizeof(sec_id
);
258 memcpy(pbSecurityId
, sec_id
, sizeof(sec_id
));
263 static IHttpNegotiate2Vtbl HttpNegotiateVtbl
= {
264 HttpNegotiate_QueryInterface
,
265 HttpNegotiate_AddRef
,
266 HttpNegotiate_Release
,
267 HttpNegotiate_BeginningTransaction
,
268 HttpNegotiate_OnResponse
,
269 HttpNegotiate_GetRootSecurityId
272 static IHttpNegotiate2 http_negotiate
= { &HttpNegotiateVtbl
};
274 static HRESULT
QueryInterface(REFIID
,void**);
276 static HRESULT WINAPI
ServiceProvider_QueryInterface(IServiceProvider
*iface
, REFIID riid
, void **ppv
)
278 return QueryInterface(riid
, ppv
);
281 static ULONG WINAPI
ServiceProvider_AddRef(IServiceProvider
*iface
)
286 static ULONG WINAPI
ServiceProvider_Release(IServiceProvider
*iface
)
291 static HRESULT WINAPI
ServiceProvider_QueryService(IServiceProvider
*iface
, REFGUID guidService
,
292 REFIID riid
, void **ppv
)
294 if(IsEqualGUID(&IID_IHttpNegotiate
, guidService
) || IsEqualGUID(&IID_IHttpNegotiate2
, riid
)) {
295 CHECK_EXPECT2(QueryService_HttpNegotiate
);
296 return IHttpNegotiate2_QueryInterface(&http_negotiate
, riid
, ppv
);
299 if(IsEqualGUID(&IID_IInternetProtocol
, guidService
)) {
300 ok(IsEqualGUID(&IID_IInternetProtocol
, riid
), "unexpected riid\n");
301 CHECK_EXPECT(QueryService_InternetProtocol
);
302 return E_NOINTERFACE
;
305 ok(0, "unexpected service %s\n", debugstr_guid(guidService
));
309 static const IServiceProviderVtbl ServiceProviderVtbl
= {
310 ServiceProvider_QueryInterface
,
311 ServiceProvider_AddRef
,
312 ServiceProvider_Release
,
313 ServiceProvider_QueryService
316 static IServiceProvider service_provider
= { &ServiceProviderVtbl
};
318 static HRESULT WINAPI
ProtocolSink_QueryInterface(IInternetProtocolSink
*iface
, REFIID riid
, void **ppv
)
320 return QueryInterface(riid
, ppv
);
323 static ULONG WINAPI
ProtocolSink_AddRef(IInternetProtocolSink
*iface
)
328 static ULONG WINAPI
ProtocolSink_Release(IInternetProtocolSink
*iface
)
333 static HRESULT WINAPI
ProtocolSink_Switch(IInternetProtocolSink
*iface
, PROTOCOLDATA
*pProtocolData
)
337 CHECK_EXPECT(Switch
);
338 ok(pProtocolData
!= NULL
, "pProtocolData == NULL\n");
340 pdata
= pProtocolData
;
343 SetEvent(event_complete
);
344 WaitForSingleObject(event_complete2
, INFINITE
);
350 CHECK_CALLED(ReportProgress_FINDINGRESOURCE
);
351 CHECK_CALLED(ReportProgress_CONNECTING
);
353 CHECK_NOT_CALLED(ReportProgress_FINDINGRESOURCE
);
354 CHECK_NOT_CALLED(ReportProgress_CONNECTING
);
356 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
357 SET_EXPECT(OnResponse
);
358 SET_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
359 if(bindf
& BINDF_NEEDFILE
)
360 SET_EXPECT(ReportProgress_CACHEFILENAMEAVAILABLE
);
363 SET_EXPECT(ReportData
);
364 hres
= IInternetProtocol_Continue(http_protocol
, pProtocolData
);
365 ok(hres
== S_OK
, "Continue failed: %08x\n", hres
);
366 CHECK_CALLED(ReportData
);
370 CHECK_CALLED(OnResponse
);
371 CHECK_CALLED(ReportProgress_MIMETYPEAVAILABLE
);
372 if(bindf
& BINDF_NEEDFILE
)
373 CHECK_CALLED(ReportProgress_CACHEFILENAMEAVAILABLE
);
376 SetEvent(event_complete
);
381 static HRESULT WINAPI
ProtocolSink_ReportProgress(IInternetProtocolSink
*iface
, ULONG ulStatusCode
,
382 LPCWSTR szStatusText
)
384 static const WCHAR null_guid
[] = {'{','0','0','0','0','0','0','0','0','-','0','0','0','0','-',
385 '0','0','0','0','-','0','0','0','0','-','0','0','0','0','0','0','0','0','0','0','0','0','}',0};
386 static const WCHAR text_plain
[] = {'t','e','x','t','/','p','l','a','i','n',0};
387 static const WCHAR post_host
[] =
388 {'c','r','o','s','s','o','v','e','r','.','c','o','d','e',
389 'w','e','a','v','e','r','s','.','c','o','m',0};
390 static const WCHAR wszCrossoverIP
[] =
391 {'2','0','9','.','4','6','.','2','5','.','1','3','2',0};
392 /* I'm not sure if it's a good idea to hardcode here the IP address... */
394 switch(ulStatusCode
) {
395 case BINDSTATUS_MIMETYPEAVAILABLE
:
396 CHECK_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
397 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
399 if(tested_protocol
== BIND_TEST
)
400 ok(szStatusText
== expect_wsz
, "unexpected szStatusText\n");
401 else if (http_post_test
)
402 ok(lstrlenW(text_plain
) <= lstrlenW(szStatusText
) &&
403 !memcmp(szStatusText
, text_plain
, lstrlenW(text_plain
)*sizeof(WCHAR
)),
404 "szStatusText != text/plain\n");
406 ok(lstrlenW(text_htmlW
) <= lstrlenW(szStatusText
) &&
407 !memcmp(szStatusText
, text_htmlW
, lstrlenW(text_htmlW
)*sizeof(WCHAR
)),
408 "szStatusText != text/html\n");
411 case BINDSTATUS_DIRECTBIND
:
412 CHECK_EXPECT2(ReportProgress_DIRECTBIND
);
413 ok(szStatusText
== NULL
, "szStatusText != NULL\n");
415 case BINDSTATUS_RAWMIMETYPE
:
416 CHECK_EXPECT2(ReportProgress_RAWMIMETYPE
);
417 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
419 ok(lstrlenW(szStatusText
) < lstrlenW(text_htmlW
) ||
420 !memcmp(szStatusText
, text_htmlW
, lstrlenW(text_htmlW
)*sizeof(WCHAR
)),
421 "szStatusText != text/html\n");
423 case BINDSTATUS_CACHEFILENAMEAVAILABLE
:
424 CHECK_EXPECT(ReportProgress_CACHEFILENAMEAVAILABLE
);
425 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
428 ok(szStatusText
== expect_wsz
, "unexpected szStatusText\n");
429 else if(tested_protocol
== FILE_TEST
)
430 ok(!lstrcmpW(szStatusText
, file_name
), "szStatusText = \"%s\"\n", debugstr_w(szStatusText
));
432 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
435 case BINDSTATUS_FINDINGRESOURCE
:
436 CHECK_EXPECT(ReportProgress_FINDINGRESOURCE
);
437 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
441 ok(!lstrcmpW(szStatusText
, hostW
),
442 "szStatustext != \"www.winehq.org\"\n");
444 ok(!lstrcmpW(szStatusText
, post_host
),
445 "szStatustext != \"crossover.codeweavers.com\"\n");
448 case BINDSTATUS_CONNECTING
:
449 CHECK_EXPECT(ReportProgress_CONNECTING
);
450 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
452 ok(!lstrcmpW(szStatusText
, http_post_test
?
453 wszCrossoverIP
: winehq_ipW
),
454 "Unexpected szStatusText\n");
456 case BINDSTATUS_SENDINGREQUEST
:
457 CHECK_EXPECT(ReportProgress_SENDINGREQUEST
);
458 if(tested_protocol
== FILE_TEST
) {
459 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
461 ok(!*szStatusText
, "wrong szStatusText\n");
464 case BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE
:
465 CHECK_EXPECT(ReportProgress_VERIFIEDMIMETYPEAVAILABLE
);
466 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
468 ok(!lstrcmpW(szStatusText
, text_htmlW
), "szStatusText != text/html\n");
470 case BINDSTATUS_PROTOCOLCLASSID
:
471 CHECK_EXPECT(ReportProgress_PROTOCOLCLASSID
);
472 ok(szStatusText
!= NULL
, "szStatusText == NULL\n");
473 ok(!lstrcmpW(szStatusText
, null_guid
), "unexpected szStatusText\n");
475 case BINDSTATUS_COOKIE_SENT
:
476 CHECK_EXPECT(ReportProgress_COOKIE_SENT
);
477 ok(szStatusText
== NULL
, "szStatusText != NULL\n");
479 case BINDSTATUS_REDIRECTING
:
480 CHECK_EXPECT(ReportProgress_REDIRECTING
);
481 ok(szStatusText
== NULL
, "szStatusText != NULL\n");
484 ok(0, "Unexpected status %d\n", ulStatusCode
);
490 static HRESULT WINAPI
ProtocolSink_ReportData(IInternetProtocolSink
*iface
, DWORD grfBSCF
,
491 ULONG ulProgress
, ULONG ulProgressMax
)
493 if(tested_protocol
== FILE_TEST
) {
494 CHECK_EXPECT2(ReportData
);
496 ok(ulProgress
== ulProgressMax
, "ulProgress (%d) != ulProgressMax (%d)\n",
497 ulProgress
, ulProgressMax
);
498 ok(ulProgressMax
== 13, "ulProgressMax=%d, expected 13\n", ulProgressMax
);
499 ok(grfBSCF
== (BSCF_FIRSTDATANOTIFICATION
| BSCF_LASTDATANOTIFICATION
),
500 "grcfBSCF = %08x\n", grfBSCF
);
501 }else if(!binding_test
&& tested_protocol
== HTTP_TEST
) {
502 if(!(grfBSCF
& BSCF_LASTDATANOTIFICATION
))
503 CHECK_EXPECT(ReportData
);
504 else if (http_post_test
)
505 ok(ulProgress
== 13, "Read %u bytes instead of 13\n", ulProgress
);
507 ok(ulProgress
, "ulProgress == 0\n");
509 if(first_data_notif
) {
510 ok(grfBSCF
== BSCF_FIRSTDATANOTIFICATION
, "grcfBSCF = %08x\n", grfBSCF
);
511 first_data_notif
= FALSE
;
513 ok(grfBSCF
== BSCF_INTERMEDIATEDATANOTIFICATION
514 || grfBSCF
== (BSCF_LASTDATANOTIFICATION
|BSCF_INTERMEDIATEDATANOTIFICATION
),
515 "grcfBSCF = %08x\n", grfBSCF
);
518 if(!(bindf
& BINDF_FROMURLMON
) &&
519 !(grfBSCF
& BSCF_LASTDATANOTIFICATION
)) {
523 CHECK_CALLED(ReportProgress_FINDINGRESOURCE
);
524 CHECK_CALLED(ReportProgress_CONNECTING
);
526 CHECK_NOT_CALLED(ReportProgress_FINDINGRESOURCE
);
527 CHECK_NOT_CALLED(ReportProgress_CONNECTING
);
529 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
530 CHECK_CALLED(OnResponse
);
531 CHECK_CALLED(ReportProgress_RAWMIMETYPE
);
533 SetEvent(event_complete
);
540 CHECK_EXPECT(ReportData
);
542 if(tested_protocol
== BIND_TEST
)
547 hres
= IInternetProtocol_Read(binding_protocol
, expect_pv
=buf
, sizeof(buf
), &read
);
549 }while(hres
== S_OK
);
555 static HRESULT WINAPI
ProtocolSink_ReportResult(IInternetProtocolSink
*iface
, HRESULT hrResult
,
556 DWORD dwError
, LPCWSTR szResult
)
558 CHECK_EXPECT(ReportResult
);
560 ok(hrResult
== expect_hrResult
, "hrResult = %08x, expected: %08x\n",
561 hrResult
, expect_hrResult
);
562 if(SUCCEEDED(hrResult
))
563 ok(dwError
== ERROR_SUCCESS
, "dwError = %d, expected ERROR_SUCCESS\n", dwError
);
565 ok(dwError
!= ERROR_SUCCESS
, "dwError == ERROR_SUCCESS\n");
566 ok(!szResult
, "szResult != NULL\n");
571 static IInternetProtocolSinkVtbl protocol_sink_vtbl
= {
572 ProtocolSink_QueryInterface
,
574 ProtocolSink_Release
,
576 ProtocolSink_ReportProgress
,
577 ProtocolSink_ReportData
,
578 ProtocolSink_ReportResult
581 static IInternetProtocolSink protocol_sink
= { &protocol_sink_vtbl
};
583 static HRESULT
QueryInterface(REFIID riid
, void **ppv
)
587 if(IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IInternetProtocolSink
, riid
))
588 *ppv
= &protocol_sink
;
589 if(IsEqualGUID(&IID_IServiceProvider
, riid
))
590 *ppv
= &service_provider
;
595 return E_NOINTERFACE
;
598 static HRESULT WINAPI
BindInfo_QueryInterface(IInternetBindInfo
*iface
, REFIID riid
, void **ppv
)
600 if(IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IInternetBindInfo
, riid
)) {
604 return E_NOINTERFACE
;
607 static ULONG WINAPI
BindInfo_AddRef(IInternetBindInfo
*iface
)
612 static ULONG WINAPI
BindInfo_Release(IInternetBindInfo
*iface
)
617 static HRESULT WINAPI
BindInfo_GetBindInfo(IInternetBindInfo
*iface
, DWORD
*grfBINDF
, BINDINFO
*pbindinfo
)
621 static const CHAR szPostData
[] = "mode=Test";
623 CHECK_EXPECT(GetBindInfo
);
625 ok(grfBINDF
!= NULL
, "grfBINDF == NULL\n");
626 ok(pbindinfo
!= NULL
, "pbindinfo == NULL\n");
627 ok(pbindinfo
->cbSize
== sizeof(BINDINFO
), "wrong size of pbindinfo: %d\n", pbindinfo
->cbSize
);
631 *grfBINDF
|= BINDF_FROMURLMON
;
632 cbSize
= pbindinfo
->cbSize
;
633 memset(pbindinfo
, 0, cbSize
);
634 pbindinfo
->cbSize
= cbSize
;
638 /* Must be GMEM_FIXED, GMEM_MOVABLE does not work properly
639 * with urlmon on native (Win98 and WinXP) */
640 U(pbindinfo
->stgmedData
).hGlobal
= GlobalAlloc(GPTR
, sizeof(szPostData
));
641 if (!U(pbindinfo
->stgmedData
).hGlobal
)
643 http_post_test
= FALSE
;
644 skip("Out of memory\n");
645 return E_OUTOFMEMORY
;
647 lstrcpy((LPSTR
)U(pbindinfo
->stgmedData
).hGlobal
, szPostData
);
648 pbindinfo
->cbstgmedData
= sizeof(szPostData
)-1;
649 pbindinfo
->dwBindVerb
= BINDVERB_POST
;
650 pbindinfo
->stgmedData
.tymed
= TYMED_HGLOBAL
;
656 static HRESULT WINAPI
BindInfo_GetBindString(IInternetBindInfo
*iface
, ULONG ulStringType
,
657 LPOLESTR
*ppwzStr
, ULONG cEl
, ULONG
*pcElFetched
)
659 ok(ppwzStr
!= NULL
, "ppwzStr == NULL\n");
660 ok(pcElFetched
!= NULL
, "pcElFetched == NULL\n");
662 switch(ulStringType
) {
663 case BINDSTRING_ACCEPT_MIMES
:
664 CHECK_EXPECT(GetBindString_ACCEPT_MIMES
);
665 ok(cEl
== 256, "cEl=%d, expected 256\n", cEl
);
667 ok(*pcElFetched
== 256, "*pcElFetched=%d, expected 256\n", *pcElFetched
);
671 *ppwzStr
= CoTaskMemAlloc(sizeof(acc_mimeW
));
672 memcpy(*ppwzStr
, acc_mimeW
, sizeof(acc_mimeW
));
675 case BINDSTRING_USER_AGENT
:
676 CHECK_EXPECT(GetBindString_USER_AGENT
);
677 ok(cEl
== 1, "cEl=%d, expected 1\n", cEl
);
679 ok(*pcElFetched
== 0, "*pcElFetch=%d, expectd 0\n", *pcElFetched
);
683 *ppwzStr
= CoTaskMemAlloc(sizeof(user_agentW
));
684 memcpy(*ppwzStr
, user_agentW
, sizeof(user_agentW
));
687 case BINDSTRING_POST_COOKIE
:
688 CHECK_EXPECT(GetBindString_POST_COOKIE
);
689 ok(cEl
== 1, "cEl=%d, expected 1\n", cEl
);
691 ok(*pcElFetched
== 0, "*pcElFetch=%d, expectd 0\n", *pcElFetched
);
694 ok(0, "unexpected call\n");
700 static IInternetBindInfoVtbl bind_info_vtbl
= {
701 BindInfo_QueryInterface
,
704 BindInfo_GetBindInfo
,
705 BindInfo_GetBindString
708 static IInternetBindInfo bind_info
= { &bind_info_vtbl
};
710 static HRESULT WINAPI
InternetPriority_QueryInterface(IInternetPriority
*iface
,
711 REFIID riid
, void **ppv
)
713 ok(0, "unexpected call\n");
714 return E_NOINTERFACE
;
717 static ULONG WINAPI
InternetPriority_AddRef(IInternetPriority
*iface
)
722 static ULONG WINAPI
InternetPriority_Release(IInternetPriority
*iface
)
727 static HRESULT WINAPI
InternetPriority_SetPriority(IInternetPriority
*iface
, LONG nPriority
)
729 CHECK_EXPECT(SetPriority
);
730 ok(nPriority
== ex_priority
, "nPriority=%d\n", nPriority
);
734 static HRESULT WINAPI
InternetPriority_GetPriority(IInternetPriority
*iface
, LONG
*pnPriority
)
736 ok(0, "unexpected call\n");
741 static const IInternetPriorityVtbl InternetPriorityVtbl
= {
742 InternetPriority_QueryInterface
,
743 InternetPriority_AddRef
,
744 InternetPriority_Release
,
745 InternetPriority_SetPriority
,
746 InternetPriority_GetPriority
749 static IInternetPriority InternetPriority
= { &InternetPriorityVtbl
};
751 static HRESULT WINAPI
Protocol_QueryInterface(IInternetProtocol
*iface
, REFIID riid
, void **ppv
)
753 if(IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
758 if(IsEqualGUID(&IID_IInternetPriority
, riid
)) {
759 *ppv
= &InternetPriority
;
763 ok(0, "unexpected riid %s\n", debugstr_guid(riid
));
765 return E_NOINTERFACE
;
768 static ULONG WINAPI
Protocol_AddRef(IInternetProtocol
*iface
)
773 static ULONG WINAPI
Protocol_Release(IInternetProtocol
*iface
)
778 static DWORD WINAPI
thread_proc(PVOID arg
)
782 memset(&protocoldata
, -1, sizeof(protocoldata
));
786 SET_EXPECT(ReportProgress_FINDINGRESOURCE
);
787 hres
= IInternetProtocolSink_ReportProgress(binding_sink
,
788 BINDSTATUS_FINDINGRESOURCE
, hostW
);
789 CHECK_CALLED(ReportProgress_FINDINGRESOURCE
);
790 ok(hres
== S_OK
, "ReportProgress failed: %08x\n", hres
);
792 SET_EXPECT(ReportProgress_CONNECTING
);
793 hres
= IInternetProtocolSink_ReportProgress(binding_sink
,
794 BINDSTATUS_CONNECTING
, winehq_ipW
);
795 CHECK_CALLED(ReportProgress_CONNECTING
);
796 ok(hres
== S_OK
, "ReportProgress failed: %08x\n", hres
);
798 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
799 hres
= IInternetProtocolSink_ReportProgress(binding_sink
,
800 BINDSTATUS_SENDINGREQUEST
, NULL
);
801 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
802 ok(hres
== S_OK
, "ReportProgress failed: %08x\n", hres
);
806 hres
= IInternetProtocolSink_Switch(binding_sink
, &protocoldata
);
807 CHECK_CALLED(Switch
);
808 ok(hres
== S_OK
, "Switch failed: %08x\n", hres
);
812 hres
= IInternetProtocolSink_Switch(binding_sink
, &protocoldata
);
813 CHECK_CALLED(Switch
);
814 ok(hres
== S_OK
, "Switch failed: %08x\n", hres
);
818 hres
= IInternetProtocolSink_Switch(binding_sink
, &protocoldata
);
819 CHECK_CALLED(Switch
);
820 ok(hres
== S_OK
, "Switch failed: %08x\n", hres
);
824 hres
= IInternetProtocolSink_Switch(binding_sink
, &protocoldata
);
825 CHECK_CALLED(Switch
);
826 ok(hres
== S_OK
, "Switch failed: %08x\n", hres
);
828 SetEvent(event_complete
);
833 static HRESULT WINAPI
Protocol_Start(IInternetProtocol
*iface
, LPCWSTR szUrl
,
834 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
835 DWORD grfPI
, DWORD dwReserved
)
837 BINDINFO bindinfo
, exp_bindinfo
;
843 ok(pOIProtSink
!= NULL
, "pOIProtSink == NULL\n");
844 ok(pOIBindInfo
!= NULL
, "pOIBindInfo == NULL\n");
845 ok(pOIProtSink
!= &protocol_sink
, "unexpected pOIProtSink\n");
846 ok(pOIBindInfo
!= &bind_info
, "unexpected pOIBindInfo\n");
847 ok(!grfPI
, "grfPI = %x\n", grfPI
);
848 ok(!dwReserved
, "dwReserved = %d\n", dwReserved
);
850 memset(&bindinfo
, 0, sizeof(bindinfo
));
851 bindinfo
.cbSize
= sizeof(bindinfo
);
852 memcpy(&exp_bindinfo
, &bindinfo
, sizeof(bindinfo
));
853 SET_EXPECT(GetBindInfo
);
854 hres
= IInternetBindInfo_GetBindInfo(pOIBindInfo
, &cbindf
, &bindinfo
);
855 ok(hres
== S_OK
, "GetBindInfo failed: %08x\n", hres
);
856 CHECK_CALLED(GetBindInfo
);
857 ok(cbindf
== (bindf
|BINDF_FROMURLMON
), "bindf = %x, expected %x\n",
858 cbindf
, (bindf
|BINDF_FROMURLMON
));
859 ok(!memcmp(&exp_bindinfo
, &bindinfo
, sizeof(bindinfo
)), "unexpected bindinfo\n");
860 ReleaseBindInfo(&bindinfo
);
862 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
863 hres
= IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_SENDINGREQUEST
, emptyW
);
864 ok(hres
== S_OK
, "ReportProgress(BINDSTATUS_SENDINGREQUEST) failed: %08x\n", hres
);
865 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
867 if(tested_protocol
== HTTP_TEST
) {
868 IServiceProvider
*service_provider
;
869 IHttpNegotiate
*http_negotiate
;
870 IHttpNegotiate2
*http_negotiate2
;
871 LPWSTR ua
= (LPWSTR
)0xdeadbeef, accept_mimes
[256];
872 LPWSTR additional_headers
= NULL
;
874 DWORD fetched
= 0, size
= 100;
876 SET_EXPECT(GetBindString_USER_AGENT
);
877 hres
= IInternetBindInfo_GetBindString(pOIBindInfo
, BINDSTRING_USER_AGENT
,
879 CHECK_CALLED(GetBindString_USER_AGENT
);
880 ok(hres
== S_OK
, "GetBindString(BINDSTRING_USER_AGETNT) failed: %08x\n", hres
);
881 ok(fetched
== 1, "fetched = %d, expected 254\n", fetched
);
882 ok(ua
!= NULL
, "ua = %p\n", ua
);
883 ok(!lstrcmpW(ua
, user_agentW
), "unexpected user agent %s\n", debugstr_w(ua
));
887 SET_EXPECT(GetBindString_ACCEPT_MIMES
);
888 hres
= IInternetBindInfo_GetBindString(pOIBindInfo
, BINDSTRING_ACCEPT_MIMES
,
889 accept_mimes
, 256, &fetched
);
890 CHECK_CALLED(GetBindString_ACCEPT_MIMES
);
893 "GetBindString(BINDSTRING_ACCEPT_MIMES) failed: %08x\n", hres
);
894 ok(fetched
== 1, "fetched = %d, expected 1\n", fetched
);
895 ok(!lstrcmpW(acc_mimeW
, accept_mimes
[0]), "unexpected mimes %s\n", debugstr_w(accept_mimes
[0]));
897 hres
= IInternetBindInfo_QueryInterface(pOIBindInfo
, &IID_IServiceProvider
,
898 (void**)&service_provider
);
899 ok(hres
== S_OK
, "QueryInterface failed: %08x\n", hres
);
901 SET_EXPECT(QueryService_HttpNegotiate
);
902 hres
= IServiceProvider_QueryService(service_provider
, &IID_IHttpNegotiate
,
903 &IID_IHttpNegotiate
, (void**)&http_negotiate
);
904 CHECK_CALLED(QueryService_HttpNegotiate
);
905 ok(hres
== S_OK
, "QueryService failed: %08x\n", hres
);
907 SET_EXPECT(BeginningTransaction
);
908 hres
= IHttpNegotiate_BeginningTransaction(http_negotiate
, binding_urls
[tested_protocol
],
909 NULL
, 0, &additional_headers
);
910 CHECK_CALLED(BeginningTransaction
);
911 IHttpNegotiate_Release(http_negotiate
);
912 ok(hres
== S_OK
, "BeginningTransction failed: %08x\n", hres
);
913 ok(additional_headers
== NULL
, "additional_headers=%p\n", additional_headers
);
915 SET_EXPECT(QueryService_HttpNegotiate
);
916 hres
= IServiceProvider_QueryService(service_provider
, &IID_IHttpNegotiate2
,
917 &IID_IHttpNegotiate2
, (void**)&http_negotiate2
);
918 CHECK_CALLED(QueryService_HttpNegotiate
);
919 ok(hres
== S_OK
, "QueryService failed: %08x\n", hres
);
922 SET_EXPECT(GetRootSecurityId
);
923 hres
= IHttpNegotiate2_GetRootSecurityId(http_negotiate2
, sec_id
, &size
, 0);
924 CHECK_CALLED(GetRootSecurityId
);
925 IHttpNegotiate2_Release(http_negotiate2
);
926 ok(hres
== E_FAIL
, "GetRootSecurityId failed: %08x, expected E_FAIL\n", hres
);
927 ok(size
== 13, "size=%d\n", size
);
929 IServiceProvider_Release(service_provider
);
931 CreateThread(NULL
, 0, thread_proc
, NULL
, 0, NULL
);
936 SET_EXPECT(ReportProgress_CACHEFILENAMEAVAILABLE
);
937 hres
= IInternetProtocolSink_ReportProgress(pOIProtSink
,
938 BINDSTATUS_CACHEFILENAMEAVAILABLE
, expect_wsz
= emptyW
);
939 ok(hres
== S_OK
, "ReportProgress(BINDSTATUS_CACHEFILENAMEAVAILABLE) failed: %08x\n", hres
);
940 CHECK_CALLED(ReportProgress_CACHEFILENAMEAVAILABLE
);
942 SET_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
943 hres
= IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE
,
944 expect_wsz
= text_htmlW
);
946 "ReportProgress(BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE) failed: %08x\n", hres
);
947 CHECK_CALLED(ReportProgress_MIMETYPEAVAILABLE
);
949 SET_EXPECT(ReportData
);
950 hres
= IInternetProtocolSink_ReportData(pOIProtSink
,
951 BSCF_FIRSTDATANOTIFICATION
| BSCF_LASTDATANOTIFICATION
, 13, 13);
952 ok(hres
== S_OK
, "ReportData failed: %08x\n", hres
);
953 CHECK_CALLED(ReportData
);
955 if(tested_protocol
== BIND_TEST
) {
956 hres
= IInternetProtocol_Terminate(binding_protocol
, 0);
957 ok(hres
== E_FAIL
, "Termiante failed: %08x\n", hres
);
960 SET_EXPECT(ReportResult
);
961 hres
= IInternetProtocolSink_ReportResult(pOIProtSink
, S_OK
, 0, NULL
);
962 ok(hres
== S_OK
, "ReportResult failed: %08x\n", hres
);
963 CHECK_CALLED(ReportResult
);
968 static HRESULT WINAPI
Protocol_Continue(IInternetProtocol
*iface
,
969 PROTOCOLDATA
*pProtocolData
)
974 CHECK_EXPECT(Continue
);
976 ok(pProtocolData
!= NULL
, "pProtocolData == NULL\n");
977 if(!pProtocolData
|| tested_protocol
== BIND_TEST
)
982 IServiceProvider
*service_provider
;
983 IHttpNegotiate
*http_negotiate
;
984 static WCHAR header
[] = {'?',0};
986 hres
= IInternetProtocolSink_QueryInterface(binding_sink
, &IID_IServiceProvider
,
987 (void**)&service_provider
);
988 ok(hres
== S_OK
, "Could not get IServiceProvicder\n");
990 SET_EXPECT(QueryService_HttpNegotiate
);
991 hres
= IServiceProvider_QueryService(service_provider
, &IID_IHttpNegotiate
,
992 &IID_IHttpNegotiate
, (void**)&http_negotiate
);
993 IServiceProvider_Release(service_provider
);
994 CHECK_CALLED(QueryService_HttpNegotiate
);
995 ok(hres
== S_OK
, "Could not get IHttpNegotiate\n");
997 SET_EXPECT(OnResponse
);
998 hres
= IHttpNegotiate_OnResponse(http_negotiate
, 200, header
, NULL
, NULL
);
999 IHttpNegotiate_Release(http_negotiate
);
1000 CHECK_CALLED(OnResponse
);
1001 IHttpNegotiate_Release(http_negotiate
);
1002 ok(hres
== S_OK
, "OnResponse failed: %08x\n", hres
);
1004 SET_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
1005 hres
= IInternetProtocolSink_ReportProgress(binding_sink
,
1006 BINDSTATUS_MIMETYPEAVAILABLE
, text_htmlW
);
1007 CHECK_CALLED(ReportProgress_MIMETYPEAVAILABLE
);
1009 "ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE) failed: %08x\n", hres
);
1011 bscf
|= BSCF_FIRSTDATANOTIFICATION
;
1016 bscf
= BSCF_INTERMEDIATEDATANOTIFICATION
;
1020 SET_EXPECT(ReportData
);
1021 hres
= IInternetProtocolSink_ReportData(binding_sink
, bscf
, 100, 400);
1022 CHECK_CALLED(ReportData
);
1023 ok(hres
== S_OK
, "ReportData failed: %08x\n", hres
);
1031 static HRESULT WINAPI
Protocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
1034 ok(0, "unexpected call\n");
1038 static HRESULT WINAPI
Protocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
1040 CHECK_EXPECT(Terminate
);
1041 ok(!dwOptions
, "dwOptions=%d\n", dwOptions
);
1045 static HRESULT WINAPI
Protocol_Suspend(IInternetProtocol
*iface
)
1047 ok(0, "unexpected call\n");
1051 static HRESULT WINAPI
Protocol_Resume(IInternetProtocol
*iface
)
1053 ok(0, "unexpected call\n");
1057 static HRESULT WINAPI
Protocol_Read(IInternetProtocol
*iface
, void *pv
,
1058 ULONG cb
, ULONG
*pcbRead
)
1060 static BOOL b
= TRUE
;
1064 ok(pv
== expect_pv
, "pv != expect_pv\n");
1065 ok(cb
== 1000, "cb=%d\n", cb
);
1066 ok(pcbRead
!= NULL
, "pcbRead == NULL\n");
1067 ok(!*pcbRead
, "*pcbRead = %d\n", *pcbRead
);
1069 if(prot_state
== 3) {
1072 SET_EXPECT(ReportResult
);
1073 hres
= IInternetProtocolSink_ReportResult(binding_sink
, S_OK
, ERROR_SUCCESS
, NULL
);
1074 CHECK_CALLED(ReportResult
);
1080 return tested_protocol
== HTTP_TEST
? E_PENDING
: S_FALSE
;
1082 memset(pv
, 'x', 100);
1083 prot_read
+= *pcbRead
= 100;
1087 static HRESULT WINAPI
Protocol_Seek(IInternetProtocol
*iface
,
1088 LARGE_INTEGER dlibMove
, DWORD dwOrigin
, ULARGE_INTEGER
*plibNewPosition
)
1090 ok(0, "unexpected call\n");
1094 static HRESULT WINAPI
Protocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
1096 CHECK_EXPECT(LockRequest
);
1097 ok(dwOptions
== 0, "dwOptions=%x\n", dwOptions
);
1101 static HRESULT WINAPI
Protocol_UnlockRequest(IInternetProtocol
*iface
)
1103 CHECK_EXPECT(UnlockRequest
);
1107 static const IInternetProtocolVtbl ProtocolVtbl
= {
1108 Protocol_QueryInterface
,
1119 Protocol_LockRequest
,
1120 Protocol_UnlockRequest
1123 static IInternetProtocol Protocol
= { &ProtocolVtbl
};
1125 static HRESULT WINAPI
ClassFactory_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppv
)
1127 ok(0, "unexpected call\n");
1128 return E_NOINTERFACE
;
1131 static ULONG WINAPI
ClassFactory_AddRef(IClassFactory
*iface
)
1136 static ULONG WINAPI
ClassFactory_Release(IClassFactory
*iface
)
1141 static HRESULT WINAPI
ClassFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*pOuter
,
1142 REFIID riid
, void **ppv
)
1144 CHECK_EXPECT(CreateInstance
);
1146 ok(pOuter
== (IUnknown
*)prot_bind_info
, "pOuter != protocol_unk\n");
1147 ok(IsEqualGUID(&IID_IUnknown
, riid
), "unexpected riid %s\n", debugstr_guid(riid
));
1148 ok(ppv
!= NULL
, "ppv == NULL\n");
1154 static HRESULT WINAPI
ClassFactory_LockServer(IClassFactory
*iface
, BOOL dolock
)
1156 ok(0, "unexpected call\n");
1160 static const IClassFactoryVtbl ClassFactoryVtbl
= {
1161 ClassFactory_QueryInterface
,
1162 ClassFactory_AddRef
,
1163 ClassFactory_Release
,
1164 ClassFactory_CreateInstance
,
1165 ClassFactory_LockServer
1168 static IClassFactory ClassFactory
= { &ClassFactoryVtbl
};
1170 static void test_priority(IInternetProtocol
*protocol
)
1172 IInternetPriority
*priority
;
1176 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetPriority
,
1178 ok(hres
== S_OK
, "QueryInterface(IID_IInternetPriority) failed: %08x\n", hres
);
1182 hres
= IInternetPriority_GetPriority(priority
, &pr
);
1183 ok(hres
== S_OK
, "GetPriority failed: %08x\n", hres
);
1184 ok(pr
== 0, "pr=%d, expected 0\n", pr
);
1186 hres
= IInternetPriority_SetPriority(priority
, 1);
1187 ok(hres
== S_OK
, "SetPriority failed: %08x\n", hres
);
1189 hres
= IInternetPriority_GetPriority(priority
, &pr
);
1190 ok(hres
== S_OK
, "GetPriority failed: %08x\n", hres
);
1191 ok(pr
== 1, "pr=%d, expected 1\n", pr
);
1193 IInternetPriority_Release(priority
);
1196 static void file_protocol_start(IInternetProtocol
*protocol
, LPCWSTR url
, BOOL is_first
)
1200 SET_EXPECT(GetBindInfo
);
1201 if(!(bindf
& BINDF_FROMURLMON
))
1202 SET_EXPECT(ReportProgress_DIRECTBIND
);
1204 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
1205 SET_EXPECT(ReportProgress_CACHEFILENAMEAVAILABLE
);
1206 if(bindf
& BINDF_FROMURLMON
)
1207 SET_EXPECT(ReportProgress_VERIFIEDMIMETYPEAVAILABLE
);
1209 SET_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
1211 SET_EXPECT(ReportData
);
1213 SET_EXPECT(ReportResult
);
1215 expect_hrResult
= S_OK
;
1217 hres
= IInternetProtocol_Start(protocol
, url
, &protocol_sink
, &bind_info
, 0, 0);
1218 ok(hres
== S_OK
, "Start failed: %08x\n", hres
);
1220 CHECK_CALLED(GetBindInfo
);
1221 if(!(bindf
& BINDF_FROMURLMON
))
1222 CHECK_CALLED(ReportProgress_DIRECTBIND
);
1224 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
1225 CHECK_CALLED(ReportProgress_CACHEFILENAMEAVAILABLE
);
1226 if(bindf
& BINDF_FROMURLMON
)
1227 CHECK_CALLED(ReportProgress_VERIFIEDMIMETYPEAVAILABLE
);
1229 CHECK_CALLED(ReportProgress_MIMETYPEAVAILABLE
);
1231 CHECK_CALLED(ReportData
);
1233 CHECK_CALLED(ReportResult
);
1236 static void test_file_protocol_url(LPCWSTR url
)
1238 IInternetProtocolInfo
*protocol_info
;
1240 IClassFactory
*factory
;
1243 hres
= CoGetClassObject(&CLSID_FileProtocol
, CLSCTX_INPROC_SERVER
, NULL
,
1244 &IID_IUnknown
, (void**)&unk
);
1245 ok(hres
== S_OK
, "CoGetClassObject failed: %08x\n", hres
);
1246 if(!SUCCEEDED(hres
))
1249 hres
= IUnknown_QueryInterface(unk
, &IID_IInternetProtocolInfo
, (void**)&protocol_info
);
1250 ok(hres
== E_NOINTERFACE
,
1251 "Could not get IInternetProtocolInfo interface: %08x, expected E_NOINTERFACE\n", hres
);
1253 hres
= IUnknown_QueryInterface(unk
, &IID_IClassFactory
, (void**)&factory
);
1254 ok(hres
== S_OK
, "Could not get IClassFactory interface\n");
1255 if(SUCCEEDED(hres
)) {
1256 IInternetProtocol
*protocol
;
1259 hres
= IClassFactory_CreateInstance(factory
, NULL
, &IID_IInternetProtocol
, (void**)&protocol
);
1260 ok(hres
== S_OK
, "Could not get IInternetProtocol: %08x\n", hres
);
1262 if(SUCCEEDED(hres
)) {
1263 file_protocol_start(protocol
, url
, TRUE
);
1264 hres
= IInternetProtocol_Read(protocol
, buf
, 2, &cb
);
1265 ok(hres
== S_OK
, "Read failed: %08x\n", hres
);
1266 ok(cb
== 2, "cb=%u expected 2\n", cb
);
1267 hres
= IInternetProtocol_Read(protocol
, buf
, sizeof(buf
), &cb
);
1268 ok(hres
== S_FALSE
, "Read failed: %08x\n", hres
);
1269 hres
= IInternetProtocol_Read(protocol
, buf
, sizeof(buf
), &cb
);
1270 ok(hres
== S_FALSE
, "Read failed: %08x expected S_FALSE\n", hres
);
1271 ok(cb
== 0, "cb=%u expected 0\n", cb
);
1272 hres
= IInternetProtocol_UnlockRequest(protocol
);
1273 ok(hres
== S_OK
, "UnlockRequest failed: %08x\n", hres
);
1275 file_protocol_start(protocol
, url
, FALSE
);
1276 hres
= IInternetProtocol_Read(protocol
, buf
, 2, &cb
);
1277 ok(hres
== S_FALSE
, "Read failed: %08x\n", hres
);
1278 hres
= IInternetProtocol_LockRequest(protocol
, 0);
1279 ok(hres
== S_OK
, "LockRequest failed: %08x\n", hres
);
1280 hres
= IInternetProtocol_UnlockRequest(protocol
);
1281 ok(hres
== S_OK
, "UnlockRequest failed: %08x\n", hres
);
1283 IInternetProtocol_Release(protocol
);
1286 hres
= IClassFactory_CreateInstance(factory
, NULL
, &IID_IInternetProtocol
, (void**)&protocol
);
1287 ok(hres
== S_OK
, "Could not get IInternetProtocol: %08x\n", hres
);
1289 if(SUCCEEDED(hres
)) {
1290 file_protocol_start(protocol
, url
, TRUE
);
1291 hres
= IInternetProtocol_LockRequest(protocol
, 0);
1292 ok(hres
== S_OK
, "LockRequest failed: %08x\n", hres
);
1293 hres
= IInternetProtocol_Terminate(protocol
, 0);
1294 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1295 hres
= IInternetProtocol_Read(protocol
, buf
, 2, &cb
);
1296 ok(hres
== S_OK
, "Read failed: %08x\n\n", hres
);
1297 hres
= IInternetProtocol_UnlockRequest(protocol
);
1298 ok(hres
== S_OK
, "UnlockRequest failed: %08x\n", hres
);
1299 hres
= IInternetProtocol_Read(protocol
, buf
, 2, &cb
);
1300 ok(hres
== S_OK
, "Read failed: %08x\n", hres
);
1301 hres
= IInternetProtocol_Terminate(protocol
, 0);
1302 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1304 IInternetProtocol_Release(protocol
);
1307 hres
= IClassFactory_CreateInstance(factory
, NULL
, &IID_IInternetProtocol
, (void**)&protocol
);
1308 ok(hres
== S_OK
, "Could not get IInternetProtocol: %08x\n", hres
);
1310 if(SUCCEEDED(hres
)) {
1311 file_protocol_start(protocol
, url
, TRUE
);
1312 hres
= IInternetProtocol_Terminate(protocol
, 0);
1313 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1314 hres
= IInternetProtocol_Read(protocol
, buf
, 2, &cb
);
1315 ok(hres
== S_OK
, "Read failed: %08x\n", hres
);
1316 ok(cb
== 2, "cb=%u expected 2\n", cb
);
1318 IInternetProtocol_Release(protocol
);
1321 IClassFactory_Release(factory
);
1324 IUnknown_Release(unk
);
1327 static void test_file_protocol_fail(void)
1329 IInternetProtocol
*protocol
;
1332 static const WCHAR index_url2
[] =
1333 {'f','i','l','e',':','/','/','i','n','d','e','x','.','h','t','m','l',0};
1335 hres
= CoCreateInstance(&CLSID_FileProtocol
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
1336 &IID_IInternetProtocol
, (void**)&protocol
);
1337 ok(hres
== S_OK
, "CoCreateInstance failed: %08x\n", hres
);
1341 SET_EXPECT(GetBindInfo
);
1342 expect_hrResult
= MK_E_SYNTAX
;
1343 hres
= IInternetProtocol_Start(protocol
, wszIndexHtml
, &protocol_sink
, &bind_info
, 0, 0);
1344 ok(hres
== MK_E_SYNTAX
, "Start failed: %08x, expected MK_E_SYNTAX\n", hres
);
1345 CHECK_CALLED(GetBindInfo
);
1347 SET_EXPECT(GetBindInfo
);
1348 if(!(bindf
& BINDF_FROMURLMON
))
1349 SET_EXPECT(ReportProgress_DIRECTBIND
);
1350 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
1351 SET_EXPECT(ReportResult
);
1352 expect_hrResult
= INET_E_RESOURCE_NOT_FOUND
;
1353 hres
= IInternetProtocol_Start(protocol
, index_url
, &protocol_sink
, &bind_info
, 0, 0);
1354 ok(hres
== INET_E_RESOURCE_NOT_FOUND
,
1355 "Start failed: %08x expected INET_E_RESOURCE_NOT_FOUND\n", hres
);
1356 CHECK_CALLED(GetBindInfo
);
1357 if(!(bindf
& BINDF_FROMURLMON
))
1358 CHECK_CALLED(ReportProgress_DIRECTBIND
);
1359 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
1360 CHECK_CALLED(ReportResult
);
1362 IInternetProtocol_Release(protocol
);
1364 hres
= CoCreateInstance(&CLSID_FileProtocol
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
1365 &IID_IInternetProtocol
, (void**)&protocol
);
1366 ok(hres
== S_OK
, "CoCreateInstance failed: %08x\n", hres
);
1370 SET_EXPECT(GetBindInfo
);
1371 if(!(bindf
& BINDF_FROMURLMON
))
1372 SET_EXPECT(ReportProgress_DIRECTBIND
);
1373 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
1374 SET_EXPECT(ReportResult
);
1375 expect_hrResult
= INET_E_RESOURCE_NOT_FOUND
;
1377 hres
= IInternetProtocol_Start(protocol
, index_url2
, &protocol_sink
, &bind_info
, 0, 0);
1378 ok(hres
== INET_E_RESOURCE_NOT_FOUND
,
1379 "Start failed: %08x, expected INET_E_RESOURCE_NOT_FOUND\n", hres
);
1380 CHECK_CALLED(GetBindInfo
);
1381 if(!(bindf
& BINDF_FROMURLMON
))
1382 CHECK_CALLED(ReportProgress_DIRECTBIND
);
1383 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
1384 CHECK_CALLED(ReportResult
);
1386 IInternetProtocol_Release(protocol
);
1389 static void test_file_protocol(void) {
1390 WCHAR buf
[MAX_PATH
];
1395 static const WCHAR wszFile
[] = {'f','i','l','e',':',0};
1396 static const WCHAR wszFile2
[] = {'f','i','l','e',':','/','/',0};
1397 static const WCHAR wszFile3
[] = {'f','i','l','e',':','/','/','/',0};
1398 static const char html_doc
[] = "<HTML></HTML>";
1400 trace("Testing file protocol...\n");
1401 tested_protocol
= FILE_TEST
;
1403 file
= CreateFileW(wszIndexHtml
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
,
1404 FILE_ATTRIBUTE_NORMAL
, NULL
);
1405 ok(file
!= INVALID_HANDLE_VALUE
, "CreateFile failed\n");
1406 if(file
== INVALID_HANDLE_VALUE
)
1408 WriteFile(file
, html_doc
, sizeof(html_doc
)-1, &size
, NULL
);
1411 file_name
= wszIndexHtml
;
1413 test_file_protocol_url(index_url
);
1414 bindf
= BINDF_FROMURLMON
;
1415 test_file_protocol_url(index_url
);
1416 bindf
= BINDF_FROMURLMON
| BINDF_NEEDFILE
;
1417 test_file_protocol_url(index_url
);
1419 memcpy(buf
, wszFile
, sizeof(wszFile
));
1420 len
= sizeof(wszFile
)/sizeof(WCHAR
)-1;
1421 len
+= GetCurrentDirectoryW(sizeof(buf
)/sizeof(WCHAR
)-len
, buf
+len
);
1423 memcpy(buf
+len
, wszIndexHtml
, sizeof(wszIndexHtml
));
1425 file_name
= buf
+ sizeof(wszFile
)/sizeof(WCHAR
)-1;
1427 test_file_protocol_url(buf
);
1428 bindf
= BINDF_FROMURLMON
;
1429 test_file_protocol_url(buf
);
1431 memcpy(buf
, wszFile2
, sizeof(wszFile2
));
1432 len
= sizeof(wszFile2
)/sizeof(WCHAR
)-1;
1433 len
+= GetCurrentDirectoryW(sizeof(buf
)/sizeof(WCHAR
)-len
, buf
+len
);
1435 memcpy(buf
+len
, wszIndexHtml
, sizeof(wszIndexHtml
));
1437 file_name
= buf
+ sizeof(wszFile2
)/sizeof(WCHAR
)-1;
1439 test_file_protocol_url(buf
);
1440 bindf
= BINDF_FROMURLMON
;
1441 test_file_protocol_url(buf
);
1443 memcpy(buf
, wszFile3
, sizeof(wszFile3
));
1444 len
= sizeof(wszFile3
)/sizeof(WCHAR
)-1;
1445 len
+= GetCurrentDirectoryW(sizeof(buf
)/sizeof(WCHAR
)-len
, buf
+len
);
1447 memcpy(buf
+len
, wszIndexHtml
, sizeof(wszIndexHtml
));
1449 file_name
= buf
+ sizeof(wszFile3
)/sizeof(WCHAR
)-1;
1451 test_file_protocol_url(buf
);
1452 bindf
= BINDF_FROMURLMON
;
1453 test_file_protocol_url(buf
);
1455 DeleteFileW(wszIndexHtml
);
1458 test_file_protocol_fail();
1459 bindf
= BINDF_FROMURLMON
;
1460 test_file_protocol_fail();
1463 static BOOL
http_protocol_start(LPCWSTR url
, BOOL is_first
)
1465 static BOOL got_user_agent
= FALSE
;
1468 first_data_notif
= TRUE
;
1471 SET_EXPECT(GetBindInfo
);
1472 if (!(bindf
& BINDF_FROMURLMON
))
1473 SET_EXPECT(ReportProgress_DIRECTBIND
);
1474 SET_EXPECT(GetBindString_USER_AGENT
);
1475 SET_EXPECT(GetBindString_ACCEPT_MIMES
);
1476 SET_EXPECT(QueryService_HttpNegotiate
);
1477 SET_EXPECT(BeginningTransaction
);
1478 SET_EXPECT(GetRootSecurityId
);
1480 SET_EXPECT(GetBindString_POST_COOKIE
);
1482 hres
= IInternetProtocol_Start(http_protocol
, url
, &protocol_sink
, &bind_info
, 0, 0);
1483 ok(hres
== S_OK
, "Start failed: %08x\n", hres
);
1487 CHECK_CALLED(GetBindInfo
);
1488 if (!(bindf
& BINDF_FROMURLMON
))
1489 CHECK_CALLED(ReportProgress_DIRECTBIND
);
1490 if (!got_user_agent
)
1492 CHECK_CALLED(GetBindString_USER_AGENT
);
1493 got_user_agent
= TRUE
;
1497 /* user agent only retrieved once, even with different URLs */
1498 CHECK_NOT_CALLED(GetBindString_USER_AGENT
);
1500 CHECK_CALLED(GetBindString_ACCEPT_MIMES
);
1501 CHECK_CALLED(QueryService_HttpNegotiate
);
1502 CHECK_CALLED(BeginningTransaction
);
1503 /* GetRootSecurityId called on WinXP but not on Win98 */
1504 CLEAR_CALLED(GetRootSecurityId
);
1506 CHECK_CALLED(GetBindString_POST_COOKIE
);
1511 /* is_first refers to whether this is the first call to this function
1513 static void test_http_protocol_url(LPCWSTR url
, BOOL is_first
)
1515 IInternetProtocolInfo
*protocol_info
;
1516 IClassFactory
*factory
;
1521 http_is_first
= is_first
;
1523 hres
= CoGetClassObject(&CLSID_HttpProtocol
, CLSCTX_INPROC_SERVER
, NULL
, &IID_IUnknown
, (void**)&unk
);
1524 ok(hres
== S_OK
, "CoGetClassObject failed: %08x\n", hres
);
1525 if(!SUCCEEDED(hres
))
1528 hres
= IUnknown_QueryInterface(unk
, &IID_IInternetProtocolInfo
, (void**)&protocol_info
);
1529 ok(hres
== E_NOINTERFACE
,
1530 "Could not get IInternetProtocolInfo interface: %08x, expected E_NOINTERFACE\n",
1533 hres
= IUnknown_QueryInterface(unk
, &IID_IClassFactory
, (void**)&factory
);
1534 ok(hres
== S_OK
, "Could not get IClassFactory interface\n");
1535 IUnknown_Release(unk
);
1539 hres
= IClassFactory_CreateInstance(factory
, NULL
, &IID_IInternetProtocol
,
1540 (void**)&http_protocol
);
1541 ok(hres
== S_OK
, "Could not get IInternetProtocol: %08x\n", hres
);
1542 if(SUCCEEDED(hres
)) {
1545 int *called
= (bindf
& BINDF_FROMURLMON
) ? &called_Switch
: &called_ReportData
;
1547 test_priority(http_protocol
);
1549 SET_EXPECT(ReportProgress_FINDINGRESOURCE
);
1550 SET_EXPECT(ReportProgress_CONNECTING
);
1551 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
1552 if(!(bindf
& BINDF_FROMURLMON
)) {
1553 SET_EXPECT(OnResponse
);
1554 SET_EXPECT(ReportProgress_RAWMIMETYPE
);
1555 SET_EXPECT(ReportData
);
1560 if(!http_protocol_start(url
, is_first
))
1563 SET_EXPECT(ReportResult
);
1564 expect_hrResult
= S_OK
;
1566 hres
= IInternetProtocol_Read(http_protocol
, buf
, 1, &cb
);
1567 ok((!*called
&& hres
== E_PENDING
&& cb
==0) ||
1568 (*called
&& hres
== S_OK
&& cb
==1), "Read failed: %08x (%d bytes)\n", hres
, cb
);
1570 WaitForSingleObject(event_complete
, INFINITE
);
1571 if(bindf
& BINDF_FROMURLMON
)
1572 CHECK_CALLED(Switch
);
1574 CHECK_CALLED(ReportData
);
1577 if(bindf
& BINDF_FROMURLMON
)
1580 SET_EXPECT(ReportData
);
1581 hres
= IInternetProtocol_Read(http_protocol
, buf
, sizeof(buf
), &cb
);
1582 if(hres
== E_PENDING
) {
1583 hres
= IInternetProtocol_Read(http_protocol
, buf
, 1, &cb
);
1584 ok((!*called
&& hres
== E_PENDING
&& cb
==0) ||
1585 (*called
&& hres
== S_OK
&& cb
==1), "Read failed: %08x (%d bytes)\n", hres
, cb
);
1586 WaitForSingleObject(event_complete
, INFINITE
);
1587 if(bindf
& BINDF_FROMURLMON
)
1588 CHECK_CALLED(Switch
);
1590 CHECK_CALLED(ReportData
);
1592 if(bindf
& BINDF_FROMURLMON
)
1593 CHECK_NOT_CALLED(Switch
);
1595 CHECK_NOT_CALLED(ReportData
);
1599 ok(hres
== S_FALSE
, "Read failed: %08x\n", hres
);
1600 CHECK_CALLED(ReportResult
);
1602 hres
= IInternetProtocol_LockRequest(http_protocol
, 0);
1603 ok(hres
== S_OK
, "LockRequest failed: %08x\n", hres
);
1605 hres
= IInternetProtocol_Read(http_protocol
, buf
, 1, &cb
);
1606 ok(hres
== S_FALSE
, "Read failed: %08x\n", hres
);
1608 hres
= IInternetProtocol_Terminate(http_protocol
, 0);
1609 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1611 /* This wait is to give the internet handles being freed in Terminate
1612 * enough time to actually terminate in all cases. Internet handles
1613 * terminate asynchronously and native reuses the main InternetOpen
1614 * handle. The only case in which this seems to be necessary is on
1615 * wine with native wininet and urlmon, resulting in the next time
1616 * test_http_protocol_url being called the first data notification actually
1617 * being an extra last data notification from the previous connection
1618 * about once out of every ten times. */
1621 hres
= IInternetProtocol_UnlockRequest(http_protocol
);
1622 ok(hres
== S_OK
, "UnlockRequest failed: %08x\n", hres
);
1624 IInternetProtocol_Release(http_protocol
);
1627 IClassFactory_Release(factory
);
1630 static void test_http_protocol(void)
1632 static const WCHAR winehq_url
[] =
1633 {'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q','.',
1634 'o','r','g','/','s','i','t','e','/','a','b','o','u','t',0};
1635 static const WCHAR posttest_url
[] =
1636 {'h','t','t','p',':','/','/','c','r','o','s','s','o','v','e','r','.',
1637 'c','o','d','e','w','e','a','v','e','r','s','.','c','o','m','/',
1638 'p','o','s','t','t','e','s','t','.','p','h','p',0};
1640 trace("Testing http protocol (not from urlmon)...\n");
1641 tested_protocol
= HTTP_TEST
;
1642 bindf
= BINDF_ASYNCHRONOUS
| BINDF_ASYNCSTORAGE
| BINDF_PULLDATA
;
1643 test_http_protocol_url(winehq_url
, TRUE
);
1645 trace("Testing http protocol (from urlmon)...\n");
1646 bindf
= BINDF_ASYNCHRONOUS
| BINDF_ASYNCSTORAGE
| BINDF_PULLDATA
| BINDF_FROMURLMON
;
1647 test_http_protocol_url(winehq_url
, FALSE
);
1649 trace("Testing http protocol (to file)...\n");
1650 bindf
= BINDF_ASYNCHRONOUS
| BINDF_ASYNCSTORAGE
| BINDF_PULLDATA
| BINDF_FROMURLMON
| BINDF_NEEDFILE
;
1651 test_http_protocol_url(winehq_url
, FALSE
);
1653 trace("Testing http protocol (post data)...\n");
1654 http_post_test
= TRUE
;
1655 /* Without this flag we get a ReportProgress_CACHEFILENAMEAVAILABLE
1656 * notification with BINDVERB_POST */
1657 bindf
= BINDF_ASYNCHRONOUS
| BINDF_ASYNCSTORAGE
| BINDF_PULLDATA
| BINDF_FROMURLMON
| BINDF_NOWRITECACHE
;
1658 test_http_protocol_url(posttest_url
, TRUE
);
1659 http_post_test
= FALSE
;
1662 static void test_mk_protocol(void)
1664 IInternetProtocolInfo
*protocol_info
;
1665 IInternetProtocol
*protocol
;
1666 IClassFactory
*factory
;
1670 static const WCHAR wrong_url1
[] = {'t','e','s','t',':','@','M','S','I','T','S','t','o','r','e',
1671 ':',':','/','t','e','s','t','.','h','t','m','l',0};
1672 static const WCHAR wrong_url2
[] = {'m','k',':','/','t','e','s','t','.','h','t','m','l',0};
1674 trace("Testing mk protocol...\n");
1675 tested_protocol
= MK_TEST
;
1677 hres
= CoGetClassObject(&CLSID_MkProtocol
, CLSCTX_INPROC_SERVER
, NULL
,
1678 &IID_IUnknown
, (void**)&unk
);
1679 ok(hres
== S_OK
, "CoGetClassObject failed: %08x\n", hres
);
1681 hres
= IUnknown_QueryInterface(unk
, &IID_IInternetProtocolInfo
, (void**)&protocol_info
);
1682 ok(hres
== E_NOINTERFACE
,
1683 "Could not get IInternetProtocolInfo interface: %08x, expected E_NOINTERFACE\n",
1686 hres
= IUnknown_QueryInterface(unk
, &IID_IClassFactory
, (void**)&factory
);
1687 ok(hres
== S_OK
, "Could not get IClassFactory interface\n");
1688 IUnknown_Release(unk
);
1692 hres
= IClassFactory_CreateInstance(factory
, NULL
, &IID_IInternetProtocol
,
1694 IClassFactory_Release(factory
);
1695 ok(hres
== S_OK
, "Could not get IInternetProtocol: %08x\n", hres
);
1697 SET_EXPECT(GetBindInfo
);
1698 hres
= IInternetProtocol_Start(protocol
, wrong_url1
, &protocol_sink
, &bind_info
, 0, 0);
1699 ok(hres
== MK_E_SYNTAX
|| hres
== INET_E_INVALID_URL
,
1700 "Start failed: %08x, expected MK_E_SYNTAX or INET_E_INVALID_URL\n", hres
);
1701 CLEAR_CALLED(GetBindInfo
);
1703 SET_EXPECT(GetBindInfo
);
1704 SET_EXPECT(ReportProgress_DIRECTBIND
);
1705 SET_EXPECT(ReportProgress_SENDINGREQUEST
);
1706 SET_EXPECT(ReportProgress_MIMETYPEAVAILABLE
);
1707 SET_EXPECT(ReportResult
);
1708 expect_hrResult
= INET_E_RESOURCE_NOT_FOUND
;
1710 hres
= IInternetProtocol_Start(protocol
, wrong_url2
, &protocol_sink
, &bind_info
, 0, 0);
1711 ok(hres
== INET_E_RESOURCE_NOT_FOUND
, "Start failed: %08x, expected INET_E_RESOURCE_NOT_FOUND\n", hres
);
1713 CHECK_CALLED(GetBindInfo
);
1714 CLEAR_CALLED(ReportProgress_DIRECTBIND
);
1715 CHECK_CALLED(ReportProgress_SENDINGREQUEST
);
1716 CHECK_CALLED(ReportProgress_MIMETYPEAVAILABLE
);
1717 CHECK_CALLED(ReportResult
);
1719 IInternetProtocol_Release(protocol
);
1722 static void test_CreateBinding(void)
1724 IInternetProtocolSink
*sink
;
1725 IInternetProtocol
*protocol
;
1726 IInternetPriority
*priority
;
1727 IInternetSession
*session
;
1733 static const WCHAR test_url
[] =
1734 {'t','e','s','t',':','/','/','f','i','l','e','.','h','t','m','l',0};
1735 static const WCHAR wsz_test
[] = {'t','e','s','t',0};
1737 trace("Testing CreateBinding...\n");
1738 tested_protocol
= BIND_TEST
;
1739 binding_test
= TRUE
;
1741 hres
= CoInternetGetSession(0, &session
, 0);
1742 ok(hres
== S_OK
, "CoInternetGetSession failed: %08x\n", hres
);
1744 hres
= IInternetSession_RegisterNameSpace(session
, &ClassFactory
, &IID_NULL
, wsz_test
, 0, NULL
, 0);
1745 ok(hres
== S_OK
, "RegisterNameSpace failed: %08x\n", hres
);
1747 hres
= IInternetSession_CreateBinding(session
, NULL
, test_url
, NULL
, NULL
, &protocol
, 0);
1748 binding_protocol
= protocol
;
1749 ok(hres
== S_OK
, "CreateBinding failed: %08x\n", hres
);
1750 ok(protocol
!= NULL
, "protocol == NULL\n");
1752 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetBindInfo
, (void**)&prot_bind_info
);
1753 ok(hres
== S_OK
, "QueryInterface(IID_IInternetBindInfo) failed: %08x\n", hres
);
1755 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetProtocolSink
, (void**)&sink
);
1756 ok(hres
== S_OK
, "Could not get IInternetProtocolSink: %08x\n", hres
);
1758 hres
= IInternetProtocol_Start(protocol
, test_url
, NULL
, &bind_info
, 0, 0);
1759 ok(hres
== E_INVALIDARG
, "Start failed: %08x, expected E_INVALIDARG\n", hres
);
1760 hres
= IInternetProtocol_Start(protocol
, test_url
, &protocol_sink
, NULL
, 0, 0);
1761 ok(hres
== E_INVALIDARG
, "Start failed: %08x, expected E_INVALIDARG\n", hres
);
1762 hres
= IInternetProtocol_Start(protocol
, NULL
, &protocol_sink
, &bind_info
, 0, 0);
1763 ok(hres
== E_INVALIDARG
, "Start failed: %08x, expected E_INVALIDARG\n", hres
);
1765 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetPriority
, (void**)&priority
);
1766 ok(hres
== S_OK
, "QueryInterface(IID_IInternetPriority) failed: %08x\n", hres
);
1769 hres
= IInternetPriority_GetPriority(priority
, &p
);
1770 ok(hres
== S_OK
, "GetPriority failed: %08x\n", hres
);
1771 ok(!p
, "p=%d\n", p
);
1774 hres
= IInternetPriority_SetPriority(priority
, 100);
1775 ok(hres
== S_OK
, "SetPriority failed: %08x\n", hres
);
1778 hres
= IInternetPriority_GetPriority(priority
, &p
);
1779 ok(hres
== S_OK
, "GetPriority failed: %08x\n", hres
);
1780 ok(p
== 100, "p=%d\n", p
);
1782 SET_EXPECT(QueryService_InternetProtocol
);
1783 SET_EXPECT(CreateInstance
);
1784 SET_EXPECT(ReportProgress_PROTOCOLCLASSID
);
1785 SET_EXPECT(SetPriority
);
1788 expect_hrResult
= S_OK
;
1789 hres
= IInternetProtocol_Start(protocol
, test_url
, &protocol_sink
, &bind_info
, 0, 0);
1790 ok(hres
== S_OK
, "Start failed: %08x\n", hres
);
1792 CHECK_CALLED(QueryService_InternetProtocol
);
1793 CHECK_CALLED(CreateInstance
);
1794 CHECK_CALLED(ReportProgress_PROTOCOLCLASSID
);
1795 CHECK_CALLED(SetPriority
);
1796 CHECK_CALLED(Start
);
1800 hres
= IInternetProtocol_Read(protocol
, expect_pv
= buf
, sizeof(buf
), &read
);
1801 ok(hres
== S_OK
, "Read failed: %08x\n", hres
);
1802 ok(read
== 100, "read = %d\n", read
);
1807 hres
= IInternetProtocol_Read(protocol
, expect_pv
= buf
, sizeof(buf
), &read
);
1808 ok(hres
== S_FALSE
, "Read failed: %08x\n", hres
);
1809 ok(!read
, "read = %d\n", read
);
1813 hres
= IInternetPriority_GetPriority(priority
, &p
);
1814 ok(hres
== S_OK
, "GetPriority failed: %08x\n", hres
);
1815 ok(p
== 100, "p=%d\n", p
);
1817 hres
= IInternetPriority_SetPriority(priority
, 101);
1818 ok(hres
== S_OK
, "SetPriority failed: %08x\n", hres
);
1820 SET_EXPECT(Terminate
);
1821 hres
= IInternetProtocol_Terminate(protocol
, 0xdeadbeef);
1822 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1823 CHECK_CALLED(Terminate
);
1825 SET_EXPECT(Continue
);
1826 hres
= IInternetProtocolSink_Switch(sink
, &protocoldata
);
1827 ok(hres
== S_OK
, "Switch failed: %08x\n", hres
);
1828 CHECK_CALLED(Continue
);
1830 hres
= IInternetProtocolSink_ReportProgress(sink
,
1831 BINDSTATUS_CACHEFILENAMEAVAILABLE
, expect_wsz
= emptyW
);
1832 ok(hres
== S_OK
, "ReportProgress(BINDSTATUS_CACHEFILENAMEAVAILABLE) failed: %08x\n", hres
);
1834 hres
= IInternetProtocolSink_ReportResult(sink
, S_OK
, ERROR_SUCCESS
, NULL
);
1835 ok(hres
== E_FAIL
, "ReportResult failed: %08x, expected E_FAIL\n", hres
);
1837 hres
= IInternetProtocolSink_ReportData(sink
, 0, 0, 0);
1838 ok(hres
== S_OK
, "ReportData failed: %08x\n", hres
);
1840 IInternetProtocolSink_Release(sink
);
1841 IInternetPriority_Release(priority
);
1842 IInternetBindInfo_Release(prot_bind_info
);
1843 IInternetProtocol_Release(protocol
);
1844 IInternetSession_Release(session
);
1847 static void test_binding(int prot
)
1849 IInternetProtocol
*protocol
;
1850 IInternetSession
*session
;
1854 trace("Testing %s binding...\n", debugstr_w(protocol_names
[prot
]));
1856 tested_protocol
= prot
;
1857 binding_test
= TRUE
;
1858 first_data_notif
= TRUE
;
1861 hres
= CoInternetGetSession(0, &session
, 0);
1862 ok(hres
== S_OK
, "CoInternetGetSession failed: %08x\n", hres
);
1864 hres
= IInternetSession_RegisterNameSpace(session
, &ClassFactory
, &IID_NULL
, protocol_names
[prot
], 0, NULL
, 0);
1865 ok(hres
== S_OK
, "RegisterNameSpace failed: %08x\n", hres
);
1867 hres
= IInternetSession_CreateBinding(session
, NULL
, binding_urls
[prot
], NULL
, NULL
, &protocol
, 0);
1868 binding_protocol
= protocol
;
1869 IInternetSession_Release(session
);
1870 ok(hres
== S_OK
, "CreateBinding failed: %08x\n", hres
);
1871 ok(protocol
!= NULL
, "protocol == NULL\n");
1873 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetBindInfo
, (void**)&prot_bind_info
);
1874 ok(hres
== S_OK
, "QueryInterface(IID_IInternetBindInfo) failed: %08x\n", hres
);
1876 hres
= IInternetProtocol_QueryInterface(protocol
, &IID_IInternetProtocolSink
, (void**)&binding_sink
);
1877 ok(hres
== S_OK
, "QueryInterface(IID_IInternetProtocolSink) failed: %08x\n", hres
);
1880 SET_EXPECT(QueryService_InternetProtocol
);
1881 SET_EXPECT(CreateInstance
);
1882 SET_EXPECT(ReportProgress_PROTOCOLCLASSID
);
1883 SET_EXPECT(SetPriority
);
1886 expect_hrResult
= S_OK
;
1887 hres
= IInternetProtocol_Start(protocol
, binding_urls
[prot
], &protocol_sink
, &bind_info
, 0, 0);
1888 ok(hres
== S_OK
, "Start failed: %08x\n", hres
);
1890 CHECK_CALLED(QueryService_InternetProtocol
);
1891 CHECK_CALLED(CreateInstance
);
1892 CHECK_CALLED(ReportProgress_PROTOCOLCLASSID
);
1893 CHECK_CALLED(SetPriority
);
1894 CHECK_CALLED(Start
);
1896 if(prot
== HTTP_TEST
) {
1897 while(prot_state
< 4) {
1898 WaitForSingleObject(event_complete
, INFINITE
);
1899 SET_EXPECT(Continue
);
1900 IInternetProtocol_Continue(protocol
, pdata
);
1901 CHECK_CALLED(Continue
);
1902 SetEvent(event_complete2
);
1905 WaitForSingleObject(event_complete
, INFINITE
);
1907 SET_EXPECT(LockRequest
);
1908 hres
= IInternetProtocol_LockRequest(protocol
, 0);
1909 ok(hres
== S_OK
, "LockRequest failed: %08x\n", hres
);
1910 CHECK_CALLED(LockRequest
);
1912 SET_EXPECT(UnlockRequest
);
1913 hres
= IInternetProtocol_UnlockRequest(protocol
);
1914 ok(hres
== S_OK
, "UnlockRequest failed: %08x\n", hres
);
1915 CHECK_CALLED(UnlockRequest
);
1918 SET_EXPECT(Terminate
);
1919 hres
= IInternetProtocol_Terminate(protocol
, 0);
1920 ok(hres
== S_OK
, "Terminate failed: %08x\n", hres
);
1921 CHECK_CALLED(Terminate
);
1923 IInternetBindInfo_Release(prot_bind_info
);
1924 IInternetProtocolSink_Release(binding_sink
);
1925 ref
= IInternetProtocol_Release(protocol
);
1926 ok(!ref
, "ref=%u, expected 0\n", ref
);
1929 START_TEST(protocol
)
1931 OleInitialize(NULL
);
1933 event_complete
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1934 event_complete2
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1936 test_file_protocol();
1937 test_http_protocol();
1939 test_CreateBinding();
1940 test_binding(FILE_TEST
);
1941 test_binding(HTTP_TEST
);
1943 CloseHandle(event_complete
);
1944 CloseHandle(event_complete2
);