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
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) \
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) \
62 if (!expect[status] && !optional[status] && wine_allow[status]) \
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]--; \
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]--; \
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) \
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); \
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 #define TESTF_REDIRECT 0x01
109 #define TESTF_COMPRESSED 0x02
110 #define TESTF_ALLOW_COOKIE 0x04
114 const char *redirected_url
;
120 static const test_data_t test_data
[] = {
122 "http://test.winehq.org/testredirect",
123 "http://test.winehq.org/hello.html",
129 "http://www.codeweavers.com/",
130 "http://www.codeweavers.com/",
131 "www.codeweavers.com",
133 TESTF_COMPRESSED
|TESTF_ALLOW_COOKIE
137 static INTERNET_STATUS_CALLBACK (WINAPI
*pInternetSetStatusCallbackA
)(HINTERNET
,INTERNET_STATUS_CALLBACK
);
140 static VOID WINAPI
callback(
143 DWORD dwInternetStatus
,
144 LPVOID lpvStatusInformation
,
145 DWORD dwStatusInformationLength
148 CHECK_EXPECT(dwInternetStatus
);
149 switch (dwInternetStatus
)
151 case INTERNET_STATUS_RESOLVING_NAME
:
152 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESOLVING_NAME \"%s\" %d\n",
153 GetCurrentThreadId(), hInternet
, dwContext
,
154 (LPCSTR
)lpvStatusInformation
,dwStatusInformationLength
);
155 *(LPSTR
)lpvStatusInformation
= '\0';
157 case INTERNET_STATUS_NAME_RESOLVED
:
158 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_NAME_RESOLVED \"%s\" %d\n",
159 GetCurrentThreadId(), hInternet
, dwContext
,
160 (LPCSTR
)lpvStatusInformation
,dwStatusInformationLength
);
161 *(LPSTR
)lpvStatusInformation
= '\0';
163 case INTERNET_STATUS_CONNECTING_TO_SERVER
:
164 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTING_TO_SERVER \"%s\" %d\n",
165 GetCurrentThreadId(), hInternet
, dwContext
,
166 (LPCSTR
)lpvStatusInformation
,dwStatusInformationLength
);
167 *(LPSTR
)lpvStatusInformation
= '\0';
169 case INTERNET_STATUS_CONNECTED_TO_SERVER
:
170 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTED_TO_SERVER \"%s\" %d\n",
171 GetCurrentThreadId(), hInternet
, dwContext
,
172 (LPCSTR
)lpvStatusInformation
,dwStatusInformationLength
);
173 *(LPSTR
)lpvStatusInformation
= '\0';
175 case INTERNET_STATUS_SENDING_REQUEST
:
176 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_SENDING_REQUEST %p %d\n",
177 GetCurrentThreadId(), hInternet
, dwContext
,
178 lpvStatusInformation
,dwStatusInformationLength
);
180 case INTERNET_STATUS_REQUEST_SENT
:
181 ok(dwStatusInformationLength
== sizeof(DWORD
),
182 "info length should be sizeof(DWORD) instead of %d\n",
183 dwStatusInformationLength
);
184 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_SENT 0x%x %d\n",
185 GetCurrentThreadId(), hInternet
, dwContext
,
186 *(DWORD
*)lpvStatusInformation
,dwStatusInformationLength
);
188 case INTERNET_STATUS_RECEIVING_RESPONSE
:
189 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RECEIVING_RESPONSE %p %d\n",
190 GetCurrentThreadId(), hInternet
, dwContext
,
191 lpvStatusInformation
,dwStatusInformationLength
);
193 case INTERNET_STATUS_RESPONSE_RECEIVED
:
194 ok(dwStatusInformationLength
== sizeof(DWORD
),
195 "info length should be sizeof(DWORD) instead of %d\n",
196 dwStatusInformationLength
);
197 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESPONSE_RECEIVED 0x%x %d\n",
198 GetCurrentThreadId(), hInternet
, dwContext
,
199 *(DWORD
*)lpvStatusInformation
,dwStatusInformationLength
);
201 case INTERNET_STATUS_CTL_RESPONSE_RECEIVED
:
202 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CTL_RESPONSE_RECEIVED %p %d\n",
203 GetCurrentThreadId(), hInternet
,dwContext
,
204 lpvStatusInformation
,dwStatusInformationLength
);
206 case INTERNET_STATUS_PREFETCH
:
207 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_PREFETCH %p %d\n",
208 GetCurrentThreadId(), hInternet
, dwContext
,
209 lpvStatusInformation
,dwStatusInformationLength
);
211 case INTERNET_STATUS_CLOSING_CONNECTION
:
212 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CLOSING_CONNECTION %p %d\n",
213 GetCurrentThreadId(), hInternet
, dwContext
,
214 lpvStatusInformation
,dwStatusInformationLength
);
216 case INTERNET_STATUS_CONNECTION_CLOSED
:
217 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTION_CLOSED %p %d\n",
218 GetCurrentThreadId(), hInternet
, dwContext
,
219 lpvStatusInformation
,dwStatusInformationLength
);
221 case INTERNET_STATUS_HANDLE_CREATED
:
222 ok(dwStatusInformationLength
== sizeof(HINTERNET
),
223 "info length should be sizeof(HINTERNET) instead of %d\n",
224 dwStatusInformationLength
);
225 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d\n",
226 GetCurrentThreadId(), hInternet
, dwContext
,
227 *(HINTERNET
*)lpvStatusInformation
,dwStatusInformationLength
);
228 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY
);
229 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY
);
231 case INTERNET_STATUS_HANDLE_CLOSING
:
232 ok(dwStatusInformationLength
== sizeof(HINTERNET
),
233 "info length should be sizeof(HINTERNET) instead of %d\n",
234 dwStatusInformationLength
);
235 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CLOSING %p %d\n",
236 GetCurrentThreadId(), hInternet
, dwContext
,
237 *(HINTERNET
*)lpvStatusInformation
, dwStatusInformationLength
);
239 case INTERNET_STATUS_REQUEST_COMPLETE
:
241 INTERNET_ASYNC_RESULT
*iar
= (INTERNET_ASYNC_RESULT
*)lpvStatusInformation
;
242 ok(dwStatusInformationLength
== sizeof(INTERNET_ASYNC_RESULT
),
243 "info length should be sizeof(INTERNET_ASYNC_RESULT) instead of %d\n",
244 dwStatusInformationLength
);
245 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_COMPLETE {%ld,%d} %d\n",
246 GetCurrentThreadId(), hInternet
, dwContext
,
247 iar
->dwResult
,iar
->dwError
,dwStatusInformationLength
);
248 SetEvent(hCompleteEvent
);
251 case INTERNET_STATUS_REDIRECT
:
252 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REDIRECT \"%s\" %d\n",
253 GetCurrentThreadId(), hInternet
, dwContext
,
254 (LPCSTR
)lpvStatusInformation
, dwStatusInformationLength
);
255 *(LPSTR
)lpvStatusInformation
= '\0';
256 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY
);
257 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY
);
259 case INTERNET_STATUS_INTERMEDIATE_RESPONSE
:
260 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d\n",
261 GetCurrentThreadId(), hInternet
, dwContext
,
262 lpvStatusInformation
, dwStatusInformationLength
);
265 trace("%04x:Callback %p 0x%lx %d %p %d\n",
266 GetCurrentThreadId(), hInternet
, dwContext
, dwInternetStatus
,
267 lpvStatusInformation
, dwStatusInformationLength
);
271 static void InternetReadFile_test(int flags
, const test_data_t
*test
)
277 const char *types
[2] = { "*", NULL
};
278 HINTERNET hi
, hic
= 0, hor
= 0;
280 hCompleteEvent
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
282 trace("Starting InternetReadFile test with flags 0x%x on url %s\n",flags
,test
->url
);
284 trace("InternetOpenA <--\n");
285 hi
= InternetOpenA((test
->flags
& TESTF_COMPRESSED
) ? "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" : "",
286 INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, flags
);
287 ok((hi
!= 0x0),"InternetOpen failed with error %u\n", GetLastError());
288 trace("InternetOpenA -->\n");
290 if (hi
== 0x0) goto abort
;
292 pInternetSetStatusCallbackA(hi
,&callback
);
294 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED
);
296 trace("InternetConnectA <--\n");
297 hic
=InternetConnectA(hi
, test
->host
, INTERNET_INVALID_PORT_NUMBER
,
298 NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0x0, 0xdeadbeef);
299 ok((hic
!= 0x0),"InternetConnect failed with error %u\n", GetLastError());
300 trace("InternetConnectA -->\n");
302 if (hic
== 0x0) goto abort
;
304 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED
);
305 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED
);
307 trace("HttpOpenRequestA <--\n");
308 hor
= HttpOpenRequestA(hic
, "GET", test
->path
, NULL
, NULL
, types
,
309 INTERNET_FLAG_KEEP_CONNECTION
| INTERNET_FLAG_RESYNCHRONIZE
,
311 if (hor
== 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
) {
313 * If the internet name can't be resolved we are probably behind
314 * a firewall or in some other way not directly connected to the
315 * Internet. Not enough reason to fail the test. Just ignore and
319 ok((hor
!= 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
321 trace("HttpOpenRequestA -->\n");
323 if (hor
== 0x0) goto abort
;
325 length
= sizeof(buffer
);
326 res
= InternetQueryOptionA(hor
, INTERNET_OPTION_URL
, buffer
, &length
);
327 ok(res
, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
328 ok(!strcmp(buffer
, test
->url
), "Wrong URL %s, expected %s\n", buffer
, test
->url
);
330 length
= sizeof(buffer
);
331 res
= HttpQueryInfoA(hor
, HTTP_QUERY_RAW_HEADERS
, buffer
, &length
, 0x0);
332 ok(res
, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
333 ok(length
== 0, "HTTP_QUERY_RAW_HEADERS: expected length 0, but got %d\n", length
);
334 ok(!strcmp(buffer
, ""), "HTTP_QUERY_RAW_HEADERS: expected string \"\", but got \"%s\"\n", buffer
);
336 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED
);
337 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
338 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
339 if(test
->flags
& TESTF_ALLOW_COOKIE
) {
340 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT
);
341 SET_OPTIONAL(INTERNET_STATUS_COOKIE_RECEIVED
);
343 if (first_connection_to_test_url
)
345 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME
);
346 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED
);
347 SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME
);
348 SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED
);
352 SET_WINE_ALLOW2(INTERNET_STATUS_RESOLVING_NAME
,2);
353 SET_WINE_ALLOW2(INTERNET_STATUS_NAME_RESOLVED
,2);
355 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER
);
356 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER
);
357 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER
);
358 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER
);
359 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
360 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
361 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
362 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
363 if(test
->flags
& TESTF_REDIRECT
) {
364 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION
, 2);
365 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED
, 2);
367 SET_EXPECT(INTERNET_STATUS_REDIRECT
);
368 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER
);
369 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER
);
370 if (flags
& INTERNET_FLAG_ASYNC
)
371 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE
);
373 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE
);
375 if(test
->flags
& TESTF_COMPRESSED
) {
378 res
= InternetSetOption(hor
, INTERNET_OPTION_HTTP_DECODING
, &b
, sizeof(b
));
379 ok(res
|| broken(!res
&& GetLastError() == ERROR_INTERNET_INVALID_OPTION
),
380 "InternetSetOption failed: %u\n", GetLastError());
385 trace("HttpSendRequestA -->\n");
386 SetLastError(0xdeadbeef);
387 res
= HttpSendRequestA(hor
, (test
->flags
& TESTF_COMPRESSED
) ? "Accept-Encoding: gzip, deflate" : "", -1, NULL
, 0);
388 if (flags
& INTERNET_FLAG_ASYNC
)
389 ok(!res
&& (GetLastError() == ERROR_IO_PENDING
),
390 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
392 ok(res
|| (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
),
393 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
394 trace("HttpSendRequestA <--\n");
396 if (flags
& INTERNET_FLAG_ASYNC
)
397 WaitForSingleObject(hCompleteEvent
, INFINITE
);
399 if(test
->flags
& TESTF_ALLOW_COOKIE
) {
400 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT
);
401 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_RECEIVED
);
403 if (first_connection_to_test_url
)
405 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
406 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
410 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
411 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
413 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
414 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
415 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
416 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED
, (test
->flags
& TESTF_REDIRECT
) ? 2 : 1);
417 if(test
->flags
& TESTF_REDIRECT
)
418 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT
);
419 if (flags
& INTERNET_FLAG_ASYNC
)
420 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
422 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
423 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
424 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER
);
425 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER
);
428 res
= InternetQueryOptionA(hor
,INTERNET_OPTION_REQUEST_FLAGS
,&out
,&length
);
429 ok(res
, "InternetQueryOptionA(INTERNET_OPTION_REQUEST) failed with error %d\n", GetLastError());
432 res
= InternetQueryOptionA(hor
,INTERNET_OPTION_URL
,buffer
,&length
);
433 ok(res
, "InternetQueryOptionA(INTERNET_OPTION_URL) failed with error %d\n", GetLastError());
435 length
= sizeof(buffer
);
436 res
= HttpQueryInfoA(hor
,HTTP_QUERY_RAW_HEADERS
,buffer
,&length
,0x0);
437 ok(res
, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
440 length
= sizeof(buffer
);
441 res
= InternetQueryOptionA(hor
, INTERNET_OPTION_URL
, buffer
, &length
);
442 ok(res
, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
443 ok(!strcmp(buffer
, test
->redirected_url
), "Wrong URL %s\n", buffer
);
446 res
= HttpQueryInfoA(hor
,HTTP_QUERY_CONTENT_LENGTH
,&buffer
,&length
,0x0);
447 trace("Option HTTP_QUERY_CONTENT_LENGTH -> %i %s (%u)\n",res
,buffer
,GetLastError());
448 if(test
->flags
& TESTF_COMPRESSED
)
449 ok(!res
&& GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND
,
450 "expected ERROR_HTTP_HEADER_NOT_FOUND, got %x (%u)\n", res
, GetLastError());
453 res
= HttpQueryInfoA(hor
,HTTP_QUERY_CONTENT_TYPE
,buffer
,&length
,0x0);
455 trace("Option HTTP_QUERY_CONTENT_TYPE -> %i %s\n",res
,buffer
);
458 res
= HttpQueryInfoA(hor
,HTTP_QUERY_CONTENT_ENCODING
,buffer
,&length
,0x0);
460 trace("Option HTTP_QUERY_CONTENT_ENCODING -> %i %s\n",res
,buffer
);
462 SetLastError(0xdeadbeef);
463 res
= InternetReadFile(NULL
, buffer
, 100, &length
);
464 ok(!res
, "InternetReadFile should have failed\n");
465 ok(GetLastError() == ERROR_INVALID_HANDLE
,
466 "InternetReadFile should have set last error to ERROR_INVALID_HANDLE instead of %u\n",
470 trace("Entering Query loop\n");
474 if (flags
& INTERNET_FLAG_ASYNC
)
475 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE
);
476 res
= InternetQueryDataAvailable(hor
,&length
,0x0,0x0);
477 ok(!(!res
&& length
!= 0),"InternetQueryDataAvailable failed with non-zero length\n");
478 ok(res
|| ((flags
& INTERNET_FLAG_ASYNC
) && GetLastError() == ERROR_IO_PENDING
),
479 "InternetQueryDataAvailable failed, error %d\n", GetLastError());
480 if (flags
& INTERNET_FLAG_ASYNC
)
484 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
486 else if (GetLastError() == ERROR_IO_PENDING
)
488 WaitForSingleObject(hCompleteEvent
, INFINITE
);
489 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
496 buffer
= HeapAlloc(GetProcessHeap(),0,length
+1);
498 res
= InternetReadFile(hor
,buffer
,length
,&length
);
502 trace("ReadFile -> %s %i\n",res
?"TRUE":"FALSE",length
);
504 HeapFree(GetProcessHeap(),0,buffer
);
509 if(test
->flags
& TESTF_REDIRECT
) {
510 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION
, 2);
511 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED
, 2);
515 SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING
, (hor
!= 0x0) + (hic
!= 0x0));
517 SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION
);
518 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED
);
519 SetLastError(0xdeadbeef);
521 res
= InternetCloseHandle(hor
);
522 ok (res
, "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
523 SetLastError(0xdeadbeef);
524 res
= InternetCloseHandle(hor
);
525 ok (!res
, "Double close of handle opened by HttpOpenRequestA succeeded\n");
526 ok (GetLastError() == ERROR_INVALID_HANDLE
,
527 "Double close of handle should have set ERROR_INVALID_HANDLE instead of %u\n",
530 /* We intentionally do not close the handle opened by InternetConnectA as this
531 * tickles bug #9479: native closes child internet handles when the parent handles
532 * are closed. This is verified below by checking that the number of
533 * INTERNET_STATUS_HANDLE_CLOSING notifications matches the number expected. */
535 SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING
);
536 trace("closing 2\n");
537 res
= InternetCloseHandle(hi
);
538 ok (res
, "InternetCloseHandle of handle opened by InternetOpenA failed\n");
539 if (flags
& INTERNET_FLAG_ASYNC
)
542 CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING
, (hor
!= 0x0) + (hic
!= 0x0));
543 if (hor
!= 0x0) todo_wine
545 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION
);
546 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED
);
550 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION
);
551 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED
);
553 CloseHandle(hCompleteEvent
);
554 first_connection_to_test_url
= FALSE
;
557 static void InternetReadFile_chunked_test(void)
562 const char *types
[2] = { "*", NULL
};
563 HINTERNET hi
, hic
= 0, hor
= 0;
565 trace("Starting InternetReadFile chunked test\n");
567 trace("InternetOpenA <--\n");
568 hi
= InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, 0);
569 ok((hi
!= 0x0),"InternetOpen failed with error %u\n", GetLastError());
570 trace("InternetOpenA -->\n");
572 if (hi
== 0x0) goto abort
;
574 trace("InternetConnectA <--\n");
575 hic
=InternetConnectA(hi
, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER
,
576 NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0x0, 0xdeadbeef);
577 ok((hic
!= 0x0),"InternetConnect failed with error %u\n", GetLastError());
578 trace("InternetConnectA -->\n");
580 if (hic
== 0x0) goto abort
;
582 trace("HttpOpenRequestA <--\n");
583 hor
= HttpOpenRequestA(hic
, "GET", "/testchunked", NULL
, NULL
, types
,
584 INTERNET_FLAG_KEEP_CONNECTION
| INTERNET_FLAG_RESYNCHRONIZE
,
586 if (hor
== 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
) {
588 * If the internet name can't be resolved we are probably behind
589 * a firewall or in some other way not directly connected to the
590 * Internet. Not enough reason to fail the test. Just ignore and
594 ok((hor
!= 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
596 trace("HttpOpenRequestA -->\n");
598 if (hor
== 0x0) goto abort
;
600 trace("HttpSendRequestA -->\n");
601 SetLastError(0xdeadbeef);
602 res
= HttpSendRequestA(hor
, "", -1, NULL
, 0);
603 ok(res
|| (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
),
604 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
605 trace("HttpSendRequestA <--\n");
608 res
= HttpQueryInfoA(hor
,HTTP_QUERY_CONTENT_TYPE
,buffer
,&length
,0x0);
610 trace("Option CONTENT_TYPE -> %i %s\n",res
,buffer
);
612 SetLastError( 0xdeadbeef );
614 res
= HttpQueryInfoA(hor
,HTTP_QUERY_TRANSFER_ENCODING
,buffer
,&length
,0x0);
616 trace("Option TRANSFER_ENCODING -> %i %s\n",res
,buffer
);
617 ok( res
, "Failed to get TRANSFER_ENCODING option, error %u\n", GetLastError() );
618 ok( !strcmp( buffer
, "chunked" ), "Wrong transfer encoding '%s'\n", buffer
);
620 SetLastError( 0xdeadbeef );
622 res
= HttpQueryInfoA(hor
,HTTP_QUERY_CONTENT_LENGTH
,&buffer
,&length
,0x0);
623 ok( !res
, "Found CONTENT_LENGTH option '%s'\n", buffer
);
624 ok( GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND
, "Wrong error %u\n", GetLastError() );
627 trace("Entering Query loop\n");
631 res
= InternetQueryDataAvailable(hor
,&length
,0x0,0x0);
632 ok(!(!res
&& length
!= 0),"InternetQueryDataAvailable failed with non-zero length\n");
633 ok(res
, "InternetQueryDataAvailable failed, error %d\n", GetLastError());
634 trace("got %u available\n",length
);
638 char *buffer
= HeapAlloc(GetProcessHeap(),0,length
+1);
640 res
= InternetReadFile(hor
,buffer
,length
,&got
);
643 trace("ReadFile -> %i %i\n",res
,got
);
644 ok( length
== got
, "only got %u of %u available\n", got
, length
);
645 ok( buffer
[got
-1] == '\n', "received partial line '%s'\n", buffer
);
647 HeapFree(GetProcessHeap(),0,buffer
);
656 res
= InternetCloseHandle(hor
);
657 ok (res
, "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
660 res
= InternetCloseHandle(hi
);
661 ok (res
, "InternetCloseHandle of handle opened by InternetOpenA failed\n");
665 static void InternetReadFileExA_test(int flags
)
669 const char *types
[2] = { "*", NULL
};
670 HINTERNET hi
, hic
= 0, hor
= 0;
671 INTERNET_BUFFERS inetbuffers
;
673 hCompleteEvent
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
675 trace("Starting InternetReadFileExA test with flags 0x%x\n",flags
);
677 trace("InternetOpenA <--\n");
678 hi
= InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, flags
);
679 ok((hi
!= 0x0),"InternetOpen failed with error %u\n", GetLastError());
680 trace("InternetOpenA -->\n");
682 if (hi
== 0x0) goto abort
;
684 pInternetSetStatusCallbackA(hi
,&callback
);
686 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED
);
688 trace("InternetConnectA <--\n");
689 hic
=InternetConnectA(hi
, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER
,
690 NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0x0, 0xdeadbeef);
691 ok((hic
!= 0x0),"InternetConnect failed with error %u\n", GetLastError());
692 trace("InternetConnectA -->\n");
694 if (hic
== 0x0) goto abort
;
696 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED
);
697 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED
);
699 trace("HttpOpenRequestA <--\n");
700 hor
= HttpOpenRequestA(hic
, "GET", "/testredirect", NULL
, NULL
, types
,
701 INTERNET_FLAG_KEEP_CONNECTION
| INTERNET_FLAG_RESYNCHRONIZE
,
703 if (hor
== 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
) {
705 * If the internet name can't be resolved we are probably behind
706 * a firewall or in some other way not directly connected to the
707 * Internet. Not enough reason to fail the test. Just ignore and
711 ok((hor
!= 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
713 trace("HttpOpenRequestA -->\n");
715 if (hor
== 0x0) goto abort
;
717 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED
);
718 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
719 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
720 if (first_connection_to_test_url
)
722 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME
);
723 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED
);
724 SET_WINE_ALLOW(INTERNET_STATUS_RESOLVING_NAME
);
725 SET_WINE_ALLOW(INTERNET_STATUS_NAME_RESOLVED
);
729 SET_WINE_ALLOW2(INTERNET_STATUS_RESOLVING_NAME
,2);
730 SET_WINE_ALLOW2(INTERNET_STATUS_NAME_RESOLVED
,2);
732 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER
);
733 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER
);
734 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER
);
735 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER
);
736 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST
, 2);
737 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT
, 2);
738 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE
, 2);
739 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED
, 2);
740 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION
, 2);
741 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED
, 2);
742 SET_EXPECT(INTERNET_STATUS_REDIRECT
);
743 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER
);
744 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER
);
745 if (flags
& INTERNET_FLAG_ASYNC
)
746 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE
);
748 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE
);
750 trace("HttpSendRequestA -->\n");
751 SetLastError(0xdeadbeef);
752 rc
= HttpSendRequestA(hor
, "", -1, NULL
, 0);
753 if (flags
& INTERNET_FLAG_ASYNC
)
754 ok(((rc
== 0)&&(GetLastError() == ERROR_IO_PENDING
)),
755 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
757 ok((rc
!= 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
,
758 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
759 trace("HttpSendRequestA <--\n");
761 if (!rc
&& (GetLastError() == ERROR_IO_PENDING
))
762 WaitForSingleObject(hCompleteEvent
, INFINITE
);
764 if (first_connection_to_test_url
)
766 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
767 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
771 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME
);
772 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED
);
774 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST
, 2);
775 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT
, 2);
776 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE
, 2);
777 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED
, 2);
778 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION
, 2);
779 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED
, 2);
780 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT
);
781 if (flags
& INTERNET_FLAG_ASYNC
)
782 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
784 todo_wine
CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
785 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
786 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER
);
787 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER
);
789 /* tests invalid dwStructSize */
790 inetbuffers
.dwStructSize
= sizeof(INTERNET_BUFFERS
)+1;
791 inetbuffers
.lpcszHeader
= NULL
;
792 inetbuffers
.dwHeadersLength
= 0;
793 inetbuffers
.dwBufferLength
= 10;
794 inetbuffers
.lpvBuffer
= HeapAlloc(GetProcessHeap(), 0, 10);
795 inetbuffers
.dwOffsetHigh
= 1234;
796 inetbuffers
.dwOffsetLow
= 5678;
797 rc
= InternetReadFileEx(hor
, &inetbuffers
, 0, 0xdeadcafe);
798 ok(!rc
&& (GetLastError() == ERROR_INVALID_PARAMETER
),
799 "InternetReadFileEx should have failed with ERROR_INVALID_PARAMETER instead of %s, %u\n",
800 rc
? "TRUE" : "FALSE", GetLastError());
801 HeapFree(GetProcessHeap(), 0, inetbuffers
.lpvBuffer
);
803 /* tests to see whether lpcszHeader is used - it isn't */
804 inetbuffers
.dwStructSize
= sizeof(INTERNET_BUFFERS
);
805 inetbuffers
.lpcszHeader
= (LPCTSTR
)0xdeadbeef;
806 inetbuffers
.dwHeadersLength
= 255;
807 inetbuffers
.dwBufferLength
= 0;
808 inetbuffers
.lpvBuffer
= NULL
;
809 inetbuffers
.dwOffsetHigh
= 1234;
810 inetbuffers
.dwOffsetLow
= 5678;
811 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE
);
812 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED
);
813 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION
);
814 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED
);
815 rc
= InternetReadFileEx(hor
, &inetbuffers
, 0, 0xdeadcafe);
816 ok(rc
, "InternetReadFileEx failed with error %u\n", GetLastError());
817 trace("read %i bytes\n", inetbuffers
.dwBufferLength
);
820 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE
);
821 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED
);
824 rc
= InternetReadFileEx(NULL
, &inetbuffers
, 0, 0xdeadcafe);
825 ok(!rc
&& (GetLastError() == ERROR_INVALID_HANDLE
),
826 "InternetReadFileEx should have failed with ERROR_INVALID_HANDLE instead of %s, %u\n",
827 rc
? "TRUE" : "FALSE", GetLastError());
830 trace("Entering Query loop\n");
832 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION
);
833 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED
);
836 inetbuffers
.dwStructSize
= sizeof(INTERNET_BUFFERS
);
837 inetbuffers
.dwBufferLength
= 1024;
838 inetbuffers
.lpvBuffer
= HeapAlloc(GetProcessHeap(), 0, inetbuffers
.dwBufferLength
+1);
839 inetbuffers
.dwOffsetHigh
= 1234;
840 inetbuffers
.dwOffsetLow
= 5678;
842 SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE
);
843 SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED
);
844 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION
);
845 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED
);
846 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE
);
847 rc
= InternetReadFileExA(hor
, &inetbuffers
, IRF_ASYNC
| IRF_USE_CONTEXT
, 0xcafebabe);
850 if (GetLastError() == ERROR_IO_PENDING
)
852 trace("InternetReadFileEx -> PENDING\n");
853 ok(flags
& INTERNET_FLAG_ASYNC
,
854 "Should not get ERROR_IO_PENDING without INTERNET_FLAG_ASYNC\n");
855 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE
);
856 WaitForSingleObject(hCompleteEvent
, INFINITE
);
857 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
858 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED
);
862 trace("InternetReadFileEx -> FAILED %u\n", GetLastError());
868 trace("InternetReadFileEx -> SUCCEEDED\n");
869 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE
);
870 if (inetbuffers
.dwBufferLength
)
873 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE
);
874 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED
);
879 /* Win98 still sends these when 0 bytes are read, WinXP does not */
880 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE
);
881 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED
);
885 trace("read %i bytes\n", inetbuffers
.dwBufferLength
);
886 ((char *)inetbuffers
.lpvBuffer
)[inetbuffers
.dwBufferLength
] = '\0';
888 ok(inetbuffers
.dwOffsetHigh
== 1234 && inetbuffers
.dwOffsetLow
== 5678,
889 "InternetReadFileEx sets offsets to 0x%x%08x\n",
890 inetbuffers
.dwOffsetHigh
, inetbuffers
.dwOffsetLow
);
892 HeapFree(GetProcessHeap(), 0, inetbuffers
.lpvBuffer
);
894 if (!inetbuffers
.dwBufferLength
)
897 length
+= inetbuffers
.dwBufferLength
;
899 ok(length
> 0, "failed to read any of the document\n");
900 trace("Finished. Read %d bytes\n", length
);
902 /* WinXP does not send, but Win98 does */
903 CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION
);
904 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED
);
906 SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING
, (hor
!= 0x0) + (hic
!= 0x0));
908 SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION
);
909 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED
);
910 rc
= InternetCloseHandle(hor
);
911 ok ((rc
!= 0), "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
912 rc
= InternetCloseHandle(hor
);
913 ok ((rc
== 0), "Double close of handle opened by HttpOpenRequestA succeeded\n");
916 rc
= InternetCloseHandle(hic
);
917 ok ((rc
!= 0), "InternetCloseHandle of handle opened by InternetConnectA failed\n");
920 SET_WINE_ALLOW(INTERNET_STATUS_HANDLE_CLOSING
);
921 rc
= InternetCloseHandle(hi
);
922 ok ((rc
!= 0), "InternetCloseHandle of handle opened by InternetOpenA failed\n");
923 if (flags
& INTERNET_FLAG_ASYNC
)
925 CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING
, (hor
!= 0x0) + (hic
!= 0x0));
927 /* to enable once Wine is fixed to never send it
928 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
929 CHECK_NOT_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
931 CLEAR_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION
);
932 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED
);
933 CloseHandle(hCompleteEvent
);
934 first_connection_to_test_url
= FALSE
;
937 static void InternetOpenUrlA_test(void)
939 HINTERNET myhinternet
, myhttp
;
941 DWORD size
, readbytes
, totalbytes
=0;
944 myhinternet
= InternetOpen("Winetest",0,NULL
,NULL
,INTERNET_FLAG_NO_CACHE_WRITE
);
945 ok((myhinternet
!= 0), "InternetOpen failed, error %u\n",GetLastError());
947 ret
= InternetCanonicalizeUrl(TEST_URL
, buffer
, &size
,ICU_BROWSER_MODE
);
948 ok( ret
, "InternetCanonicalizeUrl failed, error %u\n",GetLastError());
951 myhttp
= InternetOpenUrl(myhinternet
, TEST_URL
, 0, 0,
952 INTERNET_FLAG_RELOAD
|INTERNET_FLAG_NO_CACHE_WRITE
|INTERNET_FLAG_TRANSFER_BINARY
,0);
953 if (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
)
954 return; /* WinXP returns this when not connected to the net */
955 ok((myhttp
!= 0),"InternetOpenUrl failed, error %u\n",GetLastError());
956 ret
= InternetReadFile(myhttp
, buffer
,0x400,&readbytes
);
957 ok( ret
, "InternetReadFile failed, error %u\n",GetLastError());
958 totalbytes
+= readbytes
;
959 while (readbytes
&& InternetReadFile(myhttp
, buffer
,0x400,&readbytes
))
960 totalbytes
+= readbytes
;
961 trace("read 0x%08x bytes\n",totalbytes
);
963 InternetCloseHandle(myhttp
);
964 InternetCloseHandle(myhinternet
);
967 static void HttpSendRequestEx_test(void)
973 INTERNET_BUFFERS BufferIn
;
974 DWORD dwBytesWritten
, dwBytesRead
, error
;
979 static char szPostData
[] = "mode=Test";
980 static const char szContentType
[] = "Content-Type: application/x-www-form-urlencoded";
982 hSession
= InternetOpen("Wine Regression Test",
983 INTERNET_OPEN_TYPE_PRECONFIG
,NULL
,NULL
,0);
984 ok( hSession
!= NULL
,"Unable to open Internet session\n");
985 hConnect
= InternetConnect(hSession
, "crossover.codeweavers.com",
986 INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0,
988 ok( hConnect
!= NULL
, "Unable to connect to http://crossover.codeweavers.com\n");
989 hRequest
= HttpOpenRequest(hConnect
, "POST", "/posttest.php",
990 NULL
, NULL
, NULL
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
991 if (!hRequest
&& GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
)
993 skip( "Network unreachable, skipping test\n" );
996 ok( hRequest
!= NULL
, "Failed to open request handle err %u\n", GetLastError());
999 BufferIn
.dwStructSize
= sizeof( INTERNET_BUFFERS
);
1000 BufferIn
.Next
= (LPINTERNET_BUFFERS
)0xdeadcab;
1001 BufferIn
.lpcszHeader
= szContentType
;
1002 BufferIn
.dwHeadersLength
= sizeof(szContentType
)-1;
1003 BufferIn
.dwHeadersTotal
= sizeof(szContentType
)-1;
1004 BufferIn
.lpvBuffer
= szPostData
;
1005 BufferIn
.dwBufferLength
= 3;
1006 BufferIn
.dwBufferTotal
= sizeof(szPostData
)-1;
1007 BufferIn
.dwOffsetLow
= 0;
1008 BufferIn
.dwOffsetHigh
= 0;
1010 SetLastError(0xdeadbeef);
1011 ret
= HttpSendRequestEx(hRequest
, &BufferIn
, NULL
, 0 ,0);
1012 error
= GetLastError();
1013 ok(ret
, "HttpSendRequestEx Failed with error %u\n", error
);
1014 ok(error
== ERROR_SUCCESS
, "expected ERROR_SUCCESS, got %u\n", error
);
1016 for (i
= 3; szPostData
[i
]; i
++)
1017 ok(InternetWriteFile(hRequest
, &szPostData
[i
], 1, &dwBytesWritten
),
1018 "InternetWriteFile failed\n");
1020 ok(HttpEndRequest(hRequest
, NULL
, 0, 0), "HttpEndRequest Failed\n");
1022 ok(InternetReadFile(hRequest
, szBuffer
, 255, &dwBytesRead
),
1023 "Unable to read response\n");
1024 szBuffer
[dwBytesRead
] = 0;
1026 ok(dwBytesRead
== 13,"Read %u bytes instead of 13\n",dwBytesRead
);
1027 ok(strncmp(szBuffer
,"mode => Test\n",dwBytesRead
)==0,"Got string %s\n",szBuffer
);
1029 ok(InternetCloseHandle(hRequest
), "Close request handle failed\n");
1031 ok(InternetCloseHandle(hConnect
), "Close connect handle failed\n");
1032 ok(InternetCloseHandle(hSession
), "Close session handle failed\n");
1035 static void InternetOpenRequest_test(void)
1037 HINTERNET session
, connect
, request
;
1038 static const char *types
[] = { "*", "", NULL
};
1039 static const WCHAR slash
[] = {'/', 0}, any
[] = {'*', 0}, empty
[] = {0};
1040 static const WCHAR
*typesW
[] = { any
, empty
, NULL
};
1043 session
= InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, 0);
1044 ok(session
!= NULL
,"Unable to open Internet session\n");
1046 connect
= InternetConnectA(session
, NULL
, INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
,
1047 INTERNET_SERVICE_HTTP
, 0, 0);
1048 ok(connect
== NULL
, "InternetConnectA should have failed\n");
1049 ok(GetLastError() == ERROR_INVALID_PARAMETER
, "InternetConnectA with NULL server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1051 connect
= InternetConnectA(session
, "", INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
,
1052 INTERNET_SERVICE_HTTP
, 0, 0);
1053 ok(connect
== NULL
, "InternetConnectA should have failed\n");
1054 ok(GetLastError() == ERROR_INVALID_PARAMETER
, "InternetConnectA with blank server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1056 connect
= InternetConnectA(session
, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
,
1057 INTERNET_SERVICE_HTTP
, 0, 0);
1058 ok(connect
!= NULL
, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1060 request
= HttpOpenRequestA(connect
, NULL
, "/", NULL
, NULL
, types
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
1061 if (!request
&& GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
)
1063 skip( "Network unreachable, skipping test\n" );
1066 ok(request
!= NULL
, "Failed to open request handle err %u\n", GetLastError());
1068 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
1069 ok(ret
, "HttpSendRequest failed: %u\n", GetLastError());
1070 ok(InternetCloseHandle(request
), "Close request handle failed\n");
1072 request
= HttpOpenRequestW(connect
, NULL
, slash
, NULL
, NULL
, typesW
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
1073 ok(request
!= NULL
, "Failed to open request handle err %u\n", GetLastError());
1075 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
1076 ok(ret
, "HttpSendRequest failed: %u\n", GetLastError());
1077 ok(InternetCloseHandle(request
), "Close request handle failed\n");
1080 ok(InternetCloseHandle(connect
), "Close connect handle failed\n");
1081 ok(InternetCloseHandle(session
), "Close session handle failed\n");
1084 static void test_http_cache(void)
1086 HINTERNET session
, connect
, request
;
1087 char file_name
[MAX_PATH
], url
[INTERNET_MAX_URL_LENGTH
];
1088 DWORD size
, file_size
;
1093 static const char *types
[] = { "*", "", NULL
};
1095 session
= InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, 0);
1096 ok(session
!= NULL
,"Unable to open Internet session\n");
1098 connect
= InternetConnectA(session
, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
,
1099 INTERNET_SERVICE_HTTP
, 0, 0);
1100 ok(connect
!= NULL
, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1102 request
= HttpOpenRequestA(connect
, NULL
, "/hello.html", NULL
, NULL
, types
, INTERNET_FLAG_NEED_FILE
, 0);
1103 if (!request
&& GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
)
1105 skip( "Network unreachable, skipping test\n" );
1107 ok(InternetCloseHandle(connect
), "Close connect handle failed\n");
1108 ok(InternetCloseHandle(session
), "Close session handle failed\n");
1112 ok(request
!= NULL
, "Failed to open request handle err %u\n", GetLastError());
1115 ret
= InternetQueryOptionA(request
, INTERNET_OPTION_URL
, url
, &size
);
1116 ok(ret
, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
1117 ok(!strcmp(url
, "http://test.winehq.org/hello.html"), "Wrong URL %s\n", url
);
1119 size
= sizeof(file_name
);
1120 ret
= InternetQueryOptionA(request
, INTERNET_OPTION_DATAFILE_NAME
, file_name
, &size
);
1121 ok(!ret
, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1122 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND
, "GetLastError()=%u\n", GetLastError());
1123 ok(!size
, "size = %d\n", size
);
1125 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
1126 ok(ret
, "HttpSendRequest failed: %u\n", GetLastError());
1128 size
= sizeof(file_name
);
1129 ret
= InternetQueryOptionA(request
, INTERNET_OPTION_DATAFILE_NAME
, file_name
, &size
);
1130 ok(ret
, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) failed: %u\n", GetLastError());
1132 file
= CreateFile(file_name
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1133 FILE_ATTRIBUTE_NORMAL
, NULL
);
1134 ok(file
!= INVALID_HANDLE_VALUE
, "Could not create file: %u\n", GetLastError());
1135 file_size
= GetFileSize(file
, NULL
);
1136 todo_wine
ok(file_size
== 106, "file size = %u\n", file_size
);
1139 ret
= InternetReadFile(request
, buf
, sizeof(buf
), &size
);
1140 ok(ret
, "InternetReadFile failed: %u\n", GetLastError());
1141 ok(size
== 100, "size = %u\n", size
);
1143 file_size
= GetFileSize(file
, NULL
);
1144 todo_wine
ok(file_size
== 106, "file size = %u\n", file_size
);
1147 ok(InternetCloseHandle(request
), "Close request handle failed\n");
1149 file
= CreateFile(file_name
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1150 FILE_ATTRIBUTE_NORMAL
, NULL
);
1151 ok(file
!= INVALID_HANDLE_VALUE
, "Could not create file: %u\n", GetLastError());
1154 request
= HttpOpenRequestA(connect
, NULL
, "/", NULL
, NULL
, types
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
1155 ok(request
!= NULL
, "Failed to open request handle err %u\n", GetLastError());
1157 size
= sizeof(file_name
);
1158 ret
= InternetQueryOptionA(request
, INTERNET_OPTION_DATAFILE_NAME
, file_name
, &size
);
1159 ok(!ret
, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1160 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND
, "GetLastError()=%u\n", GetLastError());
1161 ok(!size
, "size = %d\n", size
);
1163 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
1164 ok(ret
, "HttpSendRequest failed: %u\n", GetLastError());
1166 size
= sizeof(file_name
);
1168 ret
= InternetQueryOptionA(request
, INTERNET_OPTION_DATAFILE_NAME
, file_name
, &size
);
1171 file
= CreateFile(file_name
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1172 FILE_ATTRIBUTE_NORMAL
, NULL
);
1173 ok(file
!= INVALID_HANDLE_VALUE
, "Could not create file: %u\n", GetLastError());
1179 ok(file_name
[0] == 0, "Didn't expect a file name\n");
1182 ok(InternetCloseHandle(request
), "Close request handle failed\n");
1183 ok(InternetCloseHandle(connect
), "Close connect handle failed\n");
1184 ok(InternetCloseHandle(session
), "Close session handle failed\n");
1187 static void HttpHeaders_test(void)
1198 hSession
= InternetOpen("Wine Regression Test",
1199 INTERNET_OPEN_TYPE_PRECONFIG
,NULL
,NULL
,0);
1200 ok( hSession
!= NULL
,"Unable to open Internet session\n");
1201 hConnect
= InternetConnect(hSession
, "crossover.codeweavers.com",
1202 INTERNET_DEFAULT_HTTP_PORT
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0,
1204 ok( hConnect
!= NULL
, "Unable to connect to http://crossover.codeweavers.com\n");
1205 hRequest
= HttpOpenRequest(hConnect
, "POST", "/posttest.php",
1206 NULL
, NULL
, NULL
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
1207 if (!hRequest
&& GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED
)
1209 skip( "Network unreachable, skipping test\n" );
1212 ok( hRequest
!= NULL
, "Failed to open request handle\n");
1215 len
= sizeof(buffer
);
1216 strcpy(buffer
,"Warning");
1217 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1218 buffer
,&len
,&index
)==0,"Warning hearder reported as Existing\n");
1220 ok(HttpAddRequestHeaders(hRequest
,"Warning:test1",-1,HTTP_ADDREQ_FLAG_ADD
),
1221 "Failed to add new header\n");
1224 len
= sizeof(buffer
);
1225 strcpy(buffer
,"Warning");
1226 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1227 buffer
,&len
,&index
),"Unable to query header\n");
1228 ok(index
== 1, "Index was not incremented\n");
1229 ok(strcmp(buffer
,"test1")==0, "incorrect string was returned(%s)\n",buffer
);
1230 ok(len
== 5, "Invalid length (exp. 5, got %d)\n", len
);
1231 ok((len
< sizeof(buffer
)) && (buffer
[len
] == 0), "Buffer not NULL-terminated\n"); /* len show only 5 characters but the buffer is NULL-terminated*/
1232 len
= sizeof(buffer
);
1233 strcpy(buffer
,"Warning");
1234 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1235 buffer
,&len
,&index
)==0,"Second Index Should Not Exist\n");
1238 len
= 5; /* could store the string but not the NULL terminator */
1239 strcpy(buffer
,"Warning");
1240 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1241 buffer
,&len
,&index
) == FALSE
,"Query succeeded on a too small buffer\n");
1242 ok(strcmp(buffer
,"Warning")==0, "incorrect string was returned(%s)\n",buffer
); /* string not touched */
1243 ok(len
== 6, "Invalid length (exp. 6, got %d)\n", len
); /* unlike success, the length includes the NULL-terminator */
1245 /* a call with NULL will fail but will return the length */
1247 len
= sizeof(buffer
);
1248 SetLastError(0xdeadbeef);
1249 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1250 NULL
,&len
,&index
) == FALSE
,"Query worked\n");
1251 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER
, "Unexpected last error: %d\n", GetLastError());
1252 ok(len
> 40, "Invalid length (exp. more than 40, got %d)\n", len
);
1253 ok(index
== 0, "Index was incremented\n");
1255 /* even for a len that is too small */
1258 SetLastError(0xdeadbeef);
1259 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1260 NULL
,&len
,&index
) == FALSE
,"Query worked\n");
1261 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER
, "Unexpected last error: %d\n", GetLastError());
1262 ok(len
> 40, "Invalid length (exp. more than 40, got %d)\n", len
);
1263 ok(index
== 0, "Index was incremented\n");
1267 SetLastError(0xdeadbeef);
1268 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1269 NULL
,&len
,&index
) == FALSE
,"Query worked\n");
1270 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER
, "Unexpected last error: %d\n", GetLastError());
1271 ok(len
> 40, "Invalid length (exp. more than 40, got %d)\n", len
);
1272 ok(index
== 0, "Index was incremented\n");
1273 oldlen
= len
; /* bytes; at least long enough to hold buffer & nul */
1276 /* a working query */
1278 len
= sizeof(buffer
);
1279 memset(buffer
, 'x', sizeof(buffer
));
1280 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1281 buffer
,&len
,&index
),"Unable to query header\n");
1282 ok(len
+ sizeof(CHAR
) <= oldlen
, "Result longer than advertised\n");
1283 ok((len
< sizeof(buffer
)-sizeof(CHAR
)) && (buffer
[len
/sizeof(CHAR
)] == 0),"No NUL at end\n");
1284 ok(len
== strlen(buffer
) * sizeof(CHAR
), "Length wrong\n");
1285 /* what's in the middle differs between Wine and Windows so currently we check only the beginning and the end */
1286 ok(strncmp(buffer
, "POST /posttest.php HTTP/1", 25)==0, "Invalid beginning of headers string\n");
1287 ok(strcmp(buffer
+ strlen(buffer
) - 4, "\r\n\r\n")==0, "Invalid end of headers string\n");
1288 ok(index
== 0, "Index was incremented\n");
1290 /* Like above two tests, but for W version */
1294 SetLastError(0xdeadbeef);
1295 ok(HttpQueryInfoW(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1296 NULL
,&len
,&index
) == FALSE
,"Query worked\n");
1297 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER
, "Unexpected last error: %d\n", GetLastError());
1298 ok(len
> 80, "Invalid length (exp. more than 80, got %d)\n", len
);
1299 ok(index
== 0, "Index was incremented\n");
1300 oldlen
= len
; /* bytes; at least long enough to hold buffer & nul */
1302 /* a working query */
1304 len
= sizeof(wbuffer
);
1305 memset(wbuffer
, 'x', sizeof(wbuffer
));
1306 ok(HttpQueryInfoW(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1307 wbuffer
,&len
,&index
),"Unable to query header\n");
1308 ok(len
+ sizeof(WCHAR
) <= oldlen
, "Result longer than advertised\n");
1309 ok(len
== lstrlenW(wbuffer
) * sizeof(WCHAR
), "Length wrong\n");
1310 ok((len
< sizeof(wbuffer
)-sizeof(WCHAR
)) && (wbuffer
[len
/sizeof(WCHAR
)] == 0),"No NUL at end\n");
1311 ok(index
== 0, "Index was incremented\n");
1313 /* end of W version tests */
1315 /* Without HTTP_QUERY_FLAG_REQUEST_HEADERS */
1317 len
= sizeof(buffer
);
1318 memset(buffer
, 'x', sizeof(buffer
));
1319 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_RAW_HEADERS_CRLF
,
1320 buffer
,&len
,&index
) == TRUE
,"Query failed\n");
1321 ok(len
== 2, "Expected 2, got %d\n", len
);
1322 ok(strcmp(buffer
, "\r\n") == 0, "Expected CRLF, got '%s'\n", buffer
);
1323 ok(index
== 0, "Index was incremented\n");
1325 ok(HttpAddRequestHeaders(hRequest
,"Warning:test2",-1,HTTP_ADDREQ_FLAG_ADD
),
1326 "Failed to add duplicate header using HTTP_ADDREQ_FLAG_ADD\n");
1329 len
= sizeof(buffer
);
1330 strcpy(buffer
,"Warning");
1331 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1332 buffer
,&len
,&index
),"Unable to query header\n");
1333 ok(index
== 1, "Index was not incremented\n");
1334 ok(strcmp(buffer
,"test1")==0, "incorrect string was returned(%s)\n",buffer
);
1335 len
= sizeof(buffer
);
1336 strcpy(buffer
,"Warning");
1337 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1338 buffer
,&len
,&index
),"Failed to get second header\n");
1339 ok(index
== 2, "Index was not incremented\n");
1340 ok(strcmp(buffer
,"test2")==0, "incorrect string was returned(%s)\n",buffer
);
1341 len
= sizeof(buffer
);
1342 strcpy(buffer
,"Warning");
1343 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1344 buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1346 ok(HttpAddRequestHeaders(hRequest
,"Warning:test3",-1,HTTP_ADDREQ_FLAG_REPLACE
), "Failed to replace header using HTTP_ADDREQ_FLAG_REPLACE\n");
1349 len
= sizeof(buffer
);
1350 strcpy(buffer
,"Warning");
1351 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1352 buffer
,&len
,&index
),"Unable to query header\n");
1353 ok(index
== 1, "Index was not incremented\n");
1354 ok(strcmp(buffer
,"test2")==0, "incorrect string was returned(%s)\n",buffer
);
1355 len
= sizeof(buffer
);
1356 strcpy(buffer
,"Warning");
1357 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1358 buffer
,&len
,&index
),"Failed to get second header\n");
1359 ok(index
== 2, "Index was not incremented\n");
1360 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1361 len
= sizeof(buffer
);
1362 strcpy(buffer
,"Warning");
1363 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1364 buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1366 ok(HttpAddRequestHeaders(hRequest
,"Warning:test4",-1,HTTP_ADDREQ_FLAG_ADD_IF_NEW
)==0, "HTTP_ADDREQ_FLAG_ADD_IF_NEW replaced existing header\n");
1369 len
= sizeof(buffer
);
1370 strcpy(buffer
,"Warning");
1371 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1372 buffer
,&len
,&index
),"Unable to query header\n");
1373 ok(index
== 1, "Index was not incremented\n");
1374 ok(strcmp(buffer
,"test2")==0, "incorrect string was returned(%s)\n",buffer
);
1375 len
= sizeof(buffer
);
1376 strcpy(buffer
,"Warning");
1377 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1378 buffer
,&len
,&index
),"Failed to get second header\n");
1379 ok(index
== 2, "Index was not incremented\n");
1380 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1381 len
= sizeof(buffer
);
1382 strcpy(buffer
,"Warning");
1383 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1384 buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1386 ok(HttpAddRequestHeaders(hRequest
,"Warning:test4",-1, HTTP_ADDREQ_FLAG_COALESCE
), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1389 len
= sizeof(buffer
);
1390 strcpy(buffer
,"Warning");
1391 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
,
1392 buffer
,&len
,&index
),"Unable to query header\n");
1393 ok(index
== 1, "Index was not incremented\n");
1394 ok(strcmp(buffer
,"test2, test4")==0, "incorrect string was returned(%s)\n", buffer
);
1395 len
= sizeof(buffer
);
1396 strcpy(buffer
,"Warning");
1397 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Failed to get second header\n");
1398 ok(index
== 2, "Index was not incremented\n");
1399 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1400 len
= sizeof(buffer
);
1401 strcpy(buffer
,"Warning");
1402 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1404 ok(HttpAddRequestHeaders(hRequest
,"Warning:test5",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA
), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1407 len
= sizeof(buffer
);
1408 strcpy(buffer
,"Warning");
1409 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1410 ok(index
== 1, "Index was not incremented\n");
1411 ok(strcmp(buffer
,"test2, test4, test5")==0, "incorrect string was returned(%s)\n",buffer
);
1412 len
= sizeof(buffer
);
1413 strcpy(buffer
,"Warning");
1414 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Failed to get second header\n");
1415 ok(index
== 2, "Index was not incremented\n");
1416 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1417 len
= sizeof(buffer
);
1418 strcpy(buffer
,"Warning");
1419 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1421 ok(HttpAddRequestHeaders(hRequest
,"Warning:test6",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON
), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1424 len
= sizeof(buffer
);
1425 strcpy(buffer
,"Warning");
1426 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1427 ok(index
== 1, "Index was not incremented\n");
1428 ok(strcmp(buffer
,"test2, test4, test5; test6")==0, "incorrect string was returned(%s)\n",buffer
);
1429 len
= sizeof(buffer
);
1430 strcpy(buffer
,"Warning");
1431 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Failed to get second header\n");
1432 ok(index
== 2, "Index was not incremented\n");
1433 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1434 len
= sizeof(buffer
);
1435 strcpy(buffer
,"Warning");
1436 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1438 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");
1441 len
= sizeof(buffer
);
1442 strcpy(buffer
,"Warning");
1443 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1444 ok(index
== 1, "Index was not incremented\n");
1445 ok(strcmp(buffer
,"test3")==0, "incorrect string was returned(%s)\n",buffer
);
1446 len
= sizeof(buffer
);
1447 strcpy(buffer
,"Warning");
1448 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Failed to get second header\n");
1449 ok(index
== 2, "Index was not incremented\n");
1450 ok(strcmp(buffer
,"test7")==0, "incorrect string was returned(%s)\n",buffer
);
1451 len
= sizeof(buffer
);
1452 strcpy(buffer
,"Warning");
1453 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
)==0,"Third Header Should Not Exist\n");
1455 /* Ensure that blank headers are ignored and don't cause a failure */
1456 ok(HttpAddRequestHeaders(hRequest
,"\r\nBlankTest:value\r\n\r\n",-1, HTTP_ADDREQ_FLAG_ADD_IF_NEW
), "Failed to add header with blank entries in list\n");
1459 len
= sizeof(buffer
);
1460 strcpy(buffer
,"BlankTest");
1461 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1462 ok(index
== 1, "Index was not incremented\n");
1463 ok(strcmp(buffer
,"value")==0, "incorrect string was returned(%s)\n",buffer
);
1465 /* Ensure that malformed header separators are ignored and don't cause a failure */
1466 ok(HttpAddRequestHeaders(hRequest
,"\r\rMalformedTest:value\n\nMalformedTestTwo: value2\rMalformedTestThree: value3\n\n\r\r\n",-1, HTTP_ADDREQ_FLAG_ADD
|HTTP_ADDREQ_FLAG_REPLACE
),
1467 "Failed to add header with malformed entries in list\n");
1470 len
= sizeof(buffer
);
1471 strcpy(buffer
,"MalformedTest");
1472 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1473 ok(index
== 1, "Index was not incremented\n");
1474 ok(strcmp(buffer
,"value")==0, "incorrect string was returned(%s)\n",buffer
);
1476 len
= sizeof(buffer
);
1477 strcpy(buffer
,"MalformedTestTwo");
1478 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1479 ok(index
== 1, "Index was not incremented\n");
1480 ok(strcmp(buffer
,"value2")==0, "incorrect string was returned(%s)\n",buffer
);
1482 len
= sizeof(buffer
);
1483 strcpy(buffer
,"MalformedTestThree");
1484 ok(HttpQueryInfo(hRequest
,HTTP_QUERY_CUSTOM
|HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
,&len
,&index
),"Unable to query header\n");
1485 ok(index
== 1, "Index was not incremented\n");
1486 ok(strcmp(buffer
,"value3")==0, "incorrect string was returned(%s)\n",buffer
);
1488 ok(InternetCloseHandle(hRequest
), "Close request handle failed\n");
1490 ok(InternetCloseHandle(hConnect
), "Close connect handle failed\n");
1491 ok(InternetCloseHandle(hSession
), "Close session handle failed\n");
1494 static const char garbagemsg
[] =
1495 "Garbage: Header\r\n";
1497 static const char contmsg
[] =
1498 "HTTP/1.1 100 Continue\r\n";
1500 static const char expandcontmsg
[] =
1501 "HTTP/1.1 100 Continue\r\n"
1502 "Server: winecontinue\r\n"
1503 "Tag: something witty\r\n"
1506 static const char okmsg
[] =
1507 "HTTP/1.1 200 OK\r\n"
1508 "Server: winetest\r\n"
1511 static const char okmsg2
[] =
1512 "HTTP/1.1 200 OK\r\n"
1513 "Date: Mon, 01 Dec 2008 13:44:34 GMT\r\n"
1514 "Server: winetest\r\n"
1515 "Content-Length: 0\r\n"
1516 "Set-Cookie: one\r\n"
1517 "Set-Cookie: two\r\n"
1520 static const char notokmsg
[] =
1521 "HTTP/1.1 400 Bad Request\r\n"
1522 "Server: winetest\r\n"
1525 static const char noauthmsg
[] =
1526 "HTTP/1.1 401 Unauthorized\r\n"
1527 "Server: winetest\r\n"
1528 "Connection: close\r\n"
1529 "WWW-Authenticate: Basic realm=\"placebo\"\r\n"
1532 static const char noauthmsg2
[] =
1533 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed\r\n"
1534 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"
1536 "Server: winetest\r\n";
1538 static const char proxymsg
[] =
1539 "HTTP/1.1 407 Proxy Authentication Required\r\n"
1540 "Server: winetest\r\n"
1541 "Proxy-Connection: close\r\n"
1542 "Proxy-Authenticate: Basic realm=\"placebo\"\r\n"
1545 static const char page1
[] =
1547 "<HEAD><TITLE>wininet test page</TITLE></HEAD>\r\n"
1548 "<BODY>The quick brown fox jumped over the lazy dog<P></BODY>\r\n"
1551 struct server_info
{
1556 static DWORD CALLBACK
server_thread(LPVOID param
)
1558 struct server_info
*si
= param
;
1561 struct sockaddr_in sa
;
1564 int last_request
= 0;
1565 char host_header
[22];
1566 static int test_b
= 0;
1568 WSAStartup(MAKEWORD(1,1), &wsaData
);
1570 s
= socket(AF_INET
, SOCK_STREAM
, 0);
1571 if (s
== INVALID_SOCKET
)
1575 setsockopt(s
, SOL_SOCKET
, SO_REUSEADDR
, (char*)&on
, sizeof on
);
1577 memset(&sa
, 0, sizeof sa
);
1578 sa
.sin_family
= AF_INET
;
1579 sa
.sin_port
= htons(si
->port
);
1580 sa
.sin_addr
.S_un
.S_addr
= inet_addr("127.0.0.1");
1582 r
= bind(s
, (struct sockaddr
*) &sa
, sizeof sa
);
1588 SetEvent(si
->hEvent
);
1590 sprintf(host_header
, "Host: localhost:%d", si
->port
);
1594 c
= accept(s
, NULL
, NULL
);
1596 memset(buffer
, 0, sizeof buffer
);
1597 for(i
=0; i
<(sizeof buffer
-1); i
++)
1599 r
= recv(c
, &buffer
[i
], 1, 0);
1603 if (buffer
[i
-2] == '\n' && buffer
[i
] == '\n' &&
1604 buffer
[i
-3] == '\r' && buffer
[i
-1] == '\r')
1607 if (strstr(buffer
, "GET /test1"))
1609 if (!strstr(buffer
, "Content-Length: 0"))
1611 send(c
, okmsg
, sizeof okmsg
-1, 0);
1612 send(c
, page1
, sizeof page1
-1, 0);
1615 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1617 if (strstr(buffer
, "/test2"))
1619 if (strstr(buffer
, "Proxy-Authorization: Basic bWlrZToxMTAx"))
1621 send(c
, okmsg
, sizeof okmsg
-1, 0);
1622 send(c
, page1
, sizeof page1
-1, 0);
1625 send(c
, proxymsg
, sizeof proxymsg
-1, 0);
1627 if (strstr(buffer
, "/test3"))
1629 if (strstr(buffer
, "Authorization: Basic dXNlcjpwd2Q="))
1630 send(c
, okmsg
, sizeof okmsg
-1, 0);
1632 send(c
, noauthmsg
, sizeof noauthmsg
-1, 0);
1634 if (strstr(buffer
, "/test4"))
1636 if (strstr(buffer
, "Connection: Close"))
1637 send(c
, okmsg
, sizeof okmsg
-1, 0);
1639 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1641 if (strstr(buffer
, "POST /test5") ||
1642 strstr(buffer
, "RPC_IN_DATA /test5") ||
1643 strstr(buffer
, "RPC_OUT_DATA /test5"))
1645 if (strstr(buffer
, "Content-Length: 0"))
1647 send(c
, okmsg
, sizeof okmsg
-1, 0);
1648 send(c
, page1
, sizeof page1
-1, 0);
1651 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1653 if (strstr(buffer
, "GET /test6"))
1655 send(c
, contmsg
, sizeof contmsg
-1, 0);
1656 send(c
, contmsg
, sizeof contmsg
-1, 0);
1657 send(c
, okmsg
, sizeof okmsg
-1, 0);
1658 send(c
, page1
, sizeof page1
-1, 0);
1660 if (strstr(buffer
, "POST /test7"))
1662 if (strstr(buffer
, "Content-Length: 100"))
1664 send(c
, okmsg
, sizeof okmsg
-1, 0);
1665 send(c
, page1
, sizeof page1
-1, 0);
1668 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1670 if (strstr(buffer
, "/test8"))
1672 if (!strstr(buffer
, "Connection: Close") &&
1673 strstr(buffer
, "Connection: Keep-Alive") &&
1674 !strstr(buffer
, "Cache-Control: no-cache") &&
1675 !strstr(buffer
, "Pragma: no-cache") &&
1676 strstr(buffer
, host_header
))
1677 send(c
, okmsg
, sizeof okmsg
-1, 0);
1679 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1681 if (strstr(buffer
, "/test9"))
1683 if (!strstr(buffer
, "Connection: Close") &&
1684 !strstr(buffer
, "Connection: Keep-Alive") &&
1685 !strstr(buffer
, "Cache-Control: no-cache") &&
1686 !strstr(buffer
, "Pragma: no-cache") &&
1687 strstr(buffer
, host_header
))
1688 send(c
, okmsg
, sizeof okmsg
-1, 0);
1690 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1692 if (strstr(buffer
, "/testA"))
1694 if (!strstr(buffer
, "Connection: Close") &&
1695 !strstr(buffer
, "Connection: Keep-Alive") &&
1696 (strstr(buffer
, "Cache-Control: no-cache") ||
1697 strstr(buffer
, "Pragma: no-cache")) &&
1698 strstr(buffer
, host_header
))
1699 send(c
, okmsg
, sizeof okmsg
-1, 0);
1701 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1703 if (!test_b
&& strstr(buffer
, "/testB HTTP/1.1"))
1706 send(c
, okmsg
, sizeof okmsg
-1, 0);
1707 recvfrom(c
, buffer
, sizeof buffer
, 0, NULL
, NULL
);
1708 send(c
, okmsg
, sizeof okmsg
-1, 0);
1710 if (strstr(buffer
, "/testC"))
1712 if (strstr(buffer
, "Cookie: cookie=biscuit"))
1713 send(c
, okmsg
, sizeof okmsg
-1, 0);
1715 send(c
, notokmsg
, sizeof notokmsg
-1, 0);
1717 if (strstr(buffer
, "/testD"))
1719 send(c
, okmsg2
, sizeof okmsg2
-1, 0);
1721 if (strstr(buffer
, "/testE"))
1723 send(c
, noauthmsg2
, sizeof noauthmsg2
-1, 0);
1725 if (strstr(buffer
, "GET /quit"))
1727 send(c
, okmsg
, sizeof okmsg
-1, 0);
1728 send(c
, page1
, sizeof page1
-1, 0);
1731 if (strstr(buffer
, "GET /testF"))
1733 send(c
, expandcontmsg
, sizeof expandcontmsg
-1, 0);
1734 send(c
, garbagemsg
, sizeof garbagemsg
-1, 0);
1735 send(c
, contmsg
, sizeof contmsg
-1, 0);
1736 send(c
, garbagemsg
, sizeof garbagemsg
-1, 0);
1737 send(c
, okmsg
, sizeof okmsg
-1, 0);
1738 send(c
, page1
, sizeof page1
-1, 0);
1740 if (strstr(buffer
, "GET /testG"))
1742 send(c
, page1
, sizeof page1
-1, 0);
1747 } while (!last_request
);
1754 static void test_basic_request(int port
, const char *verb
, const char *url
)
1756 HINTERNET hi
, hc
, hr
;
1760 hi
= InternetOpen(NULL
, INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
1761 ok(hi
!= NULL
, "open failed\n");
1763 hc
= InternetConnect(hi
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
1764 ok(hc
!= NULL
, "connect failed\n");
1766 hr
= HttpOpenRequest(hc
, verb
, url
, NULL
, NULL
, NULL
, 0, 0);
1767 ok(hr
!= NULL
, "HttpOpenRequest failed\n");
1769 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
1770 ok(r
, "HttpSendRequest failed\n");
1773 memset(buffer
, 0, sizeof buffer
);
1774 r
= InternetReadFile(hr
, buffer
, sizeof buffer
, &count
);
1775 ok(r
, "InternetReadFile failed\n");
1776 ok(count
== sizeof page1
- 1, "count was wrong\n");
1777 ok(!memcmp(buffer
, page1
, sizeof page1
), "http data wrong\n");
1779 InternetCloseHandle(hr
);
1780 InternetCloseHandle(hc
);
1781 InternetCloseHandle(hi
);
1784 static void test_last_error(int port
)
1786 HINTERNET hi
, hc
, hr
;
1790 hi
= InternetOpen(NULL
, INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
1791 ok(hi
!= NULL
, "open failed\n");
1793 hc
= InternetConnect(hi
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
1794 ok(hc
!= NULL
, "connect failed\n");
1796 hr
= HttpOpenRequest(hc
, NULL
, "/test1", NULL
, NULL
, NULL
, 0, 0);
1797 ok(hr
!= NULL
, "HttpOpenRequest failed\n");
1799 SetLastError(0xdeadbeef);
1800 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
1801 error
= GetLastError();
1802 ok(r
, "HttpSendRequest failed\n");
1803 ok(error
== ERROR_SUCCESS
|| broken(error
!= ERROR_SUCCESS
), "expected ERROR_SUCCESS, got %u\n", error
);
1805 InternetCloseHandle(hr
);
1806 InternetCloseHandle(hc
);
1807 InternetCloseHandle(hi
);
1810 static void test_proxy_indirect(int port
)
1812 HINTERNET hi
, hc
, hr
;
1816 hi
= InternetOpen(NULL
, 0, NULL
, NULL
, 0);
1817 ok(hi
!= NULL
, "open failed\n");
1819 hc
= InternetConnect(hi
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
1820 ok(hc
!= NULL
, "connect failed\n");
1822 hr
= HttpOpenRequest(hc
, NULL
, "/test2", NULL
, NULL
, NULL
, 0, 0);
1823 ok(hr
!= NULL
, "HttpOpenRequest failed\n");
1825 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
1826 ok(r
, "HttpSendRequest failed\n");
1829 r
= HttpQueryInfo(hr
, HTTP_QUERY_PROXY_AUTHENTICATE
, buffer
, &sz
, NULL
);
1830 ok(r
|| GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND
, "HttpQueryInfo failed: %d\n", GetLastError());
1833 skip("missing proxy header, not testing remaining proxy headers\n");
1836 ok(!strcmp(buffer
, "Basic realm=\"placebo\""), "proxy auth info wrong\n");
1839 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
, buffer
, &sz
, NULL
);
1840 ok(r
, "HttpQueryInfo failed\n");
1841 ok(!strcmp(buffer
, "407"), "proxy code wrong\n");
1844 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
|HTTP_QUERY_FLAG_NUMBER
, &val
, &sz
, NULL
);
1845 ok(r
, "HttpQueryInfo failed\n");
1846 ok(val
== 407, "proxy code wrong\n");
1849 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_TEXT
, buffer
, &sz
, NULL
);
1850 ok(r
, "HttpQueryInfo failed\n");
1851 ok(!strcmp(buffer
, "Proxy Authentication Required"), "proxy text wrong\n");
1854 r
= HttpQueryInfo(hr
, HTTP_QUERY_VERSION
, buffer
, &sz
, NULL
);
1855 ok(r
, "HttpQueryInfo failed\n");
1856 ok(!strcmp(buffer
, "HTTP/1.1"), "http version wrong\n");
1859 r
= HttpQueryInfo(hr
, HTTP_QUERY_SERVER
, buffer
, &sz
, NULL
);
1860 ok(r
, "HttpQueryInfo failed\n");
1861 ok(!strcmp(buffer
, "winetest"), "http server wrong\n");
1864 r
= HttpQueryInfo(hr
, HTTP_QUERY_CONTENT_ENCODING
, buffer
, &sz
, NULL
);
1865 ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND
, "HttpQueryInfo should fail\n");
1866 ok(r
== FALSE
, "HttpQueryInfo failed\n");
1869 InternetCloseHandle(hr
);
1870 InternetCloseHandle(hc
);
1871 InternetCloseHandle(hi
);
1874 static void test_proxy_direct(int port
)
1876 HINTERNET hi
, hc
, hr
;
1879 static CHAR username
[] = "mike",
1880 password
[] = "1101";
1882 sprintf(buffer
, "localhost:%d\n", port
);
1883 hi
= InternetOpen(NULL
, INTERNET_OPEN_TYPE_PROXY
, buffer
, NULL
, 0);
1884 ok(hi
!= NULL
, "open failed\n");
1886 /* try connect without authorization */
1887 hc
= InternetConnect(hi
, "test.winehq.org/", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
1888 ok(hc
!= NULL
, "connect failed\n");
1890 hr
= HttpOpenRequest(hc
, NULL
, "/test2", NULL
, NULL
, NULL
, 0, 0);
1891 ok(hr
!= NULL
, "HttpOpenRequest failed\n");
1893 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
1894 ok(r
, "HttpSendRequest failed\n");
1897 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
, buffer
, &sz
, NULL
);
1898 ok(r
, "HttpQueryInfo failed\n");
1899 ok(!strcmp(buffer
, "407"), "proxy code wrong\n");
1902 /* set the user + password then try again */
1904 r
= InternetSetOption(hr
, INTERNET_OPTION_PROXY_USERNAME
, username
, 4);
1905 ok(r
, "failed to set user\n");
1907 r
= InternetSetOption(hr
, INTERNET_OPTION_PROXY_PASSWORD
, password
, 4);
1908 ok(r
, "failed to set password\n");
1911 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
1912 ok(r
, "HttpSendRequest failed\n");
1914 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
, buffer
, &sz
, NULL
);
1915 ok(r
, "HttpQueryInfo failed\n");
1917 ok(!strcmp(buffer
, "200"), "proxy code wrong\n");
1921 InternetCloseHandle(hr
);
1922 InternetCloseHandle(hc
);
1923 InternetCloseHandle(hi
);
1926 static void test_header_handling_order(int port
)
1928 static char authorization
[] = "Authorization: Basic dXNlcjpwd2Q=";
1929 static char connection
[] = "Connection: Close";
1931 static const char *types
[2] = { "*", NULL
};
1932 HINTERNET session
, connect
, request
;
1936 session
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
1937 ok(session
!= NULL
, "InternetOpen failed\n");
1939 connect
= InternetConnect(session
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
1940 ok(connect
!= NULL
, "InternetConnect failed\n");
1942 request
= HttpOpenRequest(connect
, NULL
, "/test3", NULL
, NULL
, types
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
1943 ok(request
!= NULL
, "HttpOpenRequest failed\n");
1945 ret
= HttpAddRequestHeaders(request
, authorization
, ~0u, HTTP_ADDREQ_FLAG_ADD
);
1946 ok(ret
, "HttpAddRequestHeaders failed\n");
1948 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
1949 ok(ret
, "HttpSendRequest failed\n");
1952 size
= sizeof(status
);
1953 ret
= HttpQueryInfo( request
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
1954 ok(ret
, "HttpQueryInfo failed\n");
1955 ok(status
== 200, "request failed with status %u\n", status
);
1957 InternetCloseHandle(request
);
1959 request
= HttpOpenRequest(connect
, NULL
, "/test4", NULL
, NULL
, types
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
1960 ok(request
!= NULL
, "HttpOpenRequest failed\n");
1962 ret
= HttpSendRequest(request
, connection
, ~0u, NULL
, 0);
1963 ok(ret
, "HttpSendRequest failed\n");
1966 size
= sizeof(status
);
1967 ret
= HttpQueryInfo( request
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
1968 ok(ret
, "HttpQueryInfo failed\n");
1969 ok(status
== 200 || status
== 400 /* IE6 */, "got status %u, expected 200 or 400\n", status
);
1971 InternetCloseHandle(request
);
1973 request
= HttpOpenRequest(connect
, "POST", "/test7", NULL
, NULL
, types
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
1974 ok(request
!= NULL
, "HttpOpenRequest failed\n");
1976 ret
= HttpAddRequestHeaders(request
, "Content-Length: 100\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
1977 ok(ret
, "HttpAddRequestHeaders failed\n");
1979 ret
= HttpSendRequest(request
, connection
, ~0u, NULL
, 0);
1980 ok(ret
, "HttpSendRequest failed\n");
1983 size
= sizeof(status
);
1984 ret
= HttpQueryInfo( request
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
1985 ok(ret
, "HttpQueryInfo failed\n");
1986 ok(status
== 200 || status
== 400 /* IE6 */, "got status %u, expected 200 or 400\n", status
);
1988 InternetCloseHandle(request
);
1989 InternetCloseHandle(connect
);
1990 InternetCloseHandle(session
);
1993 static void test_connection_header(int port
)
1995 HINTERNET ses
, con
, req
;
1999 ses
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2000 ok(ses
!= NULL
, "InternetOpen failed\n");
2002 con
= InternetConnect(ses
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2003 ok(con
!= NULL
, "InternetConnect failed\n");
2005 req
= HttpOpenRequest(con
, NULL
, "/test8", NULL
, NULL
, NULL
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
2006 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2008 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2009 ok(ret
, "HttpSendRequest failed\n");
2012 size
= sizeof(status
);
2013 ret
= HttpQueryInfo(req
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2014 ok(ret
, "HttpQueryInfo failed\n");
2015 ok(status
== 200, "request failed with status %u\n", status
);
2017 InternetCloseHandle(req
);
2019 req
= HttpOpenRequest(con
, NULL
, "/test9", NULL
, NULL
, NULL
, 0, 0);
2020 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2022 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2023 ok(ret
, "HttpSendRequest failed\n");
2026 size
= sizeof(status
);
2027 ret
= HttpQueryInfo(req
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2028 ok(ret
, "HttpQueryInfo failed\n");
2029 ok(status
== 200, "request failed with status %u\n", status
);
2031 InternetCloseHandle(req
);
2033 req
= HttpOpenRequest(con
, NULL
, "/test9", NULL
, NULL
, NULL
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
2034 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2036 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2037 ok(ret
, "HttpSendRequest failed\n");
2040 size
= sizeof(status
);
2041 ret
= HttpQueryInfo(req
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2042 ok(ret
, "HttpQueryInfo failed\n");
2043 ok(status
== 200, "request failed with status %u\n", status
);
2045 InternetCloseHandle(req
);
2047 req
= HttpOpenRequest(con
, "POST", "/testA", NULL
, NULL
, NULL
, INTERNET_FLAG_NO_CACHE_WRITE
, 0);
2048 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2050 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2051 ok(ret
, "HttpSendRequest failed\n");
2054 size
= sizeof(status
);
2055 ret
= HttpQueryInfo(req
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2056 ok(ret
, "HttpQueryInfo failed\n");
2057 ok(status
== 200, "request failed with status %u\n", status
);
2059 InternetCloseHandle(req
);
2060 InternetCloseHandle(con
);
2061 InternetCloseHandle(ses
);
2064 static void test_http1_1(int port
)
2066 HINTERNET ses
, con
, req
;
2069 ses
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2070 ok(ses
!= NULL
, "InternetOpen failed\n");
2072 con
= InternetConnect(ses
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2073 ok(con
!= NULL
, "InternetConnect failed\n");
2075 req
= HttpOpenRequest(con
, NULL
, "/testB", NULL
, NULL
, NULL
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
2076 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2078 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2081 InternetCloseHandle(req
);
2083 req
= HttpOpenRequest(con
, NULL
, "/testB", NULL
, NULL
, NULL
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
2084 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2086 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2087 ok(ret
, "HttpSendRequest failed\n");
2090 InternetCloseHandle(req
);
2091 InternetCloseHandle(con
);
2092 InternetCloseHandle(ses
);
2095 static void test_HttpSendRequestW(int port
)
2097 static const WCHAR header
[] = {'U','A','-','C','P','U',':',' ','x','8','6',0};
2098 HINTERNET ses
, con
, req
;
2102 ses
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, INTERNET_FLAG_ASYNC
);
2103 ok(ses
!= NULL
, "InternetOpen failed\n");
2105 con
= InternetConnect(ses
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2106 ok(con
!= NULL
, "InternetConnect failed\n");
2108 req
= HttpOpenRequest(con
, NULL
, "/test1", NULL
, NULL
, NULL
, 0, 0);
2109 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2111 SetLastError(0xdeadbeef);
2112 ret
= HttpSendRequestW(req
, header
, ~0u, NULL
, 0);
2113 error
= GetLastError();
2114 ok(!ret
, "HttpSendRequestW succeeded\n");
2115 ok(error
== ERROR_IO_PENDING
||
2116 broken(error
== ERROR_HTTP_HEADER_NOT_FOUND
) || /* IE6 */
2117 broken(error
== ERROR_INVALID_PARAMETER
), /* IE5 */
2118 "got %u expected ERROR_IO_PENDING\n", error
);
2120 InternetCloseHandle(req
);
2121 InternetCloseHandle(con
);
2122 InternetCloseHandle(ses
);
2125 static void test_cookie_header(int port
)
2127 HINTERNET ses
, con
, req
;
2128 DWORD size
, status
, error
;
2132 ses
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2133 ok(ses
!= NULL
, "InternetOpen failed\n");
2135 con
= InternetConnect(ses
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2136 ok(con
!= NULL
, "InternetConnect failed\n");
2138 InternetSetCookie("http://localhost", "cookie", "biscuit");
2140 req
= HttpOpenRequest(con
, NULL
, "/testC", NULL
, NULL
, NULL
, INTERNET_FLAG_KEEP_CONNECTION
, 0);
2141 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2144 size
= sizeof(buffer
);
2145 SetLastError(0xdeadbeef);
2146 ret
= HttpQueryInfo(req
, HTTP_QUERY_COOKIE
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2147 error
= GetLastError();
2148 ok(!ret
, "HttpQueryInfo succeeded\n");
2149 ok(error
== ERROR_HTTP_HEADER_NOT_FOUND
, "got %u expected ERROR_HTTP_HEADER_NOT_FOUND\n", error
);
2151 ret
= HttpAddRequestHeaders(req
, "Cookie: cookie=not biscuit\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD
);
2152 ok(ret
, "HttpAddRequestHeaders failed: %u\n", GetLastError());
2155 size
= sizeof(buffer
);
2156 ret
= HttpQueryInfo(req
, HTTP_QUERY_COOKIE
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2157 ok(ret
, "HttpQueryInfo failed: %u\n", GetLastError());
2158 ok(!strcmp(buffer
, "cookie=not biscuit"), "got '%s' expected \'cookie=not biscuit\'\n", buffer
);
2160 ret
= HttpSendRequest(req
, NULL
, 0, NULL
, 0);
2161 ok(ret
, "HttpSendRequest failed: %u\n", GetLastError());
2164 size
= sizeof(status
);
2165 ret
= HttpQueryInfo(req
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2166 ok(ret
, "HttpQueryInfo failed\n");
2167 ok(status
== 200, "request failed with status %u\n", status
);
2170 size
= sizeof(buffer
);
2171 ret
= HttpQueryInfo(req
, HTTP_QUERY_COOKIE
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2172 ok(ret
, "HttpQueryInfo failed: %u\n", GetLastError());
2173 ok(!strcmp(buffer
, "cookie=biscuit"), "got '%s' expected \'cookie=biscuit\'\n", buffer
);
2175 InternetCloseHandle(req
);
2176 InternetCloseHandle(con
);
2177 InternetCloseHandle(ses
);
2180 static void test_basic_authentication(int port
)
2182 HINTERNET session
, connect
, request
;
2186 session
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2187 ok(session
!= NULL
, "InternetOpen failed\n");
2189 connect
= InternetConnect(session
, "localhost", port
, "user", "pwd", INTERNET_SERVICE_HTTP
, 0, 0);
2190 ok(connect
!= NULL
, "InternetConnect failed\n");
2192 request
= HttpOpenRequest(connect
, NULL
, "/test3", NULL
, NULL
, NULL
, 0, 0);
2193 ok(request
!= NULL
, "HttpOpenRequest failed\n");
2195 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
2196 ok(ret
, "HttpSendRequest failed %u\n", GetLastError());
2199 size
= sizeof(status
);
2200 ret
= HttpQueryInfo( request
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2201 ok(ret
, "HttpQueryInfo failed\n");
2202 ok(status
== 200, "request failed with status %u\n", status
);
2204 InternetCloseHandle(request
);
2205 InternetCloseHandle(connect
);
2206 InternetCloseHandle(session
);
2209 static void test_invalid_response_headers(int port
)
2211 HINTERNET session
, connect
, request
;
2216 session
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2217 ok(session
!= NULL
, "InternetOpen failed\n");
2219 connect
= InternetConnect(session
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2220 ok(connect
!= NULL
, "InternetConnect failed\n");
2222 request
= HttpOpenRequest(connect
, NULL
, "/testE", NULL
, NULL
, NULL
, 0, 0);
2223 ok(request
!= NULL
, "HttpOpenRequest failed\n");
2225 ret
= HttpSendRequest(request
, NULL
, 0, NULL
, 0);
2226 ok(ret
, "HttpSendRequest failed %u\n", GetLastError());
2229 size
= sizeof(status
);
2230 ret
= HttpQueryInfo( request
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2231 ok(ret
, "HttpQueryInfo failed\n");
2232 ok(status
== 401, "unexpected status %u\n", status
);
2235 size
= sizeof(buffer
);
2236 ret
= HttpQueryInfo( request
, HTTP_QUERY_RAW_HEADERS
, buffer
, &size
, NULL
);
2237 ok(ret
, "HttpQueryInfo failed\n");
2238 ok(!strcmp(buffer
, "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"),
2239 "headers wrong \"%s\"\n", buffer
);
2242 size
= sizeof(buffer
);
2243 ret
= HttpQueryInfo( request
, HTTP_QUERY_SERVER
, buffer
, &size
, NULL
);
2244 ok(ret
, "HttpQueryInfo failed\n");
2245 ok(!strcmp(buffer
, "winetest"), "server wrong \"%s\"\n", buffer
);
2247 InternetCloseHandle(request
);
2248 InternetCloseHandle(connect
);
2249 InternetCloseHandle(session
);
2252 static void test_response_without_headers(int port
)
2254 HINTERNET hi
, hc
, hr
;
2255 DWORD r
, count
, size
, status
;
2258 SetLastError(0xdeadbeef);
2259 hi
= InternetOpen(NULL
, INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2260 ok(hi
!= NULL
, "open failed %u\n", GetLastError());
2262 SetLastError(0xdeadbeef);
2263 hc
= InternetConnect(hi
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2264 ok(hc
!= NULL
, "connect failed %u\n", GetLastError());
2266 SetLastError(0xdeadbeef);
2267 hr
= HttpOpenRequest(hc
, NULL
, "/testG", NULL
, NULL
, NULL
, 0, 0);
2268 ok(hr
!= NULL
, "HttpOpenRequest failed %u\n", GetLastError());
2270 SetLastError(0xdeadbeef);
2271 r
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
2272 ok(r
, "HttpSendRequest failed %u\n", GetLastError());
2275 memset(buffer
, 0, sizeof buffer
);
2276 SetLastError(0xdeadbeef);
2277 r
= InternetReadFile(hr
, buffer
, sizeof buffer
, &count
);
2278 ok(r
, "InternetReadFile failed %u\n", GetLastError());
2279 todo_wine
ok(count
== sizeof page1
- 1, "count was wrong\n");
2280 todo_wine
ok(!memcmp(buffer
, page1
, sizeof page1
), "http data wrong\n");
2283 size
= sizeof(status
);
2284 SetLastError(0xdeadbeef);
2285 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, &status
, &size
, NULL
);
2286 todo_wine
ok(r
, "HttpQueryInfo failed %u\n", GetLastError());
2287 todo_wine
ok(status
== 200, "expected status 200 got %u\n", status
);
2290 size
= sizeof(buffer
);
2291 SetLastError(0xdeadbeef);
2292 r
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_TEXT
, buffer
, &size
, NULL
);
2293 ok(r
, "HttpQueryInfo failed %u\n", GetLastError());
2294 ok(!strcmp(buffer
, "OK"), "expected OK got: \"%s\"\n", buffer
);
2297 size
= sizeof(buffer
);
2298 SetLastError(0xdeadbeef);
2299 r
= HttpQueryInfo(hr
, HTTP_QUERY_VERSION
, buffer
, &size
, NULL
);
2300 ok(r
, "HttpQueryInfo failed %u\n", GetLastError());
2301 ok(!strcmp(buffer
, "HTTP/1.0"), "expected HTTP/1.0 got: \"%s\"\n", buffer
);
2304 size
= sizeof(buffer
);
2305 SetLastError(0xdeadbeef);
2306 r
= HttpQueryInfo(hr
, HTTP_QUERY_RAW_HEADERS
, buffer
, &size
, NULL
);
2307 ok(r
, "HttpQueryInfo failed %u\n", GetLastError());
2308 ok(!strcmp(buffer
, "HTTP/1.0 200 OK"), "raw headers wrong: \"%s\"\n", buffer
);
2310 InternetCloseHandle(hr
);
2311 InternetCloseHandle(hc
);
2312 InternetCloseHandle(hi
);
2315 static void test_HttpQueryInfo(int port
)
2317 HINTERNET hi
, hc
, hr
;
2322 hi
= InternetOpen(NULL
, INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2323 ok(hi
!= NULL
, "InternetOpen failed\n");
2325 hc
= InternetConnect(hi
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2326 ok(hc
!= NULL
, "InternetConnect failed\n");
2328 hr
= HttpOpenRequest(hc
, NULL
, "/testD", NULL
, NULL
, NULL
, 0, 0);
2329 ok(hr
!= NULL
, "HttpOpenRequest failed\n");
2331 ret
= HttpSendRequest(hr
, NULL
, 0, NULL
, 0);
2332 ok(ret
, "HttpSendRequest failed\n");
2335 size
= sizeof(buffer
);
2336 ret
= HttpQueryInfo(hr
, HTTP_QUERY_HOST
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, &index
);
2337 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2338 ok(index
== 1, "expected 1 got %u\n", index
);
2341 size
= sizeof(buffer
);
2342 ret
= HttpQueryInfo(hr
, HTTP_QUERY_DATE
| HTTP_QUERY_FLAG_SYSTEMTIME
, buffer
, &size
, &index
);
2343 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2344 ok(index
== 1, "expected 1 got %u\n", index
);
2347 size
= sizeof(buffer
);
2348 ret
= HttpQueryInfo(hr
, HTTP_QUERY_RAW_HEADERS
, buffer
, &size
, &index
);
2349 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2350 ok(index
== 0, "expected 0 got %u\n", index
);
2352 size
= sizeof(buffer
);
2353 ret
= HttpQueryInfo(hr
, HTTP_QUERY_RAW_HEADERS
, buffer
, &size
, &index
);
2354 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2355 ok(index
== 0, "expected 0 got %u\n", index
);
2357 size
= sizeof(buffer
);
2358 ret
= HttpQueryInfo(hr
, HTTP_QUERY_RAW_HEADERS_CRLF
, buffer
, &size
, &index
);
2359 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2360 ok(index
== 0, "expected 0 got %u\n", index
);
2362 size
= sizeof(buffer
);
2363 ret
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_TEXT
, buffer
, &size
, &index
);
2364 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2365 ok(index
== 0, "expected 0 got %u\n", index
);
2367 size
= sizeof(buffer
);
2368 ret
= HttpQueryInfo(hr
, HTTP_QUERY_VERSION
, buffer
, &size
, &index
);
2369 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2370 ok(index
== 0, "expected 0 got %u\n", index
);
2373 size
= sizeof(buffer
);
2374 ret
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
, buffer
, &size
, &index
);
2375 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2376 ok(index
== 0, "expected 0 got %u\n", index
);
2379 size
= sizeof(buffer
);
2380 ret
= HttpQueryInfo(hr
, HTTP_QUERY_STATUS_CODE
| HTTP_QUERY_FLAG_NUMBER
, buffer
, &size
, &index
);
2381 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2382 ok(index
== 0, "expected 0 got %u\n", index
);
2385 size
= sizeof(buffer
);
2386 ret
= HttpQueryInfo(hr
, HTTP_QUERY_FORWARDED
, buffer
, &size
, &index
);
2387 ok(!ret
, "HttpQueryInfo succeeded\n");
2388 ok(index
== 0xdeadbeef, "expected 0xdeadbeef got %u\n", index
);
2391 size
= sizeof(buffer
);
2392 ret
= HttpQueryInfo(hr
, HTTP_QUERY_SERVER
, buffer
, &size
, &index
);
2393 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2394 ok(index
== 1, "expected 1 got %u\n", index
);
2397 size
= sizeof(buffer
);
2398 strcpy(buffer
, "Server");
2399 ret
= HttpQueryInfo(hr
, HTTP_QUERY_CUSTOM
, buffer
, &size
, &index
);
2400 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2401 ok(index
== 1, "expected 1 got %u\n", index
);
2404 size
= sizeof(buffer
);
2405 ret
= HttpQueryInfo(hr
, HTTP_QUERY_SET_COOKIE
, buffer
, &size
, &index
);
2406 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2407 ok(index
== 1, "expected 1 got %u\n", index
);
2409 size
= sizeof(buffer
);
2410 ret
= HttpQueryInfo(hr
, HTTP_QUERY_SET_COOKIE
, buffer
, &size
, &index
);
2411 ok(ret
, "HttpQueryInfo failed %u\n", GetLastError());
2412 ok(index
== 2, "expected 2 got %u\n", index
);
2414 InternetCloseHandle(hr
);
2415 InternetCloseHandle(hc
);
2416 InternetCloseHandle(hi
);
2419 static void test_options(int port
)
2421 HINTERNET ses
, con
, req
;
2426 ses
= InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2427 ok(ses
!= NULL
, "InternetOpen failed\n");
2429 SetLastError(0xdeadbeef);
2430 ret
= InternetSetOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, NULL
, 0);
2431 error
= GetLastError();
2432 ok(!ret
, "InternetSetOption succeeded\n");
2433 ok(error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER, got %u\n", error
);
2435 SetLastError(0xdeadbeef);
2436 ret
= InternetSetOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, NULL
, sizeof(ctx
));
2437 ok(!ret
, "InternetSetOption succeeded\n");
2438 error
= GetLastError();
2439 ok(error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER, got %u\n", error
);
2441 SetLastError(0xdeadbeef);
2442 ret
= InternetSetOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, 0);
2443 ok(!ret
, "InternetSetOption succeeded\n");
2444 error
= GetLastError();
2445 ok(error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER, got %u\n", error
);
2448 ret
= InternetSetOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, sizeof(ctx
));
2449 ok(ret
, "InternetSetOption failed %u\n", GetLastError());
2451 SetLastError(0xdeadbeef);
2452 ret
= InternetQueryOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, NULL
, NULL
);
2453 error
= GetLastError();
2454 ok(!ret
, "InternetQueryOption succeeded\n");
2455 ok(error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER, got %u\n", error
);
2457 SetLastError(0xdeadbeef);
2458 ret
= InternetQueryOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, NULL
);
2459 error
= GetLastError();
2460 ok(!ret
, "InternetQueryOption succeeded\n");
2461 ok(error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER, got %u\n", error
);
2464 SetLastError(0xdeadbeef);
2465 ret
= InternetQueryOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, NULL
, &size
);
2466 error
= GetLastError();
2467 ok(!ret
, "InternetQueryOption succeeded\n");
2468 ok(error
== ERROR_INSUFFICIENT_BUFFER
, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error
);
2471 SetLastError(0xdeadbeef);
2472 ret
= InternetQueryOption(NULL
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2473 error
= GetLastError();
2474 ok(!ret
, "InternetQueryOption succeeded\n");
2475 ok(error
== ERROR_INTERNET_INCORRECT_HANDLE_TYPE
, "expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE, got %u\n", error
);
2479 ret
= InternetQueryOption(ses
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2480 ok(ret
, "InternetQueryOption failed %u\n", GetLastError());
2481 ok(ctx
== 1, "expected 1 got %lu\n", ctx
);
2483 con
= InternetConnect(ses
, "localhost", port
, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2484 ok(con
!= NULL
, "InternetConnect failed\n");
2488 ret
= InternetQueryOption(con
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2489 ok(ret
, "InternetQueryOption failed %u\n", GetLastError());
2490 ok(ctx
== 0, "expected 0 got %lu\n", ctx
);
2493 ret
= InternetSetOption(con
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, sizeof(ctx
));
2494 ok(ret
, "InternetSetOption failed %u\n", GetLastError());
2498 ret
= InternetQueryOption(con
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2499 ok(ret
, "InternetQueryOption failed %u\n", GetLastError());
2500 ok(ctx
== 2, "expected 2 got %lu\n", ctx
);
2502 req
= HttpOpenRequest(con
, NULL
, "/test1", NULL
, NULL
, NULL
, 0, 0);
2503 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2507 ret
= InternetQueryOption(req
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2508 ok(ret
, "InternetQueryOption failed %u\n", GetLastError());
2509 ok(ctx
== 0, "expected 0 got %lu\n", ctx
);
2512 ret
= InternetSetOption(req
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, sizeof(ctx
));
2513 ok(ret
, "InternetSetOption failed %u\n", GetLastError());
2517 ret
= InternetQueryOption(req
, INTERNET_OPTION_CONTEXT_VALUE
, &ctx
, &size
);
2518 ok(ret
, "InternetQueryOption failed %u\n", GetLastError());
2519 ok(ctx
== 3, "expected 3 got %lu\n", ctx
);
2521 InternetCloseHandle(req
);
2522 InternetCloseHandle(con
);
2523 InternetCloseHandle(ses
);
2526 static void test_http_connection(void)
2528 struct server_info si
;
2532 si
.hEvent
= CreateEvent(NULL
, 0, 0, NULL
);
2535 hThread
= CreateThread(NULL
, 0, server_thread
, (LPVOID
) &si
, 0, &id
);
2536 ok( hThread
!= NULL
, "create thread failed\n");
2538 r
= WaitForSingleObject(si
.hEvent
, 10000);
2539 ok (r
== WAIT_OBJECT_0
, "failed to start wininet test server\n");
2540 if (r
!= WAIT_OBJECT_0
)
2543 test_basic_request(si
.port
, "GET", "/test1");
2544 test_proxy_indirect(si
.port
);
2545 test_proxy_direct(si
.port
);
2546 test_header_handling_order(si
.port
);
2547 test_basic_request(si
.port
, "POST", "/test5");
2548 test_basic_request(si
.port
, "RPC_IN_DATA", "/test5");
2549 test_basic_request(si
.port
, "RPC_OUT_DATA", "/test5");
2550 test_basic_request(si
.port
, "GET", "/test6");
2551 test_basic_request(si
.port
, "GET", "/testF");
2552 test_connection_header(si
.port
);
2553 test_http1_1(si
.port
);
2554 test_cookie_header(si
.port
);
2555 test_basic_authentication(si
.port
);
2556 test_invalid_response_headers(si
.port
);
2557 test_response_without_headers(si
.port
);
2558 test_HttpQueryInfo(si
.port
);
2559 test_HttpSendRequestW(si
.port
);
2560 test_last_error(si
.port
);
2561 test_options(si
.port
);
2563 /* send the basic request again to shutdown the server thread */
2564 test_basic_request(si
.port
, "GET", "/quit");
2566 r
= WaitForSingleObject(hThread
, 3000);
2567 ok( r
== WAIT_OBJECT_0
, "thread wait failed\n");
2568 CloseHandle(hThread
);
2571 static void test_user_agent_header(void)
2573 HINTERNET ses
, con
, req
;
2578 ses
= InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_DIRECT
, NULL
, NULL
, 0);
2579 ok(ses
!= NULL
, "InternetOpen failed\n");
2581 con
= InternetConnect(ses
, "test.winehq.org", 80, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2582 ok(con
!= NULL
, "InternetConnect failed\n");
2584 req
= HttpOpenRequest(con
, "GET", "/hello.html", "HTTP/1.0", NULL
, NULL
, 0, 0);
2585 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2587 size
= sizeof(buffer
);
2588 ret
= HttpQueryInfo(req
, HTTP_QUERY_USER_AGENT
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2589 err
= GetLastError();
2590 ok(!ret
, "HttpQueryInfo succeeded\n");
2591 ok(err
== ERROR_HTTP_HEADER_NOT_FOUND
, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err
);
2593 ret
= HttpAddRequestHeaders(req
, "User-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
2594 ok(ret
, "HttpAddRequestHeaders succeeded\n");
2596 size
= sizeof(buffer
);
2597 ret
= HttpQueryInfo(req
, HTTP_QUERY_USER_AGENT
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2598 err
= GetLastError();
2599 ok(ret
, "HttpQueryInfo failed\n");
2600 ok(err
== ERROR_HTTP_HEADER_NOT_FOUND
, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err
);
2602 InternetCloseHandle(req
);
2604 req
= HttpOpenRequest(con
, "GET", "/", "HTTP/1.0", NULL
, NULL
, 0, 0);
2605 ok(req
!= NULL
, "HttpOpenRequest failed\n");
2607 size
= sizeof(buffer
);
2608 ret
= HttpQueryInfo(req
, HTTP_QUERY_ACCEPT
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2609 err
= GetLastError();
2610 ok(!ret
, "HttpQueryInfo succeeded\n");
2611 ok(err
== ERROR_HTTP_HEADER_NOT_FOUND
, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err
);
2613 ret
= HttpAddRequestHeaders(req
, "Accept: audio/*, image/*, text/*\r\nUser-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
2614 ok(ret
, "HttpAddRequestHeaders failed\n");
2617 size
= sizeof(buffer
);
2618 ret
= HttpQueryInfo(req
, HTTP_QUERY_ACCEPT
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2619 ok(ret
, "HttpQueryInfo failed: %u\n", GetLastError());
2620 ok(!strcmp(buffer
, "audio/*, image/*, text/*"), "got '%s' expected 'audio/*, image/*, text/*'\n", buffer
);
2622 InternetCloseHandle(req
);
2623 InternetCloseHandle(con
);
2624 InternetCloseHandle(ses
);
2627 static void test_bogus_accept_types_array(void)
2629 HINTERNET ses
, con
, req
;
2630 static const char *types
[] = { (const char *)6240, "*/*", "%p", "", (const char *)0xffffffff, "*/*", NULL
};
2635 ses
= InternetOpen("MERONG(0.9/;p)", INTERNET_OPEN_TYPE_DIRECT
, "", "", 0);
2636 con
= InternetConnect(ses
, "www.winehq.org", 80, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, 0);
2637 req
= HttpOpenRequest(con
, "POST", "/post/post_action.php", "HTTP/1.0", "", types
, INTERNET_FLAG_FORMS_SUBMIT
, 0);
2639 ok(req
!= NULL
, "HttpOpenRequest failed: %u\n", GetLastError());
2642 size
= sizeof(buffer
);
2643 ret
= HttpQueryInfo(req
, HTTP_QUERY_ACCEPT
| HTTP_QUERY_FLAG_REQUEST_HEADERS
, buffer
, &size
, NULL
);
2644 ok(ret
, "HttpQueryInfo failed: %u\n", GetLastError());
2645 ok(!strcmp(buffer
, ", */*, %p, , , */*") || /* IE6 */
2646 !strcmp(buffer
, "*/*, %p, */*"),
2647 "got '%s' expected '*/*, %%p, */*' or ', */*, %%p, , , */*'\n", buffer
);
2649 InternetCloseHandle(req
);
2650 InternetCloseHandle(con
);
2651 InternetCloseHandle(ses
);
2660 static void WINAPI
cb(HINTERNET handle
, DWORD_PTR context
, DWORD status
, LPVOID info
, DWORD size
)
2662 INTERNET_ASYNC_RESULT
*result
= info
;
2663 struct context
*ctx
= (struct context
*)context
;
2665 trace("%p 0x%08lx %u %p 0x%08x\n", handle
, context
, status
, info
, size
);
2667 if (status
== INTERNET_STATUS_REQUEST_COMPLETE
)
2669 trace("request handle: 0x%08lx\n", result
->dwResult
);
2670 ctx
->req
= (HINTERNET
)result
->dwResult
;
2671 SetEvent(ctx
->event
);
2673 if (status
== INTERNET_STATUS_HANDLE_CLOSING
)
2675 DWORD type
= INTERNET_HANDLE_TYPE_CONNECT_HTTP
, size
= sizeof(type
);
2677 if (InternetQueryOption(handle
, INTERNET_OPTION_HANDLE_TYPE
, &type
, &size
))
2678 ok(type
!= INTERNET_HANDLE_TYPE_CONNECT_HTTP
, "unexpected callback\n");
2679 SetEvent(ctx
->event
);
2683 static void test_open_url_async(void)
2692 ctx
.event
= CreateEvent(NULL
, TRUE
, FALSE
, "Z:_home_hans_jaman-installer.exe_ev1");
2694 ses
= InternetOpen("AdvancedInstaller", 0, NULL
, NULL
, INTERNET_FLAG_ASYNC
);
2695 ok(ses
!= NULL
, "InternetOpen failed\n");
2697 SetLastError(0xdeadbeef);
2698 ret
= InternetSetOptionA(NULL
, INTERNET_OPTION_CALLBACK
, &cb
, sizeof(DWORD_PTR
));
2699 error
= GetLastError();
2700 ok(!ret
, "InternetSetOptionA succeeded\n");
2701 ok(error
== ERROR_INTERNET_INCORRECT_HANDLE_TYPE
, "got %u expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE\n", error
);
2703 ret
= InternetSetOptionA(ses
, INTERNET_OPTION_CALLBACK
, &cb
, sizeof(DWORD_PTR
));
2704 error
= GetLastError();
2705 ok(!ret
, "InternetSetOptionA failed\n");
2706 ok(error
== ERROR_INTERNET_OPTION_NOT_SETTABLE
, "got %u expected ERROR_INTERNET_OPTION_NOT_SETTABLE\n", error
);
2708 pInternetSetStatusCallbackA(ses
, cb
);
2709 ResetEvent(ctx
.event
);
2711 req
= InternetOpenUrl(ses
, "http://test.winehq.org", NULL
, 0, 0, (DWORD_PTR
)&ctx
);
2712 ok(!req
&& GetLastError() == ERROR_IO_PENDING
, "InternetOpenUrl failed\n");
2714 WaitForSingleObject(ctx
.event
, INFINITE
);
2717 size
= sizeof(type
);
2718 ret
= InternetQueryOption(ctx
.req
, INTERNET_OPTION_HANDLE_TYPE
, &type
, &size
);
2719 ok(ret
, "InternetQueryOption failed: %u\n", GetLastError());
2720 ok(type
== INTERNET_HANDLE_TYPE_HTTP_REQUEST
,
2721 "expected INTERNET_HANDLE_TYPE_HTTP_REQUEST, got %u\n", type
);
2724 ret
= HttpQueryInfo(ctx
.req
, HTTP_QUERY_RAW_HEADERS_CRLF
, NULL
, &size
, NULL
);
2725 ok(!ret
&& GetLastError() == ERROR_INSUFFICIENT_BUFFER
, "HttpQueryInfo failed\n");
2726 ok(size
> 0, "expected size > 0\n");
2728 ResetEvent(ctx
.event
);
2729 InternetCloseHandle(ctx
.req
);
2730 WaitForSingleObject(ctx
.event
, INFINITE
);
2732 InternetCloseHandle(ses
);
2733 CloseHandle(ctx
.event
);
2738 internet_connect
= 1,
2740 http_send_request_ex
,
2743 internet_close_handle
2748 enum api function
; /* api responsible for notification */
2749 unsigned int status
; /* status received */
2750 int async
; /* delivered from another thread? */
2758 const struct notification
*test
;
2766 static CRITICAL_SECTION notification_cs
;
2768 static void CALLBACK
check_notification( HINTERNET handle
, DWORD_PTR context
, DWORD status
, LPVOID buffer
, DWORD buflen
)
2770 BOOL status_ok
, function_ok
;
2771 struct info
*info
= (struct info
*)context
;
2774 EnterCriticalSection( ¬ification_cs
);
2776 if (status
== INTERNET_STATUS_HANDLE_CREATED
)
2778 DWORD size
= sizeof(struct info
*);
2779 HttpQueryInfoA( handle
, INTERNET_OPTION_CONTEXT_VALUE
, &info
, &size
, 0 );
2782 if (i
>= info
->count
)
2784 LeaveCriticalSection( ¬ification_cs
);
2788 while (info
->test
[i
].status
!= status
&& info
->test
[i
].optional
&&
2789 i
< info
->count
- 1 &&
2790 info
->test
[i
].function
== info
->test
[i
+ 1].function
)
2795 status_ok
= (info
->test
[i
].status
== status
);
2796 function_ok
= (info
->test
[i
].function
== info
->function
);
2798 if (!info
->test
[i
].todo
)
2800 ok( status_ok
, "%u: expected status %u got %u\n", info
->line
, info
->test
[i
].status
, status
);
2801 ok( function_ok
, "%u: expected function %u got %u\n", info
->line
, info
->test
[i
].function
, info
->function
);
2803 if (info
->test
[i
].async
)
2804 ok(info
->thread
!= GetCurrentThreadId(), "%u: expected thread %u got %u\n",
2805 info
->line
, info
->thread
, GetCurrentThreadId());
2809 todo_wine
ok( status_ok
, "%u: expected status %u got %u\n", info
->line
, info
->test
[i
].status
, status
);
2811 todo_wine
ok( function_ok
, "%u: expected function %u got %u\n", info
->line
, info
->test
[i
].function
, info
->function
);
2813 if (i
== info
->count
- 1 || info
->test
[i
].function
!= info
->test
[i
+ 1].function
) SetEvent( info
->wait
);
2816 LeaveCriticalSection( ¬ification_cs
);
2819 static void setup_test( struct info
*info
, enum api function
, unsigned int line
)
2821 info
->function
= function
;
2825 static const struct notification async_send_request_ex_test
[] =
2827 { internet_connect
, INTERNET_STATUS_HANDLE_CREATED
, 0 },
2828 { http_open_request
, INTERNET_STATUS_HANDLE_CREATED
, 0 },
2829 { http_send_request_ex
, INTERNET_STATUS_DETECTING_PROXY
, 1, 0, 1 },
2830 { http_send_request_ex
, INTERNET_STATUS_RESOLVING_NAME
, 1 },
2831 { http_send_request_ex
, INTERNET_STATUS_NAME_RESOLVED
, 1 },
2832 { http_send_request_ex
, INTERNET_STATUS_CONNECTING_TO_SERVER
, 1 },
2833 { http_send_request_ex
, INTERNET_STATUS_CONNECTED_TO_SERVER
, 1 },
2834 { http_send_request_ex
, INTERNET_STATUS_SENDING_REQUEST
, 1 },
2835 { http_send_request_ex
, INTERNET_STATUS_REQUEST_SENT
, 1 },
2836 { http_send_request_ex
, INTERNET_STATUS_REQUEST_COMPLETE
, 1 },
2837 { internet_writefile
, INTERNET_STATUS_SENDING_REQUEST
, 0 },
2838 { internet_writefile
, INTERNET_STATUS_REQUEST_SENT
, 0 },
2839 { http_end_request
, INTERNET_STATUS_RECEIVING_RESPONSE
, 1 },
2840 { http_end_request
, INTERNET_STATUS_RESPONSE_RECEIVED
, 1 },
2841 { http_end_request
, INTERNET_STATUS_REQUEST_COMPLETE
, 1 },
2842 { internet_close_handle
, INTERNET_STATUS_HANDLE_CLOSING
, 0, 1 },
2843 { internet_close_handle
, INTERNET_STATUS_HANDLE_CLOSING
, 0, 1 }
2846 static void test_async_HttpSendRequestEx(void)
2849 HINTERNET ses
, req
, con
;
2851 DWORD size
, written
, error
;
2852 INTERNET_BUFFERSA b
;
2853 static const char *accept
[2] = {"*/*", NULL
};
2854 static char data
[] = "Public ID=codeweavers";
2857 InitializeCriticalSection( ¬ification_cs
);
2859 info
.test
= async_send_request_ex_test
;
2860 info
.count
= sizeof(async_send_request_ex_test
)/sizeof(async_send_request_ex_test
[0]);
2862 info
.wait
= CreateEvent( NULL
, FALSE
, FALSE
, NULL
);
2863 info
.thread
= GetCurrentThreadId();
2865 ses
= InternetOpen( "winetest", 0, NULL
, NULL
, INTERNET_FLAG_ASYNC
);
2866 ok( ses
!= NULL
, "InternetOpen failed\n" );
2868 pInternetSetStatusCallbackA( ses
, check_notification
);
2870 setup_test( &info
, internet_connect
, __LINE__
);
2871 con
= InternetConnect( ses
, "crossover.codeweavers.com", 80, NULL
, NULL
, INTERNET_SERVICE_HTTP
, 0, (DWORD_PTR
)&info
);
2872 ok( con
!= NULL
, "InternetConnect failed %u\n", GetLastError() );
2874 WaitForSingleObject( info
.wait
, 10000 );
2876 setup_test( &info
, http_open_request
, __LINE__
);
2877 req
= HttpOpenRequest( con
, "POST", "posttest.php", NULL
, NULL
, accept
, 0, (DWORD_PTR
)&info
);
2878 ok( req
!= NULL
, "HttpOpenRequest failed %u\n", GetLastError() );
2880 WaitForSingleObject( info
.wait
, 10000 );
2882 memset( &b
, 0, sizeof(INTERNET_BUFFERSA
) );
2883 b
.dwStructSize
= sizeof(INTERNET_BUFFERSA
);
2884 b
.lpcszHeader
= "Content-Type: application/x-www-form-urlencoded";
2885 b
.dwHeadersLength
= strlen( b
.lpcszHeader
);
2886 b
.dwBufferTotal
= strlen( data
);
2888 setup_test( &info
, http_send_request_ex
, __LINE__
);
2889 ret
= HttpSendRequestExA( req
, &b
, NULL
, 0x28, 0 );
2890 ok( !ret
&& GetLastError() == ERROR_IO_PENDING
, "HttpSendRequestExA failed %d %u\n", ret
, GetLastError() );
2892 WaitForSingleObject( info
.wait
, 10000 );
2894 size
= sizeof(buffer
);
2895 SetLastError( 0xdeadbeef );
2896 ret
= HttpQueryInfoA( req
, HTTP_QUERY_CONTENT_ENCODING
, buffer
, &size
, 0 );
2897 error
= GetLastError();
2898 ok( !ret
, "HttpQueryInfoA failed %u\n", GetLastError() );
2900 ok( error
== ERROR_INTERNET_INCORRECT_HANDLE_STATE
,
2901 "expected ERROR_INTERNET_INCORRECT_HANDLE_STATE got %u\n", error
);
2904 size
= strlen( data
);
2905 setup_test( &info
, internet_writefile
, __LINE__
);
2906 ret
= InternetWriteFile( req
, data
, size
, &written
);
2907 ok( ret
, "InternetWriteFile failed %u\n", GetLastError() );
2908 ok( written
== size
, "expected %u got %u\n", written
, size
);
2910 WaitForSingleObject( info
.wait
, 10000 );
2912 SetLastError( 0xdeadbeef );
2913 ret
= HttpEndRequestA( req
, (void *)data
, 0x28, 0 );
2914 error
= GetLastError();
2915 ok( !ret
, "HttpEndRequestA succeeded\n" );
2916 ok( error
== ERROR_INVALID_PARAMETER
, "expected ERROR_INVALID_PARAMETER got %u\n", error
);
2918 SetLastError( 0xdeadbeef );
2919 setup_test( &info
, http_end_request
, __LINE__
);
2920 ret
= HttpEndRequestA( req
, NULL
, 0x28, 0 );
2921 error
= GetLastError();
2922 ok( !ret
, "HttpEndRequestA succeeded\n" );
2923 ok( error
== ERROR_IO_PENDING
, "expected ERROR_IO_PENDING got %u\n", error
);
2925 WaitForSingleObject( info
.wait
, 10000 );
2927 setup_test( &info
, internet_close_handle
, __LINE__
);
2928 InternetCloseHandle( req
);
2929 InternetCloseHandle( con
);
2930 InternetCloseHandle( ses
);
2932 WaitForSingleObject( info
.wait
, 10000 );
2934 CloseHandle( info
.wait
);
2937 #define STATUS_STRING(status) \
2938 memcpy(status_string[status], #status, sizeof(CHAR) * \
2939 (strlen(#status) < MAX_STATUS_NAME ? \
2941 MAX_STATUS_NAME - 1))
2942 static void init_status_tests(void)
2944 memset(expect
, 0, sizeof(expect
));
2945 memset(optional
, 0, sizeof(optional
));
2946 memset(wine_allow
, 0, sizeof(wine_allow
));
2947 memset(notified
, 0, sizeof(notified
));
2948 memset(status_string
, 0, sizeof(status_string
));
2949 STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME
);
2950 STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED
);
2951 STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER
);
2952 STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER
);
2953 STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST
);
2954 STATUS_STRING(INTERNET_STATUS_REQUEST_SENT
);
2955 STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE
);
2956 STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED
);
2957 STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED
);
2958 STATUS_STRING(INTERNET_STATUS_PREFETCH
);
2959 STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION
);
2960 STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED
);
2961 STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED
);
2962 STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING
);
2963 STATUS_STRING(INTERNET_STATUS_DETECTING_PROXY
);
2964 STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE
);
2965 STATUS_STRING(INTERNET_STATUS_REDIRECT
);
2966 STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE
);
2967 STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED
);
2968 STATUS_STRING(INTERNET_STATUS_STATE_CHANGE
);
2969 STATUS_STRING(INTERNET_STATUS_COOKIE_SENT
);
2970 STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED
);
2971 STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED
);
2972 STATUS_STRING(INTERNET_STATUS_P3P_HEADER
);
2973 STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF
);
2974 STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY
);
2976 #undef STATUS_STRING
2981 hdll
= GetModuleHandleA("wininet.dll");
2982 pInternetSetStatusCallbackA
= (void*)GetProcAddress(hdll
, "InternetSetStatusCallbackA");
2984 if (!pInternetSetStatusCallbackA
)
2985 skip("skipping the InternetReadFile tests\n");
2988 init_status_tests();
2989 InternetReadFile_test(INTERNET_FLAG_ASYNC
, &test_data
[0]);
2990 InternetReadFile_test(0, &test_data
[0]);
2991 first_connection_to_test_url
= TRUE
;
2992 InternetReadFile_test(INTERNET_FLAG_ASYNC
, &test_data
[1]);
2993 InternetReadFile_test(0, &test_data
[1]);
2994 InternetReadFileExA_test(INTERNET_FLAG_ASYNC
);
2995 test_open_url_async();
2996 test_async_HttpSendRequestEx();
2998 InternetOpenRequest_test();
3000 InternetOpenUrlA_test();
3002 test_http_connection();
3003 test_user_agent_header();
3004 test_bogus_accept_types_array();
3005 InternetReadFile_chunked_test();
3006 HttpSendRequestEx_test();