wininet: A small test for HttpQueryInfoA.
[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 "winsock.h"
31
32 #include "wine/test.h"
33
34 #define TEST_URL "http://www.winehq.org/site/about"
35
36 static BOOL first_connection_to_test_url = TRUE;
37
38 /* Adapted from dlls/urlmon/tests/protocol.c */
39
40 #define SET_EXPECT2(status, num) \
41     expect[status] = num
42
43 #define SET_EXPECT(status) \
44     SET_EXPECT2(status, 1)
45
46 /* SET_WINE_ALLOW's should be used with an appropriate
47  * todo_wine CHECK_NOTIFIED at a later point in the code */
48 #define SET_WINE_ALLOW2(status, num) \
49     wine_allow[status] = num
50
51 #define SET_WINE_ALLOW(status) \
52     SET_WINE_ALLOW2(status, 1)
53
54 #define CHECK_EXPECT(status) \
55     do { \
56         if (!expect[status] && wine_allow[status]) \
57         { \
58             todo_wine ok(expect[status], "unexpected status %d (%s)\n", status, \
59                          status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
60                          status_string[status] : "unknown");            \
61             wine_allow[status]--; \
62         } \
63         else \
64         { \
65             ok(expect[status], "unexpected status %d (%s)\n", status,   \
66                status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
67                status_string[status] : "unknown");                      \
68             expect[status]--;                                           \
69         } \
70         notified[status]++; \
71     }while(0)
72
73 /* CLEAR_NOTIFIED used in cases when notification behavior
74  * differs between Windows versions */
75 #define CLEAR_NOTIFIED(status) \
76     expect[status] = wine_allow[status] = notified[status] = 0;
77
78 #define CHECK_NOTIFIED2(status, num) \
79     do { \
80         ok(notified[status] == (num), "expected status %d (%s) %d times, received %d times\n", \
81            status, status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
82            status_string[status] : "unknown", (num), notified[status]); \
83         CLEAR_NOTIFIED(status);                                         \
84     }while(0)
85
86 #define CHECK_NOTIFIED(status) \
87     CHECK_NOTIFIED2(status, 1)
88
89 #define CHECK_NOT_NOTIFIED(status) \
90     CHECK_NOTIFIED2(status, 0)
91
92 #define MAX_INTERNET_STATUS (INTERNET_STATUS_COOKIE_HISTORY+1)
93 #define MAX_STATUS_NAME 50
94 static int expect[MAX_INTERNET_STATUS], wine_allow[MAX_INTERNET_STATUS],
95     notified[MAX_INTERNET_STATUS];
96 static CHAR status_string[MAX_INTERNET_STATUS][MAX_STATUS_NAME];
97
98 static HANDLE hCompleteEvent;
99
100 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackA)(HINTERNET ,INTERNET_STATUS_CALLBACK);
101 static BOOL (WINAPI *pInternetTimeFromSystemTimeA)(CONST SYSTEMTIME *,DWORD ,LPSTR ,DWORD);
102 static BOOL (WINAPI *pInternetTimeFromSystemTimeW)(CONST SYSTEMTIME *,DWORD ,LPWSTR ,DWORD);
103 static BOOL (WINAPI *pInternetTimeToSystemTimeA)(LPCSTR ,SYSTEMTIME *,DWORD);
104 static BOOL (WINAPI *pInternetTimeToSystemTimeW)(LPCWSTR ,SYSTEMTIME *,DWORD);
105
106
107 static VOID WINAPI callback(
108      HINTERNET hInternet,
109      DWORD_PTR dwContext,
110      DWORD dwInternetStatus,
111      LPVOID lpvStatusInformation,
112      DWORD dwStatusInformationLength
113 )
114 {
115     CHECK_EXPECT(dwInternetStatus);
116     switch (dwInternetStatus)
117     {
118         case INTERNET_STATUS_RESOLVING_NAME:
119             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESOLVING_NAME \"%s\" %d\n",
120                 GetCurrentThreadId(), hInternet, dwContext,
121                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
122             *(LPSTR)lpvStatusInformation = '\0';
123             break;
124         case INTERNET_STATUS_NAME_RESOLVED:
125             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_NAME_RESOLVED \"%s\" %d\n",
126                 GetCurrentThreadId(), hInternet, dwContext,
127                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
128             *(LPSTR)lpvStatusInformation = '\0';
129             break;
130         case INTERNET_STATUS_CONNECTING_TO_SERVER:
131             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTING_TO_SERVER \"%s\" %d\n",
132                 GetCurrentThreadId(), hInternet, dwContext,
133                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
134             *(LPSTR)lpvStatusInformation = '\0';
135             break;
136         case INTERNET_STATUS_CONNECTED_TO_SERVER:
137             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTED_TO_SERVER \"%s\" %d\n",
138                 GetCurrentThreadId(), hInternet, dwContext,
139                 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
140             *(LPSTR)lpvStatusInformation = '\0';
141             break;
142         case INTERNET_STATUS_SENDING_REQUEST:
143             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_SENDING_REQUEST %p %d\n",
144                 GetCurrentThreadId(), hInternet, dwContext,
145                 lpvStatusInformation,dwStatusInformationLength);
146             break;
147         case INTERNET_STATUS_REQUEST_SENT:
148             ok(dwStatusInformationLength == sizeof(DWORD),
149                 "info length should be sizeof(DWORD) instead of %d\n",
150                 dwStatusInformationLength);
151             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_SENT 0x%x %d\n",
152                 GetCurrentThreadId(), hInternet, dwContext,
153                 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
154             break;
155         case INTERNET_STATUS_RECEIVING_RESPONSE:
156             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RECEIVING_RESPONSE %p %d\n",
157                 GetCurrentThreadId(), hInternet, dwContext,
158                 lpvStatusInformation,dwStatusInformationLength);
159             break;
160         case INTERNET_STATUS_RESPONSE_RECEIVED:
161             ok(dwStatusInformationLength == sizeof(DWORD),
162                 "info length should be sizeof(DWORD) instead of %d\n",
163                 dwStatusInformationLength);
164             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESPONSE_RECEIVED 0x%x %d\n",
165                 GetCurrentThreadId(), hInternet, dwContext,
166                 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
167             break;
168         case INTERNET_STATUS_CTL_RESPONSE_RECEIVED:
169             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CTL_RESPONSE_RECEIVED %p %d\n",
170                 GetCurrentThreadId(), hInternet,dwContext,
171                 lpvStatusInformation,dwStatusInformationLength);
172             break;
173         case INTERNET_STATUS_PREFETCH:
174             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_PREFETCH %p %d\n",
175                 GetCurrentThreadId(), hInternet, dwContext,
176                 lpvStatusInformation,dwStatusInformationLength);
177             break;
178         case INTERNET_STATUS_CLOSING_CONNECTION:
179             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CLOSING_CONNECTION %p %d\n",
180                 GetCurrentThreadId(), hInternet, dwContext,
181                 lpvStatusInformation,dwStatusInformationLength);
182             break;
183         case INTERNET_STATUS_CONNECTION_CLOSED:
184             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTION_CLOSED %p %d\n",
185                 GetCurrentThreadId(), hInternet, dwContext,
186                 lpvStatusInformation,dwStatusInformationLength);
187             break;
188         case INTERNET_STATUS_HANDLE_CREATED:
189             ok(dwStatusInformationLength == sizeof(HINTERNET),
190                 "info length should be sizeof(HINTERNET) instead of %d\n",
191                 dwStatusInformationLength);
192             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d\n",
193                 GetCurrentThreadId(), hInternet, dwContext,
194                 *(HINTERNET *)lpvStatusInformation,dwStatusInformationLength);
195             break;
196         case INTERNET_STATUS_HANDLE_CLOSING:
197             ok(dwStatusInformationLength == sizeof(HINTERNET),
198                 "info length should be sizeof(HINTERNET) instead of %d\n",
199                 dwStatusInformationLength);
200             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CLOSING %p %d\n",
201                 GetCurrentThreadId(), hInternet, dwContext,
202                 *(HINTERNET *)lpvStatusInformation, dwStatusInformationLength);
203             break;
204         case INTERNET_STATUS_REQUEST_COMPLETE:
205         {
206             INTERNET_ASYNC_RESULT *iar = (INTERNET_ASYNC_RESULT *)lpvStatusInformation;
207             ok(dwStatusInformationLength == sizeof(INTERNET_ASYNC_RESULT),
208                 "info length should be sizeof(INTERNET_ASYNC_RESULT) instead of %d\n",
209                 dwStatusInformationLength);
210             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_COMPLETE {%d,%d} %d\n",
211                 GetCurrentThreadId(), hInternet, dwContext,
212                 iar->dwResult,iar->dwError,dwStatusInformationLength);
213             SetEvent(hCompleteEvent);
214             break;
215         }
216         case INTERNET_STATUS_REDIRECT:
217             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REDIRECT \"%s\" %d\n",
218                 GetCurrentThreadId(), hInternet, dwContext,
219                 (LPCSTR)lpvStatusInformation, dwStatusInformationLength);
220             *(LPSTR)lpvStatusInformation = '\0';
221             break;
222         case INTERNET_STATUS_INTERMEDIATE_RESPONSE:
223             trace("%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d\n",
224                 GetCurrentThreadId(), hInternet, dwContext,
225                 lpvStatusInformation, dwStatusInformationLength);
226             break;
227         default:
228             trace("%04x:Callback %p 0x%lx %d %p %d\n",
229                 GetCurrentThreadId(), hInternet, dwContext, dwInternetStatus,
230                 lpvStatusInformation, dwStatusInformationLength);
231     }
232 }
233
234 static void InternetReadFile_test(int flags)
235 {
236     DWORD rc;
237     CHAR buffer[4000];
238     DWORD length;
239     DWORD out;
240     const char *types[2] = { "*", NULL };
241     HINTERNET hi, hic = 0, hor = 0;
242
243     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
244
245     trace("Starting InternetReadFile test with flags 0x%x\n",flags);
246
247     trace("InternetOpenA <--\n");
248     hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
249     ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
250     trace("InternetOpenA -->\n");
251
252     if (hi == 0x0) goto abort;
253
254     pInternetSetStatusCallbackA(hi,&callback);
255
256     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
257
258     trace("InternetConnectA <--\n");
259     hic=InternetConnectA(hi, "www.winehq.org", INTERNET_INVALID_PORT_NUMBER,
260                          NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
261     ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
262     trace("InternetConnectA -->\n");
263
264     if (hic == 0x0) goto abort;
265
266     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
267     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
268     SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
269     SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
270
271     trace("HttpOpenRequestA <--\n");
272     hor = HttpOpenRequestA(hic, "GET", "/about/", NULL, NULL, types,
273                            INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE,
274                            0xdeadbead);
275     if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
276         /*
277          * If the internet name can't be resolved we are probably behind
278          * a firewall or in some other way not directly connected to the
279          * Internet. Not enough reason to fail the test. Just ignore and
280          * abort.
281          */
282     } else  {
283         ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
284     }
285     trace("HttpOpenRequestA -->\n");
286
287     if (hor == 0x0) goto abort;
288
289     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
290     todo_wine
291     {
292         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
293         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
294     }
295     if (first_connection_to_test_url)
296     {
297         SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
298         SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
299     }
300     else
301     {
302         SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
303         SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
304     }
305     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
306     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
307     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
308     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
309     SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
310     SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
311     SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
312     SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
313     SET_EXPECT(INTERNET_STATUS_REDIRECT);
314     if (flags & INTERNET_FLAG_ASYNC)
315         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
316     else
317         SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
318
319     trace("HttpSendRequestA -->\n");
320     SetLastError(0xdeadbeef);
321     rc = HttpSendRequestA(hor, "", -1, NULL, 0);
322     if (flags & INTERNET_FLAG_ASYNC)
323         ok(((rc == 0)&&(GetLastError() == ERROR_IO_PENDING)),
324             "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
325     else
326         ok((rc != 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED,
327            "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
328     trace("HttpSendRequestA <--\n");
329
330     if (flags & INTERNET_FLAG_ASYNC)
331         WaitForSingleObject(hCompleteEvent, INFINITE);
332
333     if (first_connection_to_test_url)
334     {
335         CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
336         CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
337     }
338     else todo_wine
339     {
340         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
341         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
342     }
343     CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
344     CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
345     CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
346     CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
347     CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
348     if (flags & INTERNET_FLAG_ASYNC)
349         CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
350     else
351         todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
352     /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
353     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
354     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
355
356     length = 4;
357     rc = InternetQueryOptionA(hor,INTERNET_OPTION_REQUEST_FLAGS,&out,&length);
358     trace("Option 0x17 -> %i  %i\n",rc,out);
359
360     length = 100;
361     rc = InternetQueryOptionA(hor,INTERNET_OPTION_URL,buffer,&length);
362     trace("Option 0x22 -> %i  %s\n",rc,buffer);
363
364     length = 4000;
365     rc = HttpQueryInfoA(hor,HTTP_QUERY_RAW_HEADERS,buffer,&length,0x0);
366     buffer[length]=0;
367     trace("Option 0x16 -> %i  %s\n",rc,buffer);
368
369     length = 4000;
370     rc = InternetQueryOptionA(hor,INTERNET_OPTION_URL,buffer,&length);
371     buffer[length]=0;
372     trace("Option 0x22 -> %i  %s\n",rc,buffer);
373
374     length = 16;
375     rc = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
376     trace("Option 0x5 -> %i  %s  (%u)\n",rc,buffer,GetLastError());
377
378     length = 100;
379     rc = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
380     buffer[length]=0;
381     trace("Option 0x1 -> %i  %s\n",rc,buffer);
382
383     SetLastError(0xdeadbeef);
384     rc = InternetReadFile(NULL, buffer, 100, &length);
385     ok(!rc, "InternetReadFile should have failed\n");
386     ok(GetLastError() == ERROR_INVALID_HANDLE,
387         "InternetReadFile should have set last error to ERROR_INVALID_HANDLE instead of %u\n",
388         GetLastError());
389
390     length = 100;
391     trace("Entering Query loop\n");
392
393     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
394     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
395     while (TRUE)
396     {
397         if (flags & INTERNET_FLAG_ASYNC)
398             SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
399         rc = InternetQueryDataAvailable(hor,&length,0x0,0x0);
400         ok(!(rc == 0 && length != 0),"InternetQueryDataAvailable failed with non-zero length\n");
401         ok(rc != 0 || ((flags & INTERNET_FLAG_ASYNC) && GetLastError() == ERROR_IO_PENDING),
402            "InternetQueryDataAvailable failed, error %d\n", GetLastError());
403         if (flags & INTERNET_FLAG_ASYNC)
404         {
405             if (rc != 0)
406             {
407                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
408             }
409             else if (GetLastError() == ERROR_IO_PENDING)
410             {
411                 WaitForSingleObject(hCompleteEvent, INFINITE);
412                 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
413                 continue;
414             }
415         }
416         if (length)
417         {
418             char *buffer;
419             buffer = HeapAlloc(GetProcessHeap(),0,length+1);
420
421             rc = InternetReadFile(hor,buffer,length,&length);
422
423             buffer[length]=0;
424
425             trace("ReadFile -> %i %i\n",rc,length);
426
427             HeapFree(GetProcessHeap(),0,buffer);
428         }
429         if (length == 0)
430             break;
431     }
432     /* WinXP does not send, but Win98 does */
433     CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
434     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
435 abort:
436     SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
437     if (hor != 0x0) {
438         SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION);
439         SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED);
440         SetLastError(0xdeadbeef);
441         rc = InternetCloseHandle(hor);
442         ok ((rc != 0), "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
443         SetLastError(0xdeadbeef);
444         rc = InternetCloseHandle(hor);
445         ok ((rc == 0), "Double close of handle opened by HttpOpenRequestA succeeded\n");
446         ok (GetLastError() == ERROR_INVALID_HANDLE,
447             "Double close of handle should have set ERROR_INVALID_HANDLE instead of %u\n",
448             GetLastError());
449     }
450     if (hic != 0x0) {
451         rc = InternetCloseHandle(hic);
452         ok ((rc != 0), "InternetCloseHandle of handle opened by InternetConnectA failed\n");
453     }
454     if (hi != 0x0) {
455       SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING);
456       rc = InternetCloseHandle(hi);
457       ok ((rc != 0), "InternetCloseHandle of handle opened by InternetOpenA failed\n");
458       if (flags & INTERNET_FLAG_ASYNC)
459           Sleep(100);
460     }
461     todo_wine CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
462     if (hor != 0x0) todo_wine
463     {
464         CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
465         CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
466     }
467     else
468     {
469         CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
470         CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
471     }
472     CloseHandle(hCompleteEvent);
473     first_connection_to_test_url = FALSE;
474 }
475
476 static void InternetReadFileExA_test(int flags)
477 {
478     DWORD rc;
479     DWORD length;
480     const char *types[2] = { "*", NULL };
481     HINTERNET hi, hic = 0, hor = 0;
482     INTERNET_BUFFERS inetbuffers;
483
484     hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
485
486     trace("Starting InternetReadFileExA test with flags 0x%x\n",flags);
487
488     trace("InternetOpenA <--\n");
489     hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
490     ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
491     trace("InternetOpenA -->\n");
492
493     if (hi == 0x0) goto abort;
494
495     pInternetSetStatusCallbackA(hi,&callback);
496
497     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
498
499     trace("InternetConnectA <--\n");
500     hic=InternetConnectA(hi, "www.winehq.org", INTERNET_INVALID_PORT_NUMBER,
501                          NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
502     ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
503     trace("InternetConnectA -->\n");
504
505     if (hic == 0x0) goto abort;
506
507     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
508     SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
509     SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
510     SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
511
512     trace("HttpOpenRequestA <--\n");
513     hor = HttpOpenRequestA(hic, "GET", "/about/", NULL, NULL, types,
514                            INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE,
515                            0xdeadbead);
516     if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
517         /*
518          * If the internet name can't be resolved we are probably behind
519          * a firewall or in some other way not directly connected to the
520          * Internet. Not enough reason to fail the test. Just ignore and
521          * abort.
522          */
523     } else  {
524         ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
525     }
526     trace("HttpOpenRequestA -->\n");
527
528     if (hor == 0x0) goto abort;
529
530     CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
531     todo_wine
532     {
533         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
534         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
535     }
536     if (first_connection_to_test_url)
537     {
538         SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
539         SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
540     }
541     else
542     {
543         SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
544         SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
545     }
546     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
547     SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
548     SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
549     SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
550     SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
551     SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
552     SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
553     SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
554     SET_EXPECT(INTERNET_STATUS_REDIRECT);
555     if (flags & INTERNET_FLAG_ASYNC)
556         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
557     else
558         SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
559
560     trace("HttpSendRequestA -->\n");
561     SetLastError(0xdeadbeef);
562     rc = HttpSendRequestA(hor, "", -1, NULL, 0);
563     if (flags & INTERNET_FLAG_ASYNC)
564         ok(((rc == 0)&&(GetLastError() == ERROR_IO_PENDING)),
565             "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
566     else
567         ok((rc != 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED,
568            "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
569     trace("HttpSendRequestA <--\n");
570
571     if (!rc && (GetLastError() == ERROR_IO_PENDING))
572         WaitForSingleObject(hCompleteEvent, INFINITE);
573
574     if (first_connection_to_test_url)
575     {
576         CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
577         CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
578     }
579     else todo_wine
580     {
581         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
582         CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
583     }
584     CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
585     CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
586     CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
587     CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
588     CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
589     if (flags & INTERNET_FLAG_ASYNC)
590         CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
591     else
592         todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
593     /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
594     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
595     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
596
597     /* tests invalid dwStructSize */
598     inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS)+1;
599     inetbuffers.lpcszHeader = NULL;
600     inetbuffers.dwHeadersLength = 0;
601     inetbuffers.dwBufferLength = 10;
602     inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, 10);
603     inetbuffers.dwOffsetHigh = 1234;
604     inetbuffers.dwOffsetLow = 5678;
605     rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
606     ok(!rc && (GetLastError() == ERROR_INVALID_PARAMETER),
607         "InternetReadFileEx should have failed with ERROR_INVALID_PARAMETER instead of %s, %u\n",
608         rc ? "TRUE" : "FALSE", GetLastError());
609     HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
610
611     /* tests to see whether lpcszHeader is used - it isn't */
612     inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
613     inetbuffers.lpcszHeader = (LPCTSTR)0xdeadbeef;
614     inetbuffers.dwHeadersLength = 255;
615     inetbuffers.dwBufferLength = 0;
616     inetbuffers.lpvBuffer = NULL;
617     inetbuffers.dwOffsetHigh = 1234;
618     inetbuffers.dwOffsetLow = 5678;
619     SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
620     SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
621     rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
622     ok(rc, "InternetReadFileEx failed with error %u\n", GetLastError());
623     todo_wine
624     {
625         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
626         CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
627     }
628
629     rc = InternetReadFileEx(NULL, &inetbuffers, 0, 0xdeadcafe);
630     ok(!rc && (GetLastError() == ERROR_INVALID_HANDLE),
631         "InternetReadFileEx should have failed with ERROR_INVALID_HANDLE instead of %s, %u\n",
632         rc ? "TRUE" : "FALSE", GetLastError());
633
634     length = 0;
635     trace("Entering Query loop\n");
636
637     SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
638     SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
639     while (TRUE)
640     {
641         inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
642         inetbuffers.dwBufferLength = 1024;
643         inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, inetbuffers.dwBufferLength+1);
644         inetbuffers.dwOffsetHigh = 1234;
645         inetbuffers.dwOffsetLow = 5678;
646
647         SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
648         SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
649         SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
650         rc = InternetReadFileExA(hor, &inetbuffers, IRF_ASYNC | IRF_USE_CONTEXT, 0xcafebabe);
651         if (!rc)
652         {
653             if (GetLastError() == ERROR_IO_PENDING)
654             {
655                 trace("InternetReadFileEx -> PENDING\n");
656                 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
657                 WaitForSingleObject(hCompleteEvent, INFINITE);
658                 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
659                 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
660             }
661             else
662             {
663                 trace("InternetReadFileEx -> FAILED %u\n", GetLastError());
664                 break;
665             }
666         }
667         else
668         {
669             trace("InternetReadFileEx -> SUCCEEDED\n");
670             CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
671             if (inetbuffers.dwBufferLength)
672             {
673                 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
674                 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
675             }
676             else
677             {
678                 /* Win98 still sends these when 0 bytes are read, WinXP does not */
679                 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
680                 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
681             }
682         }
683
684         trace("read %i bytes\n", inetbuffers.dwBufferLength);
685         ((char *)inetbuffers.lpvBuffer)[inetbuffers.dwBufferLength] = '\0';
686
687         ok(inetbuffers.dwOffsetHigh == 1234 && inetbuffers.dwOffsetLow == 5678,
688             "InternetReadFileEx sets offsets to 0x%x%08x\n",
689             inetbuffers.dwOffsetHigh, inetbuffers.dwOffsetLow);
690
691         HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
692
693         if (!inetbuffers.dwBufferLength)
694             break;
695
696         length += inetbuffers.dwBufferLength;
697     }
698     ok(length > 0, "failed to read any of the document\n");
699     trace("Finished. Read %d bytes\n", length);
700
701     /* WinXP does not send, but Win98 does */
702     CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
703     CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
704 abort:
705     SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
706     if (hor) {
707         rc = InternetCloseHandle(hor);
708         ok ((rc != 0), "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
709         rc = InternetCloseHandle(hor);
710         ok ((rc == 0), "Double close of handle opened by HttpOpenRequestA succeeded\n");
711     }
712     if (hic) {
713         rc = InternetCloseHandle(hic);
714         ok ((rc != 0), "InternetCloseHandle of handle opened by InternetConnectA failed\n");
715     }
716     if (hi) {
717       SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING);
718       rc = InternetCloseHandle(hi);
719       ok ((rc != 0), "InternetCloseHandle of handle opened by InternetOpenA failed\n");
720       if (flags & INTERNET_FLAG_ASYNC)
721           Sleep(100);
722       todo_wine CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
723     }
724     CloseHandle(hCompleteEvent);
725     first_connection_to_test_url = FALSE;
726 }
727
728 static void InternetOpenUrlA_test(void)
729 {
730   HINTERNET myhinternet, myhttp;
731   char buffer[0x400];
732   DWORD size, readbytes, totalbytes=0;
733   BOOL ret;
734   
735   myhinternet = InternetOpen("Winetest",0,NULL,NULL,INTERNET_FLAG_NO_CACHE_WRITE);
736   ok((myhinternet != 0), "InternetOpen failed, error %u\n",GetLastError());
737   size = 0x400;
738   ret = InternetCanonicalizeUrl(TEST_URL, buffer, &size,ICU_BROWSER_MODE);
739   ok( ret, "InternetCanonicalizeUrl failed, error %u\n",GetLastError());
740
741   SetLastError(0);
742   myhttp = InternetOpenUrl(myhinternet, TEST_URL, 0, 0,
743                            INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_TRANSFER_BINARY,0);
744   if (GetLastError() == 12007)
745     return; /* WinXP returns this when not connected to the net */
746   ok((myhttp != 0),"InternetOpenUrl failed, error %u\n",GetLastError());
747   ret = InternetReadFile(myhttp, buffer,0x400,&readbytes);
748   ok( ret, "InternetReadFile failed, error %u\n",GetLastError());
749   totalbytes += readbytes;
750   while (readbytes && InternetReadFile(myhttp, buffer,0x400,&readbytes))
751     totalbytes += readbytes;
752   trace("read 0x%08x bytes\n",totalbytes);
753 }
754
755 static void InternetTimeFromSystemTimeA_test(void)
756 {
757     BOOL ret;
758     static const SYSTEMTIME time = { 2005, 1, 5, 7, 12, 6, 35, 0 };
759     char string[INTERNET_RFC1123_BUFSIZE];
760     static const char expect[] = "Fri, 07 Jan 2005 12:06:35 GMT";
761
762     ret = pInternetTimeFromSystemTimeA( &time, INTERNET_RFC1123_FORMAT, string, sizeof(string) );
763     ok( ret, "InternetTimeFromSystemTimeA failed (%u)\n", GetLastError() );
764
765     ok( !memcmp( string, expect, sizeof(expect) ),
766         "InternetTimeFromSystemTimeA failed (%u)\n", GetLastError() );
767 }
768
769 static void InternetTimeFromSystemTimeW_test(void)
770 {
771     BOOL ret;
772     static const SYSTEMTIME time = { 2005, 1, 5, 7, 12, 6, 35, 0 };
773     WCHAR string[INTERNET_RFC1123_BUFSIZE + 1];
774     static const WCHAR expect[] = { 'F','r','i',',',' ','0','7',' ','J','a','n',' ','2','0','0','5',' ',
775                                     '1','2',':','0','6',':','3','5',' ','G','M','T',0 };
776
777     ret = pInternetTimeFromSystemTimeW( &time, INTERNET_RFC1123_FORMAT, string, sizeof(string) );
778     ok( ret, "InternetTimeFromSystemTimeW failed (%u)\n", GetLastError() );
779
780     ok( !memcmp( string, expect, sizeof(expect) ),
781         "InternetTimeFromSystemTimeW failed (%u)\n", GetLastError() );
782 }
783
784 static void InternetTimeToSystemTimeA_test(void)
785 {
786     BOOL ret;
787     SYSTEMTIME time;
788     static const SYSTEMTIME expect = { 2005, 1, 5, 7, 12, 6, 35, 0 };
789     static const char string[] = "Fri, 07 Jan 2005 12:06:35 GMT";
790     static const char string2[] = " fri 7 jan 2005 12 06 35";
791
792     ret = pInternetTimeToSystemTimeA( string, &time, 0 );
793     ok( ret, "InternetTimeToSystemTimeA failed (%u)\n", GetLastError() );
794     ok( !memcmp( &time, &expect, sizeof(expect) ),
795         "InternetTimeToSystemTimeA failed (%u)\n", GetLastError() );
796
797     ret = pInternetTimeToSystemTimeA( string2, &time, 0 );
798     ok( ret, "InternetTimeToSystemTimeA failed (%u)\n", GetLastError() );
799     ok( !memcmp( &time, &expect, sizeof(expect) ),
800         "InternetTimeToSystemTimeA failed (%u)\n", GetLastError() );
801 }
802
803 static void InternetTimeToSystemTimeW_test(void)
804 {
805     BOOL ret;
806     SYSTEMTIME time;
807     static const SYSTEMTIME expect = { 2005, 1, 5, 7, 12, 6, 35, 0 };
808     static const WCHAR string[] = { 'F','r','i',',',' ','0','7',' ','J','a','n',' ','2','0','0','5',' ',
809                                     '1','2',':','0','6',':','3','5',' ','G','M','T',0 };
810     static const WCHAR string2[] = { ' ','f','r','i',' ','7',' ','j','a','n',' ','2','0','0','5',' ',
811                                      '1','2',' ','0','6',' ','3','5',0 };
812     static const WCHAR string3[] = { 'F','r',0 };
813
814     ret = pInternetTimeToSystemTimeW( NULL, NULL, 0 );
815     ok( !ret, "InternetTimeToSystemTimeW succeeded (%u)\n", GetLastError() );
816
817     ret = pInternetTimeToSystemTimeW( NULL, &time, 0 );
818     ok( !ret, "InternetTimeToSystemTimeW succeeded (%u)\n", GetLastError() );
819
820     ret = pInternetTimeToSystemTimeW( string, NULL, 0 );
821     ok( !ret, "InternetTimeToSystemTimeW succeeded (%u)\n", GetLastError() );
822
823     ret = pInternetTimeToSystemTimeW( string, &time, 0 );
824     ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
825
826     ret = pInternetTimeToSystemTimeW( string, &time, 0 );
827     ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
828     ok( !memcmp( &time, &expect, sizeof(expect) ),
829         "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
830
831     ret = pInternetTimeToSystemTimeW( string2, &time, 0 );
832     ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
833     ok( !memcmp( &time, &expect, sizeof(expect) ),
834         "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
835
836     ret = pInternetTimeToSystemTimeW( string3, &time, 0 );
837     ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
838 }
839
840 static void HttpSendRequestEx_test(void)
841 {
842     HINTERNET hSession;
843     HINTERNET hConnect;
844     HINTERNET hRequest;
845
846     INTERNET_BUFFERS BufferIn;
847     DWORD dwBytesWritten;
848     DWORD dwBytesRead;
849     CHAR szBuffer[256];
850     int i;
851     BOOL ret;
852
853     static char szPostData[] = "mode=Test";
854     static const char szContentType[] = "Content-Type: application/x-www-form-urlencoded";
855
856     hSession = InternetOpen("Wine Regression Test",
857             INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
858     ok( hSession != NULL ,"Unable to open Internet session\n");
859     hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
860             INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
861             0);
862     ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
863     hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
864             NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
865     if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
866     {
867         trace( "Network unreachable, skipping test\n" );
868         goto done;
869     }
870     ok( hRequest != NULL, "Failed to open request handle err %u\n", GetLastError());
871
872
873     BufferIn.dwStructSize = sizeof( INTERNET_BUFFERS);
874     BufferIn.Next = (LPINTERNET_BUFFERS)0xdeadcab;
875     BufferIn.lpcszHeader = szContentType;
876     BufferIn.dwHeadersLength = sizeof(szContentType);
877     BufferIn.dwHeadersTotal = sizeof(szContentType);
878     BufferIn.lpvBuffer = szPostData;
879     BufferIn.dwBufferLength = 3;
880     BufferIn.dwBufferTotal = sizeof(szPostData)-1;
881     BufferIn.dwOffsetLow = 0;
882     BufferIn.dwOffsetHigh = 0;
883
884     ret = HttpSendRequestEx(hRequest, &BufferIn, NULL, 0 ,0);
885     ok(ret, "HttpSendRequestEx Failed with error %u\n", GetLastError());
886
887     for (i = 3; szPostData[i]; i++)
888         ok(InternetWriteFile(hRequest, &szPostData[i], 1, &dwBytesWritten),
889                 "InternetWriteFile failed\n");
890
891     ok(HttpEndRequest(hRequest, NULL, 0, 0), "HttpEndRequest Failed\n");
892
893     ok(InternetReadFile(hRequest, szBuffer, 255, &dwBytesRead),
894             "Unable to read response\n");
895     szBuffer[dwBytesRead] = 0;
896
897     ok(dwBytesRead == 13,"Read %u bytes instead of 13\n",dwBytesRead);
898     ok(strncmp(szBuffer,"mode => Test\n",dwBytesRead)==0,"Got string %s\n",szBuffer);
899
900     ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
901 done:
902     ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
903     ok(InternetCloseHandle(hSession), "Close session handle failed\n");
904 }
905
906 static void InternetOpenRequest_test(void)
907 {
908     HINTERNET session, connect, request;
909     static const char *types[] = { "*", "", NULL };
910     static const WCHAR slash[] = {'/', 0}, any[] = {'*', 0}, empty[] = {0};
911     static const WCHAR *typesW[] = { any, empty, NULL };
912     BOOL ret;
913
914     session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
915     ok(session != NULL ,"Unable to open Internet session\n");
916
917     connect = InternetConnectA(session, "winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
918                               INTERNET_SERVICE_HTTP, 0, 0);
919     ok(connect != NULL, "Unable to connect to http://winehq.org\n");
920
921     request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
922     if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
923     {
924         trace( "Network unreachable, skipping test\n" );
925         goto done;
926     }
927     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
928
929     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
930     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
931     ok(InternetCloseHandle(request), "Close request handle failed\n");
932
933     request = HttpOpenRequestW(connect, NULL, slash, NULL, NULL, typesW, INTERNET_FLAG_NO_CACHE_WRITE, 0);
934     ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
935
936     ret = HttpSendRequest(request, NULL, 0, NULL, 0);
937     ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
938     ok(InternetCloseHandle(request), "Close request handle failed\n");
939
940 done:
941     ok(InternetCloseHandle(connect), "Close connect handle failed\n");
942     ok(InternetCloseHandle(session), "Close session handle failed\n");
943 }
944
945 static void HttpHeaders_test(void)
946 {
947     HINTERNET hSession;
948     HINTERNET hConnect;
949     HINTERNET hRequest;
950     CHAR      buffer[256];
951     DWORD     len = 256;
952     DWORD     index = 0;
953
954     hSession = InternetOpen("Wine Regression Test",
955             INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
956     ok( hSession != NULL ,"Unable to open Internet session\n");
957     hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
958             INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
959             0);
960     ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
961     hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
962             NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
963     if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
964     {
965         trace( "Network unreachable, skipping test\n" );
966         goto done;
967     }
968     ok( hRequest != NULL, "Failed to open request handle\n");
969
970     index = 0;
971     len = sizeof(buffer);
972     strcpy(buffer,"Warning");
973     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
974                buffer,&len,&index)==0,"Warning hearder reported as Existing\n");
975     
976     ok(HttpAddRequestHeaders(hRequest,"Warning:test1",-1,HTTP_ADDREQ_FLAG_ADD),
977             "Failed to add new header\n");
978
979     index = 0;
980     len = sizeof(buffer);
981     strcpy(buffer,"Warning");
982     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
983                 buffer,&len,&index),"Unable to query header\n");
984     ok(index == 1, "Index was not incremented\n");
985     ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
986     ok(len == 5, "Invalid length (exp. 5, got %d)\n", len);
987     ok(buffer[len] == 0, "Buffer not NULL-terminated\n"); /* len show only 5 characters but the buffer is NULL-terminated*/
988     len = sizeof(buffer);
989     strcpy(buffer,"Warning");
990     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
991                 buffer,&len,&index)==0,"Second Index Should Not Exist\n");
992
993     index = 0;
994     len = 5; /* could store the string but not the NULL terminator */
995     strcpy(buffer,"Warning");
996     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
997                 buffer,&len,&index) == FALSE,"Query succeeded on a too small buffer\n");
998     ok(strcmp(buffer,"Warning")==0, "incorrect string was returned(%s)\n",buffer); /* string not touched */
999     ok(len == 6, "Invalid length (exp. 6, got %d)\n", len); /* unlike success, the length includes the NULL-terminator */
1000
1001     /* a call with NULL will fail but will return the length */
1002     index = 0;
1003     len = sizeof(buffer);
1004     SetLastError(0xdeadbeef);
1005     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1006                 NULL,&len,&index) == FALSE,"Query worked\n");
1007     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1008     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1009     ok(index == 0, "Index was incremented\n");
1010
1011     /* even for a len that is too small */
1012     index = 0;
1013     len = 15;
1014     SetLastError(0xdeadbeef);
1015     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1016                 NULL,&len,&index) == FALSE,"Query worked\n");
1017     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1018     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1019     ok(index == 0, "Index was incremented\n");
1020
1021     index = 0;
1022     len = 0;
1023     SetLastError(0xdeadbeef);
1024     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1025                 NULL,&len,&index) == FALSE,"Query worked\n");
1026     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1027     ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1028     ok(index == 0, "Index was incremented\n");
1029
1030
1031     /* a working query */
1032     index = 0;
1033     len = sizeof(buffer);
1034     ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1035                 buffer,&len,&index),"Unable to query header\n");
1036     /* what's in the middle differs between Wine and Windows so currently we check only the beginning and the end */
1037     ok(strncmp(buffer, "POST /posttest.php HTTP/1", 25)==0, "Invalid beginning of headers string\n");
1038     ok(strcmp(buffer + strlen(buffer) - 4, "\r\n\r\n")==0, "Invalid end of headers string\n");
1039     ok(index == 0, "Index was incremented\n");
1040
1041
1042
1043     ok(HttpAddRequestHeaders(hRequest,"Warning:test2",-1,HTTP_ADDREQ_FLAG_ADD),
1044             "Failed to add duplicate header using HTTP_ADDREQ_FLAG_ADD\n");
1045
1046     index = 0;
1047     len = sizeof(buffer);
1048     strcpy(buffer,"Warning");
1049     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1050                 buffer,&len,&index),"Unable to query header\n");
1051     ok(index == 1, "Index was not incremented\n");
1052     ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1053     len = sizeof(buffer);
1054     strcpy(buffer,"Warning");
1055     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1056                 buffer,&len,&index),"Failed to get second header\n");
1057     ok(index == 2, "Index was not incremented\n");
1058     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1059     len = sizeof(buffer);
1060     strcpy(buffer,"Warning");
1061     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1062                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1063
1064     ok(HttpAddRequestHeaders(hRequest,"Warning:test3",-1,HTTP_ADDREQ_FLAG_REPLACE), "Failed to replace header using HTTP_ADDREQ_FLAG_REPLACE\n");
1065
1066     index = 0;
1067     len = sizeof(buffer);
1068     strcpy(buffer,"Warning");
1069     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1070                 buffer,&len,&index),"Unable to query header\n");
1071     ok(index == 1, "Index was not incremented\n");
1072     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1073     len = sizeof(buffer);
1074     strcpy(buffer,"Warning");
1075     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1076                 buffer,&len,&index),"Failed to get second header\n");
1077     ok(index == 2, "Index was not incremented\n");
1078     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1079     len = sizeof(buffer);
1080     strcpy(buffer,"Warning");
1081     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1082                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1083     
1084     ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1,HTTP_ADDREQ_FLAG_ADD_IF_NEW)==0, "HTTP_ADDREQ_FLAG_ADD_IF_NEW replaced existing header\n");
1085
1086     index = 0;
1087     len = sizeof(buffer);
1088     strcpy(buffer,"Warning");
1089     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1090                 buffer,&len,&index),"Unable to query header\n");
1091     ok(index == 1, "Index was not incremented\n");
1092     ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1093     len = sizeof(buffer);
1094     strcpy(buffer,"Warning");
1095     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1096                 buffer,&len,&index),"Failed to get second header\n");
1097     ok(index == 2, "Index was not incremented\n");
1098     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1099     len = sizeof(buffer);
1100     strcpy(buffer,"Warning");
1101     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1102                 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1103
1104     ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1, HTTP_ADDREQ_FLAG_COALESCE), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1105
1106     index = 0;
1107     len = sizeof(buffer);
1108     strcpy(buffer,"Warning");
1109     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1110                 buffer,&len,&index),"Unable to query header\n");
1111     ok(index == 1, "Index was not incremented\n");
1112     ok(strcmp(buffer,"test2, test4")==0, "incorrect string was returned(%s)\n", buffer);
1113     len = sizeof(buffer);
1114     strcpy(buffer,"Warning");
1115     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1116     ok(index == 2, "Index was not incremented\n");
1117     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1118     len = sizeof(buffer);
1119     strcpy(buffer,"Warning");
1120     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1121
1122     ok(HttpAddRequestHeaders(hRequest,"Warning:test5",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1123
1124     index = 0;
1125     len = sizeof(buffer);
1126     strcpy(buffer,"Warning");
1127     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1128     ok(index == 1, "Index was not incremented\n");
1129     ok(strcmp(buffer,"test2, test4, test5")==0, "incorrect string was returned(%s)\n",buffer);
1130     len = sizeof(buffer);
1131     strcpy(buffer,"Warning");
1132     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1133     ok(index == 2, "Index was not incremented\n");
1134     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1135     len = sizeof(buffer);
1136     strcpy(buffer,"Warning");
1137     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1138
1139     ok(HttpAddRequestHeaders(hRequest,"Warning:test6",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1140
1141     index = 0;
1142     len = sizeof(buffer);
1143     strcpy(buffer,"Warning");
1144     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1145     ok(index == 1, "Index was not incremented\n");
1146     ok(strcmp(buffer,"test2, test4, test5; test6")==0, "incorrect string was returned(%s)\n",buffer);
1147     len = sizeof(buffer);
1148     strcpy(buffer,"Warning");
1149     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1150     ok(index == 2, "Index was not incremented\n");
1151     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1152     len = sizeof(buffer);
1153     strcpy(buffer,"Warning");
1154     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1155
1156     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");
1157
1158     index = 0;
1159     len = sizeof(buffer);
1160     strcpy(buffer,"Warning");
1161     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1162     ok(index == 1, "Index was not incremented\n");
1163     ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1164     len = sizeof(buffer);
1165     strcpy(buffer,"Warning");
1166     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1167     ok(index == 2, "Index was not incremented\n");
1168     ok(strcmp(buffer,"test7")==0, "incorrect string was returned(%s)\n",buffer);
1169     len = sizeof(buffer);
1170     strcpy(buffer,"Warning");
1171     ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1172
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 const char okmsg[] =
1181 "HTTP/1.0 200 OK\r\n"
1182 "Server: winetest\r\n"
1183 "\r\n";
1184
1185 static const char notokmsg[] =
1186 "HTTP/1.0 400 Bad Request\r\n"
1187 "Server: winetest\r\n"
1188 "\r\n";
1189
1190 static const char noauthmsg[] =
1191 "HTTP/1.0 401 Unauthorized\r\n"
1192 "Server: winetest\r\n"
1193 "\r\n";
1194
1195 static const char proxymsg[] =
1196 "HTTP/1.1 407 Proxy Authentication Required\r\n"
1197 "Server: winetest\r\n"
1198 "Proxy-Connection: close\r\n"
1199 "Proxy-Authenticate: Basic realm=\"placebo\"\r\n"
1200 "\r\n";
1201
1202 static const char page1[] =
1203 "<HTML>\r\n"
1204 "<HEAD><TITLE>wininet test page</TITLE></HEAD>\r\n"
1205 "<BODY>The quick brown fox jumped over the lazy dog<P></BODY>\r\n"
1206 "</HTML>\r\n\r\n";
1207
1208 struct server_info {
1209     HANDLE hEvent;
1210     int port;
1211 };
1212
1213 static DWORD CALLBACK server_thread(LPVOID param)
1214 {
1215     struct server_info *si = param;
1216     int r, s, c, i, on;
1217     struct sockaddr_in sa;
1218     char buffer[0x100];
1219     WSADATA wsaData;
1220     int last_request = 0;
1221
1222     WSAStartup(MAKEWORD(1,1), &wsaData);
1223
1224     s = socket(AF_INET, SOCK_STREAM, 0);
1225     if (s<0)
1226         return 1;
1227
1228     on = 1;
1229     setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof on);
1230
1231     memset(&sa, 0, sizeof sa);
1232     sa.sin_family = AF_INET;
1233     sa.sin_port = htons(si->port);
1234     sa.sin_addr.S_un.S_addr = inet_addr("127.0.0.1");
1235
1236     r = bind(s, (struct sockaddr*) &sa, sizeof sa);
1237     if (r<0)
1238         return 1;
1239
1240     listen(s, 0);
1241
1242     SetEvent(si->hEvent);
1243
1244     do
1245     {
1246         c = accept(s, NULL, NULL);
1247
1248         memset(buffer, 0, sizeof buffer);
1249         for(i=0; i<(sizeof buffer-1); i++)
1250         {
1251             r = recv(c, &buffer[i], 1, 0);
1252             if (r != 1)
1253                 break;
1254             if (i<4) continue;
1255             if (buffer[i-2] == '\n' && buffer[i] == '\n' &&
1256                 buffer[i-3] == '\r' && buffer[i-1] == '\r')
1257                 break;
1258         }
1259
1260         if (strstr(buffer, "GET /test1"))
1261         {
1262             send(c, okmsg, sizeof okmsg-1, 0);
1263             send(c, page1, sizeof page1-1, 0);
1264         }
1265
1266         if (strstr(buffer, "/test2"))
1267         {
1268             if (strstr(buffer, "Proxy-Authorization: Basic bWlrZToxMTAx"))
1269             {
1270                 send(c, okmsg, sizeof okmsg-1, 0);
1271                 send(c, page1, sizeof page1-1, 0);
1272             }
1273             else
1274                 send(c, proxymsg, sizeof proxymsg-1, 0);
1275         }
1276
1277         if (strstr(buffer, "/test3"))
1278         {
1279             if (strstr(buffer, "Authorization: Basic dXNlcjpwd2Q="))
1280                 send(c, okmsg, sizeof okmsg-1, 0);
1281             else
1282                 send(c, noauthmsg, sizeof noauthmsg-1, 0);
1283         }
1284
1285         if (strstr(buffer, "/test4"))
1286         {
1287             if (strstr(buffer, "Connection: Close"))
1288                 send(c, okmsg, sizeof okmsg-1, 0);
1289             else
1290                 send(c, notokmsg, sizeof notokmsg-1, 0);
1291         }
1292
1293         if (strstr(buffer, "/quit"))
1294         {
1295             send(c, okmsg, sizeof okmsg-1, 0);
1296             send(c, page1, sizeof page1-1, 0);
1297             last_request = 1;
1298         }
1299
1300         shutdown(c, 2);
1301         closesocket(c);
1302     } while (!last_request);
1303
1304     closesocket(s);
1305
1306     return 0;
1307 }
1308
1309 static void test_basic_request(int port, const char *url)
1310 {
1311     HINTERNET hi, hc, hr;
1312     DWORD r, count;
1313     char buffer[0x100];
1314
1315     hi = InternetOpen(NULL, 0, NULL, NULL, 0);
1316     ok(hi != NULL, "open failed\n");
1317
1318     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1319     ok(hc != NULL, "connect failed\n");
1320
1321     hr = HttpOpenRequest(hc, NULL, url, NULL, NULL, NULL, 0, 0);
1322     ok(hr != NULL, "HttpOpenRequest failed\n");
1323
1324     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1325     ok(r, "HttpSendRequest failed\n");
1326
1327     count = 0;
1328     memset(buffer, 0, sizeof buffer);
1329     r = InternetReadFile(hr, buffer, sizeof buffer, &count);
1330     ok(r, "InternetReadFile failed\n");
1331     ok(count == sizeof page1 - 1, "count was wrong\n");
1332     ok(!memcmp(buffer, page1, sizeof page1), "http data wrong\n");
1333
1334     InternetCloseHandle(hr);
1335     InternetCloseHandle(hc);
1336     InternetCloseHandle(hi);
1337 }
1338
1339 static void test_proxy_indirect(int port)
1340 {
1341     HINTERNET hi, hc, hr;
1342     DWORD r, sz, val;
1343     char buffer[0x40];
1344
1345     hi = InternetOpen(NULL, 0, NULL, NULL, 0);
1346     ok(hi != NULL, "open failed\n");
1347
1348     hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1349     ok(hc != NULL, "connect failed\n");
1350
1351     hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
1352     ok(hr != NULL, "HttpOpenRequest failed\n");
1353
1354     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1355     ok(r, "HttpSendRequest failed\n");
1356
1357     sz = sizeof buffer;
1358     r = HttpQueryInfo(hr, HTTP_QUERY_PROXY_AUTHENTICATE, buffer, &sz, NULL);
1359     ok(r, "HttpQueryInfo failed\n");
1360     ok(!strcmp(buffer, "Basic realm=\"placebo\""), "proxy auth info wrong\n");
1361
1362     sz = sizeof buffer;
1363     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1364     ok(r, "HttpQueryInfo failed\n");
1365     ok(!strcmp(buffer, "407"), "proxy code wrong\n");
1366
1367     sz = sizeof val;
1368     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &val, &sz, NULL);
1369     ok(r, "HttpQueryInfo failed\n");
1370     ok(val == 407, "proxy code wrong\n");
1371
1372     sz = sizeof buffer;
1373     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &sz, NULL);
1374     ok(r, "HttpQueryInfo failed\n");
1375     ok(!strcmp(buffer, "Proxy Authentication Required"), "proxy text wrong\n");
1376
1377     sz = sizeof buffer;
1378     r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &sz, NULL);
1379     ok(r, "HttpQueryInfo failed\n");
1380     ok(!strcmp(buffer, "HTTP/1.1"), "http version wrong\n");
1381
1382     sz = sizeof buffer;
1383     r = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &sz, NULL);
1384     ok(r, "HttpQueryInfo failed\n");
1385     ok(!strcmp(buffer, "winetest"), "http server wrong\n");
1386
1387     sz = sizeof buffer;
1388     r = HttpQueryInfo(hr, HTTP_QUERY_CONTENT_ENCODING, buffer, &sz, NULL);
1389     ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo should fail\n");
1390     ok(r == FALSE, "HttpQueryInfo failed\n");
1391
1392     InternetCloseHandle(hr);
1393     InternetCloseHandle(hc);
1394     InternetCloseHandle(hi);
1395 }
1396
1397 static void test_proxy_direct(int port)
1398 {
1399     HINTERNET hi, hc, hr;
1400     DWORD r, sz;
1401     char buffer[0x40];
1402     static CHAR username[] = "mike",
1403                 password[] = "1101";
1404
1405     sprintf(buffer, "localhost:%d\n", port);
1406     hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_PROXY, buffer, NULL, 0);
1407     ok(hi != NULL, "open failed\n");
1408
1409     /* try connect without authorization */
1410     hc = InternetConnect(hi, "www.winehq.org/", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1411     ok(hc != NULL, "connect failed\n");
1412
1413     hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
1414     ok(hr != NULL, "HttpOpenRequest failed\n");
1415
1416     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1417     ok(r, "HttpSendRequest failed\n");
1418
1419     sz = sizeof buffer;
1420     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1421     ok(r, "HttpQueryInfo failed\n");
1422     ok(!strcmp(buffer, "407"), "proxy code wrong\n");
1423
1424
1425     /* set the user + password then try again */
1426     todo_wine {
1427     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 4);
1428     ok(r, "failed to set user\n");
1429
1430     r = InternetSetOption(hr, INTERNET_OPTION_PROXY_PASSWORD, password, 4);
1431     ok(r, "failed to set password\n");
1432     }
1433
1434     r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1435     ok(r, "HttpSendRequest failed\n");
1436     sz = sizeof buffer;
1437     r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1438     ok(r, "HttpQueryInfo failed\n");
1439     todo_wine {
1440     ok(!strcmp(buffer, "200"), "proxy code wrong\n");
1441     }
1442
1443
1444     InternetCloseHandle(hr);
1445     InternetCloseHandle(hc);
1446     InternetCloseHandle(hi);
1447 }
1448
1449 static void test_header_handling_order(int port)
1450 {
1451     static char authorization[] = "Authorization: Basic dXNlcjpwd2Q=";
1452     static char connection[]    = "Connection: Close";
1453
1454     static const char *types[2] = { "*", NULL };
1455     HINTERNET session, connect, request;
1456     DWORD size, status;
1457     BOOL ret;
1458
1459     session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1460     ok(session != NULL, "InternetOpen failed\n");
1461
1462     connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1463     ok(connect != NULL, "InternetConnect failed\n");
1464
1465     request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
1466     ok(request != NULL, "HttpOpenRequest failed\n");
1467
1468     ret = HttpSendRequest(request, authorization, ~0UL, NULL, 0);
1469     ok(ret, "HttpSendRequest failed\n");
1470
1471     status = 0;
1472     size = sizeof(status);
1473     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1474     ok(ret, "HttpQueryInfo failed\n");
1475     ok(status == 200, "request failed with status %u\n", status);
1476
1477     InternetCloseHandle(request);
1478
1479     request = HttpOpenRequest(connect, NULL, "/test4", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
1480     ok(request != NULL, "HttpOpenRequest failed\n");
1481
1482     ret = HttpSendRequest(request, connection, ~0UL, NULL, 0);
1483     ok(ret, "HttpSendRequest failed\n");
1484
1485     status = 0;
1486     size = sizeof(status);
1487     ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1488     ok(ret, "HttpQueryInfo failed\n");
1489     ok(status == 200, "request failed with status %u\n", status);
1490
1491     InternetCloseHandle(request);
1492     InternetCloseHandle(connect);
1493     InternetCloseHandle(session);
1494 }
1495
1496 static void test_http_connection(void)
1497 {
1498     struct server_info si;
1499     HANDLE hThread;
1500     DWORD id = 0, r;
1501
1502     si.hEvent = CreateEvent(NULL, 0, 0, NULL);
1503     si.port = 7531;
1504
1505     hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id);
1506     ok( hThread != NULL, "create thread failed\n");
1507
1508     r = WaitForSingleObject(si.hEvent, 10000);
1509     ok (r == WAIT_OBJECT_0, "failed to start wininet test server\n");
1510     if (r != WAIT_OBJECT_0)
1511         return;
1512
1513     test_basic_request(si.port, "/test1");
1514     test_proxy_indirect(si.port);
1515     test_proxy_direct(si.port);
1516     test_header_handling_order(si.port);
1517
1518     /* send the basic request again to shutdown the server thread */
1519     test_basic_request(si.port, "/quit");
1520
1521     r = WaitForSingleObject(hThread, 3000);
1522     ok( r == WAIT_OBJECT_0, "thread wait failed\n");
1523     CloseHandle(hThread);
1524 }
1525
1526 #define STATUS_STRING(status) \
1527     memcpy(status_string[status], #status, sizeof(CHAR) * \
1528            (strlen(#status) < MAX_STATUS_NAME ? \
1529             strlen(#status) : \
1530             MAX_STATUS_NAME - 1))
1531 static void init_status_tests(void)
1532 {
1533     memset(expect, 0, sizeof(expect));
1534     memset(wine_allow, 0, sizeof(wine_allow));
1535     memset(notified, 0, sizeof(notified));
1536     memset(status_string, 0, sizeof(status_string));
1537     STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME);
1538     STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED);
1539     STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER);
1540     STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER);
1541     STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST);
1542     STATUS_STRING(INTERNET_STATUS_REQUEST_SENT);
1543     STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE);
1544     STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED);
1545     STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED);
1546     STATUS_STRING(INTERNET_STATUS_PREFETCH);
1547     STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION);
1548     STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED);
1549     STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED);
1550     STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING);
1551     STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE);
1552     STATUS_STRING(INTERNET_STATUS_REDIRECT);
1553     STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE);
1554     STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED);
1555     STATUS_STRING(INTERNET_STATUS_STATE_CHANGE);
1556     STATUS_STRING(INTERNET_STATUS_COOKIE_SENT);
1557     STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED);
1558     STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED);
1559     STATUS_STRING(INTERNET_STATUS_P3P_HEADER);
1560     STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF);
1561     STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY);
1562 }
1563 #undef STATUS_STRING
1564
1565 START_TEST(http)
1566 {
1567     HMODULE hdll;
1568     hdll = GetModuleHandleA("wininet.dll");
1569     pInternetSetStatusCallbackA = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackA");
1570     pInternetTimeFromSystemTimeA = (void*)GetProcAddress(hdll, "InternetTimeFromSystemTimeA");
1571     pInternetTimeFromSystemTimeW = (void*)GetProcAddress(hdll, "InternetTimeFromSystemTimeW");
1572     pInternetTimeToSystemTimeA = (void*)GetProcAddress(hdll, "InternetTimeToSystemTimeA");
1573     pInternetTimeToSystemTimeW = (void*)GetProcAddress(hdll, "InternetTimeToSystemTimeW");
1574
1575     if (!pInternetSetStatusCallbackA)
1576         skip("skipping the InternetReadFile tests\n");
1577     else
1578     {
1579         init_status_tests();
1580         InternetReadFile_test(INTERNET_FLAG_ASYNC);
1581         InternetReadFile_test(0);
1582         InternetReadFileExA_test(INTERNET_FLAG_ASYNC);
1583     }
1584     InternetOpenRequest_test();
1585     InternetOpenUrlA_test();
1586     if (!pInternetTimeFromSystemTimeA)
1587         skip("skipping the InternetTime tests\n");
1588     else
1589     {
1590         InternetTimeFromSystemTimeA_test();
1591         InternetTimeFromSystemTimeW_test();
1592         InternetTimeToSystemTimeA_test();
1593         InternetTimeToSystemTimeW_test();
1594     }
1595     HttpSendRequestEx_test();
1596     HttpHeaders_test();
1597     test_http_connection();
1598 }