Release 1.5.29.
[wine] / dlls / wininet / tests / http.c
1 /*
2  * Wininet - HTTP tests
3  *
4  * Copyright 2002 Aric Stewart
5  * Copyright 2004 Mike McCormack
6  * Copyright 2005 Hans Leidekker
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wininet.h"
30 #include "winineti.h"
31 #include "winsock.h"
32
33 #include "wine/test.h"
34
35 #define TEST_URL "http://test.winehq.org/tests/hello.html"
36
37 static BOOL first_connection_to_test_url = TRUE;
38
39 /* Adapted from dlls/urlmon/tests/protocol.c */
40
41 #define SET_EXPECT2(status, num) \
42     expect[status] = num
43
44 #define SET_EXPECT(status) \
45     SET_EXPECT2(status, 1)
46
47 #define SET_OPTIONAL2(status, num) \
48     optional[status] = num
49
50 #define SET_OPTIONAL(status) \
51     SET_OPTIONAL2(status, 1)
52
53 /* SET_WINE_ALLOW's should be used with an appropriate
54  * todo_wine CHECK_NOTIFIED at a later point in the code */
55 #define SET_WINE_ALLOW2(status, num) \
56     wine_allow[status] = num
57
58 #define SET_WINE_ALLOW(status) \
59     SET_WINE_ALLOW2(status, 1)
60
61 #define CHECK_EXPECT(status) \
62     do { \
63         if (!expect[status] && !optional[status] && wine_allow[status]) \
64         { \
65             todo_wine ok(expect[status], "unexpected status %d (%s)\n", status, \
66                          status < MAX_INTERNET_STATUS && status_string[status] ? \
67                          status_string[status] : "unknown");            \
68             wine_allow[status]--; \
69         } \
70         else \
71         { \
72             ok(expect[status] || optional[status], "unexpected status %d (%s)\n", status,   \
73                status < MAX_INTERNET_STATUS && status_string[status] ? \
74                status_string[status] : "unknown");                      \
75             if (expect[status]) expect[status]--; \
76             else optional[status]--; \
77         } \
78         notified[status]++; \
79     }while(0)
80
81 /* CLEAR_NOTIFIED used in cases when notification behavior
82  * differs between Windows versions */
83 #define CLEAR_NOTIFIED(status) \
84     expect[status] = optional[status] = wine_allow[status] = notified[status] = 0;
85
86 #define CHECK_NOTIFIED2(status, num) \
87     do { \
88         ok(notified[status] + optional[status] == (num), \
89            "expected status %d (%s) %d times, received %d times\n", \
90            status, status < MAX_INTERNET_STATUS && status_string[status] ? \
91            status_string[status] : "unknown", (num), notified[status]); \
92         CLEAR_NOTIFIED(status);                                         \
93     }while(0)
94
95 #define CHECK_NOTIFIED(status) \
96     CHECK_NOTIFIED2(status, 1)
97
98 #define CHECK_NOT_NOTIFIED(status) \
99     CHECK_NOTIFIED2(status, 0)
100
101 #define MAX_INTERNET_STATUS (INTERNET_STATUS_COOKIE_HISTORY+1)
102 static int expect[MAX_INTERNET_STATUS], optional[MAX_INTERNET_STATUS],
103     wine_allow[MAX_INTERNET_STATUS], notified[MAX_INTERNET_STATUS];
104 static const char *status_string[MAX_INTERNET_STATUS];
105
106 static HANDLE hCompleteEvent, conn_close_event;
107 static DWORD req_error;
108
109 #define TESTF_REDIRECT      0x01
110 #define TESTF_COMPRESSED    0x02
111 #define TESTF_CHUNKED       0x04
112
113 typedef struct {
114     const char *url;
115     const char *redirected_url;
116     const char *host;
117     const char *path;
118     const char *headers;
119     DWORD flags;
120     const char *post_data;
121     const char *content;
122 } test_data_t;
123
124 static const test_data_t test_data[] = {
125     {
126         "http://test.winehq.org/tests/data.php",
127         "http://test.winehq.org/tests/data.php",
128         "test.winehq.org",
129         "/tests/data.php",
130         "",
131         TESTF_CHUNKED
132     },
133     {
134         "http://test.winehq.org/tests/redirect",
135         "http://test.winehq.org/tests/hello.html",
136         "test.winehq.org",
137         "/tests/redirect",
138         "",
139         TESTF_REDIRECT
140     },
141     {
142         "http://www.codeweavers.com/",
143         "http://www.codeweavers.com/",
144         "www.codeweavers.com",
145         "",
146         "Accept-Encoding: gzip, deflate",
147         TESTF_COMPRESSED
148     },
149     {
150         "http://test.winehq.org/tests/post.php",
151         "http://test.winehq.org/tests/post.php",
152         "test.winehq.org",
153         "/tests/post.php",
154         "Content-Type: application/x-www-form-urlencoded",
155         0,
156         "mode=Test",
157         "mode => Test\n"
158     }
159 };
160
161 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackA)(HINTERNET ,INTERNET_STATUS_CALLBACK);
162 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackW)(HINTERNET ,INTERNET_STATUS_CALLBACK);
163 static BOOL (WINAPI *pInternetGetSecurityInfoByURLA)(LPSTR,PCCERT_CHAIN_CONTEXT*,DWORD*);
164
165 static int strcmp_wa(LPCWSTR strw, const char *stra)
166 {
167     WCHAR buf[512];
168     MultiByteToWideChar(CP_ACP, 0, stra, -1, buf, sizeof(buf)/sizeof(WCHAR));
169     return lstrcmpW(strw, buf);
170 }
171
172 static BOOL proxy_active(void)
173 {
174     HKEY internet_settings;
175     DWORD proxy_enable;
176     DWORD size;
177
178     if (RegOpenKeyExA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
179                       0, KEY_QUERY_VALUE, &internet_settings) != ERROR_SUCCESS)
180         return FALSE;
181
182     size = sizeof(DWORD);
183     if (RegQueryValueExA(internet_settings, "ProxyEnable", NULL, NULL, (LPBYTE) &proxy_enable, &size) != ERROR_SUCCESS)
184         proxy_enable = 0;
185
186     RegCloseKey(internet_settings);
187
188     return proxy_enable != 0;
189 }
190
191 #define test_status_code(a,b) _test_status_code(__LINE__,a,b)
192 static void _test_status_code(unsigned line, HINTERNET req, DWORD excode)
193 {
194     DWORD code, size, index;
195     char exbuf[10], bufa[10];
196     WCHAR bufw[10];
197     BOOL res;
198
199     code = 0xdeadbeef;
200     size = sizeof(code);
201     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, NULL);
202     ok_(__FILE__,line)(res, "[1] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE|number) failed: %u\n", GetLastError());
203     ok_(__FILE__,line)(code == excode, "code = %d, expected %d\n", code, excode);
204     ok_(__FILE__,line)(size == sizeof(code), "size = %u\n", size);
205
206     code = 0xdeadbeef;
207     index = 0;
208     size = sizeof(code);
209     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, &index);
210     ok_(__FILE__,line)(res, "[2] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE|number index) failed: %u\n", GetLastError());
211     ok_(__FILE__,line)(code == excode, "code = %d, expected %d\n", code, excode);
212     ok_(__FILE__,line)(!index, "index = %d, expected 0\n", code);
213     ok_(__FILE__,line)(size == sizeof(code), "size = %u\n", size);
214
215     sprintf(exbuf, "%u", excode);
216
217     size = sizeof(bufa);
218     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE, bufa, &size, NULL);
219     ok_(__FILE__,line)(res, "[3] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
220     ok_(__FILE__,line)(!strcmp(bufa, exbuf), "unexpected status code %s, expected %s\n", bufa, exbuf);
221     ok_(__FILE__,line)(size == strlen(exbuf), "unexpected size %d for \"%s\"\n", size, exbuf);
222
223     size = 0;
224     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE, NULL, &size, NULL);
225     ok_(__FILE__,line)(!res && GetLastError() == ERROR_INSUFFICIENT_BUFFER,
226                        "[4] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
227     ok_(__FILE__,line)(size == strlen(exbuf)+1, "unexpected size %d for \"%s\"\n", size, exbuf);
228
229     size = sizeof(bufw);
230     res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, bufw, &size, NULL);
231     ok_(__FILE__,line)(res, "[5] HttpQueryInfoW(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
232     ok_(__FILE__,line)(!strcmp_wa(bufw, exbuf), "unexpected status code %s, expected %s\n", bufa, exbuf);
233     ok_(__FILE__,line)(size == strlen(exbuf)*sizeof(WCHAR), "unexpected size %d for \"%s\"\n", size, exbuf);
234
235     size = 0;
236     res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, bufw, &size, NULL);
237     ok_(__FILE__,line)(!res && GetLastError() == ERROR_INSUFFICIENT_BUFFER,
238                        "[6] HttpQueryInfoW(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
239     ok_(__FILE__,line)(size == (strlen(exbuf)+1)*sizeof(WCHAR), "unexpected size %d for \"%s\"\n", size, exbuf);
240
241     if(0) {
242     size = sizeof(bufw);
243     res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, NULL, &size, NULL);
244     ok(!res && GetLastError() == ERROR_INVALID_PARAMETER, "HttpQueryInfo(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
245     ok(size == sizeof(bufw), "unexpected size %d\n", size);
246     }
247
248     code = 0xdeadbeef;
249     index = 1;
250     size = sizeof(code);
251     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, &index);
252     ok_(__FILE__,line)(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
253                        "[7] HttpQueryInfoA failed: %x(%d)\n", res, GetLastError());
254
255     code = 0xdeadbeef;
256     size = sizeof(code);
257     res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_REQUEST_HEADERS, &code, &size, NULL);
258     ok_(__FILE__,line)(!res && GetLastError() == ERROR_HTTP_INVALID_QUERY_REQUEST,
259                        "[8] HttpQueryInfoA failed: %x(%d)\n", res, GetLastError());
260 }
261
262 #define test_request_flags(a,b) _test_request_flags(__LINE__,a,b,FALSE)
263 #define test_request_flags_todo(a,b) _test_request_flags(__LINE__,a,b,TRUE)
264 static void _test_request_flags(unsigned line, HINTERNET req, DWORD exflags, BOOL is_todo)
265 {
266     DWORD flags, size;
267     BOOL res;
268
269     flags = 0xdeadbeef;
270     size = sizeof(flags);
271     res = InternetQueryOptionW(req, INTERNET_OPTION_REQUEST_FLAGS, &flags, &size);
272     ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_REQUEST_FLAGS) failed: %u\n", GetLastError());
273
274     /* FIXME: Remove once we have INTERNET_REQFLAG_CACHE_WRITE_DISABLED implementation */
275     flags &= ~INTERNET_REQFLAG_CACHE_WRITE_DISABLED;
276     if(!is_todo)
277         ok_(__FILE__,line)(flags == exflags, "flags = %x, expected %x\n", flags, exflags);
278     else
279         todo_wine ok_(__FILE__,line)(flags == exflags, "flags = %x, expected %x\n", flags, exflags);
280 }
281
282 #define test_http_version(a) _test_http_version(__LINE__,a)
283 static void _test_http_version(unsigned line, HINTERNET req)
284 {
285     HTTP_VERSION_INFO v = {0xdeadbeef, 0xdeadbeef};
286     DWORD size;
287     BOOL res;
288
289     size = sizeof(v);
290     res = InternetQueryOptionW(req, INTERNET_OPTION_HTTP_VERSION, &v, &size);
291     ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_HTTP_VERSION) failed: %u\n", GetLastError());
292     ok_(__FILE__,line)(v.dwMajorVersion == 1, "dwMajorVersion = %d\n", v.dwMajorVersion);
293     ok_(__FILE__,line)(v.dwMinorVersion == 1, "dwMinorVersion = %d\n", v.dwMinorVersion);
294 }
295
296 static int close_handle_cnt;
297
298 static VOID WINAPI callback(
299      HINTERNET hInternet,
300      DWORD_PTR dwContext,
301      DWORD dwInternetStatus,
302      LPVOID lpvStatusInformation,
303      DWORD dwStatusInformationLength
304 )
305 {
306     CHECK_EXPECT(dwInternetStatus);
307     switch (dwInternetStatus)
308     {
309         case INTERNET_STATUS_RESOLVING_NAME:
310             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESOLVING_NAME \"%s\" %d\n",
311                 GetCurrentThreadId(), hInternet, dwContext,
312                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
313             *(LPSTR)lpvStatusInformation = '\0';
314             break;
315         case INTERNET_STATUS_NAME_RESOLVED:
316             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_NAME_RESOLVED \"%s\" %d\n",
317                 GetCurrentThreadId(), hInternet, dwContext,
318                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
319             *(LPSTR)lpvStatusInformation = '\0';
320             break;
321         case INTERNET_STATUS_CONNECTING_TO_SERVER:
322             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTING_TO_SERVER \"%s\" %d\n",
323                 GetCurrentThreadId(), hInternet, dwContext,
324                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
325             ok(dwStatusInformationLength == strlen(lpvStatusInformation)+1, "unexpected size %u\n",
326                dwStatusInformationLength);
327             *(LPSTR)lpvStatusInformation = '\0';
328             break;
329         case INTERNET_STATUS_CONNECTED_TO_SERVER:
330             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTED_TO_SERVER \"%s\" %d\n",
331                 GetCurrentThreadId(), hInternet, dwContext,
332                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
333             ok(dwStatusInformationLength == strlen(lpvStatusInformation)+1, "unexpected size %u\n",
334                dwStatusInformationLength);
335             *(LPSTR)lpvStatusInformation = '\0';
336             break;
337         case INTERNET_STATUS_SENDING_REQUEST:
338             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_SENDING_REQUEST %p %d\n",
339                 GetCurrentThreadId(), hInternet, dwContext,
340                 lpvStatusInformation,dwStatusInformationLength);
341             break;
342         case INTERNET_STATUS_REQUEST_SENT:
343             ok(dwStatusInformationLength == sizeof(DWORD),
344                 "info length should be sizeof(DWORD) instead of %d\n",
345                 dwStatusInformationLength);
346             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_SENT 0x%x %d\n",
347                 GetCurrentThreadId(), hInternet, dwContext,
348                 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
349             break;
350         case INTERNET_STATUS_RECEIVING_RESPONSE:
351             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RECEIVING_RESPONSE %p %d\n",
352                 GetCurrentThreadId(), hInternet, dwContext,
353                 lpvStatusInformation,dwStatusInformationLength);
354             break;
355         case INTERNET_STATUS_RESPONSE_RECEIVED:
356             ok(dwStatusInformationLength == sizeof(DWORD),
357                 "info length should be sizeof(DWORD) instead of %d\n",
358                 dwStatusInformationLength);
359             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESPONSE_RECEIVED 0x%x %d\n",
360                 GetCurrentThreadId(), hInternet, dwContext,
361                 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
362             break;
363         case INTERNET_STATUS_CTL_RESPONSE_RECEIVED:
364             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CTL_RESPONSE_RECEIVED %p %d\n",
365                 GetCurrentThreadId(), hInternet,dwContext,
366                 lpvStatusInformation,dwStatusInformationLength);
367             break;
368         case INTERNET_STATUS_PREFETCH:
369             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_PREFETCH %p %d\n",
370                 GetCurrentThreadId(), hInternet, dwContext,
371                 lpvStatusInformation,dwStatusInformationLength);
372             break;
373         case INTERNET_STATUS_CLOSING_CONNECTION:
374             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CLOSING_CONNECTION %p %d\n",
375                 GetCurrentThreadId(), hInternet, dwContext,
376                 lpvStatusInformation,dwStatusInformationLength);
377             break;
378         case INTERNET_STATUS_CONNECTION_CLOSED:
379             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTION_CLOSED %p %d\n",
380                 GetCurrentThreadId(), hInternet, dwContext,
381                 lpvStatusInformation,dwStatusInformationLength);
382             break;
383         case INTERNET_STATUS_HANDLE_CREATED:
384             ok(dwStatusInformationLength == sizeof(HINTERNET),
385                 "info length should be sizeof(HINTERNET) instead of %d\n",
386                 dwStatusInformationLength);
387             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d\n",
388                 GetCurrentThreadId(), hInternet, dwContext,
389                 *(HINTERNET *)lpvStatusInformation,dwStatusInformationLength);
390             CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
391             SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
392             break;
393         case INTERNET_STATUS_HANDLE_CLOSING:
394             ok(dwStatusInformationLength == sizeof(HINTERNET),
395                 "info length should be sizeof(HINTERNET) instead of %d\n",
396                 dwStatusInformationLength);
397             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CLOSING %p %d\n",
398                 GetCurrentThreadId(), hInternet, dwContext,
399                 *(HINTERNET *)lpvStatusInformation, dwStatusInformationLength);
400             if(!InterlockedDecrement(&close_handle_cnt))
401                 SetEvent(hCompleteEvent);
402             break;
403         case INTERNET_STATUS_REQUEST_COMPLETE:
404         {
405             INTERNET_ASYNC_RESULT *iar = (INTERNET_ASYNC_RESULT *)lpvStatusInformation;
406             ok(dwStatusInformationLength == sizeof(INTERNET_ASYNC_RESULT),
407                 "info length should be sizeof(INTERNET_ASYNC_RESULT) instead of %d\n",
408                 dwStatusInformationLength);
409             ok(iar->dwResult == 1 || iar->dwResult == 0, "iar->dwResult = %ld\n", iar->dwResult);
410             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_COMPLETE {%ld,%d} %d\n",
411                 GetCurrentThreadId(), hInternet, dwContext,
412                 iar->dwResult,iar->dwError,dwStatusInformationLength);
413             req_error = iar->dwError;
414             if(!close_handle_cnt)
415                 SetEvent(hCompleteEvent);
416             break;
417         }
418         case INTERNET_STATUS_REDIRECT:
419             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REDIRECT \"%s\" %d\n",
420                 GetCurrentThreadId(), hInternet, dwContext,
421                 (LPCSTR)lpvStatusInformation, dwStatusInformationLength);
422             *(LPSTR)lpvStatusInformation = '\0';
423             CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
424             SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
425             break;
426         case INTERNET_STATUS_INTERMEDIATE_RESPONSE:
427             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d\n",
428                 GetCurrentThreadId(), hInternet, dwContext,
429                 lpvStatusInformation, dwStatusInformationLength);
430             break;
431         default:
432             trace("%04x:Callback %p 0x%lx %d %p %d\n",
433                 GetCurrentThreadId(), hInternet, dwContext, dwInternetStatus,
434                 lpvStatusInformation, dwStatusInformationLength);
435     }
436 }
437
438 static void close_async_handle(HINTERNET handle, HANDLE complete_event, int handle_cnt)
439 {
440     BOOL res;
441
442     close_handle_cnt = handle_cnt;
443
444     SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, handle_cnt);
445     res = InternetCloseHandle(handle);
446     ok(res, "InternetCloseHandle failed: %u\n", GetLastError());
447     WaitForSingleObject(hCompleteEvent, INFINITE);
448     CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, handle_cnt);
449 }
450
451 static void InternetReadFile_test(int flags, const test_data_t *test)
452 {
453     char *post_data = NULL;
454     BOOL res, on_async = TRUE;
455     CHAR buffer[4000];
456     DWORD length, exlen = 0, post_len = 0;
457     const char *types[2] = { "*", NULL };
458     HINTERNET hi, hic = 0, hor = 0;
459
460     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
461
462     trace("Starting InternetReadFile test with flags 0x%x on url %s\n",flags,test->url);
463
464     trace("InternetOpenA <--\n");
465     hi = InternetOpenA((test->flags & TESTF_COMPRESSED) ? "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" : "",
466             INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
467     ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
468     trace("InternetOpenA -->\n");
469
470     if (hi == 0x0) goto abort;
471
472     pInternetSetStatusCallbackA(hi,&callback);
473
474     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
475
476     trace("InternetConnectA <--\n");
477     hic=InternetConnectA(hi, test->host, INTERNET_INVALID_PORT_NUMBER,
478                          NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
479     ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
480     trace("InternetConnectA -->\n");
481
482     if (hic == 0x0) goto abort;
483
484     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
485     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
486
487     trace("HttpOpenRequestA <--\n");
488     hor = HttpOpenRequestA(hic, test->post_data ? "POST" : "GET", test->path, NULL, NULL, types,
489                            INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
490                            0xdeadbead);
491     if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
492         /*
493          * If the internet name can't be resolved we are probably behind
494          * a firewall or in some other way not directly connected to the
495          * Internet. Not enough reason to fail the test. Just ignore and
496          * abort.
497          */
498     } else  {
499         ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
500     }
501     trace("HttpOpenRequestA -->\n");
502
503     if (hor == 0x0) goto abort;
504
505     test_request_flags(hor, INTERNET_REQFLAG_NO_HEADERS);
506
507     length = sizeof(buffer);
508     res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
509     ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
510     ok(!strcmp(buffer, test->url), "Wrong URL %s, expected %s\n", buffer, test->url);
511
512     length = sizeof(buffer);
513     res = HttpQueryInfoA(hor, HTTP_QUERY_RAW_HEADERS, buffer, &length, 0x0);
514     ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
515     ok(length == 0, "HTTP_QUERY_RAW_HEADERS: expected length 0, but got %d\n", length);
516     ok(!strcmp(buffer, ""), "HTTP_QUERY_RAW_HEADERS: expected string \"\", but got \"%s\"\n", buffer);
517
518     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
519     CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
520     CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
521     SET_OPTIONAL2(INTERNET_STATUS_COOKIE_SENT,2);
522     SET_OPTIONAL2(INTERNET_STATUS_COOKIE_RECEIVED,2);
523     if (first_connection_to_test_url)
524     {
525         SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
526         SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
527     }
528     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
529     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
530     SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, (test->flags & TESTF_REDIRECT) ? 2 : 1);
531     SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, (test->flags & TESTF_REDIRECT) ? 2 : 1);
532     SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, (test->flags & TESTF_REDIRECT) ? 2 : 1);
533     SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, (test->flags & TESTF_REDIRECT) ? 2 : 1);
534     if(test->flags & TESTF_REDIRECT) {
535         SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
536         SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
537     }
538     SET_EXPECT(INTERNET_STATUS_REDIRECT);
539     SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
540     SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
541     if (flags & INTERNET_FLAG_ASYNC)
542         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
543
544     if(test->flags & TESTF_COMPRESSED) {
545         BOOL b = TRUE;
546
547         res = InternetSetOption(hor, INTERNET_OPTION_HTTP_DECODING, &b, sizeof(b));
548         ok(res || broken(!res && GetLastError() == ERROR_INTERNET_INVALID_OPTION),
549            "InternetSetOption failed: %u\n", GetLastError());
550         if(!res)
551             goto abort;
552     }
553
554     test_status_code(hor, 0);
555
556     trace("HttpSendRequestA -->\n");
557     if(test->post_data) {
558         post_len = strlen(test->post_data);
559         post_data = HeapAlloc(GetProcessHeap(), 0, post_len);
560         memcpy(post_data, test->post_data, post_len);
561     }
562     SetLastError(0xdeadbeef);
563     res = HttpSendRequestA(hor, test->headers, -1, post_data, post_len);
564     if (flags & INTERNET_FLAG_ASYNC)
565         ok(!res && (GetLastError() == ERROR_IO_PENDING),
566             "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
567     else
568         ok(res || (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED),
569            "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
570     trace("HttpSendRequestA <--\n");
571
572     if (flags & INTERNET_FLAG_ASYNC) {
573         WaitForSingleObject(hCompleteEvent, INFINITE);
574         ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
575     }
576     HeapFree(GetProcessHeap(), 0, post_data);
577
578     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
579     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_RECEIVED);
580     if (first_connection_to_test_url)
581     {
582         if (! proxy_active())
583         {
584             CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
585             CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
586         }
587         else
588         {
589             CLEAR_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
590             CLEAR_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
591         }
592     }
593     else
594     {
595         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
596         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
597     }
598     CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, (test->flags & TESTF_REDIRECT) ? 2 : 1);
599     CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, (test->flags & TESTF_REDIRECT) ? 2 : 1);
600     CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, (test->flags & TESTF_REDIRECT) ? 2 : 1);
601     CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, (test->flags & TESTF_REDIRECT) ? 2 : 1);
602     if(test->flags & TESTF_REDIRECT)
603         CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
604     if (flags & INTERNET_FLAG_ASYNC)
605         CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
606     /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
607     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
608     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
609
610     test_request_flags(hor, 0);
611
612     length = 100;
613     res = InternetQueryOptionA(hor,INTERNET_OPTION_URL,buffer,&length);
614     ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed with error %d\n", GetLastError());
615
616     length = sizeof(buffer);
617     res = HttpQueryInfoA(hor,HTTP_QUERY_RAW_HEADERS,buffer,&length,0x0);
618     ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
619     buffer[length]=0;
620
621     length = sizeof(buffer);
622     res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
623     ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
624     ok(!strcmp(buffer, test->redirected_url), "Wrong URL %s\n", buffer);
625
626     length = 16;
627     res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
628     trace("Option HTTP_QUERY_CONTENT_LENGTH -> %i  %s  (%u)\n",res,buffer,GetLastError());
629     if(test->flags & TESTF_COMPRESSED)
630         ok(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
631            "expected ERROR_HTTP_HEADER_NOT_FOUND, got %x (%u)\n", res, GetLastError());
632
633     length = 100;
634     res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
635     buffer[length]=0;
636     trace("Option HTTP_QUERY_CONTENT_TYPE -> %i  %s\n",res,buffer);
637
638     length = 100;
639     res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_ENCODING,buffer,&length,0x0);
640     buffer[length]=0;
641     trace("Option HTTP_QUERY_CONTENT_ENCODING -> %i  %s\n",res,buffer);
642
643     SetLastError(0xdeadbeef);
644     res = InternetReadFile(NULL, buffer, 100, &length);
645     ok(!res, "InternetReadFile should have failed\n");
646     ok(GetLastError() == ERROR_INVALID_HANDLE,
647         "InternetReadFile should have set last error to ERROR_INVALID_HANDLE instead of %u\n",
648         GetLastError());
649
650     length = 100;
651     trace("Entering Query loop\n");
652
653     while (TRUE)
654     {
655         if (flags & INTERNET_FLAG_ASYNC)
656             SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
657         length = 0;
658         res = InternetQueryDataAvailable(hor,&length,0x0,0x0);
659         if (flags & INTERNET_FLAG_ASYNC)
660         {
661             if (res)
662             {
663                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
664                 if(exlen) {
665                     ok(length >= exlen, "length %u < exlen %u\n", length, exlen);
666                     exlen = 0;
667                 }
668             }
669             else if (GetLastError() == ERROR_IO_PENDING)
670             {
671                 trace("PENDING\n");
672                 /* on some tests, InternetQueryDataAvailable returns non-zero length and ERROR_IO_PENDING */
673                 if(!(test->flags & TESTF_CHUNKED))
674                     ok(!length, "InternetQueryDataAvailable returned ERROR_IO_PENDING and %u length\n", length);
675                 WaitForSingleObject(hCompleteEvent, INFINITE);
676                 exlen = length;
677                 ok(exlen, "length = 0\n");
678                 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
679                 ok(req_error, "req_error = 0\n");
680                 continue;
681             }else {
682                 ok(0, "InternetQueryDataAvailable failed: %u\n", GetLastError());
683             }
684         }else {
685             ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
686         }
687         trace("LENGTH %d\n", length);
688         if(test->flags & TESTF_CHUNKED)
689             ok(length <= 8192, "length = %d, expected <= 8192\n", length);
690         if (length)
691         {
692             char *buffer;
693             buffer = HeapAlloc(GetProcessHeap(),0,length+1);
694
695             res = InternetReadFile(hor,buffer,length,&length);
696
697             buffer[length]=0;
698
699             trace("ReadFile -> %s %i\n",res?"TRUE":"FALSE",length);
700
701             if(test->content)
702                 ok(!strcmp(buffer, test->content), "buffer = '%s', expected '%s'\n", buffer, test->content);
703             HeapFree(GetProcessHeap(),0,buffer);
704         }else {
705             ok(!on_async, "Returned zero size in response to request complete\n");
706             break;
707         }
708         on_async = FALSE;
709     }
710     if(test->flags & TESTF_REDIRECT) {
711         CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
712         CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
713     }
714 abort:
715     trace("aborting\n");
716     close_async_handle(hi, hCompleteEvent, 2);
717     CloseHandle(hCompleteEvent);
718     first_connection_to_test_url = FALSE;
719 }
720
721 static void InternetReadFile_chunked_test(void)
722 {
723     BOOL res;
724     CHAR buffer[4000];
725     DWORD length;
726     const char *types[2] = { "*", NULL };
727     HINTERNET hi, hic = 0, hor = 0;
728
729     trace("Starting InternetReadFile chunked test\n");
730
731     trace("InternetOpenA <--\n");
732     hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
733     ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
734     trace("InternetOpenA -->\n");
735
736     if (hi == 0x0) goto abort;
737
738     trace("InternetConnectA <--\n");
739     hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
740                          NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
741     ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
742     trace("InternetConnectA -->\n");
743
744     if (hic == 0x0) goto abort;
745
746     trace("HttpOpenRequestA <--\n");
747     hor = HttpOpenRequestA(hic, "GET", "/tests/chunked", NULL, NULL, types,
748                            INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
749                            0xdeadbead);
750     if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
751         /*
752          * If the internet name can't be resolved we are probably behind
753          * a firewall or in some other way not directly connected to the
754          * Internet. Not enough reason to fail the test. Just ignore and
755          * abort.
756          */
757     } else  {
758         ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
759     }
760     trace("HttpOpenRequestA -->\n");
761
762     if (hor == 0x0) goto abort;
763
764     trace("HttpSendRequestA -->\n");
765     SetLastError(0xdeadbeef);
766     res = HttpSendRequestA(hor, "", -1, NULL, 0);
767     ok(res || (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED),
768        "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
769     trace("HttpSendRequestA <--\n");
770
771     test_request_flags(hor, 0);
772
773     length = 100;
774     res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
775     buffer[length]=0;
776     trace("Option CONTENT_TYPE -> %i  %s\n",res,buffer);
777
778     SetLastError( 0xdeadbeef );
779     length = 100;
780     res = HttpQueryInfoA(hor,HTTP_QUERY_TRANSFER_ENCODING,buffer,&length,0x0);
781     buffer[length]=0;
782     trace("Option TRANSFER_ENCODING -> %i  %s\n",res,buffer);
783     ok( res || ( proxy_active() && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND ),
784         "Failed to get TRANSFER_ENCODING option, error %u\n", GetLastError() );
785     ok( !strcmp( buffer, "chunked" ) || ( ! res && proxy_active() && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND ),
786         "Wrong transfer encoding '%s'\n", buffer );
787
788     SetLastError( 0xdeadbeef );
789     length = 16;
790     res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
791     ok( !res, "Found CONTENT_LENGTH option '%s'\n", buffer );
792     ok( GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "Wrong error %u\n", GetLastError() );
793
794     length = 100;
795     trace("Entering Query loop\n");
796
797     while (TRUE)
798     {
799         res = InternetQueryDataAvailable(hor,&length,0x0,0x0);
800         ok(!(!res && length != 0),"InternetQueryDataAvailable failed with non-zero length\n");
801         ok(res, "InternetQueryDataAvailable failed, error %d\n", GetLastError());
802         trace("got %u available\n",length);
803         if (length)
804         {
805             DWORD got;
806             char *buffer = HeapAlloc(GetProcessHeap(),0,length+1);
807
808             res = InternetReadFile(hor,buffer,length,&got);
809
810             buffer[got]=0;
811             trace("ReadFile -> %i %i\n",res,got);
812             ok( length == got, "only got %u of %u available\n", got, length );
813             ok( buffer[got-1] == '\n', "received partial line '%s'\n", buffer );
814
815             HeapFree(GetProcessHeap(),0,buffer);
816             if (!got) break;
817         }
818         if (length == 0)
819             break;
820     }
821 abort:
822     trace("aborting\n");
823     if (hor != 0x0) {
824         res = InternetCloseHandle(hor);
825         ok (res, "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
826     }
827     if (hi != 0x0) {
828         res = InternetCloseHandle(hi);
829         ok (res, "InternetCloseHandle of handle opened by InternetOpenA failed\n");
830     }
831 }
832
833 static void InternetReadFileExA_test(int flags)
834 {
835     DWORD rc;
836     DWORD length;
837     const char *types[2] = { "*", NULL };
838     HINTERNET hi, hic = 0, hor = 0;
839     INTERNET_BUFFERS inetbuffers;
840
841     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
842
843     trace("Starting InternetReadFileExA test with flags 0x%x\n",flags);
844
845     trace("InternetOpenA <--\n");
846     hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
847     ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
848     trace("InternetOpenA -->\n");
849
850     if (hi == 0x0) goto abort;
851
852     pInternetSetStatusCallbackA(hi,&callback);
853
854     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
855
856     trace("InternetConnectA <--\n");
857     hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
858                          NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
859     ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
860     trace("InternetConnectA -->\n");
861
862     if (hic == 0x0) goto abort;
863
864     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
865     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
866
867     trace("HttpOpenRequestA <--\n");
868     hor = HttpOpenRequestA(hic, "GET", "/tests/redirect", NULL, NULL, types,
869                            INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
870                            0xdeadbead);
871     if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
872         /*
873          * If the internet name can't be resolved we are probably behind
874          * a firewall or in some other way not directly connected to the
875          * Internet. Not enough reason to fail the test. Just ignore and
876          * abort.
877          */
878     } else  {
879         ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
880     }
881     trace("HttpOpenRequestA -->\n");
882
883     if (hor == 0x0) goto abort;
884
885     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
886     CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
887     CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
888     if (first_connection_to_test_url)
889     {
890         SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
891         SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
892     }
893     SET_OPTIONAL2(INTERNET_STATUS_COOKIE_SENT, 2);
894     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
895     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
896     SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
897     SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
898     SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
899     SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
900     SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
901     SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
902     SET_EXPECT(INTERNET_STATUS_REDIRECT);
903     SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
904     SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
905     if (flags & INTERNET_FLAG_ASYNC)
906         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
907     else
908         SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
909
910     trace("HttpSendRequestA -->\n");
911     SetLastError(0xdeadbeef);
912     rc = HttpSendRequestA(hor, "", -1, NULL, 0);
913     if (flags & INTERNET_FLAG_ASYNC)
914         ok(((rc == 0)&&(GetLastError() == ERROR_IO_PENDING)),
915             "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
916     else
917         ok((rc != 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED,
918            "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
919     trace("HttpSendRequestA <--\n");
920
921     if (!rc && (GetLastError() == ERROR_IO_PENDING)) {
922         WaitForSingleObject(hCompleteEvent, INFINITE);
923         ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
924     }
925
926     if (first_connection_to_test_url)
927     {
928         CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
929         CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
930     }
931     else
932     {
933         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
934         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
935     }
936     CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
937     CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
938     CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
939     CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
940     CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
941     CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
942     CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
943     if (flags & INTERNET_FLAG_ASYNC)
944         CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
945     else
946         todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
947     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
948     /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
949     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
950     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
951
952     /* tests invalid dwStructSize */
953     inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS)+1;
954     inetbuffers.lpcszHeader = NULL;
955     inetbuffers.dwHeadersLength = 0;
956     inetbuffers.dwBufferLength = 10;
957     inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, 10);
958     inetbuffers.dwOffsetHigh = 1234;
959     inetbuffers.dwOffsetLow = 5678;
960     rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
961     ok(!rc && (GetLastError() == ERROR_INVALID_PARAMETER),
962         "InternetReadFileEx should have failed with ERROR_INVALID_PARAMETER instead of %s, %u\n",
963         rc ? "TRUE" : "FALSE", GetLastError());
964     HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
965
966     test_request_flags(hor, 0);
967
968     /* tests to see whether lpcszHeader is used - it isn't */
969     inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
970     inetbuffers.lpcszHeader = (LPCTSTR)0xdeadbeef;
971     inetbuffers.dwHeadersLength = 255;
972     inetbuffers.dwBufferLength = 0;
973     inetbuffers.lpvBuffer = NULL;
974     inetbuffers.dwOffsetHigh = 1234;
975     inetbuffers.dwOffsetLow = 5678;
976     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
977     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
978     rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
979     ok(rc, "InternetReadFileEx failed with error %u\n", GetLastError());
980     trace("read %i bytes\n", inetbuffers.dwBufferLength);
981     todo_wine
982     {
983         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
984         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
985     }
986
987     rc = InternetReadFileEx(NULL, &inetbuffers, 0, 0xdeadcafe);
988     ok(!rc && (GetLastError() == ERROR_INVALID_HANDLE),
989         "InternetReadFileEx should have failed with ERROR_INVALID_HANDLE instead of %s, %u\n",
990         rc ? "TRUE" : "FALSE", GetLastError());
991
992     length = 0;
993     trace("Entering Query loop\n");
994
995     while (TRUE)
996     {
997         inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
998         inetbuffers.dwBufferLength = 1024;
999         inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, inetbuffers.dwBufferLength+1);
1000         inetbuffers.dwOffsetHigh = 1234;
1001         inetbuffers.dwOffsetLow = 5678;
1002
1003         SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
1004         SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
1005         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
1006         rc = InternetReadFileExA(hor, &inetbuffers, IRF_ASYNC | IRF_USE_CONTEXT, 0xcafebabe);
1007         if (!rc)
1008         {
1009             if (GetLastError() == ERROR_IO_PENDING)
1010             {
1011                 trace("InternetReadFileEx -> PENDING\n");
1012                 ok(flags & INTERNET_FLAG_ASYNC,
1013                    "Should not get ERROR_IO_PENDING without INTERNET_FLAG_ASYNC\n");
1014                 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1015                 WaitForSingleObject(hCompleteEvent, INFINITE);
1016                 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1017                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1018                 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
1019             }
1020             else
1021             {
1022                 trace("InternetReadFileEx -> FAILED %u\n", GetLastError());
1023                 break;
1024             }
1025         }
1026         else
1027         {
1028             trace("InternetReadFileEx -> SUCCEEDED\n");
1029             CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1030             if (inetbuffers.dwBufferLength)
1031             {
1032                 todo_wine {
1033                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1034                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1035                 }
1036             }
1037             else
1038             {
1039                 /* Win98 still sends these when 0 bytes are read, WinXP does not */
1040                 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1041                 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1042             }
1043         }
1044
1045         trace("read %i bytes\n", inetbuffers.dwBufferLength);
1046         ((char *)inetbuffers.lpvBuffer)[inetbuffers.dwBufferLength] = '\0';
1047
1048         ok(inetbuffers.dwOffsetHigh == 1234 && inetbuffers.dwOffsetLow == 5678,
1049             "InternetReadFileEx sets offsets to 0x%x%08x\n",
1050             inetbuffers.dwOffsetHigh, inetbuffers.dwOffsetLow);
1051
1052         HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
1053
1054         if (!inetbuffers.dwBufferLength)
1055             break;
1056
1057         length += inetbuffers.dwBufferLength;
1058     }
1059     ok(length > 0, "failed to read any of the document\n");
1060     trace("Finished. Read %d bytes\n", length);
1061
1062 abort:
1063     close_async_handle(hi, hCompleteEvent, 2);
1064     CloseHandle(hCompleteEvent);
1065     first_connection_to_test_url = FALSE;
1066 }
1067
1068 static void InternetOpenUrlA_test(void)
1069 {
1070   HINTERNET myhinternet, myhttp;
1071   char buffer[0x400];
1072   DWORD size, readbytes, totalbytes=0;
1073   BOOL ret;
1074
1075   ret = DeleteUrlCacheEntry(TEST_URL);
1076   ok(ret || GetLastError() == ERROR_FILE_NOT_FOUND,
1077           "DeleteUrlCacheEntry returned %x, GetLastError() = %d\n", ret, GetLastError());
1078
1079   myhinternet = InternetOpen("Winetest",0,NULL,NULL,INTERNET_FLAG_NO_CACHE_WRITE);
1080   ok((myhinternet != 0), "InternetOpen failed, error %u\n",GetLastError());
1081   size = 0x400;
1082   ret = InternetCanonicalizeUrl(TEST_URL, buffer, &size,ICU_BROWSER_MODE);
1083   ok( ret, "InternetCanonicalizeUrl failed, error %u\n",GetLastError());
1084
1085   SetLastError(0);
1086   myhttp = InternetOpenUrl(myhinternet, TEST_URL, 0, 0,
1087                            INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_TRANSFER_BINARY,0);
1088   if (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1089     return; /* WinXP returns this when not connected to the net */
1090   ok((myhttp != 0),"InternetOpenUrl failed, error %u\n",GetLastError());
1091   ret = InternetReadFile(myhttp, buffer,0x400,&readbytes);
1092   ok( ret, "InternetReadFile failed, error %u\n",GetLastError());
1093   totalbytes += readbytes;
1094   while (readbytes && InternetReadFile(myhttp, buffer,0x400,&readbytes))
1095     totalbytes += readbytes;
1096   trace("read 0x%08x bytes\n",totalbytes);
1097
1098   InternetCloseHandle(myhttp);
1099   InternetCloseHandle(myhinternet);
1100
1101   ret = DeleteUrlCacheEntry(TEST_URL);
1102   ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND, "INTERNET_FLAG_NO_CACHE_WRITE flag doesn't work\n");
1103 }
1104
1105 static void HttpSendRequestEx_test(void)
1106 {
1107     HINTERNET hSession;
1108     HINTERNET hConnect;
1109     HINTERNET hRequest;
1110
1111     INTERNET_BUFFERS BufferIn;
1112     DWORD dwBytesWritten, dwBytesRead, error;
1113     CHAR szBuffer[256];
1114     int i;
1115     BOOL ret;
1116
1117     static char szPostData[] = "mode=Test";
1118     static const char szContentType[] = "Content-Type: application/x-www-form-urlencoded";
1119
1120     hSession = InternetOpen("Wine Regression Test",
1121             INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
1122     ok( hSession != NULL ,"Unable to open Internet session\n");
1123     hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
1124             INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
1125             0);
1126     ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
1127     hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
1128             NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1129     if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1130     {
1131         skip( "Network unreachable, skipping test\n" );
1132         goto done;
1133     }
1134     ok( hRequest != NULL, "Failed to open request handle err %u\n", GetLastError());
1135
1136     test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1137
1138     BufferIn.dwStructSize = sizeof( INTERNET_BUFFERS);
1139     BufferIn.Next = (LPINTERNET_BUFFERS)0xdeadcab;
1140     BufferIn.lpcszHeader = szContentType;
1141     BufferIn.dwHeadersLength = sizeof(szContentType)-1;
1142     BufferIn.dwHeadersTotal = sizeof(szContentType)-1;
1143     BufferIn.lpvBuffer = szPostData;
1144     BufferIn.dwBufferLength = 3;
1145     BufferIn.dwBufferTotal = sizeof(szPostData)-1;
1146     BufferIn.dwOffsetLow = 0;
1147     BufferIn.dwOffsetHigh = 0;
1148
1149     SetLastError(0xdeadbeef);
1150     ret = HttpSendRequestEx(hRequest, &BufferIn, NULL, 0 ,0);
1151     error = GetLastError();
1152     ok(ret, "HttpSendRequestEx Failed with error %u\n", error);
1153     ok(error == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %u\n", error);
1154
1155     test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1156
1157     for (i = 3; szPostData[i]; i++)
1158         ok(InternetWriteFile(hRequest, &szPostData[i], 1, &dwBytesWritten),
1159                 "InternetWriteFile failed\n");
1160
1161     test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1162
1163     ok(HttpEndRequest(hRequest, NULL, 0, 0), "HttpEndRequest Failed\n");
1164
1165     test_request_flags(hRequest, 0);
1166
1167     ok(InternetReadFile(hRequest, szBuffer, 255, &dwBytesRead),
1168             "Unable to read response\n");
1169     szBuffer[dwBytesRead] = 0;
1170
1171     ok(dwBytesRead == 13,"Read %u bytes instead of 13\n",dwBytesRead);
1172     ok(strncmp(szBuffer,"mode => Test\n",dwBytesRead)==0 || broken(proxy_active()),"Got string %s\n",szBuffer);
1173
1174     ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
1175 done:
1176     ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
1177     ok(InternetCloseHandle(hSession), "Close session handle failed\n");
1178 }
1179
1180 static void InternetOpenRequest_test(void)
1181 {
1182     HINTERNET session, connect, request;
1183     static const char *types[] = { "*", "", NULL };
1184     static const WCHAR slash[] = {'/', 0}, any[] = {'*', 0}, empty[] = {0};
1185     static const WCHAR *typesW[] = { any, empty, NULL };
1186     BOOL ret;
1187
1188     session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
1189     ok(session != NULL ,"Unable to open Internet session\n");
1190
1191     connect = InternetConnectA(session, NULL, INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1192                               INTERNET_SERVICE_HTTP, 0, 0);
1193     ok(connect == NULL, "InternetConnectA should have failed\n");
1194     ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with NULL server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1195
1196     connect = InternetConnectA(session, "", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1197                               INTERNET_SERVICE_HTTP, 0, 0);
1198     ok(connect == NULL, "InternetConnectA should have failed\n");
1199     ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with blank server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1200
1201     connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1202                               INTERNET_SERVICE_HTTP, 0, 0);
1203     ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1204
1205     request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1206     if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1207     {
1208         skip( "Network unreachable, skipping test\n" );
1209         goto done;
1210     }
1211     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1212
1213     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1214     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1215     ok(InternetCloseHandle(request), "Close request handle failed\n");
1216
1217     request = HttpOpenRequestW(connect, NULL, slash, NULL, NULL, typesW, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1218     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1219
1220     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1221     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1222     ok(InternetCloseHandle(request), "Close request handle failed\n");
1223
1224 done:
1225     ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1226     ok(InternetCloseHandle(session), "Close session handle failed\n");
1227 }
1228
1229 static void test_cache_read(void)
1230 {
1231     HINTERNET session, connection, req;
1232     FILETIME now, tomorrow, yesterday;
1233     BYTE content[1000], buf[2000];
1234     char file_path[MAX_PATH];
1235     ULARGE_INTEGER li;
1236     HANDLE file;
1237     DWORD size;
1238     unsigned i;
1239     BOOL res;
1240
1241     static const char cache_only_url[] = "http://test.winehq.org/tests/cache-only";
1242     BYTE cache_headers[] = "HTTP/1.1 200 OK\r\n\r\n";
1243
1244     trace("Testing cache read...\n");
1245
1246     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
1247
1248     for(i = 0; i < sizeof(content); i++)
1249         content[i] = '0' + (i%10);
1250
1251     GetSystemTimeAsFileTime(&now);
1252     li.u.HighPart = now.dwHighDateTime;
1253     li.u.LowPart = now.dwLowDateTime;
1254     li.QuadPart += (LONGLONG)10000000 * 3600 * 24;
1255     tomorrow.dwHighDateTime = li.u.HighPart;
1256     tomorrow.dwLowDateTime = li.u.LowPart;
1257     li.QuadPart -= (LONGLONG)10000000 * 3600 * 24 * 2;
1258     yesterday.dwHighDateTime = li.u.HighPart;
1259     yesterday.dwLowDateTime = li.u.LowPart;
1260
1261     res = CreateUrlCacheEntryA(cache_only_url, sizeof(content), "", file_path, 0);
1262     ok(res, "CreateUrlCacheEntryA failed: %u\n", GetLastError());
1263
1264     file = CreateFileA(file_path, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1265     ok(file != INVALID_HANDLE_VALUE, "CreateFile failed\n");
1266
1267     WriteFile(file, content, sizeof(content), &size, NULL);
1268     CloseHandle(file);
1269
1270     res = CommitUrlCacheEntryA(cache_only_url, file_path, tomorrow, yesterday, NORMAL_CACHE_ENTRY,
1271                                cache_headers, sizeof(cache_headers)-1, "", 0);
1272     ok(res, "CommitUrlCacheEntryA failed: %u\n", GetLastError());
1273
1274     session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
1275     ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
1276
1277     pInternetSetStatusCallbackA(session, callback);
1278
1279     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
1280     connection = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT,
1281             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
1282     ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
1283     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
1284
1285     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
1286     req = HttpOpenRequestA(connection, "GET", "/tests/cache-only", NULL, NULL, NULL, 0, 0xdeadbead);
1287     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
1288     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
1289
1290     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
1291     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
1292     SET_WINE_ALLOW(INTERNET_STATUS_SENDING_REQUEST);
1293     SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_SENT);
1294     SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
1295     SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
1296     SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
1297
1298     res = HttpSendRequestA(req, NULL, -1, NULL, 0);
1299     todo_wine
1300     ok(res, "HttpSendRequest failed: %u\n", GetLastError());
1301
1302     if(res) {
1303         size = 0;
1304         res = InternetQueryDataAvailable(req, &size, 0, 0);
1305         ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
1306         ok(size  == sizeof(content), "size = %u\n", size);
1307
1308         size = sizeof(buf);
1309         res = InternetReadFile(req, buf, sizeof(buf), &size);
1310         ok(res, "InternetReadFile failed: %u\n", GetLastError());
1311         ok(size == sizeof(content), "size = %u\n", size);
1312         ok(!memcmp(content, buf, sizeof(content)), "unexpected content\n");
1313     }
1314
1315     close_async_handle(session, hCompleteEvent, 2);
1316
1317     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
1318     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
1319     CLEAR_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
1320     CLEAR_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
1321     CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1322     CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1323     CLEAR_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1324
1325     res = DeleteUrlCacheEntryA(cache_only_url);
1326     ok(res, "DeleteUrlCacheEntryA failed: %u\n", GetLastError());
1327
1328     CloseHandle(hCompleteEvent);
1329 }
1330
1331 static void test_http_cache(void)
1332 {
1333     HINTERNET session, connect, request;
1334     char file_name[MAX_PATH], url[INTERNET_MAX_URL_LENGTH];
1335     DWORD size, file_size;
1336     BYTE buf[100];
1337     HANDLE file;
1338     BOOL ret;
1339
1340     static const char *types[] = { "*", "", NULL };
1341
1342     session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
1343     ok(session != NULL ,"Unable to open Internet session\n");
1344
1345     connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1346                               INTERNET_SERVICE_HTTP, 0, 0);
1347     ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1348
1349     request = HttpOpenRequestA(connect, NULL, "/tests/hello.html", NULL, NULL, types, INTERNET_FLAG_NEED_FILE, 0);
1350     if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1351     {
1352         skip( "Network unreachable, skipping test\n" );
1353
1354         ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1355         ok(InternetCloseHandle(session), "Close session handle failed\n");
1356
1357         return;
1358     }
1359     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1360
1361     size = sizeof(url);
1362     ret = InternetQueryOptionA(request, INTERNET_OPTION_URL, url, &size);
1363     ok(ret, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
1364     ok(!strcmp(url, "http://test.winehq.org/tests/hello.html"), "Wrong URL %s\n", url);
1365
1366     size = sizeof(file_name);
1367     ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1368     ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1369     ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
1370     ok(!size, "size = %d\n", size);
1371
1372     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1373     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1374
1375     size = sizeof(file_name);
1376     ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1377     ok(ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) failed: %u\n", GetLastError());
1378
1379     file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
1380                       FILE_ATTRIBUTE_NORMAL, NULL);
1381     ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1382     file_size = GetFileSize(file, NULL);
1383     ok(file_size == 106, "file size = %u\n", file_size);
1384
1385     size = sizeof(buf);
1386     ret = InternetReadFile(request, buf, sizeof(buf), &size);
1387     ok(ret, "InternetReadFile failed: %u\n", GetLastError());
1388     ok(size == 100, "size = %u\n", size);
1389
1390     file_size = GetFileSize(file, NULL);
1391     ok(file_size == 106, "file size = %u\n", file_size);
1392     CloseHandle(file);
1393
1394     ok(InternetCloseHandle(request), "Close request handle failed\n");
1395
1396     file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1397                       FILE_ATTRIBUTE_NORMAL, NULL);
1398     ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1399     CloseHandle(file);
1400
1401     /* Send the same request, requiring it to be retrieved from the cache */
1402     request = HttpOpenRequest(connect, "GET", "/tests/hello.html", NULL, NULL, NULL, INTERNET_FLAG_FROM_CACHE, 0);
1403
1404     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1405     ok(ret, "HttpSendRequest failed\n");
1406
1407     size = sizeof(buf);
1408     ret = InternetReadFile(request, buf, sizeof(buf), &size);
1409     ok(ret, "InternetReadFile failed: %u\n", GetLastError());
1410     ok(size == 100, "size = %u\n", size);
1411
1412     ok(InternetCloseHandle(request), "Close request handle failed\n");
1413
1414     request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1415     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1416
1417     size = sizeof(file_name);
1418     ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1419     ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1420     ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
1421     ok(!size, "size = %d\n", size);
1422
1423     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1424     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1425
1426     size = sizeof(file_name);
1427     file_name[0] = 0;
1428     ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1429     if (ret)
1430     {
1431         file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1432                       FILE_ATTRIBUTE_NORMAL, NULL);
1433         ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1434         CloseHandle(file);
1435     }
1436     else
1437     {
1438         /* < IE8 */
1439         ok(file_name[0] == 0, "Didn't expect a file name\n");
1440     }
1441
1442     ok(InternetCloseHandle(request), "Close request handle failed\n");
1443     ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1444     ok(InternetCloseHandle(session), "Close session handle failed\n");
1445
1446     test_cache_read();
1447 }
1448
1449 static void HttpHeaders_test(void)
1450 {
1451     HINTERNET hSession;
1452     HINTERNET hConnect;
1453     HINTERNET hRequest;
1454     CHAR      buffer[256];
1455     WCHAR     wbuffer[256];
1456     DWORD     len = 256;
1457     DWORD     oldlen;
1458     DWORD     index = 0;
1459
1460     hSession = InternetOpen("Wine Regression Test",
1461             INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
1462     ok( hSession != NULL ,"Unable to open Internet session\n");
1463     hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
1464             INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
1465             0);
1466     ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
1467     hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
1468             NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1469     if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1470     {
1471         skip( "Network unreachable, skipping test\n" );
1472         goto done;
1473     }
1474     ok( hRequest != NULL, "Failed to open request handle\n");
1475
1476     index = 0;
1477     len = sizeof(buffer);
1478     strcpy(buffer,"Warning");
1479     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1480                buffer,&len,&index)==0,"Warning hearder reported as Existing\n");
1481
1482     ok(HttpAddRequestHeaders(hRequest,"Warning:test1",-1,HTTP_ADDREQ_FLAG_ADD),
1483             "Failed to add new header\n");
1484
1485     index = 0;
1486     len = sizeof(buffer);
1487     strcpy(buffer,"Warning");
1488     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1489                 buffer,&len,&index),"Unable to query header\n");
1490     ok(index == 1, "Index was not incremented\n");
1491     ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1492     ok(len == 5, "Invalid length (exp. 5, got %d)\n", len);
1493     ok((len < sizeof(buffer)) && (buffer[len] == 0), "Buffer not NULL-terminated\n"); /* len show only 5 characters but the buffer is NULL-terminated*/
1494     len = sizeof(buffer);
1495     strcpy(buffer,"Warning");
1496     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1497                 buffer,&len,&index)==0,"Second Index Should Not Exist\n");
1498
1499     index = 0;
1500     len = 5; /* could store the string but not the NULL terminator */
1501     strcpy(buffer,"Warning");
1502     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1503                 buffer,&len,&index) == FALSE,"Query succeeded on a too small buffer\n");
1504     ok(strcmp(buffer,"Warning")==0, "incorrect string was returned(%s)\n",buffer); /* string not touched */
1505     ok(len == 6, "Invalid length (exp. 6, got %d)\n", len); /* unlike success, the length includes the NULL-terminator */
1506
1507     /* a call with NULL will fail but will return the length */
1508     index = 0;
1509     len = sizeof(buffer);
1510     SetLastError(0xdeadbeef);
1511     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1512                 NULL,&len,&index) == FALSE,"Query worked\n");
1513     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1514     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1515     ok(index == 0, "Index was incremented\n");
1516
1517     /* even for a len that is too small */
1518     index = 0;
1519     len = 15;
1520     SetLastError(0xdeadbeef);
1521     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1522                 NULL,&len,&index) == FALSE,"Query worked\n");
1523     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1524     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1525     ok(index == 0, "Index was incremented\n");
1526
1527     index = 0;
1528     len = 0;
1529     SetLastError(0xdeadbeef);
1530     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1531                 NULL,&len,&index) == FALSE,"Query worked\n");
1532     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1533     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1534     ok(index == 0, "Index was incremented\n");
1535     oldlen = len;   /* bytes; at least long enough to hold buffer & nul */
1536
1537
1538     /* a working query */
1539     index = 0;
1540     len = sizeof(buffer);
1541     memset(buffer, 'x', sizeof(buffer));
1542     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1543                 buffer,&len,&index),"Unable to query header\n");
1544     ok(len + sizeof(CHAR) <= oldlen, "Result longer than advertised\n");
1545     ok((len < sizeof(buffer)-sizeof(CHAR)) && (buffer[len/sizeof(CHAR)] == 0),"No NUL at end\n");
1546     ok(len == strlen(buffer) * sizeof(CHAR), "Length wrong\n");
1547     /* what's in the middle differs between Wine and Windows so currently we check only the beginning and the end */
1548     ok(strncmp(buffer, "POST /posttest.php HTTP/1", 25)==0, "Invalid beginning of headers string\n");
1549     ok(strcmp(buffer + strlen(buffer) - 4, "\r\n\r\n")==0, "Invalid end of headers string\n");
1550     ok(index == 0, "Index was incremented\n");
1551
1552     /* Like above two tests, but for W version */
1553
1554     index = 0;
1555     len = 0;
1556     SetLastError(0xdeadbeef);
1557     ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1558                 NULL,&len,&index) == FALSE,"Query worked\n");
1559     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1560     ok(len > 80, "Invalid length (exp. more than 80, got %d)\n", len);
1561     ok(index == 0, "Index was incremented\n");
1562     oldlen = len;   /* bytes; at least long enough to hold buffer & nul */
1563
1564     /* a working query */
1565     index = 0;
1566     len = sizeof(wbuffer);
1567     memset(wbuffer, 'x', sizeof(wbuffer));
1568     ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1569                 wbuffer,&len,&index),"Unable to query header\n");
1570     ok(len + sizeof(WCHAR) <= oldlen, "Result longer than advertised\n");
1571     ok(len == lstrlenW(wbuffer) * sizeof(WCHAR), "Length wrong\n");
1572     ok((len < sizeof(wbuffer)-sizeof(WCHAR)) && (wbuffer[len/sizeof(WCHAR)] == 0),"No NUL at end\n");
1573     ok(index == 0, "Index was incremented\n");
1574
1575     /* end of W version tests */
1576
1577     /* Without HTTP_QUERY_FLAG_REQUEST_HEADERS */
1578     index = 0;
1579     len = sizeof(buffer);
1580     memset(buffer, 'x', sizeof(buffer));
1581     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF,
1582                 buffer,&len,&index) == TRUE,"Query failed\n");
1583     ok(len == 2, "Expected 2, got %d\n", len);
1584     ok(strcmp(buffer, "\r\n") == 0, "Expected CRLF, got '%s'\n", buffer);
1585     ok(index == 0, "Index was incremented\n");
1586
1587     ok(HttpAddRequestHeaders(hRequest,"Warning:test2",-1,HTTP_ADDREQ_FLAG_ADD),
1588             "Failed to add duplicate header using HTTP_ADDREQ_FLAG_ADD\n");
1589
1590     index = 0;
1591     len = sizeof(buffer);
1592     strcpy(buffer,"Warning");
1593     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1594                 buffer,&len,&index),"Unable to query header\n");
1595     ok(index == 1, "Index was not incremented\n");
1596     ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1597     len = sizeof(buffer);
1598     strcpy(buffer,"Warning");
1599     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1600                 buffer,&len,&index),"Failed to get second header\n");
1601     ok(index == 2, "Index was not incremented\n");
1602     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1603     len = sizeof(buffer);
1604     strcpy(buffer,"Warning");
1605     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1606                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1607
1608     ok(HttpAddRequestHeaders(hRequest,"Warning:test3",-1,HTTP_ADDREQ_FLAG_REPLACE), "Failed to replace header using HTTP_ADDREQ_FLAG_REPLACE\n");
1609
1610     index = 0;
1611     len = sizeof(buffer);
1612     strcpy(buffer,"Warning");
1613     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1614                 buffer,&len,&index),"Unable to query header\n");
1615     ok(index == 1, "Index was not incremented\n");
1616     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1617     len = sizeof(buffer);
1618     strcpy(buffer,"Warning");
1619     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1620                 buffer,&len,&index),"Failed to get second header\n");
1621     ok(index == 2, "Index was not incremented\n");
1622     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1623     len = sizeof(buffer);
1624     strcpy(buffer,"Warning");
1625     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1626                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1627
1628     ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1,HTTP_ADDREQ_FLAG_ADD_IF_NEW)==0, "HTTP_ADDREQ_FLAG_ADD_IF_NEW replaced existing header\n");
1629
1630     index = 0;
1631     len = sizeof(buffer);
1632     strcpy(buffer,"Warning");
1633     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1634                 buffer,&len,&index),"Unable to query header\n");
1635     ok(index == 1, "Index was not incremented\n");
1636     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1637     len = sizeof(buffer);
1638     strcpy(buffer,"Warning");
1639     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1640                 buffer,&len,&index),"Failed to get second header\n");
1641     ok(index == 2, "Index was not incremented\n");
1642     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1643     len = sizeof(buffer);
1644     strcpy(buffer,"Warning");
1645     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1646                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1647
1648     ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1, HTTP_ADDREQ_FLAG_COALESCE), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1649
1650     index = 0;
1651     len = sizeof(buffer);
1652     strcpy(buffer,"Warning");
1653     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1654                 buffer,&len,&index),"Unable to query header\n");
1655     ok(index == 1, "Index was not incremented\n");
1656     ok(strcmp(buffer,"test2, test4")==0, "incorrect string was returned(%s)\n", buffer);
1657     len = sizeof(buffer);
1658     strcpy(buffer,"Warning");
1659     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1660     ok(index == 2, "Index was not incremented\n");
1661     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1662     len = sizeof(buffer);
1663     strcpy(buffer,"Warning");
1664     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1665
1666     ok(HttpAddRequestHeaders(hRequest,"Warning:test5",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1667
1668     index = 0;
1669     len = sizeof(buffer);
1670     strcpy(buffer,"Warning");
1671     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1672     ok(index == 1, "Index was not incremented\n");
1673     ok(strcmp(buffer,"test2, test4, test5")==0, "incorrect string was returned(%s)\n",buffer);
1674     len = sizeof(buffer);
1675     strcpy(buffer,"Warning");
1676     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1677     ok(index == 2, "Index was not incremented\n");
1678     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1679     len = sizeof(buffer);
1680     strcpy(buffer,"Warning");
1681     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1682
1683     ok(HttpAddRequestHeaders(hRequest,"Warning:test6",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1684
1685     index = 0;
1686     len = sizeof(buffer);
1687     strcpy(buffer,"Warning");
1688     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1689     ok(index == 1, "Index was not incremented\n");
1690     ok(strcmp(buffer,"test2, test4, test5; test6")==0, "incorrect string was returned(%s)\n",buffer);
1691     len = sizeof(buffer);
1692     strcpy(buffer,"Warning");
1693     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1694     ok(index == 2, "Index was not incremented\n");
1695     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1696     len = sizeof(buffer);
1697     strcpy(buffer,"Warning");
1698     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1699
1700     ok(HttpAddRequestHeaders(hRequest,"Warning:test7",-1, HTTP_ADDREQ_FLAG_ADD|HTTP_ADDREQ_FLAG_REPLACE), "HTTP_ADDREQ_FLAG_ADD with HTTP_ADDREQ_FLAG_REPALCE Did not work\n");
1701
1702     index = 0;
1703     len = sizeof(buffer);
1704     strcpy(buffer,"Warning");
1705     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1706     ok(index == 1, "Index was not incremented\n");
1707     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1708     len = sizeof(buffer);
1709     strcpy(buffer,"Warning");
1710     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1711     ok(index == 2, "Index was not incremented\n");
1712     ok(strcmp(buffer,"test7")==0, "incorrect string was returned(%s)\n",buffer);
1713     len = sizeof(buffer);
1714     strcpy(buffer,"Warning");
1715     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1716
1717     /* Ensure that blank headers are ignored and don't cause a failure */
1718     ok(HttpAddRequestHeaders(hRequest,"\r\nBlankTest:value\r\n\r\n",-1, HTTP_ADDREQ_FLAG_ADD_IF_NEW), "Failed to add header with blank entries in list\n");
1719
1720     index = 0;
1721     len = sizeof(buffer);
1722     strcpy(buffer,"BlankTest");
1723     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1724     ok(index == 1, "Index was not incremented\n");
1725     ok(strcmp(buffer,"value")==0, "incorrect string was returned(%s)\n",buffer);
1726
1727     /* Ensure that malformed header separators are ignored and don't cause a failure */
1728     ok(HttpAddRequestHeaders(hRequest,"\r\rMalformedTest:value\n\nMalformedTestTwo: value2\rMalformedTestThree: value3\n\n\r\r\n",-1, HTTP_ADDREQ_FLAG_ADD|HTTP_ADDREQ_FLAG_REPLACE),
1729         "Failed to add header with malformed entries in list\n");
1730
1731     index = 0;
1732     len = sizeof(buffer);
1733     strcpy(buffer,"MalformedTest");
1734     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1735     ok(index == 1, "Index was not incremented\n");
1736     ok(strcmp(buffer,"value")==0, "incorrect string was returned(%s)\n",buffer);
1737     index = 0;
1738     len = sizeof(buffer);
1739     strcpy(buffer,"MalformedTestTwo");
1740     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1741     ok(index == 1, "Index was not incremented\n");
1742     ok(strcmp(buffer,"value2")==0, "incorrect string was returned(%s)\n",buffer);
1743     index = 0;
1744     len = sizeof(buffer);
1745     strcpy(buffer,"MalformedTestThree");
1746     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1747     ok(index == 1, "Index was not incremented\n");
1748     ok(strcmp(buffer,"value3")==0, "incorrect string was returned(%s)\n",buffer);
1749
1750     ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
1751 done:
1752     ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
1753     ok(InternetCloseHandle(hSession), "Close session handle failed\n");
1754 }
1755
1756 static const char garbagemsg[] =
1757 "Garbage: Header\r\n";
1758
1759 static const char contmsg[] =
1760 "HTTP/1.1 100 Continue\r\n";
1761
1762 static const char expandcontmsg[] =
1763 "HTTP/1.1 100 Continue\r\n"
1764 "Server: winecontinue\r\n"
1765 "Tag: something witty\r\n"
1766 "\r\n";
1767
1768 static const char okmsg[] =
1769 "HTTP/1.1 200 OK\r\n"
1770 "Server: winetest\r\n"
1771 "\r\n";
1772
1773 static const char okmsg2[] =
1774 "HTTP/1.1 200 OK\r\n"
1775 "Date: Mon, 01 Dec 2008 13:44:34 GMT\r\n"
1776 "Server: winetest\r\n"
1777 "Content-Length: 0\r\n"
1778 "Set-Cookie: one\r\n"
1779 "Set-Cookie: two\r\n"
1780 "\r\n";
1781
1782 static const char notokmsg[] =
1783 "HTTP/1.1 400 Bad Request\r\n"
1784 "Server: winetest\r\n"
1785 "\r\n";
1786
1787 static const char noauthmsg[] =
1788 "HTTP/1.1 401 Unauthorized\r\n"
1789 "Server: winetest\r\n"
1790 "Connection: close\r\n"
1791 "WWW-Authenticate: Basic realm=\"placebo\"\r\n"
1792 "\r\n";
1793
1794 static const char noauthmsg2[] =
1795 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed\r\n"
1796 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"
1797 "\0d`0|6\n"
1798 "Server: winetest\r\n";
1799
1800 static const char proxymsg[] =
1801 "HTTP/1.1 407 Proxy Authentication Required\r\n"
1802 "Server: winetest\r\n"
1803 "Proxy-Connection: close\r\n"
1804 "Proxy-Authenticate: Basic realm=\"placebo\"\r\n"
1805 "\r\n";
1806
1807 static const char page1[] =
1808 "<HTML>\r\n"
1809 "<HEAD><TITLE>wininet test page</TITLE></HEAD>\r\n"
1810 "<BODY>The quick brown fox jumped over the lazy dog<P></BODY>\r\n"
1811 "</HTML>\r\n\r\n";
1812
1813 struct server_info {
1814     HANDLE hEvent;
1815     int port;
1816 };
1817
1818 static DWORD CALLBACK server_thread(LPVOID param)
1819 {
1820     struct server_info *si = param;
1821     int r, c, i, on;
1822     SOCKET s;
1823     struct sockaddr_in sa;
1824     char buffer[0x100];
1825     WSADATA wsaData;
1826     int last_request = 0;
1827     char host_header[22];
1828     static int test_b = 0;
1829     static int test_no_cache = 0;
1830
1831     WSAStartup(MAKEWORD(1,1), &wsaData);
1832
1833     s = socket(AF_INET, SOCK_STREAM, 0);
1834     if (s == INVALID_SOCKET)
1835         return 1;
1836
1837     on = 1;
1838     setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof on);
1839
1840     memset(&sa, 0, sizeof sa);
1841     sa.sin_family = AF_INET;
1842     sa.sin_port = htons(si->port);
1843     sa.sin_addr.S_un.S_addr = inet_addr("127.0.0.1");
1844
1845     r = bind(s, (struct sockaddr*) &sa, sizeof sa);
1846     if (r<0)
1847         return 1;
1848
1849     listen(s, 0);
1850
1851     SetEvent(si->hEvent);
1852
1853     sprintf(host_header, "Host: localhost:%d", si->port);
1854
1855     do
1856     {
1857         c = accept(s, NULL, NULL);
1858
1859         memset(buffer, 0, sizeof buffer);
1860         for(i=0; i<(sizeof buffer-1); i++)
1861         {
1862             r = recv(c, &buffer[i], 1, 0);
1863             if (r != 1)
1864                 break;
1865             if (i<4) continue;
1866             if (buffer[i-2] == '\n' && buffer[i] == '\n' &&
1867                 buffer[i-3] == '\r' && buffer[i-1] == '\r')
1868                 break;
1869         }
1870         if (strstr(buffer, "GET /test1"))
1871         {
1872             if (!strstr(buffer, "Content-Length: 0"))
1873             {
1874                 send(c, okmsg, sizeof okmsg-1, 0);
1875                 send(c, page1, sizeof page1-1, 0);
1876             }
1877             else
1878                 send(c, notokmsg, sizeof notokmsg-1, 0);
1879         }
1880         if (strstr(buffer, "/test2"))
1881         {
1882             if (strstr(buffer, "Proxy-Authorization: Basic bWlrZToxMTAx"))
1883             {
1884                 send(c, okmsg, sizeof okmsg-1, 0);
1885                 send(c, page1, sizeof page1-1, 0);
1886             }
1887             else
1888                 send(c, proxymsg, sizeof proxymsg-1, 0);
1889         }
1890         if (strstr(buffer, "/test3"))
1891         {
1892             if (strstr(buffer, "Authorization: Basic dXNlcjpwd2Q="))
1893                 send(c, okmsg, sizeof okmsg-1, 0);
1894             else
1895                 send(c, noauthmsg, sizeof noauthmsg-1, 0);
1896         }
1897         if (strstr(buffer, "/test4"))
1898         {
1899             if (strstr(buffer, "Connection: Close"))
1900                 send(c, okmsg, sizeof okmsg-1, 0);
1901             else
1902                 send(c, notokmsg, sizeof notokmsg-1, 0);
1903         }
1904         if (strstr(buffer, "POST /test5") ||
1905             strstr(buffer, "RPC_IN_DATA /test5") ||
1906             strstr(buffer, "RPC_OUT_DATA /test5"))
1907         {
1908             if (strstr(buffer, "Content-Length: 0"))
1909             {
1910                 send(c, okmsg, sizeof okmsg-1, 0);
1911                 send(c, page1, sizeof page1-1, 0);
1912             }
1913             else
1914                 send(c, notokmsg, sizeof notokmsg-1, 0);
1915         }
1916         if (strstr(buffer, "GET /test6"))
1917         {
1918             send(c, contmsg, sizeof contmsg-1, 0);
1919             send(c, contmsg, sizeof contmsg-1, 0);
1920             send(c, okmsg, sizeof okmsg-1, 0);
1921             send(c, page1, sizeof page1-1, 0);
1922         }
1923         if (strstr(buffer, "POST /test7"))
1924         {
1925             if (strstr(buffer, "Content-Length: 100"))
1926             {
1927                 send(c, okmsg, sizeof okmsg-1, 0);
1928                 send(c, page1, sizeof page1-1, 0);
1929             }
1930             else
1931                 send(c, notokmsg, sizeof notokmsg-1, 0);
1932         }
1933         if (strstr(buffer, "/test8"))
1934         {
1935             if (!strstr(buffer, "Connection: Close") &&
1936                  strstr(buffer, "Connection: Keep-Alive") &&
1937                 !strstr(buffer, "Cache-Control: no-cache") &&
1938                 !strstr(buffer, "Pragma: no-cache") &&
1939                  strstr(buffer, host_header))
1940                 send(c, okmsg, sizeof okmsg-1, 0);
1941             else
1942                 send(c, notokmsg, sizeof notokmsg-1, 0);
1943         }
1944         if (strstr(buffer, "/test9"))
1945         {
1946             if (!strstr(buffer, "Connection: Close") &&
1947                 !strstr(buffer, "Connection: Keep-Alive") &&
1948                 !strstr(buffer, "Cache-Control: no-cache") &&
1949                 !strstr(buffer, "Pragma: no-cache") &&
1950                  strstr(buffer, host_header))
1951                 send(c, okmsg, sizeof okmsg-1, 0);
1952             else
1953                 send(c, notokmsg, sizeof notokmsg-1, 0);
1954         }
1955         if (strstr(buffer, "/testA"))
1956         {
1957             if (!strstr(buffer, "Connection: Close") &&
1958                 !strstr(buffer, "Connection: Keep-Alive") &&
1959                 (strstr(buffer, "Cache-Control: no-cache") ||
1960                  strstr(buffer, "Pragma: no-cache")) &&
1961                  strstr(buffer, host_header))
1962                 send(c, okmsg, sizeof okmsg-1, 0);
1963             else
1964                 send(c, notokmsg, sizeof notokmsg-1, 0);
1965         }
1966         if (!test_b && strstr(buffer, "/testB HTTP/1.1"))
1967         {
1968             test_b = 1;
1969             send(c, okmsg, sizeof okmsg-1, 0);
1970             recvfrom(c, buffer, sizeof buffer, 0, NULL, NULL);
1971             send(c, okmsg, sizeof okmsg-1, 0);
1972         }
1973         if (strstr(buffer, "/testC"))
1974         {
1975             if (strstr(buffer, "Cookie: cookie=biscuit"))
1976                 send(c, okmsg, sizeof okmsg-1, 0);
1977             else
1978                 send(c, notokmsg, sizeof notokmsg-1, 0);
1979         }
1980         if (strstr(buffer, "/testD"))
1981         {
1982             send(c, okmsg2, sizeof okmsg2-1, 0);
1983         }
1984         if (strstr(buffer, "/testE"))
1985         {
1986             send(c, noauthmsg2, sizeof noauthmsg2-1, 0);
1987         }
1988         if (strstr(buffer, "GET /quit"))
1989         {
1990             send(c, okmsg, sizeof okmsg-1, 0);
1991             send(c, page1, sizeof page1-1, 0);
1992             last_request = 1;
1993         }
1994         if (strstr(buffer, "GET /testF"))
1995         {
1996             send(c, expandcontmsg, sizeof expandcontmsg-1, 0);
1997             send(c, garbagemsg, sizeof garbagemsg-1, 0);
1998             send(c, contmsg, sizeof contmsg-1, 0);
1999             send(c, garbagemsg, sizeof garbagemsg-1, 0);
2000             send(c, okmsg, sizeof okmsg-1, 0);
2001             send(c, page1, sizeof page1-1, 0);
2002         }
2003         if (strstr(buffer, "GET /testG"))
2004         {
2005             send(c, page1, sizeof page1-1, 0);
2006         }
2007         if (strstr(buffer, "GET /test_no_content"))
2008         {
2009             static const char nocontentmsg[] = "HTTP/1.1 204 No Content\r\nConnection: close\r\n\r\n";
2010             send(c, nocontentmsg, sizeof(nocontentmsg)-1, 0);
2011         }
2012         if (strstr(buffer, "GET /test_conn_close"))
2013         {
2014             static const char conn_close_response[] = "HTTP/1.1 200 OK\r\nConnection: close\r\n\r\nsome content";
2015             send(c, conn_close_response, sizeof(conn_close_response)-1, 0);
2016             WaitForSingleObject(conn_close_event, INFINITE);
2017             trace("closing connection\n");
2018         }
2019         if (strstr(buffer, "GET /test_cache_control_no_cache"))
2020         {
2021             static const char no_cache_response[] = "HTTP/1.1 200 OK\r\nCache-Control: no-cache\r\n\r\nsome content";
2022             if(!test_no_cache++)
2023                 send(c, no_cache_response, sizeof(no_cache_response)-1, 0);
2024             else
2025                 send(c, okmsg, sizeof(okmsg)-1, 0);
2026         }
2027         if (strstr(buffer, "GET /test_cache_control_no_store"))
2028         {
2029             static const char no_cache_response[] = "HTTP/1.1 200 OK\r\nCache-Control: junk, \t No-StOrE\r\n\r\nsome content";
2030             send(c, no_cache_response, sizeof(no_cache_response)-1, 0);
2031         }
2032         if (strstr(buffer, "GET /test_premature_disconnect"))
2033             trace("closing connection\n");
2034
2035         shutdown(c, 2);
2036         closesocket(c);
2037     } while (!last_request);
2038
2039     closesocket(s);
2040
2041     return 0;
2042 }
2043
2044 static void test_basic_request(int port, const char *verb, const char *url)
2045 {
2046     HINTERNET hi, hc, hr;
2047     DWORD r, count;
2048     char buffer[0x100];
2049
2050     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2051     ok(hi != NULL, "open failed\n");
2052
2053     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2054     ok(hc != NULL, "connect failed\n");
2055
2056     hr = HttpOpenRequest(hc, verb, url, NULL, NULL, NULL, 0, 0);
2057     ok(hr != NULL, "HttpOpenRequest failed\n");
2058
2059     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2060     ok(r, "HttpSendRequest failed\n");
2061
2062     count = 0;
2063     memset(buffer, 0, sizeof buffer);
2064     SetLastError(0xdeadbeef);
2065     r = InternetReadFile(hr, buffer, sizeof buffer, &count);
2066     ok(r, "InternetReadFile failed %u\n", GetLastError());
2067     ok(count == sizeof page1 - 1, "count was wrong\n");
2068     ok(!memcmp(buffer, page1, sizeof page1), "http data wrong, got: %s\n", buffer);
2069
2070     InternetCloseHandle(hr);
2071     InternetCloseHandle(hc);
2072     InternetCloseHandle(hi);
2073 }
2074
2075 static void test_last_error(int port)
2076 {
2077     HINTERNET hi, hc, hr;
2078     DWORD error;
2079     BOOL r;
2080
2081     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2082     ok(hi != NULL, "open failed\n");
2083
2084     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2085     ok(hc != NULL, "connect failed\n");
2086
2087     hr = HttpOpenRequest(hc, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2088     ok(hr != NULL, "HttpOpenRequest failed\n");
2089
2090     SetLastError(0xdeadbeef);
2091     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2092     error = GetLastError();
2093     ok(r, "HttpSendRequest failed\n");
2094     ok(error == ERROR_SUCCESS || broken(error != ERROR_SUCCESS), "expected ERROR_SUCCESS, got %u\n", error);
2095
2096     InternetCloseHandle(hr);
2097     InternetCloseHandle(hc);
2098     InternetCloseHandle(hi);
2099 }
2100
2101 static void test_proxy_indirect(int port)
2102 {
2103     HINTERNET hi, hc, hr;
2104     DWORD r, sz;
2105     char buffer[0x40];
2106
2107     hi = InternetOpen(NULL, 0, NULL, NULL, 0);
2108     ok(hi != NULL, "open failed\n");
2109
2110     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2111     ok(hc != NULL, "connect failed\n");
2112
2113     hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
2114     ok(hr != NULL, "HttpOpenRequest failed\n");
2115
2116     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2117     ok(r, "HttpSendRequest failed %u\n", GetLastError());
2118
2119     sz = sizeof buffer;
2120     r = HttpQueryInfo(hr, HTTP_QUERY_PROXY_AUTHENTICATE, buffer, &sz, NULL);
2121     ok(r || GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo failed: %d\n", GetLastError());
2122     if (!r)
2123     {
2124         skip("missing proxy header, not testing remaining proxy headers\n");
2125         goto out;
2126     }
2127     ok(!strcmp(buffer, "Basic realm=\"placebo\""), "proxy auth info wrong\n");
2128
2129     test_status_code(hr, 407);
2130     test_request_flags(hr, 0);
2131
2132     sz = sizeof buffer;
2133     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &sz, NULL);
2134     ok(r, "HttpQueryInfo failed\n");
2135     ok(!strcmp(buffer, "Proxy Authentication Required"), "proxy text wrong\n");
2136
2137     sz = sizeof buffer;
2138     r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &sz, NULL);
2139     ok(r, "HttpQueryInfo failed\n");
2140     ok(!strcmp(buffer, "HTTP/1.1"), "http version wrong\n");
2141
2142     sz = sizeof buffer;
2143     r = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &sz, NULL);
2144     ok(r, "HttpQueryInfo failed\n");
2145     ok(!strcmp(buffer, "winetest"), "http server wrong\n");
2146
2147     sz = sizeof buffer;
2148     r = HttpQueryInfo(hr, HTTP_QUERY_CONTENT_ENCODING, buffer, &sz, NULL);
2149     ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo should fail\n");
2150     ok(r == FALSE, "HttpQueryInfo failed\n");
2151
2152 out:
2153     InternetCloseHandle(hr);
2154     InternetCloseHandle(hc);
2155     InternetCloseHandle(hi);
2156 }
2157
2158 static void test_proxy_direct(int port)
2159 {
2160     HINTERNET hi, hc, hr;
2161     DWORD r, sz;
2162     char buffer[0x40], *url;
2163     WCHAR bufferW[0x40];
2164     static CHAR username[] = "mike",
2165                 password[] = "1101",
2166                 useragent[] = "winetest",
2167                 url_fmt[] = "http://test.winehq.org:%u/test2";
2168     static WCHAR usernameW[] = {'m','i','k','e',0},
2169                  passwordW[] = {'1','1','0','1',0},
2170                  useragentW[] = {'w','i','n','e','t','e','s','t',0};
2171
2172     sprintf(buffer, "localhost:%d\n", port);
2173     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_PROXY, buffer, NULL, 0);
2174     ok(hi != NULL, "open failed\n");
2175
2176     /* try connect without authorization */
2177     hc = InternetConnect(hi, "test.winehq.org", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2178     ok(hc != NULL, "connect failed\n");
2179
2180     hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
2181     ok(hr != NULL, "HttpOpenRequest failed\n");
2182
2183     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2184     ok(r, "HttpSendRequest failed %u\n", GetLastError());
2185
2186     test_status_code(hr, 407);
2187
2188     /* set the user + password then try again */
2189     r = InternetSetOption(hi, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2190     ok(!r, "unexpected success\n");
2191
2192     r = InternetSetOption(hc, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2193     ok(r, "failed to set user\n");
2194
2195     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2196     ok(r, "failed to set user\n");
2197
2198     buffer[0] = 0;
2199     sz = 0;
2200     SetLastError(0xdeadbeef);
2201     r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2202     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2203     ok(!r, "unexpected success\n");
2204     ok(sz == strlen(username) + 1, "got %u\n", sz);
2205
2206     bufferW[0] = 0;
2207     sz = 0;
2208     SetLastError(0xdeadbeef);
2209     r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_USERNAME, bufferW, &sz);
2210     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2211     ok(!r, "unexpected success\n");
2212     ok(sz == (lstrlenW(usernameW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2213
2214     buffer[0] = 0;
2215     sz = sizeof(buffer);
2216     r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2217     ok(r, "failed to get username\n");
2218     ok(!strcmp(buffer, username), "got %s\n", buffer);
2219     ok(sz == strlen(username), "got %u\n", sz);
2220
2221     buffer[0] = 0;
2222     sz = sizeof(bufferW);
2223     r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_USERNAME, bufferW, &sz);
2224     ok(r, "failed to get username\n");
2225     ok(!lstrcmpW(bufferW, usernameW), "wrong username\n");
2226     ok(sz == lstrlenW(usernameW), "got %u\n", sz);
2227
2228     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 1);
2229     ok(r, "failed to set user\n");
2230
2231     buffer[0] = 0;
2232     sz = sizeof(buffer);
2233     r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2234     ok(r, "failed to get username\n");
2235     ok(!strcmp(buffer, username), "got %s\n", buffer);
2236     ok(sz == strlen(username), "got %u\n", sz);
2237
2238     r = InternetSetOption(hi, INTERNET_OPTION_USER_AGENT, useragent, 1);
2239     ok(r, "failed to set useragent\n");
2240
2241     buffer[0] = 0;
2242     sz = 0;
2243     SetLastError(0xdeadbeef);
2244     r = InternetQueryOption(hi, INTERNET_OPTION_USER_AGENT, buffer, &sz);
2245     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2246     ok(!r, "unexpected success\n");
2247     ok(sz == strlen(useragent) + 1, "got %u\n", sz);
2248
2249     buffer[0] = 0;
2250     sz = sizeof(buffer);
2251     r = InternetQueryOption(hi, INTERNET_OPTION_USER_AGENT, buffer, &sz);
2252     ok(r, "failed to get user agent\n");
2253     ok(!strcmp(buffer, useragent), "got %s\n", buffer);
2254     ok(sz == strlen(useragent), "got %u\n", sz);
2255
2256     bufferW[0] = 0;
2257     sz = 0;
2258     SetLastError(0xdeadbeef);
2259     r = InternetQueryOptionW(hi, INTERNET_OPTION_USER_AGENT, bufferW, &sz);
2260     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2261     ok(!r, "unexpected success\n");
2262     ok(sz == (lstrlenW(useragentW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2263
2264     bufferW[0] = 0;
2265     sz = sizeof(bufferW);
2266     r = InternetQueryOptionW(hi, INTERNET_OPTION_USER_AGENT, bufferW, &sz);
2267     ok(r, "failed to get user agent\n");
2268     ok(!lstrcmpW(bufferW, useragentW), "wrong user agent\n");
2269     ok(sz == lstrlenW(useragentW), "got %u\n", sz);
2270
2271     r = InternetSetOption(hr, INTERNET_OPTION_USERNAME, username, 1);
2272     ok(r, "failed to set user\n");
2273
2274     buffer[0] = 0;
2275     sz = 0;
2276     SetLastError(0xdeadbeef);
2277     r = InternetQueryOption(hr, INTERNET_OPTION_USERNAME, buffer, &sz);
2278     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2279     ok(!r, "unexpected success\n");
2280     ok(sz == strlen(username) + 1, "got %u\n", sz);
2281
2282     buffer[0] = 0;
2283     sz = sizeof(buffer);
2284     r = InternetQueryOption(hr, INTERNET_OPTION_USERNAME, buffer, &sz);
2285     ok(r, "failed to get user\n");
2286     ok(!strcmp(buffer, username), "got %s\n", buffer);
2287     ok(sz == strlen(username), "got %u\n", sz);
2288
2289     bufferW[0] = 0;
2290     sz = 0;
2291     SetLastError(0xdeadbeef);
2292     r = InternetQueryOptionW(hr, INTERNET_OPTION_USERNAME, bufferW, &sz);
2293     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2294     ok(!r, "unexpected success\n");
2295     ok(sz == (lstrlenW(usernameW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2296
2297     bufferW[0] = 0;
2298     sz = sizeof(bufferW);
2299     r = InternetQueryOptionW(hr, INTERNET_OPTION_USERNAME, bufferW, &sz);
2300     ok(r, "failed to get user\n");
2301     ok(!lstrcmpW(bufferW, usernameW), "wrong user\n");
2302     ok(sz == lstrlenW(usernameW), "got %u\n", sz);
2303
2304     r = InternetSetOption(hr, INTERNET_OPTION_PASSWORD, password, 1);
2305     ok(r, "failed to set password\n");
2306
2307     buffer[0] = 0;
2308     sz = 0;
2309     SetLastError(0xdeadbeef);
2310     r = InternetQueryOption(hr, INTERNET_OPTION_PASSWORD, buffer, &sz);
2311     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2312     ok(!r, "unexpected success\n");
2313     ok(sz == strlen(password) + 1, "got %u\n", sz);
2314
2315     buffer[0] = 0;
2316     sz = sizeof(buffer);
2317     r = InternetQueryOption(hr, INTERNET_OPTION_PASSWORD, buffer, &sz);
2318     ok(r, "failed to get password\n");
2319     ok(!strcmp(buffer, password), "got %s\n", buffer);
2320     ok(sz == strlen(password), "got %u\n", sz);
2321
2322     bufferW[0] = 0;
2323     sz = 0;
2324     SetLastError(0xdeadbeef);
2325     r = InternetQueryOptionW(hr, INTERNET_OPTION_PASSWORD, bufferW, &sz);
2326     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2327     ok(!r, "unexpected success\n");
2328     ok(sz == (lstrlenW(passwordW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2329
2330     bufferW[0] = 0;
2331     sz = sizeof(bufferW);
2332     r = InternetQueryOptionW(hr, INTERNET_OPTION_PASSWORD, bufferW, &sz);
2333     ok(r, "failed to get password\n");
2334     ok(!lstrcmpW(bufferW, passwordW), "wrong password\n");
2335     ok(sz == lstrlenW(passwordW), "got %u\n", sz);
2336
2337     url = HeapAlloc(GetProcessHeap(), 0, strlen(url_fmt) + 11);
2338     sprintf(url, url_fmt, port);
2339     buffer[0] = 0;
2340     sz = 0;
2341     SetLastError(0xdeadbeef);
2342     r = InternetQueryOption(hr, INTERNET_OPTION_URL, buffer, &sz);
2343     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2344     ok(!r, "unexpected success\n");
2345     ok(sz == strlen(url) + 1, "got %u\n", sz);
2346
2347     buffer[0] = 0;
2348     sz = sizeof(buffer);
2349     r = InternetQueryOption(hr, INTERNET_OPTION_URL, buffer, &sz);
2350     ok(r, "failed to get url\n");
2351     ok(!strcmp(buffer, url), "got %s\n", buffer);
2352     ok(sz == strlen(url), "got %u\n", sz);
2353
2354     bufferW[0] = 0;
2355     sz = 0;
2356     SetLastError(0xdeadbeef);
2357     r = InternetQueryOptionW(hr, INTERNET_OPTION_URL, bufferW, &sz);
2358     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2359     ok(!r, "unexpected success\n");
2360     ok(sz == (strlen(url) + 1) * sizeof(WCHAR), "got %u\n", sz);
2361
2362     bufferW[0] = 0;
2363     sz = sizeof(bufferW);
2364     r = InternetQueryOptionW(hr, INTERNET_OPTION_URL, bufferW, &sz);
2365     ok(r, "failed to get url\n");
2366     ok(!strcmp_wa(bufferW, url), "wrong url\n");
2367     ok(sz == strlen(url), "got %u\n", sz);
2368     HeapFree(GetProcessHeap(), 0, url);
2369
2370     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_PASSWORD, password, 4);
2371     ok(r, "failed to set password\n");
2372
2373     buffer[0] = 0;
2374     sz = 0;
2375     SetLastError(0xdeadbeef);
2376     r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_PASSWORD, buffer, &sz);
2377     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2378     ok(!r, "unexpected success\n");
2379     ok(sz == strlen(password) + 1, "got %u\n", sz);
2380
2381     buffer[0] = 0;
2382     sz = sizeof(buffer);
2383     r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_PASSWORD, buffer, &sz);
2384     ok(r, "failed to get password\n");
2385     ok(!strcmp(buffer, password), "got %s\n", buffer);
2386     ok(sz == strlen(password), "got %u\n", sz);
2387
2388     bufferW[0] = 0;
2389     sz = 0;
2390     SetLastError(0xdeadbeef);
2391     r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_PASSWORD, bufferW, &sz);
2392     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2393     ok(!r, "unexpected success\n");
2394     ok(sz == (lstrlenW(passwordW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2395
2396     bufferW[0] = 0;
2397     sz = sizeof(bufferW);
2398     r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_PASSWORD, bufferW, &sz);
2399     ok(r, "failed to get password\n");
2400     ok(!lstrcmpW(bufferW, passwordW), "wrong password\n");
2401     ok(sz == lstrlenW(passwordW), "got %u\n", sz);
2402
2403     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2404     ok(r, "HttpSendRequest failed %u\n", GetLastError());
2405     sz = sizeof buffer;
2406     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
2407     ok(r, "HttpQueryInfo failed\n");
2408     ok(!strcmp(buffer, "200"), "proxy code wrong\n");
2409
2410     InternetCloseHandle(hr);
2411     InternetCloseHandle(hc);
2412     InternetCloseHandle(hi);
2413 }
2414
2415 static void test_header_handling_order(int port)
2416 {
2417     static char authorization[] = "Authorization: Basic dXNlcjpwd2Q=";
2418     static char connection[]    = "Connection: Close";
2419
2420     static const char *types[2] = { "*", NULL };
2421     HINTERNET session, connect, request;
2422     DWORD size, status;
2423     BOOL ret;
2424
2425     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2426     ok(session != NULL, "InternetOpen failed\n");
2427
2428     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2429     ok(connect != NULL, "InternetConnect failed\n");
2430
2431     request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2432     ok(request != NULL, "HttpOpenRequest failed\n");
2433
2434     ret = HttpAddRequestHeaders(request, authorization, ~0u, HTTP_ADDREQ_FLAG_ADD);
2435     ok(ret, "HttpAddRequestHeaders failed\n");
2436
2437     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2438     ok(ret, "HttpSendRequest failed\n");
2439
2440     test_status_code(request, 200);
2441     test_request_flags(request, 0);
2442
2443     InternetCloseHandle(request);
2444
2445     request = HttpOpenRequest(connect, NULL, "/test4", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2446     ok(request != NULL, "HttpOpenRequest failed\n");
2447
2448     ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2449     ok(ret, "HttpSendRequest failed\n");
2450
2451     status = 0;
2452     size = sizeof(status);
2453     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2454     ok(ret, "HttpQueryInfo failed\n");
2455     ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2456
2457     InternetCloseHandle(request);
2458
2459     request = HttpOpenRequest(connect, "POST", "/test7", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2460     ok(request != NULL, "HttpOpenRequest failed\n");
2461
2462     ret = HttpAddRequestHeaders(request, "Content-Length: 100\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
2463     ok(ret, "HttpAddRequestHeaders failed\n");
2464
2465     ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2466     ok(ret, "HttpSendRequest failed\n");
2467
2468     status = 0;
2469     size = sizeof(status);
2470     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2471     ok(ret, "HttpQueryInfo failed\n");
2472     ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2473
2474     InternetCloseHandle(request);
2475     InternetCloseHandle(connect);
2476     InternetCloseHandle(session);
2477 }
2478
2479 static void test_connection_header(int port)
2480 {
2481     HINTERNET ses, con, req;
2482     BOOL ret;
2483
2484     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2485     ok(ses != NULL, "InternetOpen failed\n");
2486
2487     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2488     ok(con != NULL, "InternetConnect failed\n");
2489
2490     req = HttpOpenRequest(con, NULL, "/test8", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2491     ok(req != NULL, "HttpOpenRequest failed\n");
2492
2493     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2494     ok(ret, "HttpSendRequest failed\n");
2495
2496     test_status_code(req, 200);
2497
2498     InternetCloseHandle(req);
2499
2500     req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, 0, 0);
2501     ok(req != NULL, "HttpOpenRequest failed\n");
2502
2503     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2504     ok(ret, "HttpSendRequest failed\n");
2505
2506     test_status_code(req, 200);
2507
2508     InternetCloseHandle(req);
2509
2510     req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2511     ok(req != NULL, "HttpOpenRequest failed\n");
2512
2513     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2514     ok(ret, "HttpSendRequest failed\n");
2515
2516     test_status_code(req, 200);
2517
2518     InternetCloseHandle(req);
2519
2520     req = HttpOpenRequest(con, "POST", "/testA", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2521     ok(req != NULL, "HttpOpenRequest failed\n");
2522
2523     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2524     ok(ret, "HttpSendRequest failed\n");
2525
2526     test_status_code(req, 200);
2527
2528     InternetCloseHandle(req);
2529     InternetCloseHandle(con);
2530     InternetCloseHandle(ses);
2531 }
2532
2533 static void test_http1_1(int port)
2534 {
2535     HINTERNET ses, con, req;
2536     BOOL ret;
2537
2538     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2539     ok(ses != NULL, "InternetOpen failed\n");
2540
2541     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2542     ok(con != NULL, "InternetConnect failed\n");
2543
2544     req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2545     ok(req != NULL, "HttpOpenRequest failed\n");
2546
2547     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2548     if (ret)
2549     {
2550         InternetCloseHandle(req);
2551
2552         req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2553         ok(req != NULL, "HttpOpenRequest failed\n");
2554
2555         ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2556         ok(ret, "HttpSendRequest failed\n");
2557     }
2558
2559     InternetCloseHandle(req);
2560     InternetCloseHandle(con);
2561     InternetCloseHandle(ses);
2562 }
2563
2564 static void test_no_content(int port)
2565 {
2566     HINTERNET session, connection, req;
2567     DWORD res;
2568
2569     trace("Testing 204 no content response...\n");
2570
2571     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2572
2573     session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2574     ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2575
2576     pInternetSetStatusCallbackA(session, callback);
2577
2578     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2579     connection = InternetConnectA(session, "localhost", port,
2580             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2581     ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2582     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2583
2584     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2585     req = HttpOpenRequestA(connection, "GET", "/test_no_content", NULL, NULL, NULL,
2586             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2587     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2588     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2589
2590     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2591     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2592     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2593     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2594     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2595     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2596     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2597     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2598     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2599     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2600
2601     res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2602     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2603        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2604     WaitForSingleObject(hCompleteEvent, INFINITE);
2605     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2606
2607     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2608     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2609     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2610     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2611     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2612     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2613     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2614     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2615     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2616     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2617
2618     close_async_handle(session, hCompleteEvent, 2);
2619     CloseHandle(hCompleteEvent);
2620 }
2621
2622 static void test_conn_close(int port)
2623 {
2624     HINTERNET session, connection, req;
2625     DWORD res, avail, size;
2626     BYTE buf[1024];
2627
2628     trace("Testing connection close connection...\n");
2629
2630     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2631     conn_close_event = CreateEvent(NULL, FALSE, FALSE, NULL);
2632
2633     session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2634     ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2635
2636     pInternetSetStatusCallbackA(session, callback);
2637
2638     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2639     connection = InternetConnectA(session, "localhost", port,
2640             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2641     ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2642     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2643
2644     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2645     req = HttpOpenRequestA(connection, "GET", "/test_conn_close", NULL, NULL, NULL,
2646             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2647     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2648     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2649
2650     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2651     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2652     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2653     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2654     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2655     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2656     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2657     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2658
2659     res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2660     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2661        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2662     WaitForSingleObject(hCompleteEvent, INFINITE);
2663     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2664
2665     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2666     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2667     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2668     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2669     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2670     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2671     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2672     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2673
2674     avail = 0;
2675     res = InternetQueryDataAvailable(req, &avail, 0, 0);
2676     ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
2677     ok(avail != 0, "avail = 0\n");
2678
2679     size = 0;
2680     res = InternetReadFile(req, buf, avail, &size);
2681     ok(res, "InternetReadFile failed: %u\n", GetLastError());
2682
2683     res = InternetQueryDataAvailable(req, &avail, 0, 0);
2684     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2685        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2686     ok(!avail, "avail = %u, expected 0\n", avail);
2687
2688     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2689     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2690     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2691     SetEvent(conn_close_event);
2692     WaitForSingleObject(hCompleteEvent, INFINITE);
2693     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2694     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2695     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2696     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2697
2698     close_async_handle(session, hCompleteEvent, 2);
2699     CloseHandle(hCompleteEvent);
2700 }
2701
2702 static void test_no_cache(int port)
2703 {
2704     static const char cache_control_no_cache[] = "/test_cache_control_no_cache";
2705     static const char cache_control_no_store[] = "/test_cache_control_no_store";
2706     static const char cache_url_fmt[] = "http://localhost:%d%s";
2707
2708     char cache_url[256], buf[256];
2709     HINTERNET ses, con, req;
2710     DWORD read, size;
2711     BOOL ret;
2712
2713     trace("Testing no-cache header\n");
2714
2715     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2716     ok(ses != NULL,"InternetOpen failed with error %u\n", GetLastError());
2717
2718     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2719     ok(con != NULL, "InternetConnect failed with error %u\n", GetLastError());
2720
2721     req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2722     ok(req != NULL, "HttpOpenRequest failed\n");
2723
2724     sprintf(cache_url, cache_url_fmt, port, cache_control_no_cache);
2725     DeleteUrlCacheEntry(cache_url);
2726
2727     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2728     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2729     size = 0;
2730     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2731         size += read;
2732     ok(size == 12, "read %d bytes of data\n", size);
2733     InternetCloseHandle(req);
2734
2735     req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2736     ok(req != NULL, "HttpOpenRequest failed\n");
2737
2738     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2739     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2740     size = 0;
2741     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2742         size += read;
2743     ok(size == 0, "read %d bytes of data\n", size);
2744     InternetCloseHandle(req);
2745     DeleteUrlCacheEntry(cache_url);
2746
2747     req = HttpOpenRequest(con, NULL, cache_control_no_store, NULL, NULL, NULL, 0, 0);
2748     ok(req != NULL, "HttpOpenRequest failed\n");
2749
2750     sprintf(cache_url, cache_url_fmt, port, cache_control_no_store);
2751     DeleteUrlCacheEntry(cache_url);
2752
2753     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2754     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2755     size = 0;
2756     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2757         size += read;
2758     ok(size == 12, "read %d bytes of data\n", size);
2759     InternetCloseHandle(req);
2760
2761     ret = DeleteUrlCacheEntry(cache_url);
2762     ok(!ret && GetLastError()==ERROR_FILE_NOT_FOUND, "cache entry should not exist\n");
2763
2764     InternetCloseHandle(con);
2765     InternetCloseHandle(ses);
2766 }
2767
2768 static void test_HttpSendRequestW(int port)
2769 {
2770     static const WCHAR header[] = {'U','A','-','C','P','U',':',' ','x','8','6',0};
2771     HINTERNET ses, con, req;
2772     DWORD error;
2773     BOOL ret;
2774
2775     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);
2776     ok(ses != NULL, "InternetOpen failed\n");
2777
2778     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2779     ok(con != NULL, "InternetConnect failed\n");
2780
2781     req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2782     ok(req != NULL, "HttpOpenRequest failed\n");
2783
2784     SetLastError(0xdeadbeef);
2785     ret = HttpSendRequestW(req, header, ~0u, NULL, 0);
2786     error = GetLastError();
2787     ok(!ret, "HttpSendRequestW succeeded\n");
2788     ok(error == ERROR_IO_PENDING ||
2789        broken(error == ERROR_HTTP_HEADER_NOT_FOUND) ||  /* IE6 */
2790        broken(error == ERROR_INVALID_PARAMETER),        /* IE5 */
2791        "got %u expected ERROR_IO_PENDING\n", error);
2792
2793     InternetCloseHandle(req);
2794     InternetCloseHandle(con);
2795     InternetCloseHandle(ses);
2796 }
2797
2798 static void test_cookie_header(int port)
2799 {
2800     HINTERNET ses, con, req;
2801     DWORD size, error;
2802     BOOL ret;
2803     char buffer[64];
2804
2805     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2806     ok(ses != NULL, "InternetOpen failed\n");
2807
2808     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2809     ok(con != NULL, "InternetConnect failed\n");
2810
2811     InternetSetCookie("http://localhost", "cookie", "biscuit");
2812
2813     req = HttpOpenRequest(con, NULL, "/testC", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2814     ok(req != NULL, "HttpOpenRequest failed\n");
2815
2816     buffer[0] = 0;
2817     size = sizeof(buffer);
2818     SetLastError(0xdeadbeef);
2819     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2820     error = GetLastError();
2821     ok(!ret, "HttpQueryInfo succeeded\n");
2822     ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "got %u expected ERROR_HTTP_HEADER_NOT_FOUND\n", error);
2823
2824     ret = HttpAddRequestHeaders(req, "Cookie: cookie=not biscuit\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD);
2825     ok(ret, "HttpAddRequestHeaders failed: %u\n", GetLastError());
2826
2827     buffer[0] = 0;
2828     size = sizeof(buffer);
2829     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2830     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2831     ok(!strcmp(buffer, "cookie=not biscuit"), "got '%s' expected \'cookie=not biscuit\'\n", buffer);
2832
2833     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2834     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
2835
2836     test_status_code(req, 200);
2837
2838     buffer[0] = 0;
2839     size = sizeof(buffer);
2840     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2841     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2842     ok(!strcmp(buffer, "cookie=biscuit"), "got '%s' expected \'cookie=biscuit\'\n", buffer);
2843
2844     InternetCloseHandle(req);
2845     InternetCloseHandle(con);
2846     InternetCloseHandle(ses);
2847 }
2848
2849 static void test_basic_authentication(int port)
2850 {
2851     HINTERNET session, connect, request;
2852     BOOL ret;
2853
2854     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2855     ok(session != NULL, "InternetOpen failed\n");
2856
2857     connect = InternetConnect(session, "localhost", port, "user", "pwd", INTERNET_SERVICE_HTTP, 0, 0);
2858     ok(connect != NULL, "InternetConnect failed\n");
2859
2860     request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, NULL, 0, 0);
2861     ok(request != NULL, "HttpOpenRequest failed\n");
2862
2863     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2864     ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2865
2866     test_status_code(request, 200);
2867     test_request_flags(request, 0);
2868
2869     InternetCloseHandle(request);
2870     InternetCloseHandle(connect);
2871     InternetCloseHandle(session);
2872 }
2873
2874 static void test_premature_disconnect(int port)
2875 {
2876     HINTERNET session, connect, request;
2877     DWORD err;
2878     BOOL ret;
2879
2880     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2881     ok(session != NULL, "InternetOpen failed\n");
2882
2883     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2884     ok(connect != NULL, "InternetConnect failed\n");
2885
2886     request = HttpOpenRequest(connect, NULL, "/premature_disconnect", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2887     ok(request != NULL, "HttpOpenRequest failed\n");
2888
2889     SetLastError(0xdeadbeef);
2890     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2891     err = GetLastError();
2892     todo_wine ok(!ret, "HttpSendRequest succeeded\n");
2893     todo_wine ok(err == ERROR_HTTP_INVALID_SERVER_RESPONSE, "got %u\n", err);
2894
2895     InternetCloseHandle(request);
2896     InternetCloseHandle(connect);
2897     InternetCloseHandle(session);
2898 }
2899
2900 static void test_invalid_response_headers(int port)
2901 {
2902     HINTERNET session, connect, request;
2903     DWORD size;
2904     BOOL ret;
2905     char buffer[256];
2906
2907     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2908     ok(session != NULL, "InternetOpen failed\n");
2909
2910     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2911     ok(connect != NULL, "InternetConnect failed\n");
2912
2913     request = HttpOpenRequest(connect, NULL, "/testE", NULL, NULL, NULL, 0, 0);
2914     ok(request != NULL, "HttpOpenRequest failed\n");
2915
2916     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2917     ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2918
2919     test_status_code(request, 401);
2920     test_request_flags(request, 0);
2921
2922     buffer[0] = 0;
2923     size = sizeof(buffer);
2924     ret = HttpQueryInfo( request, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2925     ok(ret, "HttpQueryInfo failed\n");
2926     ok(!strcmp(buffer, "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"),
2927        "headers wrong \"%s\"\n", buffer);
2928
2929     buffer[0] = 0;
2930     size = sizeof(buffer);
2931     ret = HttpQueryInfo( request, HTTP_QUERY_SERVER, buffer, &size, NULL);
2932     ok(ret, "HttpQueryInfo failed\n");
2933     ok(!strcmp(buffer, "winetest"), "server wrong \"%s\"\n", buffer);
2934
2935     InternetCloseHandle(request);
2936     InternetCloseHandle(connect);
2937     InternetCloseHandle(session);
2938 }
2939
2940 static void test_response_without_headers(int port)
2941 {
2942     HINTERNET hi, hc, hr;
2943     DWORD r, count, size;
2944     char buffer[1024];
2945
2946     SetLastError(0xdeadbeef);
2947     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2948     ok(hi != NULL, "open failed %u\n", GetLastError());
2949
2950     SetLastError(0xdeadbeef);
2951     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2952     ok(hc != NULL, "connect failed %u\n", GetLastError());
2953
2954     SetLastError(0xdeadbeef);
2955     hr = HttpOpenRequest(hc, NULL, "/testG", NULL, NULL, NULL, 0, 0);
2956     ok(hr != NULL, "HttpOpenRequest failed %u\n", GetLastError());
2957
2958     test_request_flags(hr, INTERNET_REQFLAG_NO_HEADERS);
2959
2960     SetLastError(0xdeadbeef);
2961     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2962     ok(r, "HttpSendRequest failed %u\n", GetLastError());
2963
2964     test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2965
2966     count = 0;
2967     memset(buffer, 0, sizeof buffer);
2968     SetLastError(0xdeadbeef);
2969     r = InternetReadFile(hr, buffer, sizeof buffer, &count);
2970     ok(r, "InternetReadFile failed %u\n", GetLastError());
2971     todo_wine ok(count == sizeof page1 - 1, "count was wrong\n");
2972     todo_wine ok(!memcmp(buffer, page1, sizeof page1), "http data wrong\n");
2973
2974     test_status_code(hr, 200);
2975     test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2976
2977     buffer[0] = 0;
2978     size = sizeof(buffer);
2979     SetLastError(0xdeadbeef);
2980     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, NULL );
2981     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2982     ok(!strcmp(buffer, "OK"), "expected OK got: \"%s\"\n", buffer);
2983
2984     buffer[0] = 0;
2985     size = sizeof(buffer);
2986     SetLastError(0xdeadbeef);
2987     r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, NULL);
2988     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2989     ok(!strcmp(buffer, "HTTP/1.0"), "expected HTTP/1.0 got: \"%s\"\n", buffer);
2990
2991     buffer[0] = 0;
2992     size = sizeof(buffer);
2993     SetLastError(0xdeadbeef);
2994     r = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2995     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2996     ok(!strcmp(buffer, "HTTP/1.0 200 OK"), "raw headers wrong: \"%s\"\n", buffer);
2997
2998     InternetCloseHandle(hr);
2999     InternetCloseHandle(hc);
3000     InternetCloseHandle(hi);
3001 }
3002
3003 static void test_HttpQueryInfo(int port)
3004 {
3005     HINTERNET hi, hc, hr;
3006     DWORD size, index;
3007     char buffer[1024];
3008     BOOL ret;
3009
3010     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
3011     ok(hi != NULL, "InternetOpen failed\n");
3012
3013     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3014     ok(hc != NULL, "InternetConnect failed\n");
3015
3016     hr = HttpOpenRequest(hc, NULL, "/testD", NULL, NULL, NULL, 0, 0);
3017     ok(hr != NULL, "HttpOpenRequest failed\n");
3018
3019     ret = HttpSendRequest(hr, NULL, 0, NULL, 0);
3020     ok(ret, "HttpSendRequest failed\n");
3021
3022     index = 0;
3023     size = sizeof(buffer);
3024     ret = HttpQueryInfo(hr, HTTP_QUERY_HOST | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, &index);
3025     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3026     ok(index == 1, "expected 1 got %u\n", index);
3027
3028     index = 0;
3029     size = sizeof(buffer);
3030     ret = HttpQueryInfo(hr, HTTP_QUERY_DATE | HTTP_QUERY_FLAG_SYSTEMTIME, buffer, &size, &index);
3031     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3032     ok(index == 1, "expected 1 got %u\n", index);
3033
3034     index = 0;
3035     size = sizeof(buffer);
3036     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3037     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3038     ok(index == 0, "expected 0 got %u\n", index);
3039
3040     size = sizeof(buffer);
3041     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3042     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3043     ok(index == 0, "expected 0 got %u\n", index);
3044
3045     index = 0xdeadbeef; /* invalid start index */
3046     size = sizeof(buffer);
3047     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3048     todo_wine ok(!ret, "HttpQueryInfo should have failed\n");
3049     todo_wine ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
3050        "Expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", GetLastError());
3051
3052     index = 0;
3053     size = sizeof(buffer);
3054     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS_CRLF, buffer, &size, &index);
3055     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3056     ok(index == 0, "expected 0 got %u\n", index);
3057
3058     size = sizeof(buffer);
3059     ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, &index);
3060     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3061     ok(index == 0, "expected 0 got %u\n", index);
3062
3063     size = sizeof(buffer);
3064     ret = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, &index);
3065     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3066     ok(index == 0, "expected 0 got %u\n", index);
3067
3068     test_status_code(hr, 200);
3069
3070     index = 0xdeadbeef;
3071     size = sizeof(buffer);
3072     ret = HttpQueryInfo(hr, HTTP_QUERY_FORWARDED, buffer, &size, &index);
3073     ok(!ret, "HttpQueryInfo succeeded\n");
3074     ok(index == 0xdeadbeef, "expected 0xdeadbeef got %u\n", index);
3075
3076     index = 0;
3077     size = sizeof(buffer);
3078     ret = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &size, &index);
3079     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3080     ok(index == 1, "expected 1 got %u\n", index);
3081
3082     index = 0;
3083     size = sizeof(buffer);
3084     strcpy(buffer, "Server");
3085     ret = HttpQueryInfo(hr, HTTP_QUERY_CUSTOM, buffer, &size, &index);
3086     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3087     ok(index == 1, "expected 1 got %u\n", index);
3088
3089     index = 0;
3090     size = sizeof(buffer);
3091     ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
3092     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3093     ok(index == 1, "expected 1 got %u\n", index);
3094
3095     size = sizeof(buffer);
3096     ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
3097     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3098     ok(index == 2, "expected 2 got %u\n", index);
3099
3100     InternetCloseHandle(hr);
3101     InternetCloseHandle(hc);
3102     InternetCloseHandle(hi);
3103 }
3104
3105 static void test_options(int port)
3106 {
3107     HINTERNET ses, con, req;
3108     DWORD size, error;
3109     DWORD_PTR ctx;
3110     BOOL ret;
3111
3112     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
3113     ok(ses != NULL, "InternetOpen failed\n");
3114
3115     SetLastError(0xdeadbeef);
3116     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, 0);
3117     error = GetLastError();
3118     ok(!ret, "InternetSetOption succeeded\n");
3119     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3120
3121     SetLastError(0xdeadbeef);
3122     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, sizeof(ctx));
3123     ok(!ret, "InternetSetOption succeeded\n");
3124     error = GetLastError();
3125     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3126
3127     SetLastError(0xdeadbeef);
3128     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, 0);
3129     ok(!ret, "InternetSetOption succeeded\n");
3130     error = GetLastError();
3131     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3132
3133     ctx = 1;
3134     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3135     ok(ret, "InternetSetOption failed %u\n", GetLastError());
3136
3137     SetLastError(0xdeadbeef);
3138     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, NULL);
3139     error = GetLastError();
3140     ok(!ret, "InternetQueryOption succeeded\n");
3141     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3142
3143     SetLastError(0xdeadbeef);
3144     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, NULL);
3145     error = GetLastError();
3146     ok(!ret, "InternetQueryOption succeeded\n");
3147     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3148
3149     size = 0;
3150     SetLastError(0xdeadbeef);
3151     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, &size);
3152     error = GetLastError();
3153     ok(!ret, "InternetQueryOption succeeded\n");
3154     ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
3155
3156     size = sizeof(ctx);
3157     SetLastError(0xdeadbeef);
3158     ret = InternetQueryOption(NULL, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3159     error = GetLastError();
3160     ok(!ret, "InternetQueryOption succeeded\n");
3161     ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE, got %u\n", error);
3162
3163     ctx = 0xdeadbeef;
3164     size = sizeof(ctx);
3165     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3166     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3167     ok(ctx == 1, "expected 1 got %lu\n", ctx);
3168
3169     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3170     ok(con != NULL, "InternetConnect failed\n");
3171
3172     ctx = 0xdeadbeef;
3173     size = sizeof(ctx);
3174     ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3175     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3176     ok(ctx == 0, "expected 0 got %lu\n", ctx);
3177
3178     ctx = 2;
3179     ret = InternetSetOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3180     ok(ret, "InternetSetOption failed %u\n", GetLastError());
3181
3182     ctx = 0xdeadbeef;
3183     size = sizeof(ctx);
3184     ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3185     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3186     ok(ctx == 2, "expected 2 got %lu\n", ctx);
3187
3188     req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
3189     ok(req != NULL, "HttpOpenRequest failed\n");
3190
3191     ctx = 0xdeadbeef;
3192     size = sizeof(ctx);
3193     ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3194     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3195     ok(ctx == 0, "expected 0 got %lu\n", ctx);
3196
3197     ctx = 3;
3198     ret = InternetSetOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3199     ok(ret, "InternetSetOption failed %u\n", GetLastError());
3200
3201     ctx = 0xdeadbeef;
3202     size = sizeof(ctx);
3203     ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3204     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3205     ok(ctx == 3, "expected 3 got %lu\n", ctx);
3206
3207     /* INTERNET_OPTION_PROXY */
3208     SetLastError(0xdeadbeef);
3209     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, NULL);
3210     error = GetLastError();
3211     ok(!ret, "InternetQueryOption succeeded\n");
3212     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3213
3214     SetLastError(0xdeadbeef);
3215     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, &ctx, NULL);
3216     error = GetLastError();
3217     ok(!ret, "InternetQueryOption succeeded\n");
3218     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3219
3220     size = 0;
3221     SetLastError(0xdeadbeef);
3222     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, &size);
3223     error = GetLastError();
3224     ok(!ret, "InternetQueryOption succeeded\n");
3225     ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
3226     ok(size >= sizeof(INTERNET_PROXY_INFOA), "expected size to be greater or equal to the struct size\n");
3227
3228     InternetCloseHandle(req);
3229     InternetCloseHandle(con);
3230     InternetCloseHandle(ses);
3231 }
3232
3233 static void test_http_connection(void)
3234 {
3235     struct server_info si;
3236     HANDLE hThread;
3237     DWORD id = 0, r;
3238
3239     si.hEvent = CreateEvent(NULL, 0, 0, NULL);
3240     si.port = 7531;
3241
3242     hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id);
3243     ok( hThread != NULL, "create thread failed\n");
3244
3245     r = WaitForSingleObject(si.hEvent, 10000);
3246     ok (r == WAIT_OBJECT_0, "failed to start wininet test server\n");
3247     if (r != WAIT_OBJECT_0)
3248         return;
3249
3250     test_basic_request(si.port, "GET", "/test1");
3251     test_proxy_indirect(si.port);
3252     test_proxy_direct(si.port);
3253     test_header_handling_order(si.port);
3254     test_basic_request(si.port, "POST", "/test5");
3255     test_basic_request(si.port, "RPC_IN_DATA", "/test5");
3256     test_basic_request(si.port, "RPC_OUT_DATA", "/test5");
3257     test_basic_request(si.port, "GET", "/test6");
3258     test_basic_request(si.port, "GET", "/testF");
3259     test_connection_header(si.port);
3260     test_http1_1(si.port);
3261     test_cookie_header(si.port);
3262     test_basic_authentication(si.port);
3263     test_invalid_response_headers(si.port);
3264     test_response_without_headers(si.port);
3265     test_HttpQueryInfo(si.port);
3266     test_HttpSendRequestW(si.port);
3267     test_last_error(si.port);
3268     test_options(si.port);
3269     test_no_content(si.port);
3270     test_conn_close(si.port);
3271     test_no_cache(si.port);
3272     test_premature_disconnect(si.port);
3273
3274     /* send the basic request again to shutdown the server thread */
3275     test_basic_request(si.port, "GET", "/quit");
3276
3277     r = WaitForSingleObject(hThread, 3000);
3278     ok( r == WAIT_OBJECT_0, "thread wait failed\n");
3279     CloseHandle(hThread);
3280 }
3281
3282 static void release_cert_info(INTERNET_CERTIFICATE_INFOA *info)
3283 {
3284     LocalFree(info->lpszSubjectInfo);
3285     LocalFree(info->lpszIssuerInfo);
3286     LocalFree(info->lpszProtocolName);
3287     LocalFree(info->lpszSignatureAlgName);
3288     LocalFree(info->lpszEncryptionAlgName);
3289 }
3290
3291 static void test_cert_struct(HINTERNET req)
3292 {
3293     INTERNET_CERTIFICATE_INFOA info;
3294     DWORD size;
3295     BOOL res;
3296
3297     static const char ex_subject[] =
3298         "US\r\n"
3299         "Minnesota\r\n"
3300         "Saint Paul\r\n"
3301         "WineHQ\r\n"
3302         "test.winehq.org\r\n"
3303         "webmaster@winehq.org";
3304
3305     static const char ex_issuer[] =
3306         "US\r\n"
3307         "Minnesota\r\n"
3308         "WineHQ\r\n"
3309         "test.winehq.org\r\n"
3310         "webmaster@winehq.org";
3311
3312     memset(&info, 0x5, sizeof(info));
3313
3314     size = sizeof(info);
3315     res = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT, &info, &size);
3316     ok(res, "InternetQueryOption failed: %u\n", GetLastError());
3317     ok(size == sizeof(info), "size = %u\n", size);
3318
3319     ok(!strcmp(info.lpszSubjectInfo, ex_subject), "lpszSubjectInfo = %s\n", info.lpszSubjectInfo);
3320     ok(!strcmp(info.lpszIssuerInfo, ex_issuer), "lpszIssuerInfo = %s\n", info.lpszIssuerInfo);
3321     ok(!info.lpszSignatureAlgName, "lpszSignatureAlgName = %s\n", info.lpszSignatureAlgName);
3322     ok(!info.lpszEncryptionAlgName, "lpszEncryptionAlgName = %s\n", info.lpszEncryptionAlgName);
3323     ok(!info.lpszProtocolName, "lpszProtocolName = %s\n", info.lpszProtocolName);
3324     ok(info.dwKeySize == 128, "dwKeySize = %u\n", info.dwKeySize);
3325
3326     release_cert_info(&info);
3327 }
3328
3329 #define test_security_info(a,b,c) _test_security_info(__LINE__,a,b,c)
3330 static void _test_security_info(unsigned line, const char *urlc, DWORD error, DWORD ex_flags)
3331 {
3332     char url[INTERNET_MAX_URL_LENGTH];
3333     const CERT_CHAIN_CONTEXT *chain;
3334     DWORD flags;
3335     BOOL res;
3336
3337     if(!pInternetGetSecurityInfoByURLA) {
3338         win_skip("pInternetGetSecurityInfoByURLA not available\n");
3339         return;
3340     }
3341
3342     strcpy(url, urlc);
3343     chain = (void*)0xdeadbeef;
3344     flags = 0xdeadbeef;
3345     res = pInternetGetSecurityInfoByURLA(url, &chain, &flags);
3346     if(error == ERROR_SUCCESS) {
3347         ok_(__FILE__,line)(res, "InternetGetSecurityInfoByURLA failed: %u\n", GetLastError());
3348         ok_(__FILE__,line)(chain != NULL, "chain = NULL\n");
3349         ok_(__FILE__,line)(flags == ex_flags, "flags = %x\n", flags);
3350         CertFreeCertificateChain(chain);
3351     }else {
3352         ok_(__FILE__,line)(!res && GetLastError() == error,
3353                            "InternetGetSecurityInfoByURLA returned: %x(%u), exected %u\n", res, GetLastError(), error);
3354     }
3355 }
3356
3357 #define test_secflags_option(a,b) _test_secflags_option(__LINE__,a,b)
3358 static void _test_secflags_option(unsigned line, HINTERNET req, DWORD ex_flags)
3359 {
3360     DWORD flags, size;
3361     BOOL res;
3362
3363     flags = 0xdeadbeef;
3364     size = sizeof(flags);
3365     res = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3366     ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3367     ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS flags = %x, expected %x\n", flags, ex_flags);
3368
3369     /* Option 98 is undocumented and seems to be the same as INTERNET_OPTION_SECURITY_FLAGS */
3370     flags = 0xdeadbeef;
3371     size = sizeof(flags);
3372     res = InternetQueryOptionW(req, 98, &flags, &size);
3373     ok_(__FILE__,line)(res, "InternetQueryOptionW(98) failed: %u\n", GetLastError());
3374     ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS(98) flags = %x, expected %x\n", flags, ex_flags);
3375 }
3376
3377 #define set_secflags(a,b,c) _set_secflags(__LINE__,a,b,c)
3378 static void _set_secflags(unsigned line, HINTERNET req, BOOL use_undoc, DWORD flags)
3379 {
3380     BOOL res;
3381
3382     res = InternetSetOptionW(req, use_undoc ? 99 : INTERNET_OPTION_SECURITY_FLAGS, &flags, sizeof(flags));
3383     ok_(__FILE__,line)(res, "InternetSetOption(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3384 }
3385
3386 static void test_security_flags(void)
3387 {
3388     HINTERNET ses, conn, req;
3389     DWORD size, flags;
3390     char buf[100];
3391     BOOL res;
3392
3393     trace("Testing security flags...\n");
3394
3395     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
3396
3397     ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3398     ok(ses != NULL, "InternetOpen failed\n");
3399
3400     pInternetSetStatusCallbackA(ses, &callback);
3401
3402     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3403     conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3404                             NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3405     ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3406     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3407
3408     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3409     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3410                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3411                           0xdeadbeef);
3412     ok(req != NULL, "HttpOpenRequest failed\n");
3413     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3414
3415     flags = 0xdeadbeef;
3416     size = sizeof(flags);
3417     res = InternetQueryOptionW(req, 98, &flags, &size);
3418     if(!res && GetLastError() == ERROR_INVALID_PARAMETER) {
3419         win_skip("Incomplete security flags support, skipping\n");
3420
3421         close_async_handle(ses, hCompleteEvent, 2);
3422         CloseHandle(hCompleteEvent);
3423         return;
3424     }
3425
3426     test_secflags_option(req, 0);
3427     test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3428
3429     set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_REVOCATION);
3430     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION);
3431
3432     set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3433     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3434
3435     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3436     test_secflags_option(req, SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3437
3438     flags = SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_SECURE;
3439     res = InternetSetOptionW(req, 99, &flags, sizeof(flags));
3440     ok(!res && GetLastError() == ERROR_INTERNET_OPTION_NOT_SETTABLE, "InternetSetOption(99) failed: %u\n", GetLastError());
3441
3442     SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
3443     SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
3444     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3445     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3446     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3447     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3448     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3449     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3450     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3451     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3452     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3453
3454     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3455     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3456
3457     WaitForSingleObject(hCompleteEvent, INFINITE);
3458     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3459
3460     todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
3461     todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
3462     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3463     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3464     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3465     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3466     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3467     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3468     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3469     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3470     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3471
3472     test_request_flags(req, 0);
3473     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3474             |SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_STRENGTH_STRONG);
3475
3476     res = InternetReadFile(req, buf, sizeof(buf), &size);
3477     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3478     ok(size, "size = 0\n");
3479
3480     /* Collect all existing persistent connections */
3481     res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3482     ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3483
3484     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3485     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3486                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3487                           0xdeadbeef);
3488     ok(req != NULL, "HttpOpenRequest failed\n");
3489     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3490
3491     flags = INTERNET_ERROR_MASK_COMBINED_SEC_CERT|INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY;
3492     res = InternetSetOption(req, INTERNET_OPTION_ERROR_MASK, (void*)&flags, sizeof(flags));
3493     ok(res, "InternetQueryOption(INTERNET_OPTION_ERROR_MASK failed: %u\n", GetLastError());
3494
3495     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3496     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3497     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3498     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3499     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3500     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3501     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3502
3503     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3504     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3505
3506     WaitForSingleObject(hCompleteEvent, INFINITE);
3507     ok(req_error == ERROR_INTERNET_SEC_CERT_REV_FAILED || broken(req_error == ERROR_INTERNET_SEC_CERT_ERRORS),
3508        "req_error = %d\n", req_error);
3509
3510     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3511     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3512     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3513     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3514     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3515     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3516     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3517
3518     if(req_error != ERROR_INTERNET_SEC_CERT_REV_FAILED) {
3519         win_skip("Unexpected cert errors, skipping security flags tests\n");
3520
3521         close_async_handle(ses, hCompleteEvent, 3);
3522         CloseHandle(hCompleteEvent);
3523         return;
3524     }
3525
3526     size = sizeof(buf);
3527     res = HttpQueryInfoA(req, HTTP_QUERY_CONTENT_ENCODING, buf, &size, 0);
3528     ok(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfoA(HTTP_QUERY_CONTENT_ENCODING) failed: %u\n", GetLastError());
3529
3530     test_request_flags(req, 8);
3531     test_secflags_option(req, 0x800000);
3532
3533     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_REVOCATION);
3534     test_secflags_option(req, 0x800000|SECURITY_FLAG_IGNORE_REVOCATION);
3535
3536     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3537     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3538     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3539     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3540     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3541     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3542     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3543
3544     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3545     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3546
3547     WaitForSingleObject(hCompleteEvent, INFINITE);
3548     ok(req_error == ERROR_INTERNET_SEC_CERT_ERRORS, "req_error = %d\n", req_error);
3549
3550     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3551     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3552     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3553     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3554     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3555     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3556     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3557
3558     test_request_flags(req, INTERNET_REQFLAG_NO_HEADERS);
3559     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3560     test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3561
3562     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3563     test_secflags_option(req, 0x1800000|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3564             |SECURITY_FLAG_IGNORE_REVOCATION);
3565     test_http_version(req);
3566
3567     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3568     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3569     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3570     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3571     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3572     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3573     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3574     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3575     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3576
3577     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3578     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3579
3580     WaitForSingleObject(hCompleteEvent, INFINITE);
3581     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3582
3583     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3584     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3585     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3586     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3587     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3588     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3589     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3590     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3591     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3592
3593     test_request_flags(req, 0);
3594     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION
3595             |SECURITY_FLAG_STRENGTH_STRONG|0x1800000);
3596
3597     test_cert_struct(req);
3598     test_security_info("https://test.winehq.org/data/some_file.html?q", 0, 0x1800000);
3599
3600     res = InternetReadFile(req, buf, sizeof(buf), &size);
3601     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3602     ok(size, "size = 0\n");
3603
3604     close_async_handle(ses, hCompleteEvent, 3);
3605
3606     /* Collect all existing persistent connections */
3607     res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3608     ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3609
3610     /* Make another request, without setting security flags */
3611
3612     ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3613     ok(ses != NULL, "InternetOpen failed\n");
3614
3615     pInternetSetStatusCallbackA(ses, &callback);
3616
3617     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3618     conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3619                             NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3620     ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3621     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3622
3623     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3624     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3625                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3626                           0xdeadbeef);
3627     ok(req != NULL, "HttpOpenRequest failed\n");
3628     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3629
3630     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3631            |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3632     test_http_version(req);
3633
3634     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3635     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3636     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3637     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3638     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3639     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3640     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3641     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3642
3643     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3644     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3645
3646     WaitForSingleObject(hCompleteEvent, INFINITE);
3647     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3648
3649     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3650     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3651     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3652     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3653     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3654     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3655     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3656     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3657
3658     test_request_flags(req, 0);
3659     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3660             |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3661
3662     res = InternetReadFile(req, buf, sizeof(buf), &size);
3663     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3664     ok(size, "size = 0\n");
3665
3666     close_async_handle(ses, hCompleteEvent, 2);
3667
3668     CloseHandle(hCompleteEvent);
3669
3670     test_security_info("http://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3671     test_security_info("file:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3672     test_security_info("xxx:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3673 }
3674
3675 static void test_secure_connection(void)
3676 {
3677     static const WCHAR gizmo5[] = {'G','i','z','m','o','5',0};
3678     static const WCHAR testbot[] = {'t','e','s','t','b','o','t','.','w','i','n','e','h','q','.','o','r','g',0};
3679     static const WCHAR get[] = {'G','E','T',0};
3680     static const WCHAR slash[] = {'/',0};
3681     HINTERNET ses, con, req;
3682     DWORD size, flags;
3683     INTERNET_CERTIFICATE_INFOA *certificate_structA = NULL;
3684     INTERNET_CERTIFICATE_INFOW *certificate_structW = NULL;
3685     BOOL ret;
3686
3687     ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3688     ok(ses != NULL, "InternetOpen failed\n");
3689
3690     con = InternetConnect(ses, "testbot.winehq.org",
3691                           INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3692                           INTERNET_SERVICE_HTTP, 0, 0);
3693     ok(con != NULL, "InternetConnect failed\n");
3694
3695     req = HttpOpenRequest(con, "GET", "/", NULL, NULL, NULL,
3696                           INTERNET_FLAG_SECURE, 0);
3697     ok(req != NULL, "HttpOpenRequest failed\n");
3698
3699     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3700     ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3701
3702     size = sizeof(flags);
3703     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3704     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3705     ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3706
3707     ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3708                                NULL, &size);
3709     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3710     ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3711     certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3712     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3713                               certificate_structA, &size);
3714     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3715     if (ret)
3716     {
3717         ok(certificate_structA->lpszSubjectInfo &&
3718            strlen(certificate_structA->lpszSubjectInfo) > 1,
3719            "expected a non-empty subject name\n");
3720         ok(certificate_structA->lpszIssuerInfo &&
3721            strlen(certificate_structA->lpszIssuerInfo) > 1,
3722            "expected a non-empty issuer name\n");
3723         ok(!certificate_structA->lpszSignatureAlgName,
3724            "unexpected signature algorithm name\n");
3725         ok(!certificate_structA->lpszEncryptionAlgName,
3726            "unexpected encryption algorithm name\n");
3727         ok(!certificate_structA->lpszProtocolName,
3728            "unexpected protocol name\n");
3729         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3730         release_cert_info(certificate_structA);
3731     }
3732     HeapFree(GetProcessHeap(), 0, certificate_structA);
3733
3734     /* Querying the same option through InternetQueryOptionW still results in
3735      * ASCII strings being returned.
3736      */
3737     size = 0;
3738     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3739                                NULL, &size);
3740     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3741     ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3742     certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3743     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3744                               certificate_structW, &size);
3745     certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3746     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3747     if (ret)
3748     {
3749         ok(certificate_structA->lpszSubjectInfo &&
3750            strlen(certificate_structA->lpszSubjectInfo) > 1,
3751            "expected a non-empty subject name\n");
3752         ok(certificate_structA->lpszIssuerInfo &&
3753            strlen(certificate_structA->lpszIssuerInfo) > 1,
3754            "expected a non-empty issuer name\n");
3755         ok(!certificate_structA->lpszSignatureAlgName,
3756            "unexpected signature algorithm name\n");
3757         ok(!certificate_structA->lpszEncryptionAlgName,
3758            "unexpected encryption algorithm name\n");
3759         ok(!certificate_structA->lpszProtocolName,
3760            "unexpected protocol name\n");
3761         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3762         release_cert_info(certificate_structA);
3763     }
3764     HeapFree(GetProcessHeap(), 0, certificate_structW);
3765
3766     InternetCloseHandle(req);
3767     InternetCloseHandle(con);
3768     InternetCloseHandle(ses);
3769
3770     /* Repeating the tests with the W functions has the same result: */
3771     ses = InternetOpenW(gizmo5, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3772     ok(ses != NULL, "InternetOpen failed\n");
3773
3774     con = InternetConnectW(ses, testbot,
3775                           INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3776                           INTERNET_SERVICE_HTTP, 0, 0);
3777     ok(con != NULL, "InternetConnect failed\n");
3778
3779     req = HttpOpenRequestW(con, get, slash, NULL, NULL, NULL,
3780                           INTERNET_FLAG_SECURE, 0);
3781     ok(req != NULL, "HttpOpenRequest failed\n");
3782
3783     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3784     ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3785
3786     size = sizeof(flags);
3787     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3788     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3789     ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3790
3791     ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3792                                NULL, &size);
3793     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3794     ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3795     certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3796     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3797                                certificate_structA, &size);
3798     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3799     if (ret)
3800     {
3801         ok(certificate_structA->lpszSubjectInfo &&
3802            strlen(certificate_structA->lpszSubjectInfo) > 1,
3803            "expected a non-empty subject name\n");
3804         ok(certificate_structA->lpszIssuerInfo &&
3805            strlen(certificate_structA->lpszIssuerInfo) > 1,
3806            "expected a non-empty issuer name\n");
3807         ok(!certificate_structA->lpszSignatureAlgName,
3808            "unexpected signature algorithm name\n");
3809         ok(!certificate_structA->lpszEncryptionAlgName,
3810            "unexpected encryption algorithm name\n");
3811         ok(!certificate_structA->lpszProtocolName,
3812            "unexpected protocol name\n");
3813         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3814         release_cert_info(certificate_structA);
3815     }
3816     HeapFree(GetProcessHeap(), 0, certificate_structA);
3817
3818     /* Again, querying the same option through InternetQueryOptionW still
3819      * results in ASCII strings being returned.
3820      */
3821     size = 0;
3822     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3823                                NULL, &size);
3824     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3825     ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3826     certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3827     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3828                                certificate_structW, &size);
3829     certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3830     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3831     if (ret)
3832     {
3833         ok(certificate_structA->lpszSubjectInfo &&
3834            strlen(certificate_structA->lpszSubjectInfo) > 1,
3835            "expected a non-empty subject name\n");
3836         ok(certificate_structA->lpszIssuerInfo &&
3837            strlen(certificate_structA->lpszIssuerInfo) > 1,
3838            "expected a non-empty issuer name\n");
3839         ok(!certificate_structA->lpszSignatureAlgName,
3840            "unexpected signature algorithm name\n");
3841         ok(!certificate_structA->lpszEncryptionAlgName,
3842            "unexpected encryption algorithm name\n");
3843         ok(!certificate_structA->lpszProtocolName,
3844            "unexpected protocol name\n");
3845         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3846         release_cert_info(certificate_structA);
3847     }
3848     HeapFree(GetProcessHeap(), 0, certificate_structW);
3849
3850     InternetCloseHandle(req);
3851     InternetCloseHandle(con);
3852     InternetCloseHandle(ses);
3853 }
3854
3855 static void test_user_agent_header(void)
3856 {
3857     HINTERNET ses, con, req;
3858     DWORD size, err;
3859     char buffer[64];
3860     BOOL ret;
3861
3862     ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3863     ok(ses != NULL, "InternetOpen failed\n");
3864
3865     con = InternetConnect(ses, "test.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3866     ok(con != NULL, "InternetConnect failed\n");
3867
3868     req = HttpOpenRequest(con, "GET", "/tests/hello.html", "HTTP/1.0", NULL, NULL, 0, 0);
3869     ok(req != NULL, "HttpOpenRequest failed\n");
3870
3871     size = sizeof(buffer);
3872     ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3873     err = GetLastError();
3874     ok(!ret, "HttpQueryInfo succeeded\n");
3875     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3876
3877     ret = HttpAddRequestHeaders(req, "User-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3878     ok(ret, "HttpAddRequestHeaders succeeded\n");
3879
3880     size = sizeof(buffer);
3881     ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3882     err = GetLastError();
3883     ok(ret, "HttpQueryInfo failed\n");
3884     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3885
3886     InternetCloseHandle(req);
3887
3888     req = HttpOpenRequest(con, "GET", "/", "HTTP/1.0", NULL, NULL, 0, 0);
3889     ok(req != NULL, "HttpOpenRequest failed\n");
3890
3891     size = sizeof(buffer);
3892     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3893     err = GetLastError();
3894     ok(!ret, "HttpQueryInfo succeeded\n");
3895     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3896
3897     ret = HttpAddRequestHeaders(req, "Accept: audio/*, image/*, text/*\r\nUser-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3898     ok(ret, "HttpAddRequestHeaders failed\n");
3899
3900     buffer[0] = 0;
3901     size = sizeof(buffer);
3902     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3903     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
3904     ok(!strcmp(buffer, "audio/*, image/*, text/*"), "got '%s' expected 'audio/*, image/*, text/*'\n", buffer);
3905
3906     InternetCloseHandle(req);
3907     InternetCloseHandle(con);
3908     InternetCloseHandle(ses);
3909 }
3910
3911 static void test_bogus_accept_types_array(void)
3912 {
3913     HINTERNET ses, con, req;
3914     static const char *types[] = { (const char *)6240, "*/*", "%p", "", (const char *)0xffffffff, "*/*", NULL };
3915     DWORD size, error;
3916     char buffer[32];
3917     BOOL ret;
3918
3919     ses = InternetOpen("MERONG(0.9/;p)", INTERNET_OPEN_TYPE_DIRECT, "", "", 0);
3920     con = InternetConnect(ses, "www.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3921     req = HttpOpenRequest(con, "POST", "/post/post_action.php", "HTTP/1.0", "", types, INTERNET_FLAG_FORMS_SUBMIT, 0);
3922
3923     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
3924
3925     buffer[0] = 0;
3926     size = sizeof(buffer);
3927     SetLastError(0xdeadbeef);
3928     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3929     error = GetLastError();
3930     ok(!ret || broken(ret), "HttpQueryInfo succeeded\n");
3931     if (!ret) ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", error);
3932     ok(broken(!strcmp(buffer, ", */*, %p, , , */*")) /* IE6 */ ||
3933        broken(!strcmp(buffer, "*/*, %p, */*")) /* IE7/8 */ ||
3934        !strcmp(buffer, ""), "got '%s' expected ''\n", buffer);
3935
3936     InternetCloseHandle(req);
3937     InternetCloseHandle(con);
3938     InternetCloseHandle(ses);
3939 }
3940
3941 struct context
3942 {
3943     HANDLE event;
3944     HINTERNET req;
3945 };
3946
3947 static void WINAPI cb(HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID info, DWORD size)
3948 {
3949     INTERNET_ASYNC_RESULT *result = info;
3950     struct context *ctx = (struct context *)context;
3951
3952     trace("%p 0x%08lx %u %p 0x%08x\n", handle, context, status, info, size);
3953
3954     switch(status) {
3955     case INTERNET_STATUS_REQUEST_COMPLETE:
3956         trace("request handle: 0x%08lx\n", result->dwResult);
3957         ctx->req = (HINTERNET)result->dwResult;
3958         SetEvent(ctx->event);
3959         break;
3960     case INTERNET_STATUS_HANDLE_CLOSING: {
3961         DWORD type = INTERNET_HANDLE_TYPE_CONNECT_HTTP, size = sizeof(type);
3962
3963         if (InternetQueryOption(handle, INTERNET_OPTION_HANDLE_TYPE, &type, &size))
3964             ok(type != INTERNET_HANDLE_TYPE_CONNECT_HTTP, "unexpected callback\n");
3965         SetEvent(ctx->event);
3966         break;
3967     }
3968     case INTERNET_STATUS_NAME_RESOLVED:
3969     case INTERNET_STATUS_CONNECTING_TO_SERVER:
3970     case INTERNET_STATUS_CONNECTED_TO_SERVER: {
3971         char *str = info;
3972         ok(str[0] && str[1], "Got string: %s\n", str);
3973         ok(size == strlen(str)+1, "unexpected size %u\n", size);
3974     }
3975     }
3976 }
3977
3978 static void test_open_url_async(void)
3979 {
3980     BOOL ret;
3981     HINTERNET ses, req;
3982     DWORD size, error;
3983     struct context ctx;
3984     ULONG type;
3985
3986     /* Collect all existing persistent connections */
3987     ret = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3988     ok(ret, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3989
3990     /*
3991      * Some versions of IE6 fail those tests. They pass some notification data as UNICODE string, while
3992      * other versions never do. They also hang of following tests. We disable it for everything older
3993      * than IE7.
3994      */
3995     if(!pInternetGetSecurityInfoByURLA) {
3996         win_skip("Skipping async open on too old wininet version.\n");
3997         return;
3998     }
3999
4000     ctx.req = NULL;
4001     ctx.event = CreateEvent(NULL, TRUE, FALSE, "Z:_home_hans_jaman-installer.exe_ev1");
4002
4003     ses = InternetOpen("AdvancedInstaller", 0, NULL, NULL, INTERNET_FLAG_ASYNC);
4004     ok(ses != NULL, "InternetOpen failed\n");
4005
4006     SetLastError(0xdeadbeef);
4007     ret = InternetSetOptionA(NULL, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
4008     error = GetLastError();
4009     ok(!ret, "InternetSetOptionA succeeded\n");
4010     ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "got %u expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE\n", error);
4011
4012     ret = InternetSetOptionA(ses, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
4013     error = GetLastError();
4014     ok(!ret, "InternetSetOptionA failed\n");
4015     ok(error == ERROR_INTERNET_OPTION_NOT_SETTABLE, "got %u expected ERROR_INTERNET_OPTION_NOT_SETTABLE\n", error);
4016
4017     pInternetSetStatusCallbackW(ses, cb);
4018     ResetEvent(ctx.event);
4019
4020     req = InternetOpenUrl(ses, "http://test.winehq.org", NULL, 0, 0, (DWORD_PTR)&ctx);
4021     ok(!req && GetLastError() == ERROR_IO_PENDING, "InternetOpenUrl failed\n");
4022
4023     WaitForSingleObject(ctx.event, INFINITE);
4024
4025     type = 0;
4026     size = sizeof(type);
4027     ret = InternetQueryOption(ctx.req, INTERNET_OPTION_HANDLE_TYPE, &type, &size);
4028     ok(ret, "InternetQueryOption failed: %u\n", GetLastError());
4029     ok(type == INTERNET_HANDLE_TYPE_HTTP_REQUEST,
4030        "expected INTERNET_HANDLE_TYPE_HTTP_REQUEST, got %u\n", type);
4031
4032     size = 0;
4033     ret = HttpQueryInfo(ctx.req, HTTP_QUERY_RAW_HEADERS_CRLF, NULL, &size, NULL);
4034     ok(!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER, "HttpQueryInfo failed\n");
4035     ok(size > 0, "expected size > 0\n");
4036
4037     ResetEvent(ctx.event);
4038     InternetCloseHandle(ctx.req);
4039     WaitForSingleObject(ctx.event, INFINITE);
4040
4041     InternetCloseHandle(ses);
4042     CloseHandle(ctx.event);
4043 }
4044
4045 enum api
4046 {
4047     internet_connect = 1,
4048     http_open_request,
4049     http_send_request_ex,
4050     internet_writefile,
4051     http_end_request,
4052     internet_close_handle
4053 };
4054
4055 struct notification
4056 {
4057     enum api     function; /* api responsible for notification */
4058     unsigned int status;   /* status received */
4059     int          async;    /* delivered from another thread? */
4060     int          todo;
4061     int          optional;
4062 };
4063
4064 struct info
4065 {
4066     enum api     function;
4067     const struct notification *test;
4068     unsigned int count;
4069     unsigned int index;
4070     HANDLE       wait;
4071     DWORD        thread;
4072     unsigned int line;
4073     DWORD        expect_result;
4074     BOOL         is_aborted;
4075 };
4076
4077 static CRITICAL_SECTION notification_cs;
4078
4079 static void CALLBACK check_notification( HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID buffer, DWORD buflen )
4080 {
4081     BOOL status_ok, function_ok;
4082     struct info *info = (struct info *)context;
4083     unsigned int i;
4084
4085     EnterCriticalSection( &notification_cs );
4086
4087     if(info->is_aborted) {
4088         LeaveCriticalSection(&notification_cs);
4089         return;
4090     }
4091
4092     if (status == INTERNET_STATUS_HANDLE_CREATED)
4093     {
4094         DWORD size = sizeof(struct info *);
4095         HttpQueryInfoA( handle, INTERNET_OPTION_CONTEXT_VALUE, &info, &size, 0 );
4096     }else if(status == INTERNET_STATUS_REQUEST_COMPLETE) {
4097         INTERNET_ASYNC_RESULT *ar = (INTERNET_ASYNC_RESULT*)buffer;
4098
4099         ok(buflen == sizeof(*ar), "unexpected buflen = %d\n", buflen);
4100         if(info->expect_result == ERROR_SUCCESS) {
4101             ok(ar->dwResult == 1, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
4102         }else {
4103             ok(!ar->dwResult, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
4104             ok(ar->dwError == info->expect_result, "ar->dwError = %d, expected %d\n", ar->dwError, info->expect_result);
4105         }
4106     }
4107
4108     i = info->index;
4109     if (i >= info->count)
4110     {
4111         LeaveCriticalSection( &notification_cs );
4112         return;
4113     }
4114
4115     while (info->test[i].status != status &&
4116         (info->test[i].optional || info->test[i].todo) &&
4117         i < info->count - 1 &&
4118         info->test[i].function == info->test[i + 1].function)
4119     {
4120         i++;
4121     }
4122
4123     status_ok   = (info->test[i].status == status);
4124     function_ok = (info->test[i].function == info->function);
4125
4126     if (!info->test[i].todo)
4127     {
4128         ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
4129         ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
4130
4131         if (info->test[i].async)
4132             ok(info->thread != GetCurrentThreadId(), "%u: expected thread %u got %u\n",
4133                info->line, info->thread, GetCurrentThreadId());
4134     }
4135     else
4136     {
4137         todo_wine ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
4138         if (status_ok)
4139             todo_wine ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
4140     }
4141     if (i == info->count - 1 || info->test[i].function != info->test[i + 1].function) SetEvent( info->wait );
4142     info->index = i+1;
4143
4144     LeaveCriticalSection( &notification_cs );
4145 }
4146
4147 static void setup_test( struct info *info, enum api function, unsigned int line, DWORD expect_result )
4148 {
4149     info->function = function;
4150     info->line = line;
4151     info->expect_result = expect_result;
4152 }
4153
4154 struct notification_data
4155 {
4156     const struct notification *test;
4157     const unsigned int count;
4158     const char *method;
4159     const char *host;
4160     const char *path;
4161     const char *data;
4162     BOOL expect_conn_failure;
4163 };
4164
4165 static const struct notification async_send_request_ex_test[] =
4166 {
4167     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
4168     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
4169     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4170     { http_send_request_ex,  INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
4171     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
4172     { http_send_request_ex,  INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
4173     { http_send_request_ex,  INTERNET_STATUS_CONNECTING_TO_SERVER, 1 },
4174     { http_send_request_ex,  INTERNET_STATUS_CONNECTED_TO_SERVER, 1 },
4175     { http_send_request_ex,  INTERNET_STATUS_SENDING_REQUEST, 1 },
4176     { http_send_request_ex,  INTERNET_STATUS_REQUEST_SENT, 1 },
4177     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4178     { internet_writefile,    INTERNET_STATUS_SENDING_REQUEST, 0 },
4179     { internet_writefile,    INTERNET_STATUS_REQUEST_SENT, 0 },
4180     { http_end_request,      INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
4181     { http_end_request,      INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
4182     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4183     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4184     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4185     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4186     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4187 };
4188
4189 static const struct notification async_send_request_ex_test2[] =
4190 {
4191     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
4192     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
4193     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4194     { http_send_request_ex,  INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
4195     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
4196     { http_send_request_ex,  INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
4197     { http_send_request_ex,  INTERNET_STATUS_CONNECTING_TO_SERVER, 1, 1 },
4198     { http_send_request_ex,  INTERNET_STATUS_CONNECTED_TO_SERVER, 1, 1 },
4199     { http_send_request_ex,  INTERNET_STATUS_SENDING_REQUEST, 1 },
4200     { http_send_request_ex,  INTERNET_STATUS_REQUEST_SENT, 1 },
4201     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4202     { http_end_request,      INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
4203     { http_end_request,      INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
4204     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4205     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4206     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4207     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4208     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4209 };
4210
4211 static const struct notification async_send_request_ex_resolve_failure_test[] =
4212 {
4213     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
4214     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
4215     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4216     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1 },
4217     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4218     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4219     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4220     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4221     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4222     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4223     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4224 };
4225
4226 static const struct notification_data notification_data[] = {
4227     {
4228         async_send_request_ex_test,
4229         sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4230         "POST",
4231         "test.winehq.org",
4232         "tests/posttest.php",
4233         "Public ID=codeweavers"
4234     },
4235     {
4236         async_send_request_ex_test2,
4237         sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4238         "POST",
4239         "test.winehq.org",
4240         "tests/posttest.php"
4241     },
4242     {
4243         async_send_request_ex_resolve_failure_test,
4244         sizeof(async_send_request_ex_resolve_failure_test)/sizeof(async_send_request_ex_resolve_failure_test[0]),
4245         "GET",
4246         "brokenhost",
4247         "index.html",
4248         NULL,
4249         TRUE
4250     }
4251 };
4252
4253 static void test_async_HttpSendRequestEx(const struct notification_data *nd)
4254 {
4255     BOOL ret;
4256     HINTERNET ses, req, con;
4257     struct info info;
4258     DWORD size, written, error;
4259     INTERNET_BUFFERSA b;
4260     static const char *accept[2] = {"*/*", NULL};
4261     char buffer[32];
4262
4263     trace("Async HttpSendRequestEx test (%s %s)\n", nd->method, nd->host);
4264
4265     InitializeCriticalSection( &notification_cs );
4266
4267     info.test  = nd->test;
4268     info.count = nd->count;
4269     info.index = 0;
4270     info.wait = CreateEvent( NULL, FALSE, FALSE, NULL );
4271     info.thread = GetCurrentThreadId();
4272     info.is_aborted = FALSE;
4273
4274     ses = InternetOpen( "winetest", 0, NULL, NULL, INTERNET_FLAG_ASYNC );
4275     ok( ses != NULL, "InternetOpen failed\n" );
4276
4277     pInternetSetStatusCallbackA( ses, check_notification );
4278
4279     setup_test( &info, internet_connect, __LINE__, ERROR_SUCCESS );
4280     con = InternetConnect( ses, nd->host, 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, (DWORD_PTR)&info );
4281     ok( con != NULL, "InternetConnect failed %u\n", GetLastError() );
4282
4283     WaitForSingleObject( info.wait, 10000 );
4284
4285     setup_test( &info, http_open_request, __LINE__, ERROR_SUCCESS );
4286     req = HttpOpenRequest( con, nd->method, nd->path, NULL, NULL, accept, 0, (DWORD_PTR)&info );
4287     ok( req != NULL, "HttpOpenRequest failed %u\n", GetLastError() );
4288
4289     WaitForSingleObject( info.wait, 10000 );
4290
4291     if(nd->data) {
4292         memset( &b, 0, sizeof(INTERNET_BUFFERSA) );
4293         b.dwStructSize = sizeof(INTERNET_BUFFERSA);
4294         b.lpcszHeader = "Content-Type: application/x-www-form-urlencoded";
4295         b.dwHeadersLength = strlen( b.lpcszHeader );
4296         b.dwBufferTotal = nd->data ? strlen( nd->data ) : 0;
4297     }
4298
4299     setup_test( &info, http_send_request_ex, __LINE__,
4300             nd->expect_conn_failure ? ERROR_INTERNET_NAME_NOT_RESOLVED : ERROR_SUCCESS );
4301     ret = HttpSendRequestExA( req, nd->data ? &b : NULL, NULL, 0x28, 0 );
4302     ok( !ret && GetLastError() == ERROR_IO_PENDING, "HttpSendRequestExA failed %d %u\n", ret, GetLastError() );
4303
4304     error = WaitForSingleObject( info.wait, 10000 );
4305     if(error != WAIT_OBJECT_0) {
4306         skip("WaitForSingleObject returned %d, assuming DNS problem\n", error);
4307         info.is_aborted = TRUE;
4308         goto abort;
4309     }
4310
4311     size = sizeof(buffer);
4312     SetLastError( 0xdeadbeef );
4313     ret = HttpQueryInfoA( req, HTTP_QUERY_CONTENT_ENCODING, buffer, &size, 0 );
4314     error = GetLastError();
4315     ok( !ret, "HttpQueryInfoA failed %u\n", GetLastError() );
4316     if(nd->expect_conn_failure) {
4317         ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND got %u\n", error );
4318     }else {
4319         todo_wine
4320         ok(error == ERROR_INTERNET_INCORRECT_HANDLE_STATE,
4321             "expected ERROR_INTERNET_INCORRECT_HANDLE_STATE got %u\n", error );
4322     }
4323
4324     if (nd->data)
4325     {
4326         written = 0;
4327         size = strlen( nd->data );
4328         setup_test( &info, internet_writefile, __LINE__, ERROR_SUCCESS );
4329         ret = InternetWriteFile( req, nd->data, size, &written );
4330         ok( ret, "InternetWriteFile failed %u\n", GetLastError() );
4331         ok( written == size, "expected %u got %u\n", written, size );
4332
4333         WaitForSingleObject( info.wait, 10000 );
4334
4335         SetLastError( 0xdeadbeef );
4336         ret = HttpEndRequestA( req, (void *)nd->data, 0x28, 0 );
4337         error = GetLastError();
4338         ok( !ret, "HttpEndRequestA succeeded\n" );
4339         ok( error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got %u\n", error );
4340     }
4341
4342     SetLastError( 0xdeadbeef );
4343     setup_test( &info, http_end_request, __LINE__,
4344             nd->expect_conn_failure ? ERROR_INTERNET_OPERATION_CANCELLED : ERROR_SUCCESS);
4345     ret = HttpEndRequestA( req, NULL, 0x28, 0 );
4346     error = GetLastError();
4347     ok( !ret, "HttpEndRequestA succeeded\n" );
4348     ok( error == ERROR_IO_PENDING, "expected ERROR_IO_PENDING got %u\n", error );
4349
4350     WaitForSingleObject( info.wait, 10000 );
4351
4352     setup_test( &info, internet_close_handle, __LINE__, ERROR_SUCCESS );
4353  abort:
4354     InternetCloseHandle( req );
4355     InternetCloseHandle( con );
4356     InternetCloseHandle( ses );
4357
4358     WaitForSingleObject( info.wait, 10000 );
4359     Sleep(100);
4360     CloseHandle( info.wait );
4361 }
4362
4363 static HINTERNET closetest_session, closetest_req, closetest_conn;
4364 static BOOL closetest_closed;
4365
4366 static void WINAPI closetest_callback(HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetStatus,
4367      LPVOID lpvStatusInformation, DWORD dwStatusInformationLength)
4368 {
4369     DWORD len, type;
4370     BOOL res;
4371
4372     trace("closetest_callback %p: %d\n", hInternet, dwInternetStatus);
4373
4374     ok(hInternet == closetest_session || hInternet == closetest_conn || hInternet == closetest_req,
4375        "Unexpected hInternet %p\n", hInternet);
4376     if(!closetest_closed)
4377         return;
4378
4379     len = sizeof(type);
4380     res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_HANDLE_TYPE, &type, &len);
4381     ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4382        "InternetQueryOptionA(%p INTERNET_OPTION_HANDLE_TYPE) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4383        closetest_req, res, GetLastError());
4384 }
4385
4386 static void test_InternetCloseHandle(void)
4387 {
4388     DWORD len, flags;
4389     BOOL res;
4390
4391     closetest_session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
4392     ok(closetest_session != NULL,"InternetOpen failed with error %u\n", GetLastError());
4393
4394     pInternetSetStatusCallbackA(closetest_session, closetest_callback);
4395
4396     closetest_conn = InternetConnectA(closetest_session, "source.winehq.org", INTERNET_INVALID_PORT_NUMBER,
4397             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
4398     ok(closetest_conn != NULL,"InternetConnect failed with error %u\n", GetLastError());
4399
4400     closetest_req = HttpOpenRequestA(closetest_conn, "GET", "winegecko.php", NULL, NULL, NULL,
4401             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
4402
4403     res = HttpSendRequestA(closetest_req, NULL, -1, NULL, 0);
4404     ok(!res && (GetLastError() == ERROR_IO_PENDING),
4405        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
4406
4407     test_request_flags(closetest_req, INTERNET_REQFLAG_NO_HEADERS);
4408
4409     res = InternetCloseHandle(closetest_session);
4410     ok(res, "InternetCloseHandle failed: %u\n", GetLastError());
4411     closetest_closed = TRUE;
4412     trace("Closed session handle\n");
4413
4414     res = InternetCloseHandle(closetest_conn);
4415     ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(conn) failed: %x %u\n",
4416        res, GetLastError());
4417
4418     res = InternetCloseHandle(closetest_req);
4419     ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(req) failed: %x %u\n",
4420        res, GetLastError());
4421
4422     len = sizeof(flags);
4423     res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_REQUEST_FLAGS, &flags, &len);
4424     ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4425        "InternetQueryOptionA(%p INTERNET_OPTION_URL) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4426        closetest_req, res, GetLastError());
4427 }
4428
4429 static void test_connection_failure(void)
4430 {
4431     HINTERNET session, connect, request;
4432     DWORD error;
4433     BOOL ret;
4434
4435     session = InternetOpenA("winetest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
4436     ok(session != NULL, "failed to get session handle\n");
4437
4438     connect = InternetConnectA(session, "localhost", 1, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
4439     ok(connect != NULL, "failed to get connection handle\n");
4440
4441     request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, NULL, 0, 0);
4442     ok(request != NULL, "failed to get request handle\n");
4443
4444     SetLastError(0xdeadbeef);
4445     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4446     error = GetLastError();
4447     ok(!ret, "unexpected success\n");
4448     ok(error == ERROR_INTERNET_CANNOT_CONNECT, "wrong error %u\n", error);
4449
4450     InternetCloseHandle(request);
4451     InternetCloseHandle(connect);
4452     InternetCloseHandle(session);
4453 }
4454
4455 static void test_default_service_port(void)
4456 {
4457     HINTERNET session, connect, request;
4458     DWORD error;
4459     BOOL ret;
4460
4461     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
4462     ok(session != NULL, "InternetOpen failed\n");
4463
4464     connect = InternetConnect(session, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER, NULL, NULL,
4465                               INTERNET_SERVICE_HTTP, 0, 0);
4466     ok(connect != NULL, "InternetConnect failed\n");
4467
4468     request = HttpOpenRequest(connect, NULL, "/", NULL, NULL, NULL, INTERNET_FLAG_SECURE, 0);
4469     ok(request != NULL, "HttpOpenRequest failed\n");
4470
4471     SetLastError(0xdeadbeef);
4472     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4473     error = GetLastError();
4474     ok(!ret, "HttpSendRequest succeeded\n");
4475     ok(error == ERROR_INTERNET_SECURITY_CHANNEL_ERROR || error == ERROR_INTERNET_CANNOT_CONNECT,
4476        "got %u\n", error);
4477
4478     InternetCloseHandle(request);
4479     InternetCloseHandle(connect);
4480     InternetCloseHandle(session);
4481 }
4482
4483 static void init_status_tests(void)
4484 {
4485     memset(expect, 0, sizeof(expect));
4486     memset(optional, 0, sizeof(optional));
4487     memset(wine_allow, 0, sizeof(wine_allow));
4488     memset(notified, 0, sizeof(notified));
4489     memset(status_string, 0, sizeof(status_string));
4490
4491 #define STATUS_STRING(status) status_string[status] = #status
4492     STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME);
4493     STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED);
4494     STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER);
4495     STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER);
4496     STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST);
4497     STATUS_STRING(INTERNET_STATUS_REQUEST_SENT);
4498     STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE);
4499     STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED);
4500     STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED);
4501     STATUS_STRING(INTERNET_STATUS_PREFETCH);
4502     STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION);
4503     STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED);
4504     STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED);
4505     STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING);
4506     STATUS_STRING(INTERNET_STATUS_DETECTING_PROXY);
4507     STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE);
4508     STATUS_STRING(INTERNET_STATUS_REDIRECT);
4509     STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE);
4510     STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED);
4511     STATUS_STRING(INTERNET_STATUS_STATE_CHANGE);
4512     STATUS_STRING(INTERNET_STATUS_COOKIE_SENT);
4513     STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED);
4514     STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED);
4515     STATUS_STRING(INTERNET_STATUS_P3P_HEADER);
4516     STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF);
4517     STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY);
4518 #undef STATUS_STRING
4519 }
4520
4521 START_TEST(http)
4522 {
4523     HMODULE hdll;
4524     hdll = GetModuleHandleA("wininet.dll");
4525
4526     if(!GetProcAddress(hdll, "InternetGetCookieExW")) {
4527         win_skip("Too old IE (older than 6.0)\n");
4528         return;
4529     }
4530
4531     pInternetSetStatusCallbackA = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackA");
4532     pInternetSetStatusCallbackW = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackW");
4533     pInternetGetSecurityInfoByURLA = (void*)GetProcAddress(hdll, "InternetGetSecurityInfoByURLA");
4534
4535     init_status_tests();
4536     test_InternetCloseHandle();
4537     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[0]);
4538     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[1]);
4539     InternetReadFile_test(0, &test_data[1]);
4540     first_connection_to_test_url = TRUE;
4541     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[2]);
4542     test_security_flags();
4543     InternetReadFile_test(0, &test_data[2]);
4544     InternetReadFileExA_test(INTERNET_FLAG_ASYNC);
4545     test_open_url_async();
4546     test_async_HttpSendRequestEx(&notification_data[0]);
4547     test_async_HttpSendRequestEx(&notification_data[1]);
4548     test_async_HttpSendRequestEx(&notification_data[2]);
4549     InternetOpenRequest_test();
4550     test_http_cache();
4551     InternetOpenUrlA_test();
4552     HttpHeaders_test();
4553     test_http_connection();
4554     test_secure_connection();
4555     test_user_agent_header();
4556     test_bogus_accept_types_array();
4557     InternetReadFile_chunked_test();
4558     HttpSendRequestEx_test();
4559     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[3]);
4560     test_connection_failure();
4561     test_default_service_port();
4562 }