wininet/tests: Fix HttpSendRequestW test on IE5.
[wine/hacks.git] / dlls / wininet / tests / http.c
blob773b4c6652b4ab1d9c840a859cee95e4c67ab4bd
1 /*
2 * Wininet - Http tests
4 * Copyright 2002 Aric Stewart
5 * Copyright 2004 Mike McCormack
6 * Copyright 2005 Hans Leidekker
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.
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.
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
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wininet.h"
30 #include "winsock.h"
32 #include "wine/test.h"
34 #define TEST_URL "http://test.winehq.org/hello.html"
36 static BOOL first_connection_to_test_url = TRUE;
38 /* Adapted from dlls/urlmon/tests/protocol.c */
40 #define SET_EXPECT2(status, num) \
41 expect[status] = num
43 #define SET_EXPECT(status) \
44 SET_EXPECT2(status, 1)
46 #define SET_OPTIONAL2(status, num) \
47 optional[status] = num
49 #define SET_OPTIONAL(status) \
50 SET_OPTIONAL2(status, 1)
52 /* SET_WINE_ALLOW's should be used with an appropriate
53 * todo_wine CHECK_NOTIFIED at a later point in the code */
54 #define SET_WINE_ALLOW2(status, num) \
55 wine_allow[status] = num
57 #define SET_WINE_ALLOW(status) \
58 SET_WINE_ALLOW2(status, 1)
60 #define CHECK_EXPECT(status) \
61 do { \
62 if (!expect[status] && !optional[status] && wine_allow[status]) \
63 { \
64 todo_wine ok(expect[status], "unexpected status %d (%s)\n", status, \
65 status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
66 status_string[status] : "unknown"); \
67 wine_allow[status]--; \
68 } \
69 else \
70 { \
71 ok(expect[status] || optional[status], "unexpected status %d (%s)\n", status, \
72 status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
73 status_string[status] : "unknown"); \
74 if (expect[status]) expect[status]--; \
75 else optional[status]--; \
76 } \
77 notified[status]++; \
78 }while(0)
80 /* CLEAR_NOTIFIED used in cases when notification behavior
81 * differs between Windows versions */
82 #define CLEAR_NOTIFIED(status) \
83 expect[status] = optional[status] = wine_allow[status] = notified[status] = 0;
85 #define CHECK_NOTIFIED2(status, num) \
86 do { \
87 ok(notified[status] + optional[status] == (num), \
88 "expected status %d (%s) %d times, received %d times\n", \
89 status, status < MAX_INTERNET_STATUS && status_string[status][0] != 0 ? \
90 status_string[status] : "unknown", (num), notified[status]); \
91 CLEAR_NOTIFIED(status); \
92 }while(0)
94 #define CHECK_NOTIFIED(status) \
95 CHECK_NOTIFIED2(status, 1)
97 #define CHECK_NOT_NOTIFIED(status) \
98 CHECK_NOTIFIED2(status, 0)
100 #define MAX_INTERNET_STATUS (INTERNET_STATUS_COOKIE_HISTORY+1)
101 #define MAX_STATUS_NAME 50
102 static int expect[MAX_INTERNET_STATUS], optional[MAX_INTERNET_STATUS],
103 wine_allow[MAX_INTERNET_STATUS], notified[MAX_INTERNET_STATUS];
104 static CHAR status_string[MAX_INTERNET_STATUS][MAX_STATUS_NAME];
106 static HANDLE hCompleteEvent;
108 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackA)(HINTERNET ,INTERNET_STATUS_CALLBACK);
111 static VOID WINAPI callback(
112 HINTERNET hInternet,
113 DWORD_PTR dwContext,
114 DWORD dwInternetStatus,
115 LPVOID lpvStatusInformation,
116 DWORD dwStatusInformationLength
119 CHECK_EXPECT(dwInternetStatus);
120 switch (dwInternetStatus)
122 case INTERNET_STATUS_RESOLVING_NAME:
123 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESOLVING_NAME \"%s\" %d\n",
124 GetCurrentThreadId(), hInternet, dwContext,
125 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
126 *(LPSTR)lpvStatusInformation = '\0';
127 break;
128 case INTERNET_STATUS_NAME_RESOLVED:
129 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_NAME_RESOLVED \"%s\" %d\n",
130 GetCurrentThreadId(), hInternet, dwContext,
131 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
132 *(LPSTR)lpvStatusInformation = '\0';
133 break;
134 case INTERNET_STATUS_CONNECTING_TO_SERVER:
135 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTING_TO_SERVER \"%s\" %d\n",
136 GetCurrentThreadId(), hInternet, dwContext,
137 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
138 *(LPSTR)lpvStatusInformation = '\0';
139 break;
140 case INTERNET_STATUS_CONNECTED_TO_SERVER:
141 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTED_TO_SERVER \"%s\" %d\n",
142 GetCurrentThreadId(), hInternet, dwContext,
143 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
144 *(LPSTR)lpvStatusInformation = '\0';
145 break;
146 case INTERNET_STATUS_SENDING_REQUEST:
147 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_SENDING_REQUEST %p %d\n",
148 GetCurrentThreadId(), hInternet, dwContext,
149 lpvStatusInformation,dwStatusInformationLength);
150 break;
151 case INTERNET_STATUS_REQUEST_SENT:
152 ok(dwStatusInformationLength == sizeof(DWORD),
153 "info length should be sizeof(DWORD) instead of %d\n",
154 dwStatusInformationLength);
155 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_SENT 0x%x %d\n",
156 GetCurrentThreadId(), hInternet, dwContext,
157 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
158 break;
159 case INTERNET_STATUS_RECEIVING_RESPONSE:
160 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RECEIVING_RESPONSE %p %d\n",
161 GetCurrentThreadId(), hInternet, dwContext,
162 lpvStatusInformation,dwStatusInformationLength);
163 break;
164 case INTERNET_STATUS_RESPONSE_RECEIVED:
165 ok(dwStatusInformationLength == sizeof(DWORD),
166 "info length should be sizeof(DWORD) instead of %d\n",
167 dwStatusInformationLength);
168 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESPONSE_RECEIVED 0x%x %d\n",
169 GetCurrentThreadId(), hInternet, dwContext,
170 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
171 break;
172 case INTERNET_STATUS_CTL_RESPONSE_RECEIVED:
173 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CTL_RESPONSE_RECEIVED %p %d\n",
174 GetCurrentThreadId(), hInternet,dwContext,
175 lpvStatusInformation,dwStatusInformationLength);
176 break;
177 case INTERNET_STATUS_PREFETCH:
178 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_PREFETCH %p %d\n",
179 GetCurrentThreadId(), hInternet, dwContext,
180 lpvStatusInformation,dwStatusInformationLength);
181 break;
182 case INTERNET_STATUS_CLOSING_CONNECTION:
183 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CLOSING_CONNECTION %p %d\n",
184 GetCurrentThreadId(), hInternet, dwContext,
185 lpvStatusInformation,dwStatusInformationLength);
186 break;
187 case INTERNET_STATUS_CONNECTION_CLOSED:
188 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTION_CLOSED %p %d\n",
189 GetCurrentThreadId(), hInternet, dwContext,
190 lpvStatusInformation,dwStatusInformationLength);
191 break;
192 case INTERNET_STATUS_HANDLE_CREATED:
193 ok(dwStatusInformationLength == sizeof(HINTERNET),
194 "info length should be sizeof(HINTERNET) instead of %d\n",
195 dwStatusInformationLength);
196 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d\n",
197 GetCurrentThreadId(), hInternet, dwContext,
198 *(HINTERNET *)lpvStatusInformation,dwStatusInformationLength);
199 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
200 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
201 break;
202 case INTERNET_STATUS_HANDLE_CLOSING:
203 ok(dwStatusInformationLength == sizeof(HINTERNET),
204 "info length should be sizeof(HINTERNET) instead of %d\n",
205 dwStatusInformationLength);
206 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CLOSING %p %d\n",
207 GetCurrentThreadId(), hInternet, dwContext,
208 *(HINTERNET *)lpvStatusInformation, dwStatusInformationLength);
209 break;
210 case INTERNET_STATUS_REQUEST_COMPLETE:
212 INTERNET_ASYNC_RESULT *iar = (INTERNET_ASYNC_RESULT *)lpvStatusInformation;
213 ok(dwStatusInformationLength == sizeof(INTERNET_ASYNC_RESULT),
214 "info length should be sizeof(INTERNET_ASYNC_RESULT) instead of %d\n",
215 dwStatusInformationLength);
216 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_COMPLETE {%ld,%d} %d\n",
217 GetCurrentThreadId(), hInternet, dwContext,
218 iar->dwResult,iar->dwError,dwStatusInformationLength);
219 SetEvent(hCompleteEvent);
220 break;
222 case INTERNET_STATUS_REDIRECT:
223 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REDIRECT \"%s\" %d\n",
224 GetCurrentThreadId(), hInternet, dwContext,
225 (LPCSTR)lpvStatusInformation, dwStatusInformationLength);
226 *(LPSTR)lpvStatusInformation = '\0';
227 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
228 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
229 break;
230 case INTERNET_STATUS_INTERMEDIATE_RESPONSE:
231 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d\n",
232 GetCurrentThreadId(), hInternet, dwContext,
233 lpvStatusInformation, dwStatusInformationLength);
234 break;
235 default:
236 trace("%04x:Callback %p 0x%lx %d %p %d\n",
237 GetCurrentThreadId(), hInternet, dwContext, dwInternetStatus,
238 lpvStatusInformation, dwStatusInformationLength);
242 static void InternetReadFile_test(int flags)
244 BOOL res;
245 CHAR buffer[4000];
246 DWORD length;
247 DWORD out;
248 const char *types[2] = { "*", NULL };
249 HINTERNET hi, hic = 0, hor = 0;
251 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
253 trace("Starting InternetReadFile test with flags 0x%x\n",flags);
255 trace("InternetOpenA <--\n");
256 hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
257 ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
258 trace("InternetOpenA -->\n");
260 if (hi == 0x0) goto abort;
262 pInternetSetStatusCallbackA(hi,&callback);
264 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
266 trace("InternetConnectA <--\n");
267 hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
268 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
269 ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
270 trace("InternetConnectA -->\n");
272 if (hic == 0x0) goto abort;
274 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
275 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
277 trace("HttpOpenRequestA <--\n");
278 hor = HttpOpenRequestA(hic, "GET", "/testredirect", NULL, NULL, types,
279 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE,
280 0xdeadbead);
281 if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
283 * If the internet name can't be resolved we are probably behind
284 * a firewall or in some other way not directly connected to the
285 * Internet. Not enough reason to fail the test. Just ignore and
286 * abort.
288 } else {
289 ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
291 trace("HttpOpenRequestA -->\n");
293 if (hor == 0x0) goto abort;
295 length = sizeof(buffer);
296 res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
297 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
298 ok(!strcmp(buffer, "http://test.winehq.org/testredirect"), "Wrong URL %s\n", buffer);
300 length = sizeof(buffer);
301 res = HttpQueryInfoA(hor, HTTP_QUERY_RAW_HEADERS, buffer, &length, 0x0);
302 ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
303 ok(length == 0, "HTTP_QUERY_RAW_HEADERS: expected length 0, but got %d\n", length);
304 ok(!strcmp(buffer, ""), "HTTP_QUERY_RAW_HEADERS: expected string \"\", but got \"%s\"\n", buffer);
306 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
307 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
308 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
309 if (first_connection_to_test_url)
311 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
312 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
313 SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
314 SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
316 else
318 SET_WINE_ALLOW2(INTERNET_STATUS_RESOLVING_NAME,2);
319 SET_WINE_ALLOW2(INTERNET_STATUS_NAME_RESOLVED,2);
321 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
322 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
323 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
324 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
325 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
326 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
327 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
328 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
329 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
330 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
331 SET_EXPECT(INTERNET_STATUS_REDIRECT);
332 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
333 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
334 if (flags & INTERNET_FLAG_ASYNC)
335 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
336 else
337 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
339 trace("HttpSendRequestA -->\n");
340 SetLastError(0xdeadbeef);
341 res = HttpSendRequestA(hor, "", -1, NULL, 0);
342 if (flags & INTERNET_FLAG_ASYNC)
343 ok(!res && (GetLastError() == ERROR_IO_PENDING),
344 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
345 else
346 ok(res || (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED),
347 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
348 trace("HttpSendRequestA <--\n");
350 if (flags & INTERNET_FLAG_ASYNC)
351 WaitForSingleObject(hCompleteEvent, INFINITE);
353 if (first_connection_to_test_url)
355 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
356 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
358 else todo_wine
360 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
361 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
363 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
364 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
365 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
366 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
367 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
368 if (flags & INTERNET_FLAG_ASYNC)
369 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
370 else
371 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
372 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
373 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
374 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
376 length = 4;
377 res = InternetQueryOptionA(hor,INTERNET_OPTION_REQUEST_FLAGS,&out,&length);
378 ok(res, "InternetQueryOptionA(INTERNET_OPTION_REQUEST) failed with error %d\n", GetLastError());
380 length = 100;
381 res = InternetQueryOptionA(hor,INTERNET_OPTION_URL,buffer,&length);
382 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed with error %d\n", GetLastError());
384 length = sizeof(buffer);
385 res = HttpQueryInfoA(hor,HTTP_QUERY_RAW_HEADERS,buffer,&length,0x0);
386 ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
387 buffer[length]=0;
389 length = sizeof(buffer);
390 res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
391 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
392 ok(!strcmp(buffer, "http://test.winehq.org/hello.html"), "Wrong URL %s\n", buffer);
394 length = 16;
395 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
396 trace("Option 0x5 -> %i %s (%u)\n",res,buffer,GetLastError());
398 length = 100;
399 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
400 buffer[length]=0;
401 trace("Option 0x1 -> %i %s\n",res,buffer);
403 SetLastError(0xdeadbeef);
404 res = InternetReadFile(NULL, buffer, 100, &length);
405 ok(!res, "InternetReadFile should have failed\n");
406 ok(GetLastError() == ERROR_INVALID_HANDLE,
407 "InternetReadFile should have set last error to ERROR_INVALID_HANDLE instead of %u\n",
408 GetLastError());
410 length = 100;
411 trace("Entering Query loop\n");
413 while (TRUE)
415 if (flags & INTERNET_FLAG_ASYNC)
416 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
417 res = InternetQueryDataAvailable(hor,&length,0x0,0x0);
418 ok(!(!res && length != 0),"InternetQueryDataAvailable failed with non-zero length\n");
419 ok(res || ((flags & INTERNET_FLAG_ASYNC) && GetLastError() == ERROR_IO_PENDING),
420 "InternetQueryDataAvailable failed, error %d\n", GetLastError());
421 if (flags & INTERNET_FLAG_ASYNC)
423 if (res)
425 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
427 else if (GetLastError() == ERROR_IO_PENDING)
429 WaitForSingleObject(hCompleteEvent, INFINITE);
430 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
431 continue;
434 if (length)
436 char *buffer;
437 buffer = HeapAlloc(GetProcessHeap(),0,length+1);
439 res = InternetReadFile(hor,buffer,length,&length);
441 buffer[length]=0;
443 trace("ReadFile -> %s %i\n",res?"TRUE":"FALSE",length);
445 HeapFree(GetProcessHeap(),0,buffer);
447 if (length == 0)
448 break;
450 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
451 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
452 abort:
453 trace("aborting\n");
454 SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
455 if (hor != 0x0) {
456 SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION);
457 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED);
458 SetLastError(0xdeadbeef);
459 trace("closing\n");
460 res = InternetCloseHandle(hor);
461 ok (res, "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
462 SetLastError(0xdeadbeef);
463 res = InternetCloseHandle(hor);
464 ok (!res, "Double close of handle opened by HttpOpenRequestA succeeded\n");
465 ok (GetLastError() == ERROR_INVALID_HANDLE,
466 "Double close of handle should have set ERROR_INVALID_HANDLE instead of %u\n",
467 GetLastError());
469 /* We intentionally do not close the handle opened by InternetConnectA as this
470 * tickles bug #9479: native closes child internet handles when the parent handles
471 * are closed. This is verified below by checking that the number of
472 * INTERNET_STATUS_HANDLE_CLOSING notifications matches the number expected. */
473 if (hi != 0x0) {
474 SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING);
475 trace("closing 2\n");
476 res = InternetCloseHandle(hi);
477 ok (res, "InternetCloseHandle of handle opened by InternetOpenA failed\n");
478 if (flags & INTERNET_FLAG_ASYNC)
479 Sleep(100);
481 CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
482 if (hor != 0x0) todo_wine
484 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
485 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
487 else
489 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
490 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
492 CloseHandle(hCompleteEvent);
493 first_connection_to_test_url = FALSE;
496 static void InternetReadFileExA_test(int flags)
498 DWORD rc;
499 DWORD length;
500 const char *types[2] = { "*", NULL };
501 HINTERNET hi, hic = 0, hor = 0;
502 INTERNET_BUFFERS inetbuffers;
504 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
506 trace("Starting InternetReadFileExA test with flags 0x%x\n",flags);
508 trace("InternetOpenA <--\n");
509 hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
510 ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
511 trace("InternetOpenA -->\n");
513 if (hi == 0x0) goto abort;
515 pInternetSetStatusCallbackA(hi,&callback);
517 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
519 trace("InternetConnectA <--\n");
520 hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
521 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
522 ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
523 trace("InternetConnectA -->\n");
525 if (hic == 0x0) goto abort;
527 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
528 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
530 trace("HttpOpenRequestA <--\n");
531 hor = HttpOpenRequestA(hic, "GET", "/testredirect", NULL, NULL, types,
532 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE,
533 0xdeadbead);
534 if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
536 * If the internet name can't be resolved we are probably behind
537 * a firewall or in some other way not directly connected to the
538 * Internet. Not enough reason to fail the test. Just ignore and
539 * abort.
541 } else {
542 ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
544 trace("HttpOpenRequestA -->\n");
546 if (hor == 0x0) goto abort;
548 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
549 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
550 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
551 if (first_connection_to_test_url)
553 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
554 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
555 SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME);
556 SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED);
558 else
560 SET_WINE_ALLOW2(INTERNET_STATUS_RESOLVING_NAME,2);
561 SET_WINE_ALLOW2(INTERNET_STATUS_NAME_RESOLVED,2);
563 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
564 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
565 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
566 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
567 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
568 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
569 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
570 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
571 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
572 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
573 SET_EXPECT(INTERNET_STATUS_REDIRECT);
574 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
575 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
576 if (flags & INTERNET_FLAG_ASYNC)
577 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
578 else
579 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
581 trace("HttpSendRequestA -->\n");
582 SetLastError(0xdeadbeef);
583 rc = HttpSendRequestA(hor, "", -1, NULL, 0);
584 if (flags & INTERNET_FLAG_ASYNC)
585 ok(((rc == 0)&&(GetLastError() == ERROR_IO_PENDING)),
586 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
587 else
588 ok((rc != 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED,
589 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
590 trace("HttpSendRequestA <--\n");
592 if (!rc && (GetLastError() == ERROR_IO_PENDING))
593 WaitForSingleObject(hCompleteEvent, INFINITE);
595 if (first_connection_to_test_url)
597 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
598 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
600 else todo_wine
602 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
603 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
605 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
606 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
607 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
608 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
609 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
610 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
611 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
612 if (flags & INTERNET_FLAG_ASYNC)
613 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
614 else
615 todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
616 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
617 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
618 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
620 /* tests invalid dwStructSize */
621 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS)+1;
622 inetbuffers.lpcszHeader = NULL;
623 inetbuffers.dwHeadersLength = 0;
624 inetbuffers.dwBufferLength = 10;
625 inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, 10);
626 inetbuffers.dwOffsetHigh = 1234;
627 inetbuffers.dwOffsetLow = 5678;
628 rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
629 ok(!rc && (GetLastError() == ERROR_INVALID_PARAMETER),
630 "InternetReadFileEx should have failed with ERROR_INVALID_PARAMETER instead of %s, %u\n",
631 rc ? "TRUE" : "FALSE", GetLastError());
632 HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
634 /* tests to see whether lpcszHeader is used - it isn't */
635 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
636 inetbuffers.lpcszHeader = (LPCTSTR)0xdeadbeef;
637 inetbuffers.dwHeadersLength = 255;
638 inetbuffers.dwBufferLength = 0;
639 inetbuffers.lpvBuffer = NULL;
640 inetbuffers.dwOffsetHigh = 1234;
641 inetbuffers.dwOffsetLow = 5678;
642 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
643 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
644 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
645 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
646 rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
647 ok(rc, "InternetReadFileEx failed with error %u\n", GetLastError());
648 trace("read %i bytes\n", inetbuffers.dwBufferLength);
649 todo_wine
651 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
652 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
655 rc = InternetReadFileEx(NULL, &inetbuffers, 0, 0xdeadcafe);
656 ok(!rc && (GetLastError() == ERROR_INVALID_HANDLE),
657 "InternetReadFileEx should have failed with ERROR_INVALID_HANDLE instead of %s, %u\n",
658 rc ? "TRUE" : "FALSE", GetLastError());
660 length = 0;
661 trace("Entering Query loop\n");
663 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
664 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
665 while (TRUE)
667 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
668 inetbuffers.dwBufferLength = 1024;
669 inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, inetbuffers.dwBufferLength+1);
670 inetbuffers.dwOffsetHigh = 1234;
671 inetbuffers.dwOffsetLow = 5678;
673 SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
674 SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
675 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
676 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
677 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
678 rc = InternetReadFileExA(hor, &inetbuffers, IRF_ASYNC | IRF_USE_CONTEXT, 0xcafebabe);
679 if (!rc)
681 if (GetLastError() == ERROR_IO_PENDING)
683 trace("InternetReadFileEx -> PENDING\n");
684 ok(flags & INTERNET_FLAG_ASYNC,
685 "Should not get ERROR_IO_PENDING without INTERNET_FLAG_ASYNC\n");
686 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
687 WaitForSingleObject(hCompleteEvent, INFINITE);
688 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
689 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
691 else
693 trace("InternetReadFileEx -> FAILED %u\n", GetLastError());
694 break;
697 else
699 trace("InternetReadFileEx -> SUCCEEDED\n");
700 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
701 if (inetbuffers.dwBufferLength)
703 todo_wine {
704 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
705 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
708 else
710 /* Win98 still sends these when 0 bytes are read, WinXP does not */
711 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
712 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
716 trace("read %i bytes\n", inetbuffers.dwBufferLength);
717 ((char *)inetbuffers.lpvBuffer)[inetbuffers.dwBufferLength] = '\0';
719 ok(inetbuffers.dwOffsetHigh == 1234 && inetbuffers.dwOffsetLow == 5678,
720 "InternetReadFileEx sets offsets to 0x%x%08x\n",
721 inetbuffers.dwOffsetHigh, inetbuffers.dwOffsetLow);
723 HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
725 if (!inetbuffers.dwBufferLength)
726 break;
728 length += inetbuffers.dwBufferLength;
730 ok(length > 0, "failed to read any of the document\n");
731 trace("Finished. Read %d bytes\n", length);
733 /* WinXP does not send, but Win98 does */
734 CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
735 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
736 abort:
737 SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
738 if (hor) {
739 SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION);
740 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED);
741 rc = InternetCloseHandle(hor);
742 ok ((rc != 0), "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
743 rc = InternetCloseHandle(hor);
744 ok ((rc == 0), "Double close of handle opened by HttpOpenRequestA succeeded\n");
746 if (hic) {
747 rc = InternetCloseHandle(hic);
748 ok ((rc != 0), "InternetCloseHandle of handle opened by InternetConnectA failed\n");
750 if (hi) {
751 SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING);
752 rc = InternetCloseHandle(hi);
753 ok ((rc != 0), "InternetCloseHandle of handle opened by InternetOpenA failed\n");
754 if (flags & INTERNET_FLAG_ASYNC)
755 Sleep(100);
756 CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, (hor != 0x0) + (hic != 0x0));
758 /* to enable once Wine is fixed to never send it
759 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
760 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
762 CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
763 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
764 CloseHandle(hCompleteEvent);
765 first_connection_to_test_url = FALSE;
768 static void InternetOpenUrlA_test(void)
770 HINTERNET myhinternet, myhttp;
771 char buffer[0x400];
772 DWORD size, readbytes, totalbytes=0;
773 BOOL ret;
775 myhinternet = InternetOpen("Winetest",0,NULL,NULL,INTERNET_FLAG_NO_CACHE_WRITE);
776 ok((myhinternet != 0), "InternetOpen failed, error %u\n",GetLastError());
777 size = 0x400;
778 ret = InternetCanonicalizeUrl(TEST_URL, buffer, &size,ICU_BROWSER_MODE);
779 ok( ret, "InternetCanonicalizeUrl failed, error %u\n",GetLastError());
781 SetLastError(0);
782 myhttp = InternetOpenUrl(myhinternet, TEST_URL, 0, 0,
783 INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_TRANSFER_BINARY,0);
784 if (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
785 return; /* WinXP returns this when not connected to the net */
786 ok((myhttp != 0),"InternetOpenUrl failed, error %u\n",GetLastError());
787 ret = InternetReadFile(myhttp, buffer,0x400,&readbytes);
788 ok( ret, "InternetReadFile failed, error %u\n",GetLastError());
789 totalbytes += readbytes;
790 while (readbytes && InternetReadFile(myhttp, buffer,0x400,&readbytes))
791 totalbytes += readbytes;
792 trace("read 0x%08x bytes\n",totalbytes);
794 InternetCloseHandle(myhttp);
795 InternetCloseHandle(myhinternet);
798 static void HttpSendRequestEx_test(void)
800 HINTERNET hSession;
801 HINTERNET hConnect;
802 HINTERNET hRequest;
804 INTERNET_BUFFERS BufferIn;
805 DWORD dwBytesWritten;
806 DWORD dwBytesRead;
807 CHAR szBuffer[256];
808 int i;
809 BOOL ret;
811 static char szPostData[] = "mode=Test";
812 static const char szContentType[] = "Content-Type: application/x-www-form-urlencoded";
814 hSession = InternetOpen("Wine Regression Test",
815 INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
816 ok( hSession != NULL ,"Unable to open Internet session\n");
817 hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
818 INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
820 ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
821 hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
822 NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
823 if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
825 skip( "Network unreachable, skipping test\n" );
826 goto done;
828 ok( hRequest != NULL, "Failed to open request handle err %u\n", GetLastError());
831 BufferIn.dwStructSize = sizeof( INTERNET_BUFFERS);
832 BufferIn.Next = (LPINTERNET_BUFFERS)0xdeadcab;
833 BufferIn.lpcszHeader = szContentType;
834 BufferIn.dwHeadersLength = sizeof(szContentType)-1;
835 BufferIn.dwHeadersTotal = sizeof(szContentType)-1;
836 BufferIn.lpvBuffer = szPostData;
837 BufferIn.dwBufferLength = 3;
838 BufferIn.dwBufferTotal = sizeof(szPostData)-1;
839 BufferIn.dwOffsetLow = 0;
840 BufferIn.dwOffsetHigh = 0;
842 ret = HttpSendRequestEx(hRequest, &BufferIn, NULL, 0 ,0);
843 ok(ret, "HttpSendRequestEx Failed with error %u\n", GetLastError());
845 for (i = 3; szPostData[i]; i++)
846 ok(InternetWriteFile(hRequest, &szPostData[i], 1, &dwBytesWritten),
847 "InternetWriteFile failed\n");
849 ok(HttpEndRequest(hRequest, NULL, 0, 0), "HttpEndRequest Failed\n");
851 ok(InternetReadFile(hRequest, szBuffer, 255, &dwBytesRead),
852 "Unable to read response\n");
853 szBuffer[dwBytesRead] = 0;
855 ok(dwBytesRead == 13,"Read %u bytes instead of 13\n",dwBytesRead);
856 ok(strncmp(szBuffer,"mode => Test\n",dwBytesRead)==0,"Got string %s\n",szBuffer);
858 ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
859 done:
860 ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
861 ok(InternetCloseHandle(hSession), "Close session handle failed\n");
864 static void InternetOpenRequest_test(void)
866 HINTERNET session, connect, request;
867 static const char *types[] = { "*", "", NULL };
868 static const WCHAR slash[] = {'/', 0}, any[] = {'*', 0}, empty[] = {0};
869 static const WCHAR *typesW[] = { any, empty, NULL };
870 BOOL ret;
872 session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
873 ok(session != NULL ,"Unable to open Internet session\n");
875 connect = InternetConnectA(session, NULL, INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
876 INTERNET_SERVICE_HTTP, 0, 0);
877 ok(connect == NULL, "InternetConnectA should have failed\n");
878 ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with NULL server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
880 connect = InternetConnectA(session, "", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
881 INTERNET_SERVICE_HTTP, 0, 0);
882 ok(connect == NULL, "InternetConnectA should have failed\n");
883 ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with blank server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
885 connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
886 INTERNET_SERVICE_HTTP, 0, 0);
887 ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
889 request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
890 if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
892 skip( "Network unreachable, skipping test\n" );
893 goto done;
895 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
897 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
898 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
899 ok(InternetCloseHandle(request), "Close request handle failed\n");
901 request = HttpOpenRequestW(connect, NULL, slash, NULL, NULL, typesW, INTERNET_FLAG_NO_CACHE_WRITE, 0);
902 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
904 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
905 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
906 ok(InternetCloseHandle(request), "Close request handle failed\n");
908 done:
909 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
910 ok(InternetCloseHandle(session), "Close session handle failed\n");
913 static void test_http_cache(void)
915 HINTERNET session, connect, request;
916 char file_name[MAX_PATH], url[INTERNET_MAX_URL_LENGTH];
917 DWORD size, file_size;
918 BYTE buf[100];
919 HANDLE file;
920 BOOL ret;
922 static const char *types[] = { "*", "", NULL };
924 session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
925 ok(session != NULL ,"Unable to open Internet session\n");
927 connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
928 INTERNET_SERVICE_HTTP, 0, 0);
929 ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
931 request = HttpOpenRequestA(connect, NULL, "/hello.html", NULL, NULL, types, INTERNET_FLAG_NEED_FILE, 0);
932 if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
934 skip( "Network unreachable, skipping test\n" );
936 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
937 ok(InternetCloseHandle(session), "Close session handle failed\n");
939 return;
941 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
943 size = sizeof(url);
944 ret = InternetQueryOptionA(request, INTERNET_OPTION_URL, url, &size);
945 ok(ret, "InternetQueryOptionA(INTERNET_OPTION_url) failed: %u\n", GetLastError());
946 ok(!strcmp(url, "http://test.winehq.org/hello.html"), "Wrong URL %s\n", url);
948 size = sizeof(file_name);
949 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
950 ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
951 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
952 ok(!size, "size = %d\n", size);
954 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
955 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
957 size = sizeof(file_name);
958 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
959 ok(ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) failed: %u\n", GetLastError());
961 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
962 FILE_ATTRIBUTE_NORMAL, NULL);
963 ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
964 file_size = GetFileSize(file, NULL);
965 todo_wine ok(file_size == 106, "file size = %u\n", file_size);
967 size = sizeof(buf);
968 ret = InternetReadFile(request, buf, sizeof(buf), &size);
969 ok(ret, "InternetReadFile failed: %u\n", GetLastError());
970 ok(size == 100, "size = %u\n", size);
972 file_size = GetFileSize(file, NULL);
973 todo_wine ok(file_size == 106, "file size = %u\n", file_size);
974 CloseHandle(file);
976 ok(InternetCloseHandle(request), "Close request handle failed\n");
978 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
979 FILE_ATTRIBUTE_NORMAL, NULL);
980 todo_wine ok(file != INVALID_HANDLE_VALUE, "CreateFile succeeded\n");
981 CloseHandle(file);
983 request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
984 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
986 size = sizeof(file_name);
987 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
988 ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
989 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
990 ok(!size, "size = %d\n", size);
992 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
993 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
995 size = sizeof(file_name);
996 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
997 todo_wine ok(ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) failed %u\n", GetLastError());
999 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1000 FILE_ATTRIBUTE_NORMAL, NULL);
1001 todo_wine ok(file != INVALID_HANDLE_VALUE, "CreateFile succeeded\n");
1002 CloseHandle(file);
1004 ok(InternetCloseHandle(request), "Close request handle failed\n");
1005 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1006 ok(InternetCloseHandle(session), "Close session handle failed\n");
1009 static void HttpHeaders_test(void)
1011 HINTERNET hSession;
1012 HINTERNET hConnect;
1013 HINTERNET hRequest;
1014 CHAR buffer[256];
1015 WCHAR wbuffer[256];
1016 DWORD len = 256;
1017 DWORD oldlen;
1018 DWORD index = 0;
1020 hSession = InternetOpen("Wine Regression Test",
1021 INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
1022 ok( hSession != NULL ,"Unable to open Internet session\n");
1023 hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
1024 INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
1026 ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
1027 hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
1028 NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1029 if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1031 skip( "Network unreachable, skipping test\n" );
1032 goto done;
1034 ok( hRequest != NULL, "Failed to open request handle\n");
1036 index = 0;
1037 len = sizeof(buffer);
1038 strcpy(buffer,"Warning");
1039 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1040 buffer,&len,&index)==0,"Warning hearder reported as Existing\n");
1042 ok(HttpAddRequestHeaders(hRequest,"Warning:test1",-1,HTTP_ADDREQ_FLAG_ADD),
1043 "Failed to add new header\n");
1045 index = 0;
1046 len = sizeof(buffer);
1047 strcpy(buffer,"Warning");
1048 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1049 buffer,&len,&index),"Unable to query header\n");
1050 ok(index == 1, "Index was not incremented\n");
1051 ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1052 ok(len == 5, "Invalid length (exp. 5, got %d)\n", len);
1053 ok((len < sizeof(buffer)) && (buffer[len] == 0), "Buffer not NULL-terminated\n"); /* len show only 5 characters but the buffer is NULL-terminated*/
1054 len = sizeof(buffer);
1055 strcpy(buffer,"Warning");
1056 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1057 buffer,&len,&index)==0,"Second Index Should Not Exist\n");
1059 index = 0;
1060 len = 5; /* could store the string but not the NULL terminator */
1061 strcpy(buffer,"Warning");
1062 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1063 buffer,&len,&index) == FALSE,"Query succeeded on a too small buffer\n");
1064 ok(strcmp(buffer,"Warning")==0, "incorrect string was returned(%s)\n",buffer); /* string not touched */
1065 ok(len == 6, "Invalid length (exp. 6, got %d)\n", len); /* unlike success, the length includes the NULL-terminator */
1067 /* a call with NULL will fail but will return the length */
1068 index = 0;
1069 len = sizeof(buffer);
1070 SetLastError(0xdeadbeef);
1071 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1072 NULL,&len,&index) == FALSE,"Query worked\n");
1073 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1074 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1075 ok(index == 0, "Index was incremented\n");
1077 /* even for a len that is too small */
1078 index = 0;
1079 len = 15;
1080 SetLastError(0xdeadbeef);
1081 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1082 NULL,&len,&index) == FALSE,"Query worked\n");
1083 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1084 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1085 ok(index == 0, "Index was incremented\n");
1087 index = 0;
1088 len = 0;
1089 SetLastError(0xdeadbeef);
1090 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1091 NULL,&len,&index) == FALSE,"Query worked\n");
1092 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1093 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1094 ok(index == 0, "Index was incremented\n");
1095 oldlen = len; /* bytes; at least long enough to hold buffer & nul */
1098 /* a working query */
1099 index = 0;
1100 len = sizeof(buffer);
1101 memset(buffer, 'x', sizeof(buffer));
1102 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1103 buffer,&len,&index),"Unable to query header\n");
1104 ok(len + sizeof(CHAR) <= oldlen, "Result longer than advertised\n");
1105 ok((len < sizeof(buffer)-sizeof(CHAR)) && (buffer[len/sizeof(CHAR)] == 0),"No NUL at end\n");
1106 ok(len == strlen(buffer) * sizeof(CHAR), "Length wrong\n");
1107 /* what's in the middle differs between Wine and Windows so currently we check only the beginning and the end */
1108 ok(strncmp(buffer, "POST /posttest.php HTTP/1", 25)==0, "Invalid beginning of headers string\n");
1109 ok(strcmp(buffer + strlen(buffer) - 4, "\r\n\r\n")==0, "Invalid end of headers string\n");
1110 ok(index == 0, "Index was incremented\n");
1112 /* Like above two tests, but for W version */
1114 index = 0;
1115 len = 0;
1116 SetLastError(0xdeadbeef);
1117 ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1118 NULL,&len,&index) == FALSE,"Query worked\n");
1119 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1120 ok(len > 80, "Invalid length (exp. more than 80, got %d)\n", len);
1121 ok(index == 0, "Index was incremented\n");
1122 oldlen = len; /* bytes; at least long enough to hold buffer & nul */
1124 /* a working query */
1125 index = 0;
1126 len = sizeof(wbuffer);
1127 memset(wbuffer, 'x', sizeof(wbuffer));
1128 ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1129 wbuffer,&len,&index),"Unable to query header\n");
1130 ok(len + sizeof(WCHAR) <= oldlen, "Result longer than advertised\n");
1131 ok(len == lstrlenW(wbuffer) * sizeof(WCHAR), "Length wrong\n");
1132 ok((len < sizeof(wbuffer)-sizeof(WCHAR)) && (wbuffer[len/sizeof(WCHAR)] == 0),"No NUL at end\n");
1133 ok(index == 0, "Index was incremented\n");
1135 /* end of W version tests */
1137 /* Without HTTP_QUERY_FLAG_REQUEST_HEADERS */
1138 index = 0;
1139 len = sizeof(buffer);
1140 memset(buffer, 'x', sizeof(buffer));
1141 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF,
1142 buffer,&len,&index) == TRUE,"Query failed\n");
1143 ok(len == 2, "Expected 2, got %d\n", len);
1144 ok(strcmp(buffer, "\r\n") == 0, "Expected CRLF, got '%s'\n", buffer);
1145 ok(index == 0, "Index was incremented\n");
1147 ok(HttpAddRequestHeaders(hRequest,"Warning:test2",-1,HTTP_ADDREQ_FLAG_ADD),
1148 "Failed to add duplicate header using HTTP_ADDREQ_FLAG_ADD\n");
1150 index = 0;
1151 len = sizeof(buffer);
1152 strcpy(buffer,"Warning");
1153 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1154 buffer,&len,&index),"Unable to query header\n");
1155 ok(index == 1, "Index was not incremented\n");
1156 ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1157 len = sizeof(buffer);
1158 strcpy(buffer,"Warning");
1159 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1160 buffer,&len,&index),"Failed to get second header\n");
1161 ok(index == 2, "Index was not incremented\n");
1162 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1163 len = sizeof(buffer);
1164 strcpy(buffer,"Warning");
1165 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1166 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1168 ok(HttpAddRequestHeaders(hRequest,"Warning:test3",-1,HTTP_ADDREQ_FLAG_REPLACE), "Failed to replace header using HTTP_ADDREQ_FLAG_REPLACE\n");
1170 index = 0;
1171 len = sizeof(buffer);
1172 strcpy(buffer,"Warning");
1173 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1174 buffer,&len,&index),"Unable to query header\n");
1175 ok(index == 1, "Index was not incremented\n");
1176 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1177 len = sizeof(buffer);
1178 strcpy(buffer,"Warning");
1179 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1180 buffer,&len,&index),"Failed to get second header\n");
1181 ok(index == 2, "Index was not incremented\n");
1182 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1183 len = sizeof(buffer);
1184 strcpy(buffer,"Warning");
1185 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1186 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1188 ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1,HTTP_ADDREQ_FLAG_ADD_IF_NEW)==0, "HTTP_ADDREQ_FLAG_ADD_IF_NEW replaced existing header\n");
1190 index = 0;
1191 len = sizeof(buffer);
1192 strcpy(buffer,"Warning");
1193 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1194 buffer,&len,&index),"Unable to query header\n");
1195 ok(index == 1, "Index was not incremented\n");
1196 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1197 len = sizeof(buffer);
1198 strcpy(buffer,"Warning");
1199 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1200 buffer,&len,&index),"Failed to get second header\n");
1201 ok(index == 2, "Index was not incremented\n");
1202 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1203 len = sizeof(buffer);
1204 strcpy(buffer,"Warning");
1205 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1206 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1208 ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1, HTTP_ADDREQ_FLAG_COALESCE), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1210 index = 0;
1211 len = sizeof(buffer);
1212 strcpy(buffer,"Warning");
1213 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1214 buffer,&len,&index),"Unable to query header\n");
1215 ok(index == 1, "Index was not incremented\n");
1216 ok(strcmp(buffer,"test2, test4")==0, "incorrect string was returned(%s)\n", buffer);
1217 len = sizeof(buffer);
1218 strcpy(buffer,"Warning");
1219 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1220 ok(index == 2, "Index was not incremented\n");
1221 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1222 len = sizeof(buffer);
1223 strcpy(buffer,"Warning");
1224 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1226 ok(HttpAddRequestHeaders(hRequest,"Warning:test5",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1228 index = 0;
1229 len = sizeof(buffer);
1230 strcpy(buffer,"Warning");
1231 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1232 ok(index == 1, "Index was not incremented\n");
1233 ok(strcmp(buffer,"test2, test4, test5")==0, "incorrect string was returned(%s)\n",buffer);
1234 len = sizeof(buffer);
1235 strcpy(buffer,"Warning");
1236 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1237 ok(index == 2, "Index was not incremented\n");
1238 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1239 len = sizeof(buffer);
1240 strcpy(buffer,"Warning");
1241 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1243 ok(HttpAddRequestHeaders(hRequest,"Warning:test6",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1245 index = 0;
1246 len = sizeof(buffer);
1247 strcpy(buffer,"Warning");
1248 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1249 ok(index == 1, "Index was not incremented\n");
1250 ok(strcmp(buffer,"test2, test4, test5; test6")==0, "incorrect string was returned(%s)\n",buffer);
1251 len = sizeof(buffer);
1252 strcpy(buffer,"Warning");
1253 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1254 ok(index == 2, "Index was not incremented\n");
1255 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1256 len = sizeof(buffer);
1257 strcpy(buffer,"Warning");
1258 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1260 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");
1262 index = 0;
1263 len = sizeof(buffer);
1264 strcpy(buffer,"Warning");
1265 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1266 ok(index == 1, "Index was not incremented\n");
1267 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1268 len = sizeof(buffer);
1269 strcpy(buffer,"Warning");
1270 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1271 ok(index == 2, "Index was not incremented\n");
1272 ok(strcmp(buffer,"test7")==0, "incorrect string was returned(%s)\n",buffer);
1273 len = sizeof(buffer);
1274 strcpy(buffer,"Warning");
1275 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1278 ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
1279 done:
1280 ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
1281 ok(InternetCloseHandle(hSession), "Close session handle failed\n");
1284 static const char contmsg[] =
1285 "HTTP/1.1 100 Continue\r\n";
1287 static const char okmsg[] =
1288 "HTTP/1.1 200 OK\r\n"
1289 "Server: winetest\r\n"
1290 "\r\n";
1292 static const char okmsg2[] =
1293 "HTTP/1.1 200 OK\r\n"
1294 "Date: Mon, 01 Dec 2008 13:44:34 GMT\r\n"
1295 "Server: winetest\r\n"
1296 "Content-Length: 0\r\n"
1297 "Set-Cookie: one\r\n"
1298 "Set-Cookie: two\r\n"
1299 "\r\n";
1301 static const char notokmsg[] =
1302 "HTTP/1.1 400 Bad Request\r\n"
1303 "Server: winetest\r\n"
1304 "\r\n";
1306 static const char noauthmsg[] =
1307 "HTTP/1.1 401 Unauthorized\r\n"
1308 "Server: winetest\r\n"
1309 "Connection: close\r\n"
1310 "WWW-Authenticate: Basic realm=\"placebo\"\r\n"
1311 "\r\n";
1313 static const char noauthmsg2[] =
1314 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed\r\n"
1315 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"
1316 "\0d`0|6\n"
1317 "Server: winetest\r\n";
1319 static const char proxymsg[] =
1320 "HTTP/1.1 407 Proxy Authentication Required\r\n"
1321 "Server: winetest\r\n"
1322 "Proxy-Connection: close\r\n"
1323 "Proxy-Authenticate: Basic realm=\"placebo\"\r\n"
1324 "\r\n";
1326 static const char page1[] =
1327 "<HTML>\r\n"
1328 "<HEAD><TITLE>wininet test page</TITLE></HEAD>\r\n"
1329 "<BODY>The quick brown fox jumped over the lazy dog<P></BODY>\r\n"
1330 "</HTML>\r\n\r\n";
1332 struct server_info {
1333 HANDLE hEvent;
1334 int port;
1337 static DWORD CALLBACK server_thread(LPVOID param)
1339 struct server_info *si = param;
1340 int r, c, i, on;
1341 SOCKET s;
1342 struct sockaddr_in sa;
1343 char buffer[0x100];
1344 WSADATA wsaData;
1345 int last_request = 0;
1346 char host_header[22];
1347 static int test_b = 0;
1349 WSAStartup(MAKEWORD(1,1), &wsaData);
1351 s = socket(AF_INET, SOCK_STREAM, 0);
1352 if (s == INVALID_SOCKET)
1353 return 1;
1355 on = 1;
1356 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof on);
1358 memset(&sa, 0, sizeof sa);
1359 sa.sin_family = AF_INET;
1360 sa.sin_port = htons(si->port);
1361 sa.sin_addr.S_un.S_addr = inet_addr("127.0.0.1");
1363 r = bind(s, (struct sockaddr*) &sa, sizeof sa);
1364 if (r<0)
1365 return 1;
1367 listen(s, 0);
1369 SetEvent(si->hEvent);
1371 sprintf(host_header, "Host: localhost:%d", si->port);
1375 c = accept(s, NULL, NULL);
1377 memset(buffer, 0, sizeof buffer);
1378 for(i=0; i<(sizeof buffer-1); i++)
1380 r = recv(c, &buffer[i], 1, 0);
1381 if (r != 1)
1382 break;
1383 if (i<4) continue;
1384 if (buffer[i-2] == '\n' && buffer[i] == '\n' &&
1385 buffer[i-3] == '\r' && buffer[i-1] == '\r')
1386 break;
1388 if (strstr(buffer, "GET /test1"))
1390 if (!strstr(buffer, "Content-Length: 0"))
1392 send(c, okmsg, sizeof okmsg-1, 0);
1393 send(c, page1, sizeof page1-1, 0);
1395 else
1396 send(c, notokmsg, sizeof notokmsg-1, 0);
1398 if (strstr(buffer, "/test2"))
1400 if (strstr(buffer, "Proxy-Authorization: Basic bWlrZToxMTAx"))
1402 send(c, okmsg, sizeof okmsg-1, 0);
1403 send(c, page1, sizeof page1-1, 0);
1405 else
1406 send(c, proxymsg, sizeof proxymsg-1, 0);
1408 if (strstr(buffer, "/test3"))
1410 if (strstr(buffer, "Authorization: Basic dXNlcjpwd2Q="))
1411 send(c, okmsg, sizeof okmsg-1, 0);
1412 else
1413 send(c, noauthmsg, sizeof noauthmsg-1, 0);
1415 if (strstr(buffer, "/test4"))
1417 if (strstr(buffer, "Connection: Close"))
1418 send(c, okmsg, sizeof okmsg-1, 0);
1419 else
1420 send(c, notokmsg, sizeof notokmsg-1, 0);
1422 if (strstr(buffer, "POST /test5") ||
1423 strstr(buffer, "RPC_IN_DATA /test5") ||
1424 strstr(buffer, "RPC_OUT_DATA /test5"))
1426 if (strstr(buffer, "Content-Length: 0"))
1428 send(c, okmsg, sizeof okmsg-1, 0);
1429 send(c, page1, sizeof page1-1, 0);
1431 else
1432 send(c, notokmsg, sizeof notokmsg-1, 0);
1434 if (strstr(buffer, "GET /test6"))
1436 send(c, contmsg, sizeof contmsg-1, 0);
1437 send(c, contmsg, sizeof contmsg-1, 0);
1438 send(c, okmsg, sizeof okmsg-1, 0);
1439 send(c, page1, sizeof page1-1, 0);
1441 if (strstr(buffer, "POST /test7"))
1443 if (strstr(buffer, "Content-Length: 100"))
1445 send(c, okmsg, sizeof okmsg-1, 0);
1446 send(c, page1, sizeof page1-1, 0);
1448 else
1449 send(c, notokmsg, sizeof notokmsg-1, 0);
1451 if (strstr(buffer, "/test8"))
1453 if (!strstr(buffer, "Connection: Close") &&
1454 strstr(buffer, "Connection: Keep-Alive") &&
1455 !strstr(buffer, "Cache-Control: no-cache") &&
1456 !strstr(buffer, "Pragma: no-cache") &&
1457 strstr(buffer, host_header))
1458 send(c, okmsg, sizeof okmsg-1, 0);
1459 else
1460 send(c, notokmsg, sizeof notokmsg-1, 0);
1462 if (strstr(buffer, "/test9"))
1464 if (!strstr(buffer, "Connection: Close") &&
1465 !strstr(buffer, "Connection: Keep-Alive") &&
1466 !strstr(buffer, "Cache-Control: no-cache") &&
1467 !strstr(buffer, "Pragma: no-cache") &&
1468 strstr(buffer, host_header))
1469 send(c, okmsg, sizeof okmsg-1, 0);
1470 else
1471 send(c, notokmsg, sizeof notokmsg-1, 0);
1473 if (strstr(buffer, "/testA"))
1475 if (!strstr(buffer, "Connection: Close") &&
1476 !strstr(buffer, "Connection: Keep-Alive") &&
1477 (strstr(buffer, "Cache-Control: no-cache") ||
1478 strstr(buffer, "Pragma: no-cache")) &&
1479 strstr(buffer, host_header))
1480 send(c, okmsg, sizeof okmsg-1, 0);
1481 else
1482 send(c, notokmsg, sizeof notokmsg-1, 0);
1484 if (!test_b && strstr(buffer, "/testB HTTP/1.1"))
1486 test_b = 1;
1487 send(c, okmsg, sizeof okmsg-1, 0);
1488 recvfrom(c, buffer, sizeof buffer, 0, NULL, NULL);
1489 send(c, okmsg, sizeof okmsg-1, 0);
1491 if (strstr(buffer, "/testC"))
1493 if (strstr(buffer, "Cookie: cookie=biscuit"))
1494 send(c, okmsg, sizeof okmsg-1, 0);
1495 else
1496 send(c, notokmsg, sizeof notokmsg-1, 0);
1498 if (strstr(buffer, "/testD"))
1500 send(c, okmsg2, sizeof okmsg2-1, 0);
1502 if (strstr(buffer, "/testE"))
1504 send(c, noauthmsg2, sizeof noauthmsg2-1, 0);
1506 if (strstr(buffer, "GET /quit"))
1508 send(c, okmsg, sizeof okmsg-1, 0);
1509 send(c, page1, sizeof page1-1, 0);
1510 last_request = 1;
1513 shutdown(c, 2);
1514 closesocket(c);
1515 } while (!last_request);
1517 closesocket(s);
1519 return 0;
1522 static void test_basic_request(int port, const char *verb, const char *url)
1524 HINTERNET hi, hc, hr;
1525 DWORD r, count;
1526 char buffer[0x100];
1528 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1529 ok(hi != NULL, "open failed\n");
1531 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1532 ok(hc != NULL, "connect failed\n");
1534 hr = HttpOpenRequest(hc, verb, url, NULL, NULL, NULL, 0, 0);
1535 ok(hr != NULL, "HttpOpenRequest failed\n");
1537 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1538 ok(r, "HttpSendRequest failed\n");
1540 count = 0;
1541 memset(buffer, 0, sizeof buffer);
1542 r = InternetReadFile(hr, buffer, sizeof buffer, &count);
1543 ok(r, "InternetReadFile failed\n");
1544 ok(count == sizeof page1 - 1, "count was wrong\n");
1545 ok(!memcmp(buffer, page1, sizeof page1), "http data wrong\n");
1547 InternetCloseHandle(hr);
1548 InternetCloseHandle(hc);
1549 InternetCloseHandle(hi);
1552 static void test_proxy_indirect(int port)
1554 HINTERNET hi, hc, hr;
1555 DWORD r, sz, val;
1556 char buffer[0x40];
1558 hi = InternetOpen(NULL, 0, NULL, NULL, 0);
1559 ok(hi != NULL, "open failed\n");
1561 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1562 ok(hc != NULL, "connect failed\n");
1564 hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
1565 ok(hr != NULL, "HttpOpenRequest failed\n");
1567 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1568 ok(r, "HttpSendRequest failed\n");
1570 sz = sizeof buffer;
1571 r = HttpQueryInfo(hr, HTTP_QUERY_PROXY_AUTHENTICATE, buffer, &sz, NULL);
1572 ok(r, "HttpQueryInfo failed\n");
1573 ok(!strcmp(buffer, "Basic realm=\"placebo\""), "proxy auth info wrong\n");
1575 sz = sizeof buffer;
1576 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1577 ok(r, "HttpQueryInfo failed\n");
1578 ok(!strcmp(buffer, "407"), "proxy code wrong\n");
1580 sz = sizeof val;
1581 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &val, &sz, NULL);
1582 ok(r, "HttpQueryInfo failed\n");
1583 ok(val == 407, "proxy code wrong\n");
1585 sz = sizeof buffer;
1586 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &sz, NULL);
1587 ok(r, "HttpQueryInfo failed\n");
1588 ok(!strcmp(buffer, "Proxy Authentication Required"), "proxy text wrong\n");
1590 sz = sizeof buffer;
1591 r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &sz, NULL);
1592 ok(r, "HttpQueryInfo failed\n");
1593 ok(!strcmp(buffer, "HTTP/1.1"), "http version wrong\n");
1595 sz = sizeof buffer;
1596 r = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &sz, NULL);
1597 ok(r, "HttpQueryInfo failed\n");
1598 ok(!strcmp(buffer, "winetest"), "http server wrong\n");
1600 sz = sizeof buffer;
1601 r = HttpQueryInfo(hr, HTTP_QUERY_CONTENT_ENCODING, buffer, &sz, NULL);
1602 ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo should fail\n");
1603 ok(r == FALSE, "HttpQueryInfo failed\n");
1605 InternetCloseHandle(hr);
1606 InternetCloseHandle(hc);
1607 InternetCloseHandle(hi);
1610 static void test_proxy_direct(int port)
1612 HINTERNET hi, hc, hr;
1613 DWORD r, sz;
1614 char buffer[0x40];
1615 static CHAR username[] = "mike",
1616 password[] = "1101";
1618 sprintf(buffer, "localhost:%d\n", port);
1619 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_PROXY, buffer, NULL, 0);
1620 ok(hi != NULL, "open failed\n");
1622 /* try connect without authorization */
1623 hc = InternetConnect(hi, "test.winehq.org/", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1624 ok(hc != NULL, "connect failed\n");
1626 hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
1627 ok(hr != NULL, "HttpOpenRequest failed\n");
1629 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1630 ok(r, "HttpSendRequest failed\n");
1632 sz = sizeof buffer;
1633 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1634 ok(r, "HttpQueryInfo failed\n");
1635 ok(!strcmp(buffer, "407"), "proxy code wrong\n");
1638 /* set the user + password then try again */
1639 todo_wine {
1640 r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 4);
1641 ok(r, "failed to set user\n");
1643 r = InternetSetOption(hr, INTERNET_OPTION_PROXY_PASSWORD, password, 4);
1644 ok(r, "failed to set password\n");
1647 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
1648 ok(r, "HttpSendRequest failed\n");
1649 sz = sizeof buffer;
1650 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
1651 ok(r, "HttpQueryInfo failed\n");
1652 todo_wine {
1653 ok(!strcmp(buffer, "200"), "proxy code wrong\n");
1657 InternetCloseHandle(hr);
1658 InternetCloseHandle(hc);
1659 InternetCloseHandle(hi);
1662 static void test_header_handling_order(int port)
1664 static char authorization[] = "Authorization: Basic dXNlcjpwd2Q=";
1665 static char connection[] = "Connection: Close";
1667 static const char *types[2] = { "*", NULL };
1668 HINTERNET session, connect, request;
1669 DWORD size, status;
1670 BOOL ret;
1672 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1673 ok(session != NULL, "InternetOpen failed\n");
1675 connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1676 ok(connect != NULL, "InternetConnect failed\n");
1678 request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
1679 ok(request != NULL, "HttpOpenRequest failed\n");
1681 ret = HttpAddRequestHeaders(request, authorization, ~0u, HTTP_ADDREQ_FLAG_ADD);
1682 ok(ret, "HttpAddRequestHeaders failed\n");
1684 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1685 ok(ret, "HttpSendRequest failed\n");
1687 status = 0;
1688 size = sizeof(status);
1689 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1690 ok(ret, "HttpQueryInfo failed\n");
1691 ok(status == 200, "request failed with status %u\n", status);
1693 InternetCloseHandle(request);
1695 request = HttpOpenRequest(connect, NULL, "/test4", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
1696 ok(request != NULL, "HttpOpenRequest failed\n");
1698 ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
1699 ok(ret, "HttpSendRequest failed\n");
1701 status = 0;
1702 size = sizeof(status);
1703 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1704 ok(ret, "HttpQueryInfo failed\n");
1705 ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
1707 InternetCloseHandle(request);
1709 request = HttpOpenRequest(connect, "POST", "/test7", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
1710 ok(request != NULL, "HttpOpenRequest failed\n");
1712 ret = HttpAddRequestHeaders(request, "Content-Length: 100\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
1713 ok(ret, "HttpAddRequestHeaders failed\n");
1715 ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
1716 ok(ret, "HttpSendRequest failed\n");
1718 status = 0;
1719 size = sizeof(status);
1720 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1721 ok(ret, "HttpQueryInfo failed\n");
1722 ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
1724 InternetCloseHandle(request);
1725 InternetCloseHandle(connect);
1726 InternetCloseHandle(session);
1729 static void test_connection_header(int port)
1731 HINTERNET ses, con, req;
1732 DWORD size, status;
1733 BOOL ret;
1735 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1736 ok(ses != NULL, "InternetOpen failed\n");
1738 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1739 ok(con != NULL, "InternetConnect failed\n");
1741 req = HttpOpenRequest(con, NULL, "/test8", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
1742 ok(req != NULL, "HttpOpenRequest failed\n");
1744 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1745 ok(ret, "HttpSendRequest failed\n");
1747 status = 0;
1748 size = sizeof(status);
1749 ret = HttpQueryInfo(req, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL);
1750 ok(ret, "HttpQueryInfo failed\n");
1751 ok(status == 200, "request failed with status %u\n", status);
1753 InternetCloseHandle(req);
1755 req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, 0, 0);
1756 ok(req != NULL, "HttpOpenRequest failed\n");
1758 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1759 ok(ret, "HttpSendRequest failed\n");
1761 status = 0;
1762 size = sizeof(status);
1763 ret = HttpQueryInfo(req, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL);
1764 ok(ret, "HttpQueryInfo failed\n");
1765 ok(status == 200, "request failed with status %u\n", status);
1767 InternetCloseHandle(req);
1769 req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1770 ok(req != NULL, "HttpOpenRequest failed\n");
1772 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1773 ok(ret, "HttpSendRequest failed\n");
1775 status = 0;
1776 size = sizeof(status);
1777 ret = HttpQueryInfo(req, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL);
1778 ok(ret, "HttpQueryInfo failed\n");
1779 ok(status == 200, "request failed with status %u\n", status);
1781 InternetCloseHandle(req);
1783 req = HttpOpenRequest(con, "POST", "/testA", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1784 ok(req != NULL, "HttpOpenRequest failed\n");
1786 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1787 ok(ret, "HttpSendRequest failed\n");
1789 status = 0;
1790 size = sizeof(status);
1791 ret = HttpQueryInfo(req, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL);
1792 ok(ret, "HttpQueryInfo failed\n");
1793 ok(status == 200, "request failed with status %u\n", status);
1795 InternetCloseHandle(req);
1796 InternetCloseHandle(con);
1797 InternetCloseHandle(ses);
1800 static void test_http1_1(int port)
1802 HINTERNET ses, con, req;
1803 BOOL ret;
1805 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1806 ok(ses != NULL, "InternetOpen failed\n");
1808 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1809 ok(con != NULL, "InternetConnect failed\n");
1811 req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
1812 ok(req != NULL, "HttpOpenRequest failed\n");
1814 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1815 if (ret)
1817 InternetCloseHandle(req);
1819 req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
1820 ok(req != NULL, "HttpOpenRequest failed\n");
1822 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1823 todo_wine
1824 ok(ret, "HttpSendRequest failed\n");
1827 InternetCloseHandle(req);
1828 InternetCloseHandle(con);
1829 InternetCloseHandle(ses);
1832 static void test_HttpSendRequestW(int port)
1834 static const WCHAR header[] = {'U','A','-','C','P','U',':',' ','x','8','6',0};
1835 HINTERNET ses, con, req;
1836 DWORD error;
1837 BOOL ret;
1839 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);
1840 ok(ses != NULL, "InternetOpen failed\n");
1842 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1843 ok(con != NULL, "InternetConnect failed\n");
1845 req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
1846 ok(req != NULL, "HttpOpenRequest failed\n");
1848 SetLastError(0xdeadbeef);
1849 ret = HttpSendRequestW(req, header, ~0u, NULL, 0);
1850 error = GetLastError();
1851 ok(!ret, "HttpSendRequestW succeeded\n");
1852 ok(error == ERROR_IO_PENDING ||
1853 broken(error == ERROR_HTTP_HEADER_NOT_FOUND) || /* IE6 */
1854 broken(error == ERROR_INVALID_PARAMETER), /* IE5 */
1855 "got %u expected ERROR_IO_PENDING\n", error);
1857 InternetCloseHandle(req);
1858 InternetCloseHandle(con);
1859 InternetCloseHandle(ses);
1862 static void test_cookie_header(int port)
1864 HINTERNET ses, con, req;
1865 DWORD size, status, error;
1866 BOOL ret;
1867 char buffer[64];
1869 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1870 ok(ses != NULL, "InternetOpen failed\n");
1872 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1873 ok(con != NULL, "InternetConnect failed\n");
1875 InternetSetCookie("http://localhost", "cookie", "biscuit");
1877 req = HttpOpenRequest(con, NULL, "/testC", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
1878 ok(req != NULL, "HttpOpenRequest failed\n");
1880 buffer[0] = 0;
1881 size = sizeof(buffer);
1882 SetLastError(0xdeadbeef);
1883 ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
1884 error = GetLastError();
1885 ok(!ret, "HttpQueryInfo succeeded\n");
1886 ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "got %u expected ERROR_HTTP_HEADER_NOT_FOUND\n", error);
1888 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
1889 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1891 status = 0;
1892 size = sizeof(status);
1893 ret = HttpQueryInfo(req, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL);
1894 ok(ret, "HttpQueryInfo failed\n");
1895 ok(status == 200, "request failed with status %u\n", status);
1897 buffer[0] = 0;
1898 size = sizeof(buffer);
1899 ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
1900 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
1901 ok(!strcmp(buffer, "cookie=biscuit"), "got '%s' expected \'cookie=biscuit\'\n", buffer);
1903 InternetCloseHandle(req);
1904 InternetCloseHandle(con);
1905 InternetCloseHandle(ses);
1908 static void test_basic_authentication(int port)
1910 HINTERNET session, connect, request;
1911 DWORD size, status;
1912 BOOL ret;
1914 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1915 ok(session != NULL, "InternetOpen failed\n");
1917 connect = InternetConnect(session, "localhost", port, "user", "pwd", INTERNET_SERVICE_HTTP, 0, 0);
1918 ok(connect != NULL, "InternetConnect failed\n");
1920 request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, NULL, 0, 0);
1921 ok(request != NULL, "HttpOpenRequest failed\n");
1923 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1924 ok(ret, "HttpSendRequest failed %u\n", GetLastError());
1926 status = 0;
1927 size = sizeof(status);
1928 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1929 ok(ret, "HttpQueryInfo failed\n");
1930 ok(status == 200, "request failed with status %u\n", status);
1932 InternetCloseHandle(request);
1933 InternetCloseHandle(connect);
1934 InternetCloseHandle(session);
1937 static void test_invalid_response_headers(int port)
1939 HINTERNET session, connect, request;
1940 DWORD size, status;
1941 BOOL ret;
1942 char buffer[256];
1944 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1945 ok(session != NULL, "InternetOpen failed\n");
1947 connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1948 ok(connect != NULL, "InternetConnect failed\n");
1950 request = HttpOpenRequest(connect, NULL, "/testE", NULL, NULL, NULL, 0, 0);
1951 ok(request != NULL, "HttpOpenRequest failed\n");
1953 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1954 ok(ret, "HttpSendRequest failed %u\n", GetLastError());
1956 status = 0;
1957 size = sizeof(status);
1958 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
1959 ok(ret, "HttpQueryInfo failed\n");
1960 ok(status == 401, "unexpected status %u\n", status);
1962 buffer[0] = 0;
1963 size = sizeof(buffer);
1964 ret = HttpQueryInfo( request, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
1965 ok(ret, "HttpQueryInfo failed\n");
1966 ok(!strcmp(buffer, "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"),
1967 "headers wrong \"%s\"\n", buffer);
1969 buffer[0] = 0;
1970 size = sizeof(buffer);
1971 ret = HttpQueryInfo( request, HTTP_QUERY_SERVER, buffer, &size, NULL);
1972 ok(ret, "HttpQueryInfo failed\n");
1973 ok(!strcmp(buffer, "winetest"), "server wrong \"%s\"\n", buffer);
1975 InternetCloseHandle(request);
1976 InternetCloseHandle(connect);
1977 InternetCloseHandle(session);
1980 static void test_HttpQueryInfo(int port)
1982 HINTERNET hi, hc, hr;
1983 DWORD size, index;
1984 char buffer[1024];
1985 BOOL ret;
1987 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
1988 ok(hi != NULL, "InternetOpen failed\n");
1990 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
1991 ok(hc != NULL, "InternetConnect failed\n");
1993 hr = HttpOpenRequest(hc, NULL, "/testD", NULL, NULL, NULL, 0, 0);
1994 ok(hr != NULL, "HttpOpenRequest failed\n");
1996 ret = HttpSendRequest(hr, NULL, 0, NULL, 0);
1997 ok(ret, "HttpSendRequest failed\n");
1999 index = 0;
2000 size = sizeof(buffer);
2001 ret = HttpQueryInfo(hr, HTTP_QUERY_HOST | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, &index);
2002 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2003 ok(index == 1, "expected 1 got %u\n", index);
2005 index = 0;
2006 size = sizeof(buffer);
2007 ret = HttpQueryInfo(hr, HTTP_QUERY_DATE | HTTP_QUERY_FLAG_SYSTEMTIME, buffer, &size, &index);
2008 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2009 ok(index == 1, "expected 1 got %u\n", index);
2011 index = 0;
2012 size = sizeof(buffer);
2013 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
2014 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2015 ok(index == 0, "expected 0 got %u\n", index);
2017 size = sizeof(buffer);
2018 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
2019 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2020 ok(index == 0, "expected 0 got %u\n", index);
2022 size = sizeof(buffer);
2023 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS_CRLF, buffer, &size, &index);
2024 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2025 ok(index == 0, "expected 0 got %u\n", index);
2027 size = sizeof(buffer);
2028 ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, &index);
2029 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2030 ok(index == 0, "expected 0 got %u\n", index);
2032 size = sizeof(buffer);
2033 ret = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, &index);
2034 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2035 ok(index == 0, "expected 0 got %u\n", index);
2037 index = 0;
2038 size = sizeof(buffer);
2039 ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &size, &index);
2040 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2041 ok(index == 0, "expected 0 got %u\n", index);
2043 index = 0;
2044 size = sizeof(buffer);
2045 ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, buffer, &size, &index);
2046 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2047 ok(index == 0, "expected 0 got %u\n", index);
2049 index = 0xdeadbeef;
2050 size = sizeof(buffer);
2051 ret = HttpQueryInfo(hr, HTTP_QUERY_FORWARDED, buffer, &size, &index);
2052 ok(!ret, "HttpQueryInfo succeeded\n");
2053 ok(index == 0xdeadbeef, "expected 0xdeadbeef got %u\n", index);
2055 index = 0;
2056 size = sizeof(buffer);
2057 ret = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &size, &index);
2058 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2059 ok(index == 1, "expected 1 got %u\n", index);
2061 index = 0;
2062 size = sizeof(buffer);
2063 strcpy(buffer, "Server");
2064 ret = HttpQueryInfo(hr, HTTP_QUERY_CUSTOM, buffer, &size, &index);
2065 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2066 ok(index == 1, "expected 1 got %u\n", index);
2068 index = 0;
2069 size = sizeof(buffer);
2070 ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
2071 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2072 ok(index == 1, "expected 1 got %u\n", index);
2074 size = sizeof(buffer);
2075 ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
2076 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
2077 ok(index == 2, "expected 2 got %u\n", index);
2079 InternetCloseHandle(hr);
2080 InternetCloseHandle(hc);
2081 InternetCloseHandle(hi);
2084 static void test_http_connection(void)
2086 struct server_info si;
2087 HANDLE hThread;
2088 DWORD id = 0, r;
2090 si.hEvent = CreateEvent(NULL, 0, 0, NULL);
2091 si.port = 7531;
2093 hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id);
2094 ok( hThread != NULL, "create thread failed\n");
2096 r = WaitForSingleObject(si.hEvent, 10000);
2097 ok (r == WAIT_OBJECT_0, "failed to start wininet test server\n");
2098 if (r != WAIT_OBJECT_0)
2099 return;
2101 test_basic_request(si.port, "GET", "/test1");
2102 test_proxy_indirect(si.port);
2103 test_proxy_direct(si.port);
2104 test_header_handling_order(si.port);
2105 test_basic_request(si.port, "POST", "/test5");
2106 test_basic_request(si.port, "RPC_IN_DATA", "/test5");
2107 test_basic_request(si.port, "RPC_OUT_DATA", "/test5");
2108 test_basic_request(si.port, "GET", "/test6");
2109 test_connection_header(si.port);
2110 test_http1_1(si.port);
2111 test_cookie_header(si.port);
2112 test_basic_authentication(si.port);
2113 test_invalid_response_headers(si.port);
2114 test_HttpQueryInfo(si.port);
2115 test_HttpSendRequestW(si.port);
2117 /* send the basic request again to shutdown the server thread */
2118 test_basic_request(si.port, "GET", "/quit");
2120 r = WaitForSingleObject(hThread, 3000);
2121 ok( r == WAIT_OBJECT_0, "thread wait failed\n");
2122 CloseHandle(hThread);
2125 static void test_user_agent_header(void)
2127 HINTERNET ses, con, req;
2128 DWORD size, err;
2129 char buffer[64];
2130 BOOL ret;
2132 ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2133 ok(ses != NULL, "InternetOpen failed\n");
2135 con = InternetConnect(ses, "test.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2136 ok(con != NULL, "InternetConnect failed\n");
2138 req = HttpOpenRequest(con, "GET", "/hello.html", "HTTP/1.0", NULL, NULL, 0, 0);
2139 ok(req != NULL, "HttpOpenRequest failed\n");
2141 size = sizeof(buffer);
2142 ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2143 err = GetLastError();
2144 ok(!ret, "HttpQueryInfo succeeded\n");
2145 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
2147 ret = HttpAddRequestHeaders(req, "User-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
2148 ok(ret, "HttpAddRequestHeaders succeeded\n");
2150 size = sizeof(buffer);
2151 ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2152 err = GetLastError();
2153 ok(ret, "HttpQueryInfo failed\n");
2154 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
2156 InternetCloseHandle(req);
2158 req = HttpOpenRequest(con, "GET", "/", "HTTP/1.0", NULL, NULL, 0, 0);
2159 ok(req != NULL, "HttpOpenRequest failed\n");
2161 size = sizeof(buffer);
2162 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2163 err = GetLastError();
2164 ok(!ret, "HttpQueryInfo succeeded\n");
2165 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
2167 ret = HttpAddRequestHeaders(req, "Accept: audio/*, image/*, text/*\r\nUser-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
2168 ok(ret, "HttpAddRequestHeaders failed\n");
2170 buffer[0] = 0;
2171 size = sizeof(buffer);
2172 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2173 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2174 ok(!strcmp(buffer, "audio/*, image/*, text/*"), "got '%s' expected 'audio/*, image/*, text/*'\n", buffer);
2176 InternetCloseHandle(req);
2177 InternetCloseHandle(con);
2178 InternetCloseHandle(ses);
2181 static void test_bogus_accept_types_array(void)
2183 HINTERNET ses, con, req;
2184 static const char *types[] = { (const char *)6240, "*/*", "%p", "", (const char *)0xffffffff, "*/*", NULL };
2185 DWORD size;
2186 char buffer[32];
2187 BOOL ret;
2189 ses = InternetOpen("MERONG(0.9/;p)", INTERNET_OPEN_TYPE_DIRECT, "", "", 0);
2190 con = InternetConnect(ses, "www.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2191 req = HttpOpenRequest(con, "POST", "/post/post_action.php", "HTTP/1.0", "", types, INTERNET_FLAG_FORMS_SUBMIT, 0);
2193 ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2195 buffer[0] = 0;
2196 size = sizeof(buffer);
2197 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2198 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2199 ok(!strcmp(buffer, ", */*, %p, , , */*") || /* IE6 */
2200 !strcmp(buffer, "*/*, %p, */*"),
2201 "got '%s' expected '*/*, %%p, */*' or ', */*, %%p, , , */*'\n", buffer);
2203 InternetCloseHandle(req);
2204 InternetCloseHandle(con);
2205 InternetCloseHandle(ses);
2208 struct context
2210 HANDLE event;
2211 HINTERNET req;
2214 static void WINAPI cb(HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID info, DWORD size)
2216 INTERNET_ASYNC_RESULT *result = info;
2217 struct context *ctx = (struct context *)context;
2219 trace("%p 0x%08lx %u %p 0x%08x\n", handle, context, status, info, size);
2221 if (status == INTERNET_STATUS_REQUEST_COMPLETE)
2223 trace("request handle: 0x%08lx\n", result->dwResult);
2224 ctx->req = (HINTERNET)result->dwResult;
2225 SetEvent(ctx->event);
2227 if (status == INTERNET_STATUS_HANDLE_CLOSING)
2229 DWORD type = INTERNET_HANDLE_TYPE_CONNECT_HTTP, size = sizeof(type);
2231 if (InternetQueryOption(handle, INTERNET_OPTION_HANDLE_TYPE, &type, &size))
2232 ok(type != INTERNET_HANDLE_TYPE_CONNECT_HTTP, "unexpected callback\n");
2233 SetEvent(ctx->event);
2237 static void test_open_url_async(void)
2239 BOOL ret;
2240 HINTERNET ses, req;
2241 DWORD size, error;
2242 struct context ctx;
2243 ULONG type;
2245 ctx.req = NULL;
2246 ctx.event = CreateEvent(NULL, TRUE, FALSE, "Z:_home_hans_jaman-installer.exe_ev1");
2248 ses = InternetOpen("AdvancedInstaller", 0, NULL, NULL, INTERNET_FLAG_ASYNC);
2249 ok(ses != NULL, "InternetOpen failed\n");
2251 SetLastError(0xdeadbeef);
2252 ret = InternetSetOptionA(NULL, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
2253 error = GetLastError();
2254 ok(!ret, "InternetSetOptionA succeeded\n");
2255 ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "got %u expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE\n", error);
2257 ret = InternetSetOptionA(ses, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
2258 error = GetLastError();
2259 ok(!ret, "InternetSetOptionA failed\n");
2260 ok(error == ERROR_INTERNET_OPTION_NOT_SETTABLE, "got %u expected ERROR_INTERNET_OPTION_NOT_SETTABLE\n", error);
2262 pInternetSetStatusCallbackA(ses, cb);
2263 ResetEvent(ctx.event);
2265 req = InternetOpenUrl(ses, "http://test.winehq.org", NULL, 0, 0, (DWORD_PTR)&ctx);
2266 ok(!req && GetLastError() == ERROR_IO_PENDING, "InternetOpenUrl failed\n");
2268 WaitForSingleObject(ctx.event, INFINITE);
2270 type = 0;
2271 size = sizeof(type);
2272 ret = InternetQueryOption(ctx.req, INTERNET_OPTION_HANDLE_TYPE, &type, &size);
2273 ok(ret, "InternetQueryOption failed: %u\n", GetLastError());
2274 ok(type == INTERNET_HANDLE_TYPE_HTTP_REQUEST,
2275 "expected INTERNET_HANDLE_TYPE_HTTP_REQUEST, got %u\n", type);
2277 size = 0;
2278 ret = HttpQueryInfo(ctx.req, HTTP_QUERY_RAW_HEADERS_CRLF, NULL, &size, NULL);
2279 ok(!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER, "HttpQueryInfo failed\n");
2280 ok(size > 0, "expected size > 0\n");
2282 ResetEvent(ctx.event);
2283 InternetCloseHandle(ctx.req);
2284 WaitForSingleObject(ctx.event, INFINITE);
2286 InternetCloseHandle(ses);
2287 CloseHandle(ctx.event);
2290 enum api
2292 internet_connect = 1,
2293 http_open_request,
2294 http_send_request_ex,
2295 internet_writefile,
2296 http_end_request,
2297 internet_close_handle
2300 struct notification
2302 enum api function; /* api responsible for notification */
2303 unsigned int status; /* status received */
2304 int async; /* delivered from another thread? */
2305 int todo;
2308 struct info
2310 enum api function;
2311 const struct notification *test;
2312 unsigned int count;
2313 unsigned int index;
2314 HANDLE wait;
2315 DWORD thread;
2316 unsigned int line;
2319 static CRITICAL_SECTION notification_cs;
2321 static void CALLBACK check_notification( HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID buffer, DWORD buflen )
2323 BOOL status_ok, function_ok;
2324 struct info *info = (struct info *)context;
2325 unsigned int i;
2327 EnterCriticalSection( &notification_cs );
2329 if (status == INTERNET_STATUS_HANDLE_CREATED)
2331 DWORD size = sizeof(struct info *);
2332 HttpQueryInfoA( handle, INTERNET_OPTION_CONTEXT_VALUE, &info, &size, 0 );
2334 i = info->index;
2335 if (i >= info->count)
2337 LeaveCriticalSection( &notification_cs );
2338 return;
2341 status_ok = (info->test[i].status == status);
2342 function_ok = (info->test[i].function == info->function);
2344 if (!info->test[i].todo)
2346 ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
2347 ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
2349 if (info->test[i].async)
2350 ok(info->thread != GetCurrentThreadId(), "%u: expected thread %u got %u\n",
2351 info->line, info->thread, GetCurrentThreadId());
2353 else
2355 todo_wine ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
2356 if (status_ok)
2357 todo_wine ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
2359 if (i == info->count - 1 || info->test[i].function != info->test[i + 1].function) SetEvent( info->wait );
2360 info->index++;
2362 LeaveCriticalSection( &notification_cs );
2365 static void setup_test( struct info *info, enum api function, unsigned int line )
2367 info->function = function;
2368 info->line = line;
2371 static const struct notification async_send_request_ex_test[] =
2373 { internet_connect, INTERNET_STATUS_HANDLE_CREATED, 0 },
2374 { http_open_request, INTERNET_STATUS_HANDLE_CREATED, 0 },
2375 { http_send_request_ex, INTERNET_STATUS_RESOLVING_NAME, 1 },
2376 { http_send_request_ex, INTERNET_STATUS_NAME_RESOLVED, 1 },
2377 { http_send_request_ex, INTERNET_STATUS_CONNECTING_TO_SERVER, 1 },
2378 { http_send_request_ex, INTERNET_STATUS_CONNECTED_TO_SERVER, 1 },
2379 { http_send_request_ex, INTERNET_STATUS_SENDING_REQUEST, 1 },
2380 { http_send_request_ex, INTERNET_STATUS_REQUEST_SENT, 1 },
2381 { http_send_request_ex, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
2382 { internet_writefile, INTERNET_STATUS_SENDING_REQUEST, 0 },
2383 { internet_writefile, INTERNET_STATUS_REQUEST_SENT, 0 },
2384 { http_end_request, INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
2385 { http_end_request, INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
2386 { http_end_request, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
2387 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, 1 },
2388 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, 1 }
2391 static void test_async_HttpSendRequestEx(void)
2393 BOOL ret;
2394 HINTERNET ses, req, con;
2395 struct info info;
2396 DWORD size, written, error;
2397 INTERNET_BUFFERSA b;
2398 static const char *accept[2] = {"*/*", NULL};
2399 static char data[] = "Public ID=codeweavers";
2400 char buffer[32];
2402 InitializeCriticalSection( &notification_cs );
2404 info.test = async_send_request_ex_test;
2405 info.count = sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]);
2406 info.index = 0;
2407 info.wait = CreateEvent( NULL, FALSE, FALSE, NULL );
2408 info.thread = GetCurrentThreadId();
2410 ses = InternetOpen( "winetest", 0, NULL, NULL, INTERNET_FLAG_ASYNC );
2411 ok( ses != NULL, "InternetOpen failed\n" );
2413 pInternetSetStatusCallbackA( ses, check_notification );
2415 setup_test( &info, internet_connect, __LINE__ );
2416 con = InternetConnect( ses, "crossover.codeweavers.com", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, (DWORD_PTR)&info );
2417 ok( con != NULL, "InternetConnect failed %u\n", GetLastError() );
2419 WaitForSingleObject( info.wait, 10000 );
2421 setup_test( &info, http_open_request, __LINE__ );
2422 req = HttpOpenRequest( con, "POST", "posttest.php", NULL, NULL, accept, 0, (DWORD_PTR)&info );
2423 ok( req != NULL, "HttpOpenRequest failed %u\n", GetLastError() );
2425 WaitForSingleObject( info.wait, 10000 );
2427 memset( &b, 0, sizeof(INTERNET_BUFFERSA) );
2428 b.dwStructSize = sizeof(INTERNET_BUFFERSA);
2429 b.lpcszHeader = "Content-Type: application/x-www-form-urlencoded";
2430 b.dwHeadersLength = strlen( b.lpcszHeader );
2431 b.dwBufferTotal = strlen( data );
2433 setup_test( &info, http_send_request_ex, __LINE__ );
2434 ret = HttpSendRequestExA( req, &b, NULL, 0x28, 0 );
2435 ok( !ret && GetLastError() == ERROR_IO_PENDING, "HttpSendRequestExA failed %d %u\n", ret, GetLastError() );
2437 WaitForSingleObject( info.wait, 10000 );
2439 size = sizeof(buffer);
2440 SetLastError( 0xdeadbeef );
2441 ret = HttpQueryInfoA( req, HTTP_QUERY_CONTENT_ENCODING, buffer, &size, 0 );
2442 error = GetLastError();
2443 ok( !ret, "HttpQueryInfoA failed %u\n", GetLastError() );
2444 todo_wine
2445 ok( error == ERROR_INTERNET_INCORRECT_HANDLE_STATE,
2446 "expected ERROR_INTERNET_INCORRECT_HANDLE_STATE got %u\n", error );
2448 written = 0;
2449 size = strlen( data );
2450 setup_test( &info, internet_writefile, __LINE__ );
2451 ret = InternetWriteFile( req, data, size, &written );
2452 ok( ret, "InternetWriteFile failed %u\n", GetLastError() );
2453 ok( written == size, "expected %u got %u\n", written, size );
2455 WaitForSingleObject( info.wait, 10000 );
2457 SetLastError( 0xdeadbeef );
2458 ret = HttpEndRequestA( req, (void *)data, 0x28, 0 );
2459 error = GetLastError();
2460 ok( !ret, "HttpEndRequestA succeeded\n" );
2461 ok( error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got %u\n", error );
2463 SetLastError( 0xdeadbeef );
2464 setup_test( &info, http_end_request, __LINE__ );
2465 ret = HttpEndRequestA( req, NULL, 0x28, 0 );
2466 error = GetLastError();
2467 ok( !ret, "HttpEndRequestA succeeded\n" );
2468 ok( error == ERROR_IO_PENDING, "expected ERROR_IO_PENDING got %u\n", error );
2470 WaitForSingleObject( info.wait, 10000 );
2472 setup_test( &info, internet_close_handle, __LINE__ );
2473 InternetCloseHandle( req );
2474 InternetCloseHandle( con );
2475 InternetCloseHandle( ses );
2477 WaitForSingleObject( info.wait, 10000 );
2478 CloseHandle( info.wait );
2481 #define STATUS_STRING(status) \
2482 memcpy(status_string[status], #status, sizeof(CHAR) * \
2483 (strlen(#status) < MAX_STATUS_NAME ? \
2484 strlen(#status) : \
2485 MAX_STATUS_NAME - 1))
2486 static void init_status_tests(void)
2488 memset(expect, 0, sizeof(expect));
2489 memset(optional, 0, sizeof(optional));
2490 memset(wine_allow, 0, sizeof(wine_allow));
2491 memset(notified, 0, sizeof(notified));
2492 memset(status_string, 0, sizeof(status_string));
2493 STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME);
2494 STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED);
2495 STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER);
2496 STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER);
2497 STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST);
2498 STATUS_STRING(INTERNET_STATUS_REQUEST_SENT);
2499 STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE);
2500 STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED);
2501 STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED);
2502 STATUS_STRING(INTERNET_STATUS_PREFETCH);
2503 STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION);
2504 STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED);
2505 STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED);
2506 STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING);
2507 STATUS_STRING(INTERNET_STATUS_DETECTING_PROXY);
2508 STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE);
2509 STATUS_STRING(INTERNET_STATUS_REDIRECT);
2510 STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE);
2511 STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED);
2512 STATUS_STRING(INTERNET_STATUS_STATE_CHANGE);
2513 STATUS_STRING(INTERNET_STATUS_COOKIE_SENT);
2514 STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED);
2515 STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED);
2516 STATUS_STRING(INTERNET_STATUS_P3P_HEADER);
2517 STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF);
2518 STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY);
2520 #undef STATUS_STRING
2522 START_TEST(http)
2524 HMODULE hdll;
2525 hdll = GetModuleHandleA("wininet.dll");
2526 pInternetSetStatusCallbackA = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackA");
2528 if (!pInternetSetStatusCallbackA)
2529 skip("skipping the InternetReadFile tests\n");
2530 else
2532 init_status_tests();
2533 InternetReadFile_test(INTERNET_FLAG_ASYNC);
2534 InternetReadFile_test(0);
2535 InternetReadFileExA_test(INTERNET_FLAG_ASYNC);
2536 test_open_url_async();
2537 test_async_HttpSendRequestEx();
2539 InternetOpenRequest_test();
2540 test_http_cache();
2541 InternetOpenUrlA_test();
2542 HttpSendRequestEx_test();
2543 HttpHeaders_test();
2544 test_http_connection();
2545 test_user_agent_header();
2546 test_bogus_accept_types_array();