wininet/tests: Add tests for a prematurely closed connection.
[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: 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\n");
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];
2163     static CHAR username[] = "mike",
2164                 password[] = "1101";
2165
2166     sprintf(buffer, "localhost:%d\n", port);
2167     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_PROXY, buffer, NULL, 0);
2168     ok(hi != NULL, "open failed\n");
2169
2170     /* try connect without authorization */
2171     hc = InternetConnect(hi, "test.winehq.org/", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2172     ok(hc != NULL, "connect failed\n");
2173
2174     hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
2175     ok(hr != NULL, "HttpOpenRequest failed\n");
2176
2177     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2178     ok(r, "HttpSendRequest failed\n");
2179
2180     test_status_code(hr, 407);
2181
2182     /* set the user + password then try again */
2183     todo_wine {
2184     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2185     ok(r, "failed to set user\n");
2186
2187     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_PASSWORD, password, 4);
2188     ok(r, "failed to set password\n");
2189     }
2190
2191     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2192     ok(r, "HttpSendRequest failed\n");
2193     sz = sizeof buffer;
2194     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
2195     ok(r, "HttpQueryInfo failed\n");
2196     todo_wine {
2197     ok(!strcmp(buffer, "200"), "proxy code wrong\n");
2198     }
2199
2200
2201     InternetCloseHandle(hr);
2202     InternetCloseHandle(hc);
2203     InternetCloseHandle(hi);
2204 }
2205
2206 static void test_header_handling_order(int port)
2207 {
2208     static char authorization[] = "Authorization: Basic dXNlcjpwd2Q=";
2209     static char connection[]    = "Connection: Close";
2210
2211     static const char *types[2] = { "*", NULL };
2212     HINTERNET session, connect, request;
2213     DWORD size, status;
2214     BOOL ret;
2215
2216     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2217     ok(session != NULL, "InternetOpen failed\n");
2218
2219     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2220     ok(connect != NULL, "InternetConnect failed\n");
2221
2222     request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2223     ok(request != NULL, "HttpOpenRequest failed\n");
2224
2225     ret = HttpAddRequestHeaders(request, authorization, ~0u, HTTP_ADDREQ_FLAG_ADD);
2226     ok(ret, "HttpAddRequestHeaders failed\n");
2227
2228     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2229     ok(ret, "HttpSendRequest failed\n");
2230
2231     test_status_code(request, 200);
2232     test_request_flags(request, 0);
2233
2234     InternetCloseHandle(request);
2235
2236     request = HttpOpenRequest(connect, NULL, "/test4", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2237     ok(request != NULL, "HttpOpenRequest failed\n");
2238
2239     ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2240     ok(ret, "HttpSendRequest failed\n");
2241
2242     status = 0;
2243     size = sizeof(status);
2244     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2245     ok(ret, "HttpQueryInfo failed\n");
2246     ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2247
2248     InternetCloseHandle(request);
2249
2250     request = HttpOpenRequest(connect, "POST", "/test7", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2251     ok(request != NULL, "HttpOpenRequest failed\n");
2252
2253     ret = HttpAddRequestHeaders(request, "Content-Length: 100\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
2254     ok(ret, "HttpAddRequestHeaders failed\n");
2255
2256     ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2257     ok(ret, "HttpSendRequest failed\n");
2258
2259     status = 0;
2260     size = sizeof(status);
2261     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2262     ok(ret, "HttpQueryInfo failed\n");
2263     ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2264
2265     InternetCloseHandle(request);
2266     InternetCloseHandle(connect);
2267     InternetCloseHandle(session);
2268 }
2269
2270 static void test_connection_header(int port)
2271 {
2272     HINTERNET ses, con, req;
2273     BOOL ret;
2274
2275     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2276     ok(ses != NULL, "InternetOpen failed\n");
2277
2278     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2279     ok(con != NULL, "InternetConnect failed\n");
2280
2281     req = HttpOpenRequest(con, NULL, "/test8", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2282     ok(req != NULL, "HttpOpenRequest failed\n");
2283
2284     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2285     ok(ret, "HttpSendRequest failed\n");
2286
2287     test_status_code(req, 200);
2288
2289     InternetCloseHandle(req);
2290
2291     req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, 0, 0);
2292     ok(req != NULL, "HttpOpenRequest failed\n");
2293
2294     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2295     ok(ret, "HttpSendRequest failed\n");
2296
2297     test_status_code(req, 200);
2298
2299     InternetCloseHandle(req);
2300
2301     req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2302     ok(req != NULL, "HttpOpenRequest failed\n");
2303
2304     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2305     ok(ret, "HttpSendRequest failed\n");
2306
2307     test_status_code(req, 200);
2308
2309     InternetCloseHandle(req);
2310
2311     req = HttpOpenRequest(con, "POST", "/testA", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2312     ok(req != NULL, "HttpOpenRequest failed\n");
2313
2314     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2315     ok(ret, "HttpSendRequest failed\n");
2316
2317     test_status_code(req, 200);
2318
2319     InternetCloseHandle(req);
2320     InternetCloseHandle(con);
2321     InternetCloseHandle(ses);
2322 }
2323
2324 static void test_http1_1(int port)
2325 {
2326     HINTERNET ses, con, req;
2327     BOOL ret;
2328
2329     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2330     ok(ses != NULL, "InternetOpen failed\n");
2331
2332     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2333     ok(con != NULL, "InternetConnect failed\n");
2334
2335     req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2336     ok(req != NULL, "HttpOpenRequest failed\n");
2337
2338     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2339     if (ret)
2340     {
2341         InternetCloseHandle(req);
2342
2343         req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2344         ok(req != NULL, "HttpOpenRequest failed\n");
2345
2346         ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2347         ok(ret, "HttpSendRequest failed\n");
2348     }
2349
2350     InternetCloseHandle(req);
2351     InternetCloseHandle(con);
2352     InternetCloseHandle(ses);
2353 }
2354
2355 static void test_no_content(int port)
2356 {
2357     HINTERNET session, connection, req;
2358     DWORD res;
2359
2360     trace("Testing 204 no content response...\n");
2361
2362     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2363
2364     session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2365     ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2366
2367     pInternetSetStatusCallbackA(session, callback);
2368
2369     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2370     connection = InternetConnectA(session, "localhost", port,
2371             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2372     ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2373     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2374
2375     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2376     req = HttpOpenRequestA(connection, "GET", "/test_no_content", NULL, NULL, NULL,
2377             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2378     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2379     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2380
2381     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2382     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2383     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2384     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2385     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2386     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2387     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2388     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2389     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2390     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2391
2392     res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2393     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2394        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2395     WaitForSingleObject(hCompleteEvent, INFINITE);
2396     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2397
2398     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2399     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2400     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2401     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2402     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2403     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2404     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2405     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2406     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2407     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2408
2409     close_async_handle(session, hCompleteEvent, 2);
2410     CloseHandle(hCompleteEvent);
2411 }
2412
2413 static void test_conn_close(int port)
2414 {
2415     HINTERNET session, connection, req;
2416     DWORD res, avail, size;
2417     BYTE buf[1024];
2418
2419     trace("Testing connection close connection...\n");
2420
2421     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2422     conn_close_event = CreateEvent(NULL, FALSE, FALSE, NULL);
2423
2424     session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2425     ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2426
2427     pInternetSetStatusCallbackA(session, callback);
2428
2429     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2430     connection = InternetConnectA(session, "localhost", port,
2431             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2432     ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2433     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2434
2435     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2436     req = HttpOpenRequestA(connection, "GET", "/test_conn_close", NULL, NULL, NULL,
2437             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2438     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2439     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2440
2441     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2442     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2443     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2444     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2445     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2446     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2447     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2448     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2449
2450     res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2451     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2452        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2453     WaitForSingleObject(hCompleteEvent, INFINITE);
2454     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2455
2456     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2457     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2458     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2459     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2460     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2461     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2462     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2463     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2464
2465     avail = 0;
2466     res = InternetQueryDataAvailable(req, &avail, 0, 0);
2467     ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
2468     ok(avail != 0, "avail = 0\n");
2469
2470     size = 0;
2471     res = InternetReadFile(req, buf, avail, &size);
2472     ok(res, "InternetReadFile failed: %u\n", GetLastError());
2473
2474     res = InternetQueryDataAvailable(req, &avail, 0, 0);
2475     ok(!res && (GetLastError() == ERROR_IO_PENDING),
2476        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2477     ok(!avail, "avail = %u, expected 0\n", avail);
2478
2479     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2480     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2481     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2482     SetEvent(conn_close_event);
2483     WaitForSingleObject(hCompleteEvent, INFINITE);
2484     ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2485     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2486     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2487     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2488
2489     close_async_handle(session, hCompleteEvent, 2);
2490     CloseHandle(hCompleteEvent);
2491 }
2492
2493 static void test_no_cache(int port)
2494 {
2495     static const char cache_control_no_cache[] = "/test_cache_control_no_cache";
2496     static const char cache_control_no_store[] = "/test_cache_control_no_store";
2497     static const char cache_url_fmt[] = "http://localhost:%d%s";
2498
2499     char cache_url[256], buf[256];
2500     HINTERNET ses, con, req;
2501     DWORD read, size;
2502     BOOL ret;
2503
2504     trace("Testing no-cache header\n");
2505
2506     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2507     ok(ses != NULL,"InternetOpen failed with error %u\n", GetLastError());
2508
2509     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2510     ok(con != NULL, "InternetConnect failed with error %u\n", GetLastError());
2511
2512     req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2513     ok(req != NULL, "HttpOpenRequest failed\n");
2514
2515     sprintf(cache_url, cache_url_fmt, port, cache_control_no_cache);
2516     DeleteUrlCacheEntry(cache_url);
2517
2518     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2519     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2520     size = 0;
2521     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2522         size += read;
2523     ok(size == 12, "read %d bytes of data\n", size);
2524     InternetCloseHandle(req);
2525
2526     req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2527     ok(req != NULL, "HttpOpenRequest failed\n");
2528
2529     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2530     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2531     size = 0;
2532     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2533         size += read;
2534     ok(size == 0, "read %d bytes of data\n", size);
2535     InternetCloseHandle(req);
2536     DeleteUrlCacheEntry(cache_url);
2537
2538     req = HttpOpenRequest(con, NULL, cache_control_no_store, NULL, NULL, NULL, 0, 0);
2539     ok(req != NULL, "HttpOpenRequest failed\n");
2540
2541     sprintf(cache_url, cache_url_fmt, port, cache_control_no_store);
2542     DeleteUrlCacheEntry(cache_url);
2543
2544     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2545     ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2546     size = 0;
2547     while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2548         size += read;
2549     ok(size == 12, "read %d bytes of data\n", size);
2550     InternetCloseHandle(req);
2551
2552     ret = DeleteUrlCacheEntry(cache_url);
2553     ok(!ret && GetLastError()==ERROR_FILE_NOT_FOUND, "cache entry should not exist\n");
2554
2555     InternetCloseHandle(con);
2556     InternetCloseHandle(ses);
2557 }
2558
2559 static void test_HttpSendRequestW(int port)
2560 {
2561     static const WCHAR header[] = {'U','A','-','C','P','U',':',' ','x','8','6',0};
2562     HINTERNET ses, con, req;
2563     DWORD error;
2564     BOOL ret;
2565
2566     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);
2567     ok(ses != NULL, "InternetOpen failed\n");
2568
2569     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2570     ok(con != NULL, "InternetConnect failed\n");
2571
2572     req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2573     ok(req != NULL, "HttpOpenRequest failed\n");
2574
2575     SetLastError(0xdeadbeef);
2576     ret = HttpSendRequestW(req, header, ~0u, NULL, 0);
2577     error = GetLastError();
2578     ok(!ret, "HttpSendRequestW succeeded\n");
2579     ok(error == ERROR_IO_PENDING ||
2580        broken(error == ERROR_HTTP_HEADER_NOT_FOUND) ||  /* IE6 */
2581        broken(error == ERROR_INVALID_PARAMETER),        /* IE5 */
2582        "got %u expected ERROR_IO_PENDING\n", error);
2583
2584     InternetCloseHandle(req);
2585     InternetCloseHandle(con);
2586     InternetCloseHandle(ses);
2587 }
2588
2589 static void test_cookie_header(int port)
2590 {
2591     HINTERNET ses, con, req;
2592     DWORD size, error;
2593     BOOL ret;
2594     char buffer[64];
2595
2596     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2597     ok(ses != NULL, "InternetOpen failed\n");
2598
2599     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2600     ok(con != NULL, "InternetConnect failed\n");
2601
2602     InternetSetCookie("http://localhost", "cookie", "biscuit");
2603
2604     req = HttpOpenRequest(con, NULL, "/testC", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2605     ok(req != NULL, "HttpOpenRequest failed\n");
2606
2607     buffer[0] = 0;
2608     size = sizeof(buffer);
2609     SetLastError(0xdeadbeef);
2610     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2611     error = GetLastError();
2612     ok(!ret, "HttpQueryInfo succeeded\n");
2613     ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "got %u expected ERROR_HTTP_HEADER_NOT_FOUND\n", error);
2614
2615     ret = HttpAddRequestHeaders(req, "Cookie: cookie=not biscuit\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD);
2616     ok(ret, "HttpAddRequestHeaders failed: %u\n", GetLastError());
2617
2618     buffer[0] = 0;
2619     size = sizeof(buffer);
2620     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2621     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2622     ok(!strcmp(buffer, "cookie=not biscuit"), "got '%s' expected \'cookie=not biscuit\'\n", buffer);
2623
2624     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2625     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
2626
2627     test_status_code(req, 200);
2628
2629     buffer[0] = 0;
2630     size = sizeof(buffer);
2631     ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2632     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2633     ok(!strcmp(buffer, "cookie=biscuit"), "got '%s' expected \'cookie=biscuit\'\n", buffer);
2634
2635     InternetCloseHandle(req);
2636     InternetCloseHandle(con);
2637     InternetCloseHandle(ses);
2638 }
2639
2640 static void test_basic_authentication(int port)
2641 {
2642     HINTERNET session, connect, request;
2643     BOOL ret;
2644
2645     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2646     ok(session != NULL, "InternetOpen failed\n");
2647
2648     connect = InternetConnect(session, "localhost", port, "user", "pwd", INTERNET_SERVICE_HTTP, 0, 0);
2649     ok(connect != NULL, "InternetConnect failed\n");
2650
2651     request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, NULL, 0, 0);
2652     ok(request != NULL, "HttpOpenRequest failed\n");
2653
2654     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2655     ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2656
2657     test_status_code(request, 200);
2658     test_request_flags(request, 0);
2659
2660     InternetCloseHandle(request);
2661     InternetCloseHandle(connect);
2662     InternetCloseHandle(session);
2663 }
2664
2665 static void test_premature_disconnect(int port)
2666 {
2667     HINTERNET session, connect, request;
2668     DWORD err;
2669     BOOL ret;
2670
2671     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2672     ok(session != NULL, "InternetOpen failed\n");
2673
2674     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2675     ok(connect != NULL, "InternetConnect failed\n");
2676
2677     request = HttpOpenRequest(connect, NULL, "/premature_disconnect", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2678     ok(request != NULL, "HttpOpenRequest failed\n");
2679
2680     SetLastError(0xdeadbeef);
2681     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2682     err = GetLastError();
2683     todo_wine ok(!ret, "HttpSendRequest succeeded\n");
2684     todo_wine ok(err == ERROR_HTTP_INVALID_SERVER_RESPONSE, "got %u\n", err);
2685
2686     InternetCloseHandle(request);
2687     InternetCloseHandle(connect);
2688     InternetCloseHandle(session);
2689 }
2690
2691 static void test_invalid_response_headers(int port)
2692 {
2693     HINTERNET session, connect, request;
2694     DWORD size;
2695     BOOL ret;
2696     char buffer[256];
2697
2698     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2699     ok(session != NULL, "InternetOpen failed\n");
2700
2701     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2702     ok(connect != NULL, "InternetConnect failed\n");
2703
2704     request = HttpOpenRequest(connect, NULL, "/testE", NULL, NULL, NULL, 0, 0);
2705     ok(request != NULL, "HttpOpenRequest failed\n");
2706
2707     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2708     ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2709
2710     test_status_code(request, 401);
2711     test_request_flags(request, 0);
2712
2713     buffer[0] = 0;
2714     size = sizeof(buffer);
2715     ret = HttpQueryInfo( request, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2716     ok(ret, "HttpQueryInfo failed\n");
2717     ok(!strcmp(buffer, "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"),
2718        "headers wrong \"%s\"\n", buffer);
2719
2720     buffer[0] = 0;
2721     size = sizeof(buffer);
2722     ret = HttpQueryInfo( request, HTTP_QUERY_SERVER, buffer, &size, NULL);
2723     ok(ret, "HttpQueryInfo failed\n");
2724     ok(!strcmp(buffer, "winetest"), "server wrong \"%s\"\n", buffer);
2725
2726     InternetCloseHandle(request);
2727     InternetCloseHandle(connect);
2728     InternetCloseHandle(session);
2729 }
2730
2731 static void test_response_without_headers(int port)
2732 {
2733     HINTERNET hi, hc, hr;
2734     DWORD r, count, size;
2735     char buffer[1024];
2736
2737     SetLastError(0xdeadbeef);
2738     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2739     ok(hi != NULL, "open failed %u\n", GetLastError());
2740
2741     SetLastError(0xdeadbeef);
2742     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2743     ok(hc != NULL, "connect failed %u\n", GetLastError());
2744
2745     SetLastError(0xdeadbeef);
2746     hr = HttpOpenRequest(hc, NULL, "/testG", NULL, NULL, NULL, 0, 0);
2747     ok(hr != NULL, "HttpOpenRequest failed %u\n", GetLastError());
2748
2749     test_request_flags(hr, INTERNET_REQFLAG_NO_HEADERS);
2750
2751     SetLastError(0xdeadbeef);
2752     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2753     ok(r, "HttpSendRequest failed %u\n", GetLastError());
2754
2755     test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2756
2757     count = 0;
2758     memset(buffer, 0, sizeof buffer);
2759     SetLastError(0xdeadbeef);
2760     r = InternetReadFile(hr, buffer, sizeof buffer, &count);
2761     ok(r, "InternetReadFile failed %u\n", GetLastError());
2762     todo_wine ok(count == sizeof page1 - 1, "count was wrong\n");
2763     todo_wine ok(!memcmp(buffer, page1, sizeof page1), "http data wrong\n");
2764
2765     test_status_code(hr, 200);
2766     test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2767
2768     buffer[0] = 0;
2769     size = sizeof(buffer);
2770     SetLastError(0xdeadbeef);
2771     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, NULL );
2772     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2773     ok(!strcmp(buffer, "OK"), "expected OK got: \"%s\"\n", buffer);
2774
2775     buffer[0] = 0;
2776     size = sizeof(buffer);
2777     SetLastError(0xdeadbeef);
2778     r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, NULL);
2779     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2780     ok(!strcmp(buffer, "HTTP/1.0"), "expected HTTP/1.0 got: \"%s\"\n", buffer);
2781
2782     buffer[0] = 0;
2783     size = sizeof(buffer);
2784     SetLastError(0xdeadbeef);
2785     r = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2786     ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2787     ok(!strcmp(buffer, "HTTP/1.0 200 OK"), "raw headers wrong: \"%s\"\n", buffer);
2788
2789     InternetCloseHandle(hr);
2790     InternetCloseHandle(hc);
2791     InternetCloseHandle(hi);
2792 }
2793
2794 static void test_HttpQueryInfo(int port)
2795 {
2796     HINTERNET hi, hc, hr;
2797     DWORD size, index;
2798     char buffer[1024];
2799     BOOL ret;
2800
2801     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2802     ok(hi != NULL, "InternetOpen failed\n");
2803
2804     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2805     ok(hc != NULL, "InternetConnect failed\n");
2806
2807     hr = HttpOpenRequest(hc, NULL, "/testD", NULL, NULL, NULL, 0, 0);
2808     ok(hr != NULL, "HttpOpenRequest failed\n");
2809
2810     ret = HttpSendRequest(hr, NULL, 0, NULL, 0);
2811     ok(ret, "HttpSendRequest failed\n");
2812
2813     index = 0;
2814     size = sizeof(buffer);
2815     ret = HttpQueryInfo(hr, HTTP_QUERY_HOST | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, &index);
2816     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2817     ok(index == 1, "expected 1 got %u\n", index);
2818
2819     index = 0;
2820     size = sizeof(buffer);
2821     ret = HttpQueryInfo(hr, HTTP_QUERY_DATE | HTTP_QUERY_FLAG_SYSTEMTIME, buffer, &size, &index);
2822     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2823     ok(index == 1, "expected 1 got %u\n", index);
2824
2825     index = 0;
2826     size = sizeof(buffer);
2827     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
2828     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2829     ok(index == 0, "expected 0 got %u\n", index);
2830
2831     size = sizeof(buffer);
2832     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
2833     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2834     ok(index == 0, "expected 0 got %u\n", index);
2835
2836     index = 0xdeadbeef; /* invalid start index */
2837     size = sizeof(buffer);
2838     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
2839     todo_wine ok(!ret, "HttpQueryInfo should have failed\n");
2840     todo_wine ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
2841        "Expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", GetLastError());
2842
2843     index = 0;
2844     size = sizeof(buffer);
2845     ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS_CRLF, buffer, &size, &index);
2846     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2847     ok(index == 0, "expected 0 got %u\n", index);
2848
2849     size = sizeof(buffer);
2850     ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, &index);
2851     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2852     ok(index == 0, "expected 0 got %u\n", index);
2853
2854     size = sizeof(buffer);
2855     ret = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, &index);
2856     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2857     ok(index == 0, "expected 0 got %u\n", index);
2858
2859     test_status_code(hr, 200);
2860
2861     index = 0xdeadbeef;
2862     size = sizeof(buffer);
2863     ret = HttpQueryInfo(hr, HTTP_QUERY_FORWARDED, buffer, &size, &index);
2864     ok(!ret, "HttpQueryInfo succeeded\n");
2865     ok(index == 0xdeadbeef, "expected 0xdeadbeef got %u\n", index);
2866
2867     index = 0;
2868     size = sizeof(buffer);
2869     ret = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &size, &index);
2870     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2871     ok(index == 1, "expected 1 got %u\n", index);
2872
2873     index = 0;
2874     size = sizeof(buffer);
2875     strcpy(buffer, "Server");
2876     ret = HttpQueryInfo(hr, HTTP_QUERY_CUSTOM, buffer, &size, &index);
2877     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2878     ok(index == 1, "expected 1 got %u\n", index);
2879
2880     index = 0;
2881     size = sizeof(buffer);
2882     ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
2883     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2884     ok(index == 1, "expected 1 got %u\n", index);
2885
2886     size = sizeof(buffer);
2887     ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
2888     ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2889     ok(index == 2, "expected 2 got %u\n", index);
2890
2891     InternetCloseHandle(hr);
2892     InternetCloseHandle(hc);
2893     InternetCloseHandle(hi);
2894 }
2895
2896 static void test_options(int port)
2897 {
2898     HINTERNET ses, con, req;
2899     DWORD size, error;
2900     DWORD_PTR ctx;
2901     BOOL ret;
2902
2903     ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2904     ok(ses != NULL, "InternetOpen failed\n");
2905
2906     SetLastError(0xdeadbeef);
2907     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, 0);
2908     error = GetLastError();
2909     ok(!ret, "InternetSetOption succeeded\n");
2910     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
2911
2912     SetLastError(0xdeadbeef);
2913     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, sizeof(ctx));
2914     ok(!ret, "InternetSetOption succeeded\n");
2915     error = GetLastError();
2916     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
2917
2918     SetLastError(0xdeadbeef);
2919     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, 0);
2920     ok(!ret, "InternetSetOption succeeded\n");
2921     error = GetLastError();
2922     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
2923
2924     ctx = 1;
2925     ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
2926     ok(ret, "InternetSetOption failed %u\n", GetLastError());
2927
2928     SetLastError(0xdeadbeef);
2929     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, NULL);
2930     error = GetLastError();
2931     ok(!ret, "InternetQueryOption succeeded\n");
2932     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
2933
2934     SetLastError(0xdeadbeef);
2935     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, NULL);
2936     error = GetLastError();
2937     ok(!ret, "InternetQueryOption succeeded\n");
2938     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
2939
2940     size = 0;
2941     SetLastError(0xdeadbeef);
2942     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, &size);
2943     error = GetLastError();
2944     ok(!ret, "InternetQueryOption succeeded\n");
2945     ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
2946
2947     size = sizeof(ctx);
2948     SetLastError(0xdeadbeef);
2949     ret = InternetQueryOption(NULL, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2950     error = GetLastError();
2951     ok(!ret, "InternetQueryOption succeeded\n");
2952     ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE, got %u\n", error);
2953
2954     ctx = 0xdeadbeef;
2955     size = sizeof(ctx);
2956     ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2957     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
2958     ok(ctx == 1, "expected 1 got %lu\n", ctx);
2959
2960     con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2961     ok(con != NULL, "InternetConnect failed\n");
2962
2963     ctx = 0xdeadbeef;
2964     size = sizeof(ctx);
2965     ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2966     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
2967     ok(ctx == 0, "expected 0 got %lu\n", ctx);
2968
2969     ctx = 2;
2970     ret = InternetSetOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
2971     ok(ret, "InternetSetOption failed %u\n", GetLastError());
2972
2973     ctx = 0xdeadbeef;
2974     size = sizeof(ctx);
2975     ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2976     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
2977     ok(ctx == 2, "expected 2 got %lu\n", ctx);
2978
2979     req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2980     ok(req != NULL, "HttpOpenRequest failed\n");
2981
2982     ctx = 0xdeadbeef;
2983     size = sizeof(ctx);
2984     ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2985     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
2986     ok(ctx == 0, "expected 0 got %lu\n", ctx);
2987
2988     ctx = 3;
2989     ret = InternetSetOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
2990     ok(ret, "InternetSetOption failed %u\n", GetLastError());
2991
2992     ctx = 0xdeadbeef;
2993     size = sizeof(ctx);
2994     ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
2995     ok(ret, "InternetQueryOption failed %u\n", GetLastError());
2996     ok(ctx == 3, "expected 3 got %lu\n", ctx);
2997
2998     /* INTERNET_OPTION_PROXY */
2999     SetLastError(0xdeadbeef);
3000     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, NULL);
3001     error = GetLastError();
3002     ok(!ret, "InternetQueryOption succeeded\n");
3003     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3004
3005     SetLastError(0xdeadbeef);
3006     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, &ctx, NULL);
3007     error = GetLastError();
3008     ok(!ret, "InternetQueryOption succeeded\n");
3009     ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3010
3011     size = 0;
3012     SetLastError(0xdeadbeef);
3013     ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, &size);
3014     error = GetLastError();
3015     ok(!ret, "InternetQueryOption succeeded\n");
3016     ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
3017     ok(size >= sizeof(INTERNET_PROXY_INFOA), "expected size to be greater or equal to the struct size\n");
3018
3019     InternetCloseHandle(req);
3020     InternetCloseHandle(con);
3021     InternetCloseHandle(ses);
3022 }
3023
3024 static void test_http_connection(void)
3025 {
3026     struct server_info si;
3027     HANDLE hThread;
3028     DWORD id = 0, r;
3029
3030     si.hEvent = CreateEvent(NULL, 0, 0, NULL);
3031     si.port = 7531;
3032
3033     hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id);
3034     ok( hThread != NULL, "create thread failed\n");
3035
3036     r = WaitForSingleObject(si.hEvent, 10000);
3037     ok (r == WAIT_OBJECT_0, "failed to start wininet test server\n");
3038     if (r != WAIT_OBJECT_0)
3039         return;
3040
3041     test_basic_request(si.port, "GET", "/test1");
3042     test_proxy_indirect(si.port);
3043     test_proxy_direct(si.port);
3044     test_header_handling_order(si.port);
3045     test_basic_request(si.port, "POST", "/test5");
3046     test_basic_request(si.port, "RPC_IN_DATA", "/test5");
3047     test_basic_request(si.port, "RPC_OUT_DATA", "/test5");
3048     test_basic_request(si.port, "GET", "/test6");
3049     test_basic_request(si.port, "GET", "/testF");
3050     test_connection_header(si.port);
3051     test_http1_1(si.port);
3052     test_cookie_header(si.port);
3053     test_basic_authentication(si.port);
3054     test_invalid_response_headers(si.port);
3055     test_response_without_headers(si.port);
3056     test_HttpQueryInfo(si.port);
3057     test_HttpSendRequestW(si.port);
3058     test_last_error(si.port);
3059     test_options(si.port);
3060     test_no_content(si.port);
3061     test_conn_close(si.port);
3062     test_no_cache(si.port);
3063     test_premature_disconnect(si.port);
3064
3065     /* send the basic request again to shutdown the server thread */
3066     test_basic_request(si.port, "GET", "/quit");
3067
3068     r = WaitForSingleObject(hThread, 3000);
3069     ok( r == WAIT_OBJECT_0, "thread wait failed\n");
3070     CloseHandle(hThread);
3071 }
3072
3073 static void release_cert_info(INTERNET_CERTIFICATE_INFOA *info)
3074 {
3075     LocalFree(info->lpszSubjectInfo);
3076     LocalFree(info->lpszIssuerInfo);
3077     LocalFree(info->lpszProtocolName);
3078     LocalFree(info->lpszSignatureAlgName);
3079     LocalFree(info->lpszEncryptionAlgName);
3080 }
3081
3082 static void test_cert_struct(HINTERNET req)
3083 {
3084     INTERNET_CERTIFICATE_INFOA info;
3085     DWORD size;
3086     BOOL res;
3087
3088     static const char ex_subject[] =
3089         "US\r\n"
3090         "Minnesota\r\n"
3091         "Saint Paul\r\n"
3092         "WineHQ\r\n"
3093         "test.winehq.org\r\n"
3094         "webmaster@winehq.org";
3095
3096     static const char ex_issuer[] =
3097         "US\r\n"
3098         "Minnesota\r\n"
3099         "WineHQ\r\n"
3100         "test.winehq.org\r\n"
3101         "webmaster@winehq.org";
3102
3103     memset(&info, 0x5, sizeof(info));
3104
3105     size = sizeof(info);
3106     res = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT, &info, &size);
3107     ok(res, "InternetQueryOption failed: %u\n", GetLastError());
3108     ok(size == sizeof(info), "size = %u\n", size);
3109
3110     ok(!strcmp(info.lpszSubjectInfo, ex_subject), "lpszSubjectInfo = %s\n", info.lpszSubjectInfo);
3111     ok(!strcmp(info.lpszIssuerInfo, ex_issuer), "lpszIssuerInfo = %s\n", info.lpszIssuerInfo);
3112     ok(!info.lpszSignatureAlgName, "lpszSignatureAlgName = %s\n", info.lpszSignatureAlgName);
3113     ok(!info.lpszEncryptionAlgName, "lpszEncryptionAlgName = %s\n", info.lpszEncryptionAlgName);
3114     ok(!info.lpszProtocolName, "lpszProtocolName = %s\n", info.lpszProtocolName);
3115     ok(info.dwKeySize == 128, "dwKeySize = %u\n", info.dwKeySize);
3116
3117     release_cert_info(&info);
3118 }
3119
3120 #define test_security_info(a,b,c) _test_security_info(__LINE__,a,b,c)
3121 static void _test_security_info(unsigned line, const char *urlc, DWORD error, DWORD ex_flags)
3122 {
3123     char url[INTERNET_MAX_URL_LENGTH];
3124     const CERT_CHAIN_CONTEXT *chain;
3125     DWORD flags;
3126     BOOL res;
3127
3128     if(!pInternetGetSecurityInfoByURLA) {
3129         win_skip("pInternetGetSecurityInfoByURLA not available\n");
3130         return;
3131     }
3132
3133     strcpy(url, urlc);
3134     chain = (void*)0xdeadbeef;
3135     flags = 0xdeadbeef;
3136     res = pInternetGetSecurityInfoByURLA(url, &chain, &flags);
3137     if(error == ERROR_SUCCESS) {
3138         ok_(__FILE__,line)(res, "InternetGetSecurityInfoByURLA failed: %u\n", GetLastError());
3139         ok_(__FILE__,line)(chain != NULL, "chain = NULL\n");
3140         ok_(__FILE__,line)(flags == ex_flags, "flags = %x\n", flags);
3141         CertFreeCertificateChain(chain);
3142     }else {
3143         ok_(__FILE__,line)(!res && GetLastError() == error,
3144                            "InternetGetSecurityInfoByURLA returned: %x(%u), exected %u\n", res, GetLastError(), error);
3145     }
3146 }
3147
3148 #define test_secflags_option(a,b) _test_secflags_option(__LINE__,a,b)
3149 static void _test_secflags_option(unsigned line, HINTERNET req, DWORD ex_flags)
3150 {
3151     DWORD flags, size;
3152     BOOL res;
3153
3154     flags = 0xdeadbeef;
3155     size = sizeof(flags);
3156     res = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3157     ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3158     ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS flags = %x, expected %x\n", flags, ex_flags);
3159
3160     /* Option 98 is undocumented and seems to be the same as INTERNET_OPTION_SECURITY_FLAGS */
3161     flags = 0xdeadbeef;
3162     size = sizeof(flags);
3163     res = InternetQueryOptionW(req, 98, &flags, &size);
3164     ok_(__FILE__,line)(res, "InternetQueryOptionW(98) failed: %u\n", GetLastError());
3165     ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS(98) flags = %x, expected %x\n", flags, ex_flags);
3166 }
3167
3168 #define set_secflags(a,b,c) _set_secflags(__LINE__,a,b,c)
3169 static void _set_secflags(unsigned line, HINTERNET req, BOOL use_undoc, DWORD flags)
3170 {
3171     BOOL res;
3172
3173     res = InternetSetOptionW(req, use_undoc ? 99 : INTERNET_OPTION_SECURITY_FLAGS, &flags, sizeof(flags));
3174     ok_(__FILE__,line)(res, "InternetSetOption(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3175 }
3176
3177 static void test_security_flags(void)
3178 {
3179     HINTERNET ses, conn, req;
3180     DWORD size, flags;
3181     char buf[100];
3182     BOOL res;
3183
3184     trace("Testing security flags...\n");
3185
3186     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
3187
3188     ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3189     ok(ses != NULL, "InternetOpen failed\n");
3190
3191     pInternetSetStatusCallbackA(ses, &callback);
3192
3193     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3194     conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3195                             NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3196     ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3197     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3198
3199     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3200     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3201                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3202                           0xdeadbeef);
3203     ok(req != NULL, "HttpOpenRequest failed\n");
3204     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3205
3206     flags = 0xdeadbeef;
3207     size = sizeof(flags);
3208     res = InternetQueryOptionW(req, 98, &flags, &size);
3209     if(!res && GetLastError() == ERROR_INVALID_PARAMETER) {
3210         win_skip("Incomplete security flags support, skipping\n");
3211
3212         close_async_handle(ses, hCompleteEvent, 2);
3213         CloseHandle(hCompleteEvent);
3214         return;
3215     }
3216
3217     test_secflags_option(req, 0);
3218     test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3219
3220     set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_REVOCATION);
3221     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION);
3222
3223     set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3224     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3225
3226     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3227     test_secflags_option(req, SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3228
3229     flags = SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_SECURE;
3230     res = InternetSetOptionW(req, 99, &flags, sizeof(flags));
3231     ok(!res && GetLastError() == ERROR_INTERNET_OPTION_NOT_SETTABLE, "InternetSetOption(99) failed: %u\n", GetLastError());
3232
3233     SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
3234     SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
3235     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3236     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3237     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3238     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3239     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3240     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3241     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3242     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3243     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3244
3245     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3246     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3247
3248     WaitForSingleObject(hCompleteEvent, INFINITE);
3249     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3250
3251     todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
3252     todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
3253     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3254     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3255     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3256     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3257     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3258     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3259     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3260     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3261     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3262
3263     test_request_flags(req, 0);
3264     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3265             |SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_STRENGTH_STRONG);
3266
3267     res = InternetReadFile(req, buf, sizeof(buf), &size);
3268     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3269     ok(size, "size = 0\n");
3270
3271     /* Collect all existing persistent connections */
3272     res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3273     ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3274
3275     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3276     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3277                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3278                           0xdeadbeef);
3279     ok(req != NULL, "HttpOpenRequest failed\n");
3280     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3281
3282     flags = INTERNET_ERROR_MASK_COMBINED_SEC_CERT|INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY;
3283     res = InternetSetOption(req, INTERNET_OPTION_ERROR_MASK, (void*)&flags, sizeof(flags));
3284     ok(res, "InternetQueryOption(INTERNET_OPTION_ERROR_MASK failed: %u\n", GetLastError());
3285
3286     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3287     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3288     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3289     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3290     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3291     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3292     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3293
3294     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3295     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3296
3297     WaitForSingleObject(hCompleteEvent, INFINITE);
3298     ok(req_error == ERROR_INTERNET_SEC_CERT_REV_FAILED || broken(req_error == ERROR_INTERNET_SEC_CERT_ERRORS),
3299        "req_error = %d\n", req_error);
3300
3301     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3302     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3303     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3304     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3305     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3306     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3307     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3308
3309     if(req_error != ERROR_INTERNET_SEC_CERT_REV_FAILED) {
3310         win_skip("Unexpected cert errors, skipping security flags tests\n");
3311
3312         close_async_handle(ses, hCompleteEvent, 3);
3313         CloseHandle(hCompleteEvent);
3314         return;
3315     }
3316
3317     size = sizeof(buf);
3318     res = HttpQueryInfoA(req, HTTP_QUERY_CONTENT_ENCODING, buf, &size, 0);
3319     ok(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfoA(HTTP_QUERY_CONTENT_ENCODING) failed: %u\n", GetLastError());
3320
3321     test_request_flags(req, 8);
3322     test_secflags_option(req, 0x800000);
3323
3324     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_REVOCATION);
3325     test_secflags_option(req, 0x800000|SECURITY_FLAG_IGNORE_REVOCATION);
3326
3327     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3328     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3329     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3330     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3331     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3332     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3333     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3334
3335     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3336     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3337
3338     WaitForSingleObject(hCompleteEvent, INFINITE);
3339     ok(req_error == ERROR_INTERNET_SEC_CERT_ERRORS, "req_error = %d\n", req_error);
3340
3341     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3342     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3343     CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3344     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3345     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3346     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3347     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3348
3349     test_request_flags(req, INTERNET_REQFLAG_NO_HEADERS);
3350     test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3351     test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3352
3353     set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3354     test_secflags_option(req, 0x1800000|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3355             |SECURITY_FLAG_IGNORE_REVOCATION);
3356     test_http_version(req);
3357
3358     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3359     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3360     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3361     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3362     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3363     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3364     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3365     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3366     SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3367
3368     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3369     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3370
3371     WaitForSingleObject(hCompleteEvent, INFINITE);
3372     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3373
3374     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3375     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3376     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3377     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3378     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3379     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3380     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3381     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3382     CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3383
3384     test_request_flags(req, 0);
3385     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION
3386             |SECURITY_FLAG_STRENGTH_STRONG|0x1800000);
3387
3388     test_cert_struct(req);
3389     test_security_info("https://test.winehq.org/data/some_file.html?q", 0, 0x1800000);
3390
3391     res = InternetReadFile(req, buf, sizeof(buf), &size);
3392     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3393     ok(size, "size = 0\n");
3394
3395     close_async_handle(ses, hCompleteEvent, 3);
3396
3397     /* Collect all existing persistent connections */
3398     res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3399     ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3400
3401     /* Make another request, without setting security flags */
3402
3403     ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3404     ok(ses != NULL, "InternetOpen failed\n");
3405
3406     pInternetSetStatusCallbackA(ses, &callback);
3407
3408     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3409     conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3410                             NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3411     ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3412     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3413
3414     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3415     req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3416                           INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3417                           0xdeadbeef);
3418     ok(req != NULL, "HttpOpenRequest failed\n");
3419     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3420
3421     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3422            |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3423     test_http_version(req);
3424
3425     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3426     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3427     SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3428     SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3429     SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3430     SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3431     SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3432     SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3433
3434     res = HttpSendRequest(req, NULL, 0, NULL, 0);
3435     ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3436
3437     WaitForSingleObject(hCompleteEvent, INFINITE);
3438     ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3439
3440     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3441     CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3442     CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3443     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3444     CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3445     CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3446     CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3447     CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3448
3449     test_request_flags(req, 0);
3450     test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3451             |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3452
3453     res = InternetReadFile(req, buf, sizeof(buf), &size);
3454     ok(res, "InternetReadFile failed: %u\n", GetLastError());
3455     ok(size, "size = 0\n");
3456
3457     close_async_handle(ses, hCompleteEvent, 2);
3458
3459     CloseHandle(hCompleteEvent);
3460
3461     test_security_info("http://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3462     test_security_info("file:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3463     test_security_info("xxx:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3464 }
3465
3466 static void test_secure_connection(void)
3467 {
3468     static const WCHAR gizmo5[] = {'G','i','z','m','o','5',0};
3469     static const WCHAR testbot[] = {'t','e','s','t','b','o','t','.','w','i','n','e','h','q','.','o','r','g',0};
3470     static const WCHAR get[] = {'G','E','T',0};
3471     static const WCHAR slash[] = {'/',0};
3472     HINTERNET ses, con, req;
3473     DWORD size, flags;
3474     INTERNET_CERTIFICATE_INFOA *certificate_structA = NULL;
3475     INTERNET_CERTIFICATE_INFOW *certificate_structW = NULL;
3476     BOOL ret;
3477
3478     ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3479     ok(ses != NULL, "InternetOpen failed\n");
3480
3481     con = InternetConnect(ses, "testbot.winehq.org",
3482                           INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3483                           INTERNET_SERVICE_HTTP, 0, 0);
3484     ok(con != NULL, "InternetConnect failed\n");
3485
3486     req = HttpOpenRequest(con, "GET", "/", NULL, NULL, NULL,
3487                           INTERNET_FLAG_SECURE, 0);
3488     ok(req != NULL, "HttpOpenRequest failed\n");
3489
3490     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3491     ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3492
3493     size = sizeof(flags);
3494     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3495     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3496     ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3497
3498     ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3499                                NULL, &size);
3500     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3501     ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3502     certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3503     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3504                               certificate_structA, &size);
3505     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3506     if (ret)
3507     {
3508         ok(certificate_structA->lpszSubjectInfo &&
3509            strlen(certificate_structA->lpszSubjectInfo) > 1,
3510            "expected a non-empty subject name\n");
3511         ok(certificate_structA->lpszIssuerInfo &&
3512            strlen(certificate_structA->lpszIssuerInfo) > 1,
3513            "expected a non-empty issuer name\n");
3514         ok(!certificate_structA->lpszSignatureAlgName,
3515            "unexpected signature algorithm name\n");
3516         ok(!certificate_structA->lpszEncryptionAlgName,
3517            "unexpected encryption algorithm name\n");
3518         ok(!certificate_structA->lpszProtocolName,
3519            "unexpected protocol name\n");
3520         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3521         release_cert_info(certificate_structA);
3522     }
3523     HeapFree(GetProcessHeap(), 0, certificate_structA);
3524
3525     /* Querying the same option through InternetQueryOptionW still results in
3526      * ASCII strings being returned.
3527      */
3528     size = 0;
3529     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3530                                NULL, &size);
3531     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3532     ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3533     certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3534     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3535                               certificate_structW, &size);
3536     certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3537     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3538     if (ret)
3539     {
3540         ok(certificate_structA->lpszSubjectInfo &&
3541            strlen(certificate_structA->lpszSubjectInfo) > 1,
3542            "expected a non-empty subject name\n");
3543         ok(certificate_structA->lpszIssuerInfo &&
3544            strlen(certificate_structA->lpszIssuerInfo) > 1,
3545            "expected a non-empty issuer name\n");
3546         ok(!certificate_structA->lpszSignatureAlgName,
3547            "unexpected signature algorithm name\n");
3548         ok(!certificate_structA->lpszEncryptionAlgName,
3549            "unexpected encryption algorithm name\n");
3550         ok(!certificate_structA->lpszProtocolName,
3551            "unexpected protocol name\n");
3552         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3553         release_cert_info(certificate_structA);
3554     }
3555     HeapFree(GetProcessHeap(), 0, certificate_structW);
3556
3557     InternetCloseHandle(req);
3558     InternetCloseHandle(con);
3559     InternetCloseHandle(ses);
3560
3561     /* Repeating the tests with the W functions has the same result: */
3562     ses = InternetOpenW(gizmo5, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3563     ok(ses != NULL, "InternetOpen failed\n");
3564
3565     con = InternetConnectW(ses, testbot,
3566                           INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3567                           INTERNET_SERVICE_HTTP, 0, 0);
3568     ok(con != NULL, "InternetConnect failed\n");
3569
3570     req = HttpOpenRequestW(con, get, slash, NULL, NULL, NULL,
3571                           INTERNET_FLAG_SECURE, 0);
3572     ok(req != NULL, "HttpOpenRequest failed\n");
3573
3574     ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3575     ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3576
3577     size = sizeof(flags);
3578     ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3579     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3580     ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3581
3582     ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3583                                NULL, &size);
3584     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3585     ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3586     certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3587     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3588                                certificate_structA, &size);
3589     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3590     if (ret)
3591     {
3592         ok(certificate_structA->lpszSubjectInfo &&
3593            strlen(certificate_structA->lpszSubjectInfo) > 1,
3594            "expected a non-empty subject name\n");
3595         ok(certificate_structA->lpszIssuerInfo &&
3596            strlen(certificate_structA->lpszIssuerInfo) > 1,
3597            "expected a non-empty issuer name\n");
3598         ok(!certificate_structA->lpszSignatureAlgName,
3599            "unexpected signature algorithm name\n");
3600         ok(!certificate_structA->lpszEncryptionAlgName,
3601            "unexpected encryption algorithm name\n");
3602         ok(!certificate_structA->lpszProtocolName,
3603            "unexpected protocol name\n");
3604         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3605         release_cert_info(certificate_structA);
3606     }
3607     HeapFree(GetProcessHeap(), 0, certificate_structA);
3608
3609     /* Again, querying the same option through InternetQueryOptionW still
3610      * results in ASCII strings being returned.
3611      */
3612     size = 0;
3613     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3614                                NULL, &size);
3615     ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3616     ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3617     certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3618     ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3619                                certificate_structW, &size);
3620     certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3621     ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3622     if (ret)
3623     {
3624         ok(certificate_structA->lpszSubjectInfo &&
3625            strlen(certificate_structA->lpszSubjectInfo) > 1,
3626            "expected a non-empty subject name\n");
3627         ok(certificate_structA->lpszIssuerInfo &&
3628            strlen(certificate_structA->lpszIssuerInfo) > 1,
3629            "expected a non-empty issuer name\n");
3630         ok(!certificate_structA->lpszSignatureAlgName,
3631            "unexpected signature algorithm name\n");
3632         ok(!certificate_structA->lpszEncryptionAlgName,
3633            "unexpected encryption algorithm name\n");
3634         ok(!certificate_structA->lpszProtocolName,
3635            "unexpected protocol name\n");
3636         ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3637         release_cert_info(certificate_structA);
3638     }
3639     HeapFree(GetProcessHeap(), 0, certificate_structW);
3640
3641     InternetCloseHandle(req);
3642     InternetCloseHandle(con);
3643     InternetCloseHandle(ses);
3644 }
3645
3646 static void test_user_agent_header(void)
3647 {
3648     HINTERNET ses, con, req;
3649     DWORD size, err;
3650     char buffer[64];
3651     BOOL ret;
3652
3653     ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3654     ok(ses != NULL, "InternetOpen failed\n");
3655
3656     con = InternetConnect(ses, "test.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3657     ok(con != NULL, "InternetConnect failed\n");
3658
3659     req = HttpOpenRequest(con, "GET", "/tests/hello.html", "HTTP/1.0", NULL, NULL, 0, 0);
3660     ok(req != NULL, "HttpOpenRequest failed\n");
3661
3662     size = sizeof(buffer);
3663     ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3664     err = GetLastError();
3665     ok(!ret, "HttpQueryInfo succeeded\n");
3666     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3667
3668     ret = HttpAddRequestHeaders(req, "User-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3669     ok(ret, "HttpAddRequestHeaders succeeded\n");
3670
3671     size = sizeof(buffer);
3672     ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3673     err = GetLastError();
3674     ok(ret, "HttpQueryInfo failed\n");
3675     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3676
3677     InternetCloseHandle(req);
3678
3679     req = HttpOpenRequest(con, "GET", "/", "HTTP/1.0", NULL, NULL, 0, 0);
3680     ok(req != NULL, "HttpOpenRequest failed\n");
3681
3682     size = sizeof(buffer);
3683     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3684     err = GetLastError();
3685     ok(!ret, "HttpQueryInfo succeeded\n");
3686     ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3687
3688     ret = HttpAddRequestHeaders(req, "Accept: audio/*, image/*, text/*\r\nUser-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3689     ok(ret, "HttpAddRequestHeaders failed\n");
3690
3691     buffer[0] = 0;
3692     size = sizeof(buffer);
3693     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3694     ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
3695     ok(!strcmp(buffer, "audio/*, image/*, text/*"), "got '%s' expected 'audio/*, image/*, text/*'\n", buffer);
3696
3697     InternetCloseHandle(req);
3698     InternetCloseHandle(con);
3699     InternetCloseHandle(ses);
3700 }
3701
3702 static void test_bogus_accept_types_array(void)
3703 {
3704     HINTERNET ses, con, req;
3705     static const char *types[] = { (const char *)6240, "*/*", "%p", "", (const char *)0xffffffff, "*/*", NULL };
3706     DWORD size, error;
3707     char buffer[32];
3708     BOOL ret;
3709
3710     ses = InternetOpen("MERONG(0.9/;p)", INTERNET_OPEN_TYPE_DIRECT, "", "", 0);
3711     con = InternetConnect(ses, "www.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3712     req = HttpOpenRequest(con, "POST", "/post/post_action.php", "HTTP/1.0", "", types, INTERNET_FLAG_FORMS_SUBMIT, 0);
3713
3714     ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
3715
3716     buffer[0] = 0;
3717     size = sizeof(buffer);
3718     SetLastError(0xdeadbeef);
3719     ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3720     error = GetLastError();
3721     ok(!ret || broken(ret), "HttpQueryInfo succeeded\n");
3722     if (!ret) ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", error);
3723     ok(broken(!strcmp(buffer, ", */*, %p, , , */*")) /* IE6 */ ||
3724        broken(!strcmp(buffer, "*/*, %p, */*")) /* IE7/8 */ ||
3725        !strcmp(buffer, ""), "got '%s' expected ''\n", buffer);
3726
3727     InternetCloseHandle(req);
3728     InternetCloseHandle(con);
3729     InternetCloseHandle(ses);
3730 }
3731
3732 struct context
3733 {
3734     HANDLE event;
3735     HINTERNET req;
3736 };
3737
3738 static void WINAPI cb(HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID info, DWORD size)
3739 {
3740     INTERNET_ASYNC_RESULT *result = info;
3741     struct context *ctx = (struct context *)context;
3742
3743     trace("%p 0x%08lx %u %p 0x%08x\n", handle, context, status, info, size);
3744
3745     switch(status) {
3746     case INTERNET_STATUS_REQUEST_COMPLETE:
3747         trace("request handle: 0x%08lx\n", result->dwResult);
3748         ctx->req = (HINTERNET)result->dwResult;
3749         SetEvent(ctx->event);
3750         break;
3751     case INTERNET_STATUS_HANDLE_CLOSING: {
3752         DWORD type = INTERNET_HANDLE_TYPE_CONNECT_HTTP, size = sizeof(type);
3753
3754         if (InternetQueryOption(handle, INTERNET_OPTION_HANDLE_TYPE, &type, &size))
3755             ok(type != INTERNET_HANDLE_TYPE_CONNECT_HTTP, "unexpected callback\n");
3756         SetEvent(ctx->event);
3757         break;
3758     }
3759     case INTERNET_STATUS_NAME_RESOLVED:
3760     case INTERNET_STATUS_CONNECTING_TO_SERVER:
3761     case INTERNET_STATUS_CONNECTED_TO_SERVER: {
3762         char *str = info;
3763         ok(str[0] && str[1], "Got string: %s\n", str);
3764         ok(size == strlen(str)+1, "unexpected size %u\n", size);
3765     }
3766     }
3767 }
3768
3769 static void test_open_url_async(void)
3770 {
3771     BOOL ret;
3772     HINTERNET ses, req;
3773     DWORD size, error;
3774     struct context ctx;
3775     ULONG type;
3776
3777     /* Collect all existing persistent connections */
3778     ret = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3779     ok(ret, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3780
3781     /*
3782      * Some versions of IE6 fail those tests. They pass some notification data as UNICODE string, while
3783      * other versions never do. They also hang of following tests. We disable it for everything older
3784      * than IE7.
3785      */
3786     if(!pInternetGetSecurityInfoByURLA) {
3787         win_skip("Skipping async open on too old wininet version.\n");
3788         return;
3789     }
3790
3791     ctx.req = NULL;
3792     ctx.event = CreateEvent(NULL, TRUE, FALSE, "Z:_home_hans_jaman-installer.exe_ev1");
3793
3794     ses = InternetOpen("AdvancedInstaller", 0, NULL, NULL, INTERNET_FLAG_ASYNC);
3795     ok(ses != NULL, "InternetOpen failed\n");
3796
3797     SetLastError(0xdeadbeef);
3798     ret = InternetSetOptionA(NULL, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
3799     error = GetLastError();
3800     ok(!ret, "InternetSetOptionA succeeded\n");
3801     ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "got %u expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE\n", error);
3802
3803     ret = InternetSetOptionA(ses, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
3804     error = GetLastError();
3805     ok(!ret, "InternetSetOptionA failed\n");
3806     ok(error == ERROR_INTERNET_OPTION_NOT_SETTABLE, "got %u expected ERROR_INTERNET_OPTION_NOT_SETTABLE\n", error);
3807
3808     pInternetSetStatusCallbackW(ses, cb);
3809     ResetEvent(ctx.event);
3810
3811     req = InternetOpenUrl(ses, "http://test.winehq.org", NULL, 0, 0, (DWORD_PTR)&ctx);
3812     ok(!req && GetLastError() == ERROR_IO_PENDING, "InternetOpenUrl failed\n");
3813
3814     WaitForSingleObject(ctx.event, INFINITE);
3815
3816     type = 0;
3817     size = sizeof(type);
3818     ret = InternetQueryOption(ctx.req, INTERNET_OPTION_HANDLE_TYPE, &type, &size);
3819     ok(ret, "InternetQueryOption failed: %u\n", GetLastError());
3820     ok(type == INTERNET_HANDLE_TYPE_HTTP_REQUEST,
3821        "expected INTERNET_HANDLE_TYPE_HTTP_REQUEST, got %u\n", type);
3822
3823     size = 0;
3824     ret = HttpQueryInfo(ctx.req, HTTP_QUERY_RAW_HEADERS_CRLF, NULL, &size, NULL);
3825     ok(!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER, "HttpQueryInfo failed\n");
3826     ok(size > 0, "expected size > 0\n");
3827
3828     ResetEvent(ctx.event);
3829     InternetCloseHandle(ctx.req);
3830     WaitForSingleObject(ctx.event, INFINITE);
3831
3832     InternetCloseHandle(ses);
3833     CloseHandle(ctx.event);
3834 }
3835
3836 enum api
3837 {
3838     internet_connect = 1,
3839     http_open_request,
3840     http_send_request_ex,
3841     internet_writefile,
3842     http_end_request,
3843     internet_close_handle
3844 };
3845
3846 struct notification
3847 {
3848     enum api     function; /* api responsible for notification */
3849     unsigned int status;   /* status received */
3850     int          async;    /* delivered from another thread? */
3851     int          todo;
3852     int          optional;
3853 };
3854
3855 struct info
3856 {
3857     enum api     function;
3858     const struct notification *test;
3859     unsigned int count;
3860     unsigned int index;
3861     HANDLE       wait;
3862     DWORD        thread;
3863     unsigned int line;
3864     DWORD        expect_result;
3865     BOOL         is_aborted;
3866 };
3867
3868 static CRITICAL_SECTION notification_cs;
3869
3870 static void CALLBACK check_notification( HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID buffer, DWORD buflen )
3871 {
3872     BOOL status_ok, function_ok;
3873     struct info *info = (struct info *)context;
3874     unsigned int i;
3875
3876     EnterCriticalSection( &notification_cs );
3877
3878     if(info->is_aborted) {
3879         LeaveCriticalSection(&notification_cs);
3880         return;
3881     }
3882
3883     if (status == INTERNET_STATUS_HANDLE_CREATED)
3884     {
3885         DWORD size = sizeof(struct info *);
3886         HttpQueryInfoA( handle, INTERNET_OPTION_CONTEXT_VALUE, &info, &size, 0 );
3887     }else if(status == INTERNET_STATUS_REQUEST_COMPLETE) {
3888         INTERNET_ASYNC_RESULT *ar = (INTERNET_ASYNC_RESULT*)buffer;
3889
3890         ok(buflen == sizeof(*ar), "unexpected buflen = %d\n", buflen);
3891         if(info->expect_result == ERROR_SUCCESS) {
3892             ok(ar->dwResult == 1, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
3893         }else {
3894             ok(!ar->dwResult, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
3895             ok(ar->dwError == info->expect_result, "ar->dwError = %d, expected %d\n", ar->dwError, info->expect_result);
3896         }
3897     }
3898
3899     i = info->index;
3900     if (i >= info->count)
3901     {
3902         LeaveCriticalSection( &notification_cs );
3903         return;
3904     }
3905
3906     while (info->test[i].status != status &&
3907         (info->test[i].optional || info->test[i].todo) &&
3908         i < info->count - 1 &&
3909         info->test[i].function == info->test[i + 1].function)
3910     {
3911         i++;
3912     }
3913
3914     status_ok   = (info->test[i].status == status);
3915     function_ok = (info->test[i].function == info->function);
3916
3917     if (!info->test[i].todo)
3918     {
3919         ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
3920         ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
3921
3922         if (info->test[i].async)
3923             ok(info->thread != GetCurrentThreadId(), "%u: expected thread %u got %u\n",
3924                info->line, info->thread, GetCurrentThreadId());
3925     }
3926     else
3927     {
3928         todo_wine ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
3929         if (status_ok)
3930             todo_wine ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
3931     }
3932     if (i == info->count - 1 || info->test[i].function != info->test[i + 1].function) SetEvent( info->wait );
3933     info->index = i+1;
3934
3935     LeaveCriticalSection( &notification_cs );
3936 }
3937
3938 static void setup_test( struct info *info, enum api function, unsigned int line, DWORD expect_result )
3939 {
3940     info->function = function;
3941     info->line = line;
3942     info->expect_result = expect_result;
3943 }
3944
3945 struct notification_data
3946 {
3947     const struct notification *test;
3948     const unsigned int count;
3949     const char *method;
3950     const char *host;
3951     const char *path;
3952     const char *data;
3953     BOOL expect_conn_failure;
3954 };
3955
3956 static const struct notification async_send_request_ex_test[] =
3957 {
3958     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
3959     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
3960     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
3961     { http_send_request_ex,  INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
3962     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
3963     { http_send_request_ex,  INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
3964     { http_send_request_ex,  INTERNET_STATUS_CONNECTING_TO_SERVER, 1 },
3965     { http_send_request_ex,  INTERNET_STATUS_CONNECTED_TO_SERVER, 1 },
3966     { http_send_request_ex,  INTERNET_STATUS_SENDING_REQUEST, 1 },
3967     { http_send_request_ex,  INTERNET_STATUS_REQUEST_SENT, 1 },
3968     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
3969     { internet_writefile,    INTERNET_STATUS_SENDING_REQUEST, 0 },
3970     { internet_writefile,    INTERNET_STATUS_REQUEST_SENT, 0 },
3971     { http_end_request,      INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
3972     { http_end_request,      INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
3973     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
3974     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
3975     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
3976     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
3977     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
3978 };
3979
3980 static const struct notification async_send_request_ex_test2[] =
3981 {
3982     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
3983     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
3984     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
3985     { http_send_request_ex,  INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
3986     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
3987     { http_send_request_ex,  INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
3988     { http_send_request_ex,  INTERNET_STATUS_CONNECTING_TO_SERVER, 1, 1 },
3989     { http_send_request_ex,  INTERNET_STATUS_CONNECTED_TO_SERVER, 1, 1 },
3990     { http_send_request_ex,  INTERNET_STATUS_SENDING_REQUEST, 1 },
3991     { http_send_request_ex,  INTERNET_STATUS_REQUEST_SENT, 1 },
3992     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
3993     { http_end_request,      INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
3994     { http_end_request,      INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
3995     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
3996     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
3997     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
3998     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
3999     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4000 };
4001
4002 static const struct notification async_send_request_ex_resolve_failure_test[] =
4003 {
4004     { internet_connect,      INTERNET_STATUS_HANDLE_CREATED, 0 },
4005     { http_open_request,     INTERNET_STATUS_HANDLE_CREATED, 0 },
4006     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4007     { http_send_request_ex,  INTERNET_STATUS_RESOLVING_NAME, 1 },
4008     { http_send_request_ex,  INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4009     { http_send_request_ex,  INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4010     { http_end_request,      INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4011     { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4012     { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4013     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4014     { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4015 };
4016
4017 static const struct notification_data notification_data[] = {
4018     {
4019         async_send_request_ex_test,
4020         sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4021         "POST",
4022         "test.winehq.org",
4023         "tests/posttest.php",
4024         "Public ID=codeweavers"
4025     },
4026     {
4027         async_send_request_ex_test2,
4028         sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4029         "POST",
4030         "test.winehq.org",
4031         "tests/posttest.php"
4032     },
4033     {
4034         async_send_request_ex_resolve_failure_test,
4035         sizeof(async_send_request_ex_resolve_failure_test)/sizeof(async_send_request_ex_resolve_failure_test[0]),
4036         "GET",
4037         "brokenhost",
4038         "index.html",
4039         NULL,
4040         TRUE
4041     }
4042 };
4043
4044 static void test_async_HttpSendRequestEx(const struct notification_data *nd)
4045 {
4046     BOOL ret;
4047     HINTERNET ses, req, con;
4048     struct info info;
4049     DWORD size, written, error;
4050     INTERNET_BUFFERSA b;
4051     static const char *accept[2] = {"*/*", NULL};
4052     char buffer[32];
4053
4054     trace("Async HttpSendRequestEx test (%s %s)\n", nd->method, nd->host);
4055
4056     InitializeCriticalSection( &notification_cs );
4057
4058     info.test  = nd->test;
4059     info.count = nd->count;
4060     info.index = 0;
4061     info.wait = CreateEvent( NULL, FALSE, FALSE, NULL );
4062     info.thread = GetCurrentThreadId();
4063     info.is_aborted = FALSE;
4064
4065     ses = InternetOpen( "winetest", 0, NULL, NULL, INTERNET_FLAG_ASYNC );
4066     ok( ses != NULL, "InternetOpen failed\n" );
4067
4068     pInternetSetStatusCallbackA( ses, check_notification );
4069
4070     setup_test( &info, internet_connect, __LINE__, ERROR_SUCCESS );
4071     con = InternetConnect( ses, nd->host, 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, (DWORD_PTR)&info );
4072     ok( con != NULL, "InternetConnect failed %u\n", GetLastError() );
4073
4074     WaitForSingleObject( info.wait, 10000 );
4075
4076     setup_test( &info, http_open_request, __LINE__, ERROR_SUCCESS );
4077     req = HttpOpenRequest( con, nd->method, nd->path, NULL, NULL, accept, 0, (DWORD_PTR)&info );
4078     ok( req != NULL, "HttpOpenRequest failed %u\n", GetLastError() );
4079
4080     WaitForSingleObject( info.wait, 10000 );
4081
4082     if(nd->data) {
4083         memset( &b, 0, sizeof(INTERNET_BUFFERSA) );
4084         b.dwStructSize = sizeof(INTERNET_BUFFERSA);
4085         b.lpcszHeader = "Content-Type: application/x-www-form-urlencoded";
4086         b.dwHeadersLength = strlen( b.lpcszHeader );
4087         b.dwBufferTotal = nd->data ? strlen( nd->data ) : 0;
4088     }
4089
4090     setup_test( &info, http_send_request_ex, __LINE__,
4091             nd->expect_conn_failure ? ERROR_INTERNET_NAME_NOT_RESOLVED : ERROR_SUCCESS );
4092     ret = HttpSendRequestExA( req, nd->data ? &b : NULL, NULL, 0x28, 0 );
4093     ok( !ret && GetLastError() == ERROR_IO_PENDING, "HttpSendRequestExA failed %d %u\n", ret, GetLastError() );
4094
4095     error = WaitForSingleObject( info.wait, 10000 );
4096     if(error != WAIT_OBJECT_0) {
4097         skip("WaitForSingleObject returned %d, assuming DNS problem\n", error);
4098         info.is_aborted = TRUE;
4099         goto abort;
4100     }
4101
4102     size = sizeof(buffer);
4103     SetLastError( 0xdeadbeef );
4104     ret = HttpQueryInfoA( req, HTTP_QUERY_CONTENT_ENCODING, buffer, &size, 0 );
4105     error = GetLastError();
4106     ok( !ret, "HttpQueryInfoA failed %u\n", GetLastError() );
4107     if(nd->expect_conn_failure) {
4108         ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND got %u\n", error );
4109     }else {
4110         todo_wine
4111         ok(error == ERROR_INTERNET_INCORRECT_HANDLE_STATE,
4112             "expected ERROR_INTERNET_INCORRECT_HANDLE_STATE got %u\n", error );
4113     }
4114
4115     if (nd->data)
4116     {
4117         written = 0;
4118         size = strlen( nd->data );
4119         setup_test( &info, internet_writefile, __LINE__, ERROR_SUCCESS );
4120         ret = InternetWriteFile( req, nd->data, size, &written );
4121         ok( ret, "InternetWriteFile failed %u\n", GetLastError() );
4122         ok( written == size, "expected %u got %u\n", written, size );
4123
4124         WaitForSingleObject( info.wait, 10000 );
4125
4126         SetLastError( 0xdeadbeef );
4127         ret = HttpEndRequestA( req, (void *)nd->data, 0x28, 0 );
4128         error = GetLastError();
4129         ok( !ret, "HttpEndRequestA succeeded\n" );
4130         ok( error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got %u\n", error );
4131     }
4132
4133     SetLastError( 0xdeadbeef );
4134     setup_test( &info, http_end_request, __LINE__,
4135             nd->expect_conn_failure ? ERROR_INTERNET_OPERATION_CANCELLED : ERROR_SUCCESS);
4136     ret = HttpEndRequestA( req, NULL, 0x28, 0 );
4137     error = GetLastError();
4138     ok( !ret, "HttpEndRequestA succeeded\n" );
4139     ok( error == ERROR_IO_PENDING, "expected ERROR_IO_PENDING got %u\n", error );
4140
4141     WaitForSingleObject( info.wait, 10000 );
4142
4143     setup_test( &info, internet_close_handle, __LINE__, ERROR_SUCCESS );
4144  abort:
4145     InternetCloseHandle( req );
4146     InternetCloseHandle( con );
4147     InternetCloseHandle( ses );
4148
4149     WaitForSingleObject( info.wait, 10000 );
4150     Sleep(100);
4151     CloseHandle( info.wait );
4152 }
4153
4154 static HINTERNET closetest_session, closetest_req, closetest_conn;
4155 static BOOL closetest_closed;
4156
4157 static void WINAPI closetest_callback(HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetStatus,
4158      LPVOID lpvStatusInformation, DWORD dwStatusInformationLength)
4159 {
4160     DWORD len, type;
4161     BOOL res;
4162
4163     trace("closetest_callback %p: %d\n", hInternet, dwInternetStatus);
4164
4165     ok(hInternet == closetest_session || hInternet == closetest_conn || hInternet == closetest_req,
4166        "Unexpected hInternet %p\n", hInternet);
4167     if(!closetest_closed)
4168         return;
4169
4170     len = sizeof(type);
4171     res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_HANDLE_TYPE, &type, &len);
4172     ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4173        "InternetQueryOptionA(%p INTERNET_OPTION_HANDLE_TYPE) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4174        closetest_req, res, GetLastError());
4175 }
4176
4177 static void test_InternetCloseHandle(void)
4178 {
4179     DWORD len, flags;
4180     BOOL res;
4181
4182     closetest_session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
4183     ok(closetest_session != NULL,"InternetOpen failed with error %u\n", GetLastError());
4184
4185     pInternetSetStatusCallbackA(closetest_session, closetest_callback);
4186
4187     closetest_conn = InternetConnectA(closetest_session, "source.winehq.org", INTERNET_INVALID_PORT_NUMBER,
4188             NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
4189     ok(closetest_conn != NULL,"InternetConnect failed with error %u\n", GetLastError());
4190
4191     closetest_req = HttpOpenRequestA(closetest_conn, "GET", "winegecko.php", NULL, NULL, NULL,
4192             INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
4193
4194     res = HttpSendRequestA(closetest_req, NULL, -1, NULL, 0);
4195     ok(!res && (GetLastError() == ERROR_IO_PENDING),
4196        "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
4197
4198     test_request_flags(closetest_req, INTERNET_REQFLAG_NO_HEADERS);
4199
4200     res = InternetCloseHandle(closetest_session);
4201     ok(res, "InternetCloseHandle failed: %u\n", GetLastError());
4202     closetest_closed = TRUE;
4203     trace("Closed session handle\n");
4204
4205     res = InternetCloseHandle(closetest_conn);
4206     ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(conn) failed: %x %u\n",
4207        res, GetLastError());
4208
4209     res = InternetCloseHandle(closetest_req);
4210     ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(req) failed: %x %u\n",
4211        res, GetLastError());
4212
4213     len = sizeof(flags);
4214     res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_REQUEST_FLAGS, &flags, &len);
4215     ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4216        "InternetQueryOptionA(%p INTERNET_OPTION_URL) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4217        closetest_req, res, GetLastError());
4218 }
4219
4220 static void test_connection_failure(void)
4221 {
4222     HINTERNET session, connect, request;
4223     DWORD error;
4224     BOOL ret;
4225
4226     session = InternetOpenA("winetest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
4227     ok(session != NULL, "failed to get session handle\n");
4228
4229     connect = InternetConnectA(session, "localhost", 1, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
4230     ok(connect != NULL, "failed to get connection handle\n");
4231
4232     request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, NULL, 0, 0);
4233     ok(request != NULL, "failed to get request handle\n");
4234
4235     SetLastError(0xdeadbeef);
4236     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4237     error = GetLastError();
4238     ok(!ret, "unexpected success\n");
4239     ok(error == ERROR_INTERNET_CANNOT_CONNECT, "wrong error %u\n", error);
4240
4241     InternetCloseHandle(request);
4242     InternetCloseHandle(connect);
4243     InternetCloseHandle(session);
4244 }
4245
4246 static void test_default_service_port(void)
4247 {
4248     HINTERNET session, connect, request;
4249     DWORD error;
4250     BOOL ret;
4251
4252     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
4253     ok(session != NULL, "InternetOpen failed\n");
4254
4255     connect = InternetConnect(session, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER, NULL, NULL,
4256                               INTERNET_SERVICE_HTTP, 0, 0);
4257     ok(connect != NULL, "InternetConnect failed\n");
4258
4259     request = HttpOpenRequest(connect, NULL, "/", NULL, NULL, NULL, INTERNET_FLAG_SECURE, 0);
4260     ok(request != NULL, "HttpOpenRequest failed\n");
4261
4262     SetLastError(0xdeadbeef);
4263     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4264     error = GetLastError();
4265     ok(!ret, "HttpSendRequest succeeded\n");
4266     ok(error == ERROR_INTERNET_SECURITY_CHANNEL_ERROR || error == ERROR_INTERNET_CANNOT_CONNECT,
4267        "got %u\n", error);
4268
4269     InternetCloseHandle(request);
4270     InternetCloseHandle(connect);
4271     InternetCloseHandle(session);
4272 }
4273
4274 static void init_status_tests(void)
4275 {
4276     memset(expect, 0, sizeof(expect));
4277     memset(optional, 0, sizeof(optional));
4278     memset(wine_allow, 0, sizeof(wine_allow));
4279     memset(notified, 0, sizeof(notified));
4280     memset(status_string, 0, sizeof(status_string));
4281
4282 #define STATUS_STRING(status) status_string[status] = #status
4283     STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME);
4284     STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED);
4285     STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER);
4286     STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER);
4287     STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST);
4288     STATUS_STRING(INTERNET_STATUS_REQUEST_SENT);
4289     STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE);
4290     STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED);
4291     STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED);
4292     STATUS_STRING(INTERNET_STATUS_PREFETCH);
4293     STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION);
4294     STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED);
4295     STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED);
4296     STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING);
4297     STATUS_STRING(INTERNET_STATUS_DETECTING_PROXY);
4298     STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE);
4299     STATUS_STRING(INTERNET_STATUS_REDIRECT);
4300     STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE);
4301     STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED);
4302     STATUS_STRING(INTERNET_STATUS_STATE_CHANGE);
4303     STATUS_STRING(INTERNET_STATUS_COOKIE_SENT);
4304     STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED);
4305     STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED);
4306     STATUS_STRING(INTERNET_STATUS_P3P_HEADER);
4307     STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF);
4308     STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY);
4309 #undef STATUS_STRING
4310 }
4311
4312 START_TEST(http)
4313 {
4314     HMODULE hdll;
4315     hdll = GetModuleHandleA("wininet.dll");
4316
4317     if(!GetProcAddress(hdll, "InternetGetCookieExW")) {
4318         win_skip("Too old IE (older than 6.0)\n");
4319         return;
4320     }
4321
4322     pInternetSetStatusCallbackA = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackA");
4323     pInternetSetStatusCallbackW = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackW");
4324     pInternetGetSecurityInfoByURLA = (void*)GetProcAddress(hdll, "InternetGetSecurityInfoByURLA");
4325
4326     init_status_tests();
4327     test_InternetCloseHandle();
4328     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[0]);
4329     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[1]);
4330     InternetReadFile_test(0, &test_data[1]);
4331     first_connection_to_test_url = TRUE;
4332     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[2]);
4333     test_security_flags();
4334     InternetReadFile_test(0, &test_data[2]);
4335     InternetReadFileExA_test(INTERNET_FLAG_ASYNC);
4336     test_open_url_async();
4337     test_async_HttpSendRequestEx(&notification_data[0]);
4338     test_async_HttpSendRequestEx(&notification_data[1]);
4339     test_async_HttpSendRequestEx(&notification_data[2]);
4340     InternetOpenRequest_test();
4341     test_http_cache();
4342     InternetOpenUrlA_test();
4343     HttpHeaders_test();
4344     test_http_connection();
4345     test_secure_connection();
4346     test_user_agent_header();
4347     test_bogus_accept_types_array();
4348     InternetReadFile_chunked_test();
4349     HttpSendRequestEx_test();
4350     InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[3]);
4351     test_connection_failure();
4352     test_default_service_port();
4353 }