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
33 #include "wine/test.h"
35 #define TEST_URL "http://test.winehq.org/tests/hello.html"
37 static BOOL first_connection_to_test_url = TRUE;
39 /* Adapted from dlls/urlmon/tests/protocol.c */
41 #define SET_EXPECT2(status, num) \
44 #define SET_EXPECT(status) \
45 SET_EXPECT2(status, 1)
47 #define SET_OPTIONAL2(status, num) \
48 optional[status] = num
50 #define SET_OPTIONAL(status) \
51 SET_OPTIONAL2(status, 1)
53 /* SET_WINE_ALLOW's should be used with an appropriate
54 * todo_wine CHECK_NOTIFIED at a later point in the code */
55 #define SET_WINE_ALLOW2(status, num) \
56 wine_allow[status] = num
58 #define SET_WINE_ALLOW(status) \
59 SET_WINE_ALLOW2(status, 1)
61 #define CHECK_EXPECT(status) \
63 if (!expect[status] && !optional[status] && wine_allow[status]) \
65 todo_wine ok(expect[status], "unexpected status %d (%s)\n", status, \
66 status < MAX_INTERNET_STATUS && status_string[status] ? \
67 status_string[status] : "unknown"); \
68 wine_allow[status]--; \
72 ok(expect[status] || optional[status], "unexpected status %d (%s)\n", status, \
73 status < MAX_INTERNET_STATUS && status_string[status] ? \
74 status_string[status] : "unknown"); \
75 if (expect[status]) expect[status]--; \
76 else optional[status]--; \
81 /* CLEAR_NOTIFIED used in cases when notification behavior
82 * differs between Windows versions */
83 #define CLEAR_NOTIFIED(status) \
84 expect[status] = optional[status] = wine_allow[status] = notified[status] = 0;
86 #define CHECK_NOTIFIED2(status, num) \
88 ok(notified[status] + optional[status] == (num), \
89 "expected status %d (%s) %d times, received %d times\n", \
90 status, status < MAX_INTERNET_STATUS && status_string[status] ? \
91 status_string[status] : "unknown", (num), notified[status]); \
92 CLEAR_NOTIFIED(status); \
95 #define CHECK_NOTIFIED(status) \
96 CHECK_NOTIFIED2(status, 1)
98 #define CHECK_NOT_NOTIFIED(status) \
99 CHECK_NOTIFIED2(status, 0)
101 #define MAX_INTERNET_STATUS (INTERNET_STATUS_COOKIE_HISTORY+1)
102 static int expect[MAX_INTERNET_STATUS], optional[MAX_INTERNET_STATUS],
103 wine_allow[MAX_INTERNET_STATUS], notified[MAX_INTERNET_STATUS];
104 static const char *status_string[MAX_INTERNET_STATUS];
106 static HANDLE hCompleteEvent, conn_close_event;
107 static DWORD req_error;
109 #define TESTF_REDIRECT 0x01
110 #define TESTF_COMPRESSED 0x02
111 #define TESTF_CHUNKED 0x04
115 const char *redirected_url;
120 const char *post_data;
124 static const test_data_t test_data[] = {
126 "http://test.winehq.org/tests/data.php",
127 "http://test.winehq.org/tests/data.php",
134 "http://test.winehq.org/tests/redirect",
135 "http://test.winehq.org/tests/hello.html",
142 "http://www.codeweavers.com/",
143 "http://www.codeweavers.com/",
144 "www.codeweavers.com",
146 "Accept-Encoding: gzip, deflate",
150 "http://test.winehq.org/tests/post.php",
151 "http://test.winehq.org/tests/post.php",
154 "Content-Type: application/x-www-form-urlencoded",
161 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackA)(HINTERNET ,INTERNET_STATUS_CALLBACK);
162 static INTERNET_STATUS_CALLBACK (WINAPI *pInternetSetStatusCallbackW)(HINTERNET ,INTERNET_STATUS_CALLBACK);
163 static BOOL (WINAPI *pInternetGetSecurityInfoByURLA)(LPSTR,PCCERT_CHAIN_CONTEXT*,DWORD*);
165 static int strcmp_wa(LPCWSTR strw, const char *stra)
168 MultiByteToWideChar(CP_ACP, 0, stra, -1, buf, sizeof(buf)/sizeof(WCHAR));
169 return lstrcmpW(strw, buf);
172 static BOOL proxy_active(void)
174 HKEY internet_settings;
178 if (RegOpenKeyExA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
179 0, KEY_QUERY_VALUE, &internet_settings) != ERROR_SUCCESS)
182 size = sizeof(DWORD);
183 if (RegQueryValueExA(internet_settings, "ProxyEnable", NULL, NULL, (LPBYTE) &proxy_enable, &size) != ERROR_SUCCESS)
186 RegCloseKey(internet_settings);
188 return proxy_enable != 0;
191 #define test_status_code(a,b) _test_status_code(__LINE__,a,b)
192 static void _test_status_code(unsigned line, HINTERNET req, DWORD excode)
194 DWORD code, size, index;
195 char exbuf[10], bufa[10];
201 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, NULL);
202 ok_(__FILE__,line)(res, "[1] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE|number) failed: %u\n", GetLastError());
203 ok_(__FILE__,line)(code == excode, "code = %d, expected %d\n", code, excode);
204 ok_(__FILE__,line)(size == sizeof(code), "size = %u\n", size);
209 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, &index);
210 ok_(__FILE__,line)(res, "[2] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE|number index) failed: %u\n", GetLastError());
211 ok_(__FILE__,line)(code == excode, "code = %d, expected %d\n", code, excode);
212 ok_(__FILE__,line)(!index, "index = %d, expected 0\n", code);
213 ok_(__FILE__,line)(size == sizeof(code), "size = %u\n", size);
215 sprintf(exbuf, "%u", excode);
218 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE, bufa, &size, NULL);
219 ok_(__FILE__,line)(res, "[3] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
220 ok_(__FILE__,line)(!strcmp(bufa, exbuf), "unexpected status code %s, expected %s\n", bufa, exbuf);
221 ok_(__FILE__,line)(size == strlen(exbuf), "unexpected size %d for \"%s\"\n", size, exbuf);
224 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE, NULL, &size, NULL);
225 ok_(__FILE__,line)(!res && GetLastError() == ERROR_INSUFFICIENT_BUFFER,
226 "[4] HttpQueryInfoA(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
227 ok_(__FILE__,line)(size == strlen(exbuf)+1, "unexpected size %d for \"%s\"\n", size, exbuf);
230 res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, bufw, &size, NULL);
231 ok_(__FILE__,line)(res, "[5] HttpQueryInfoW(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
232 ok_(__FILE__,line)(!strcmp_wa(bufw, exbuf), "unexpected status code %s, expected %s\n", bufa, exbuf);
233 ok_(__FILE__,line)(size == strlen(exbuf)*sizeof(WCHAR), "unexpected size %d for \"%s\"\n", size, exbuf);
236 res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, bufw, &size, NULL);
237 ok_(__FILE__,line)(!res && GetLastError() == ERROR_INSUFFICIENT_BUFFER,
238 "[6] HttpQueryInfoW(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
239 ok_(__FILE__,line)(size == (strlen(exbuf)+1)*sizeof(WCHAR), "unexpected size %d for \"%s\"\n", size, exbuf);
243 res = HttpQueryInfoW(req, HTTP_QUERY_STATUS_CODE, NULL, &size, NULL);
244 ok(!res && GetLastError() == ERROR_INVALID_PARAMETER, "HttpQueryInfo(HTTP_QUERY_STATUS_CODE) failed: %u\n", GetLastError());
245 ok(size == sizeof(bufw), "unexpected size %d\n", size);
251 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, &code, &size, &index);
252 ok_(__FILE__,line)(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
253 "[7] HttpQueryInfoA failed: %x(%d)\n", res, GetLastError());
257 res = HttpQueryInfoA(req, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_REQUEST_HEADERS, &code, &size, NULL);
258 ok_(__FILE__,line)(!res && GetLastError() == ERROR_HTTP_INVALID_QUERY_REQUEST,
259 "[8] HttpQueryInfoA failed: %x(%d)\n", res, GetLastError());
262 #define test_request_flags(a,b) _test_request_flags(__LINE__,a,b,FALSE)
263 #define test_request_flags_todo(a,b) _test_request_flags(__LINE__,a,b,TRUE)
264 static void _test_request_flags(unsigned line, HINTERNET req, DWORD exflags, BOOL is_todo)
270 size = sizeof(flags);
271 res = InternetQueryOptionW(req, INTERNET_OPTION_REQUEST_FLAGS, &flags, &size);
272 ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_REQUEST_FLAGS) failed: %u\n", GetLastError());
274 /* FIXME: Remove once we have INTERNET_REQFLAG_CACHE_WRITE_DISABLED implementation */
275 flags &= ~INTERNET_REQFLAG_CACHE_WRITE_DISABLED;
277 ok_(__FILE__,line)(flags == exflags, "flags = %x, expected %x\n", flags, exflags);
279 todo_wine ok_(__FILE__,line)(flags == exflags, "flags = %x, expected %x\n", flags, exflags);
282 #define test_http_version(a) _test_http_version(__LINE__,a)
283 static void _test_http_version(unsigned line, HINTERNET req)
285 HTTP_VERSION_INFO v = {0xdeadbeef, 0xdeadbeef};
290 res = InternetQueryOptionW(req, INTERNET_OPTION_HTTP_VERSION, &v, &size);
291 ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_HTTP_VERSION) failed: %u\n", GetLastError());
292 ok_(__FILE__,line)(v.dwMajorVersion == 1, "dwMajorVersion = %d\n", v.dwMajorVersion);
293 ok_(__FILE__,line)(v.dwMinorVersion == 1, "dwMinorVersion = %d\n", v.dwMinorVersion);
296 static int close_handle_cnt;
298 static VOID WINAPI callback(
301 DWORD dwInternetStatus,
302 LPVOID lpvStatusInformation,
303 DWORD dwStatusInformationLength
306 CHECK_EXPECT(dwInternetStatus);
307 switch (dwInternetStatus)
309 case INTERNET_STATUS_RESOLVING_NAME:
310 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESOLVING_NAME \"%s\" %d\n",
311 GetCurrentThreadId(), hInternet, dwContext,
312 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
313 *(LPSTR)lpvStatusInformation = '\0';
315 case INTERNET_STATUS_NAME_RESOLVED:
316 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_NAME_RESOLVED \"%s\" %d\n",
317 GetCurrentThreadId(), hInternet, dwContext,
318 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
319 *(LPSTR)lpvStatusInformation = '\0';
321 case INTERNET_STATUS_CONNECTING_TO_SERVER:
322 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTING_TO_SERVER \"%s\" %d\n",
323 GetCurrentThreadId(), hInternet, dwContext,
324 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
325 ok(dwStatusInformationLength == strlen(lpvStatusInformation)+1, "unexpected size %u\n",
326 dwStatusInformationLength);
327 *(LPSTR)lpvStatusInformation = '\0';
329 case INTERNET_STATUS_CONNECTED_TO_SERVER:
330 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTED_TO_SERVER \"%s\" %d\n",
331 GetCurrentThreadId(), hInternet, dwContext,
332 (LPCSTR)lpvStatusInformation,dwStatusInformationLength);
333 ok(dwStatusInformationLength == strlen(lpvStatusInformation)+1, "unexpected size %u\n",
334 dwStatusInformationLength);
335 *(LPSTR)lpvStatusInformation = '\0';
337 case INTERNET_STATUS_SENDING_REQUEST:
338 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_SENDING_REQUEST %p %d\n",
339 GetCurrentThreadId(), hInternet, dwContext,
340 lpvStatusInformation,dwStatusInformationLength);
342 case INTERNET_STATUS_REQUEST_SENT:
343 ok(dwStatusInformationLength == sizeof(DWORD),
344 "info length should be sizeof(DWORD) instead of %d\n",
345 dwStatusInformationLength);
346 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_SENT 0x%x %d\n",
347 GetCurrentThreadId(), hInternet, dwContext,
348 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
350 case INTERNET_STATUS_RECEIVING_RESPONSE:
351 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RECEIVING_RESPONSE %p %d\n",
352 GetCurrentThreadId(), hInternet, dwContext,
353 lpvStatusInformation,dwStatusInformationLength);
355 case INTERNET_STATUS_RESPONSE_RECEIVED:
356 ok(dwStatusInformationLength == sizeof(DWORD),
357 "info length should be sizeof(DWORD) instead of %d\n",
358 dwStatusInformationLength);
359 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_RESPONSE_RECEIVED 0x%x %d\n",
360 GetCurrentThreadId(), hInternet, dwContext,
361 *(DWORD *)lpvStatusInformation,dwStatusInformationLength);
363 case INTERNET_STATUS_CTL_RESPONSE_RECEIVED:
364 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CTL_RESPONSE_RECEIVED %p %d\n",
365 GetCurrentThreadId(), hInternet,dwContext,
366 lpvStatusInformation,dwStatusInformationLength);
368 case INTERNET_STATUS_PREFETCH:
369 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_PREFETCH %p %d\n",
370 GetCurrentThreadId(), hInternet, dwContext,
371 lpvStatusInformation,dwStatusInformationLength);
373 case INTERNET_STATUS_CLOSING_CONNECTION:
374 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CLOSING_CONNECTION %p %d\n",
375 GetCurrentThreadId(), hInternet, dwContext,
376 lpvStatusInformation,dwStatusInformationLength);
378 case INTERNET_STATUS_CONNECTION_CLOSED:
379 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_CONNECTION_CLOSED %p %d\n",
380 GetCurrentThreadId(), hInternet, dwContext,
381 lpvStatusInformation,dwStatusInformationLength);
383 case INTERNET_STATUS_HANDLE_CREATED:
384 ok(dwStatusInformationLength == sizeof(HINTERNET),
385 "info length should be sizeof(HINTERNET) instead of %d\n",
386 dwStatusInformationLength);
387 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d\n",
388 GetCurrentThreadId(), hInternet, dwContext,
389 *(HINTERNET *)lpvStatusInformation,dwStatusInformationLength);
390 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
391 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
393 case INTERNET_STATUS_HANDLE_CLOSING:
394 ok(dwStatusInformationLength == sizeof(HINTERNET),
395 "info length should be sizeof(HINTERNET) instead of %d\n",
396 dwStatusInformationLength);
397 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CLOSING %p %d\n",
398 GetCurrentThreadId(), hInternet, dwContext,
399 *(HINTERNET *)lpvStatusInformation, dwStatusInformationLength);
400 if(!InterlockedDecrement(&close_handle_cnt))
401 SetEvent(hCompleteEvent);
403 case INTERNET_STATUS_REQUEST_COMPLETE:
405 INTERNET_ASYNC_RESULT *iar = (INTERNET_ASYNC_RESULT *)lpvStatusInformation;
406 ok(dwStatusInformationLength == sizeof(INTERNET_ASYNC_RESULT),
407 "info length should be sizeof(INTERNET_ASYNC_RESULT) instead of %d\n",
408 dwStatusInformationLength);
409 ok(iar->dwResult == 1 || iar->dwResult == 0, "iar->dwResult = %ld\n", iar->dwResult);
410 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REQUEST_COMPLETE {%ld,%d} %d\n",
411 GetCurrentThreadId(), hInternet, dwContext,
412 iar->dwResult,iar->dwError,dwStatusInformationLength);
413 req_error = iar->dwError;
414 if(!close_handle_cnt)
415 SetEvent(hCompleteEvent);
418 case INTERNET_STATUS_REDIRECT:
419 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_REDIRECT \"%s\" %d\n",
420 GetCurrentThreadId(), hInternet, dwContext,
421 (LPCSTR)lpvStatusInformation, dwStatusInformationLength);
422 *(LPSTR)lpvStatusInformation = '\0';
423 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
424 SET_EXPECT(INTERNET_STATUS_DETECTING_PROXY);
426 case INTERNET_STATUS_INTERMEDIATE_RESPONSE:
427 trace("%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d\n",
428 GetCurrentThreadId(), hInternet, dwContext,
429 lpvStatusInformation, dwStatusInformationLength);
432 trace("%04x:Callback %p 0x%lx %d %p %d\n",
433 GetCurrentThreadId(), hInternet, dwContext, dwInternetStatus,
434 lpvStatusInformation, dwStatusInformationLength);
438 static void close_async_handle(HINTERNET handle, HANDLE complete_event, int handle_cnt)
442 close_handle_cnt = handle_cnt;
444 SET_EXPECT2(INTERNET_STATUS_HANDLE_CLOSING, handle_cnt);
445 res = InternetCloseHandle(handle);
446 ok(res, "InternetCloseHandle failed: %u\n", GetLastError());
447 WaitForSingleObject(hCompleteEvent, INFINITE);
448 CHECK_NOTIFIED2(INTERNET_STATUS_HANDLE_CLOSING, handle_cnt);
451 static void InternetReadFile_test(int flags, const test_data_t *test)
453 char *post_data = NULL;
454 BOOL res, on_async = TRUE;
456 DWORD length, exlen = 0, post_len = 0;
457 const char *types[2] = { "*", NULL };
458 HINTERNET hi, hic = 0, hor = 0;
460 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
462 trace("Starting InternetReadFile test with flags 0x%x on url %s\n",flags,test->url);
464 trace("InternetOpenA <--\n");
465 hi = InternetOpenA((test->flags & TESTF_COMPRESSED) ? "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" : "",
466 INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
467 ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
468 trace("InternetOpenA -->\n");
470 if (hi == 0x0) goto abort;
472 pInternetSetStatusCallbackA(hi,&callback);
474 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
476 trace("InternetConnectA <--\n");
477 hic=InternetConnectA(hi, test->host, INTERNET_INVALID_PORT_NUMBER,
478 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
479 ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
480 trace("InternetConnectA -->\n");
482 if (hic == 0x0) goto abort;
484 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
485 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
487 trace("HttpOpenRequestA <--\n");
488 hor = HttpOpenRequestA(hic, test->post_data ? "POST" : "GET", test->path, NULL, NULL, types,
489 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
491 if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
493 * If the internet name can't be resolved we are probably behind
494 * a firewall or in some other way not directly connected to the
495 * Internet. Not enough reason to fail the test. Just ignore and
499 ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
501 trace("HttpOpenRequestA -->\n");
503 if (hor == 0x0) goto abort;
505 test_request_flags(hor, INTERNET_REQFLAG_NO_HEADERS);
507 length = sizeof(buffer);
508 res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
509 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
510 ok(!strcmp(buffer, test->url), "Wrong URL %s, expected %s\n", buffer, test->url);
512 length = sizeof(buffer);
513 res = HttpQueryInfoA(hor, HTTP_QUERY_RAW_HEADERS, buffer, &length, 0x0);
514 ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
515 ok(length == 0, "HTTP_QUERY_RAW_HEADERS: expected length 0, but got %d\n", length);
516 ok(!strcmp(buffer, ""), "HTTP_QUERY_RAW_HEADERS: expected string \"\", but got \"%s\"\n", buffer);
518 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
519 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
520 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
521 SET_OPTIONAL2(INTERNET_STATUS_COOKIE_SENT,2);
522 SET_OPTIONAL2(INTERNET_STATUS_COOKIE_RECEIVED,2);
523 if (first_connection_to_test_url)
525 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
526 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
528 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
529 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
530 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, (test->flags & TESTF_REDIRECT) ? 2 : 1);
531 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, (test->flags & TESTF_REDIRECT) ? 2 : 1);
532 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, (test->flags & TESTF_REDIRECT) ? 2 : 1);
533 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, (test->flags & TESTF_REDIRECT) ? 2 : 1);
534 if(test->flags & TESTF_REDIRECT) {
535 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
536 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
538 SET_EXPECT(INTERNET_STATUS_REDIRECT);
539 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
540 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
541 if (flags & INTERNET_FLAG_ASYNC)
542 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
544 if(test->flags & TESTF_COMPRESSED) {
547 res = InternetSetOption(hor, INTERNET_OPTION_HTTP_DECODING, &b, sizeof(b));
548 ok(res || broken(!res && GetLastError() == ERROR_INTERNET_INVALID_OPTION),
549 "InternetSetOption failed: %u\n", GetLastError());
554 test_status_code(hor, 0);
556 trace("HttpSendRequestA -->\n");
557 if(test->post_data) {
558 post_len = strlen(test->post_data);
559 post_data = HeapAlloc(GetProcessHeap(), 0, post_len);
560 memcpy(post_data, test->post_data, post_len);
562 SetLastError(0xdeadbeef);
563 res = HttpSendRequestA(hor, test->headers, -1, post_data, post_len);
564 if (flags & INTERNET_FLAG_ASYNC)
565 ok(!res && (GetLastError() == ERROR_IO_PENDING),
566 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
568 ok(res || (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED),
569 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
570 trace("HttpSendRequestA <--\n");
572 if (flags & INTERNET_FLAG_ASYNC) {
573 WaitForSingleObject(hCompleteEvent, INFINITE);
574 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
576 HeapFree(GetProcessHeap(), 0, post_data);
578 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
579 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_RECEIVED);
580 if (first_connection_to_test_url)
582 if (! proxy_active())
584 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
585 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
589 CLEAR_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
590 CLEAR_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
595 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
596 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
598 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, (test->flags & TESTF_REDIRECT) ? 2 : 1);
599 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, (test->flags & TESTF_REDIRECT) ? 2 : 1);
600 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, (test->flags & TESTF_REDIRECT) ? 2 : 1);
601 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, (test->flags & TESTF_REDIRECT) ? 2 : 1);
602 if(test->flags & TESTF_REDIRECT)
603 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
604 if (flags & INTERNET_FLAG_ASYNC)
605 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
606 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
607 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
608 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
610 test_request_flags(hor, 0);
613 res = InternetQueryOptionA(hor,INTERNET_OPTION_URL,buffer,&length);
614 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed with error %d\n", GetLastError());
616 length = sizeof(buffer);
617 res = HttpQueryInfoA(hor,HTTP_QUERY_RAW_HEADERS,buffer,&length,0x0);
618 ok(res, "HttpQueryInfoA(HTTP_QUERY_RAW_HEADERS) failed with error %d\n", GetLastError());
621 length = sizeof(buffer);
622 res = InternetQueryOptionA(hor, INTERNET_OPTION_URL, buffer, &length);
623 ok(res, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
624 ok(!strcmp(buffer, test->redirected_url), "Wrong URL %s\n", buffer);
627 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
628 trace("Option HTTP_QUERY_CONTENT_LENGTH -> %i %s (%u)\n",res,buffer,GetLastError());
629 if(test->flags & TESTF_COMPRESSED)
630 ok(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
631 "expected ERROR_HTTP_HEADER_NOT_FOUND, got %x (%u)\n", res, GetLastError());
634 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
636 trace("Option HTTP_QUERY_CONTENT_TYPE -> %i %s\n",res,buffer);
639 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_ENCODING,buffer,&length,0x0);
641 trace("Option HTTP_QUERY_CONTENT_ENCODING -> %i %s\n",res,buffer);
643 SetLastError(0xdeadbeef);
644 res = InternetReadFile(NULL, buffer, 100, &length);
645 ok(!res, "InternetReadFile should have failed\n");
646 ok(GetLastError() == ERROR_INVALID_HANDLE,
647 "InternetReadFile should have set last error to ERROR_INVALID_HANDLE instead of %u\n",
651 trace("Entering Query loop\n");
655 if (flags & INTERNET_FLAG_ASYNC)
656 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
658 res = InternetQueryDataAvailable(hor,&length,0x0,0x0);
659 if (flags & INTERNET_FLAG_ASYNC)
663 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
665 ok(length >= exlen, "length %u < exlen %u\n", length, exlen);
669 else if (GetLastError() == ERROR_IO_PENDING)
672 /* on some tests, InternetQueryDataAvailable returns non-zero length and ERROR_IO_PENDING */
673 if(!(test->flags & TESTF_CHUNKED))
674 ok(!length, "InternetQueryDataAvailable returned ERROR_IO_PENDING and %u length\n", length);
675 WaitForSingleObject(hCompleteEvent, INFINITE);
677 ok(exlen, "length = 0\n");
678 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
679 ok(req_error, "req_error = 0\n");
682 ok(0, "InternetQueryDataAvailable failed: %u\n", GetLastError());
685 ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
687 trace("LENGTH %d\n", length);
688 if(test->flags & TESTF_CHUNKED)
689 ok(length <= 8192, "length = %d, expected <= 8192\n", length);
693 buffer = HeapAlloc(GetProcessHeap(),0,length+1);
695 res = InternetReadFile(hor,buffer,length,&length);
699 trace("ReadFile -> %s %i\n",res?"TRUE":"FALSE",length);
702 ok(!strcmp(buffer, test->content), "buffer = '%s', expected '%s'\n", buffer, test->content);
703 HeapFree(GetProcessHeap(),0,buffer);
705 ok(!on_async, "Returned zero size in response to request complete\n");
710 if(test->flags & TESTF_REDIRECT) {
711 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
712 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
716 close_async_handle(hi, hCompleteEvent, 2);
717 CloseHandle(hCompleteEvent);
718 first_connection_to_test_url = FALSE;
721 static void InternetReadFile_chunked_test(void)
726 const char *types[2] = { "*", NULL };
727 HINTERNET hi, hic = 0, hor = 0;
729 trace("Starting InternetReadFile chunked test\n");
731 trace("InternetOpenA <--\n");
732 hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
733 ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
734 trace("InternetOpenA -->\n");
736 if (hi == 0x0) goto abort;
738 trace("InternetConnectA <--\n");
739 hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
740 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
741 ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
742 trace("InternetConnectA -->\n");
744 if (hic == 0x0) goto abort;
746 trace("HttpOpenRequestA <--\n");
747 hor = HttpOpenRequestA(hic, "GET", "/tests/chunked", NULL, NULL, types,
748 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
750 if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
752 * If the internet name can't be resolved we are probably behind
753 * a firewall or in some other way not directly connected to the
754 * Internet. Not enough reason to fail the test. Just ignore and
758 ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
760 trace("HttpOpenRequestA -->\n");
762 if (hor == 0x0) goto abort;
764 trace("HttpSendRequestA -->\n");
765 SetLastError(0xdeadbeef);
766 res = HttpSendRequestA(hor, "", -1, NULL, 0);
767 ok(res || (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED),
768 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
769 trace("HttpSendRequestA <--\n");
771 test_request_flags(hor, 0);
774 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_TYPE,buffer,&length,0x0);
776 trace("Option CONTENT_TYPE -> %i %s\n",res,buffer);
778 SetLastError( 0xdeadbeef );
780 res = HttpQueryInfoA(hor,HTTP_QUERY_TRANSFER_ENCODING,buffer,&length,0x0);
782 trace("Option TRANSFER_ENCODING -> %i %s\n",res,buffer);
783 ok( res || ( proxy_active() && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND ),
784 "Failed to get TRANSFER_ENCODING option, error %u\n", GetLastError() );
785 ok( !strcmp( buffer, "chunked" ) || ( ! res && proxy_active() && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND ),
786 "Wrong transfer encoding '%s'\n", buffer );
788 SetLastError( 0xdeadbeef );
790 res = HttpQueryInfoA(hor,HTTP_QUERY_CONTENT_LENGTH,&buffer,&length,0x0);
791 ok( !res, "Found CONTENT_LENGTH option '%s'\n", buffer );
792 ok( GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "Wrong error %u\n", GetLastError() );
795 trace("Entering Query loop\n");
799 res = InternetQueryDataAvailable(hor,&length,0x0,0x0);
800 ok(!(!res && length != 0),"InternetQueryDataAvailable failed with non-zero length\n");
801 ok(res, "InternetQueryDataAvailable failed, error %d\n", GetLastError());
802 trace("got %u available\n",length);
806 char *buffer = HeapAlloc(GetProcessHeap(),0,length+1);
808 res = InternetReadFile(hor,buffer,length,&got);
811 trace("ReadFile -> %i %i\n",res,got);
812 ok( length == got, "only got %u of %u available\n", got, length );
813 ok( buffer[got-1] == '\n', "received partial line '%s'\n", buffer );
815 HeapFree(GetProcessHeap(),0,buffer);
824 res = InternetCloseHandle(hor);
825 ok (res, "InternetCloseHandle of handle opened by HttpOpenRequestA failed\n");
828 res = InternetCloseHandle(hi);
829 ok (res, "InternetCloseHandle of handle opened by InternetOpenA failed\n");
833 static void InternetReadFileExA_test(int flags)
837 const char *types[2] = { "*", NULL };
838 HINTERNET hi, hic = 0, hor = 0;
839 INTERNET_BUFFERS inetbuffers;
841 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
843 trace("Starting InternetReadFileExA test with flags 0x%x\n",flags);
845 trace("InternetOpenA <--\n");
846 hi = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, flags);
847 ok((hi != 0x0),"InternetOpen failed with error %u\n", GetLastError());
848 trace("InternetOpenA -->\n");
850 if (hi == 0x0) goto abort;
852 pInternetSetStatusCallbackA(hi,&callback);
854 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
856 trace("InternetConnectA <--\n");
857 hic=InternetConnectA(hi, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER,
858 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
859 ok((hic != 0x0),"InternetConnect failed with error %u\n", GetLastError());
860 trace("InternetConnectA -->\n");
862 if (hic == 0x0) goto abort;
864 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
865 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
867 trace("HttpOpenRequestA <--\n");
868 hor = HttpOpenRequestA(hic, "GET", "/tests/redirect", NULL, NULL, types,
869 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD,
871 if (hor == 0x0 && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED) {
873 * If the internet name can't be resolved we are probably behind
874 * a firewall or in some other way not directly connected to the
875 * Internet. Not enough reason to fail the test. Just ignore and
879 ok((hor != 0x0),"HttpOpenRequest failed with error %u\n", GetLastError());
881 trace("HttpOpenRequestA -->\n");
883 if (hor == 0x0) goto abort;
885 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
886 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
887 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
888 if (first_connection_to_test_url)
890 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
891 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
893 SET_OPTIONAL2(INTERNET_STATUS_COOKIE_SENT, 2);
894 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
895 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
896 SET_EXPECT2(INTERNET_STATUS_SENDING_REQUEST, 2);
897 SET_EXPECT2(INTERNET_STATUS_REQUEST_SENT, 2);
898 SET_EXPECT2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
899 SET_EXPECT2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
900 SET_OPTIONAL2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
901 SET_OPTIONAL2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
902 SET_EXPECT(INTERNET_STATUS_REDIRECT);
903 SET_OPTIONAL(INTERNET_STATUS_CONNECTING_TO_SERVER);
904 SET_OPTIONAL(INTERNET_STATUS_CONNECTED_TO_SERVER);
905 if (flags & INTERNET_FLAG_ASYNC)
906 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
908 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
910 trace("HttpSendRequestA -->\n");
911 SetLastError(0xdeadbeef);
912 rc = HttpSendRequestA(hor, "", -1, NULL, 0);
913 if (flags & INTERNET_FLAG_ASYNC)
914 ok(((rc == 0)&&(GetLastError() == ERROR_IO_PENDING)),
915 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
917 ok((rc != 0) || GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED,
918 "Synchronous HttpSendRequest returning 0, error %u\n", GetLastError());
919 trace("HttpSendRequestA <--\n");
921 if (!rc && (GetLastError() == ERROR_IO_PENDING)) {
922 WaitForSingleObject(hCompleteEvent, INFINITE);
923 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
926 if (first_connection_to_test_url)
928 CHECK_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
929 CHECK_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
933 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
934 CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
936 CHECK_NOTIFIED2(INTERNET_STATUS_SENDING_REQUEST, 2);
937 CHECK_NOTIFIED2(INTERNET_STATUS_REQUEST_SENT, 2);
938 CHECK_NOTIFIED2(INTERNET_STATUS_RECEIVING_RESPONSE, 2);
939 CHECK_NOTIFIED2(INTERNET_STATUS_RESPONSE_RECEIVED, 2);
940 CHECK_NOTIFIED2(INTERNET_STATUS_CLOSING_CONNECTION, 2);
941 CHECK_NOTIFIED2(INTERNET_STATUS_CONNECTION_CLOSED, 2);
942 CHECK_NOTIFIED(INTERNET_STATUS_REDIRECT);
943 if (flags & INTERNET_FLAG_ASYNC)
944 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
946 todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
947 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
948 /* Sent on WinXP only if first_connection_to_test_url is TRUE, on Win98 always sent */
949 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
950 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
952 /* tests invalid dwStructSize */
953 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS)+1;
954 inetbuffers.lpcszHeader = NULL;
955 inetbuffers.dwHeadersLength = 0;
956 inetbuffers.dwBufferLength = 10;
957 inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, 10);
958 inetbuffers.dwOffsetHigh = 1234;
959 inetbuffers.dwOffsetLow = 5678;
960 rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
961 ok(!rc && (GetLastError() == ERROR_INVALID_PARAMETER),
962 "InternetReadFileEx should have failed with ERROR_INVALID_PARAMETER instead of %s, %u\n",
963 rc ? "TRUE" : "FALSE", GetLastError());
964 HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
966 test_request_flags(hor, 0);
968 /* tests to see whether lpcszHeader is used - it isn't */
969 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
970 inetbuffers.lpcszHeader = (LPCTSTR)0xdeadbeef;
971 inetbuffers.dwHeadersLength = 255;
972 inetbuffers.dwBufferLength = 0;
973 inetbuffers.lpvBuffer = NULL;
974 inetbuffers.dwOffsetHigh = 1234;
975 inetbuffers.dwOffsetLow = 5678;
976 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
977 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
978 rc = InternetReadFileEx(hor, &inetbuffers, 0, 0xdeadcafe);
979 ok(rc, "InternetReadFileEx failed with error %u\n", GetLastError());
980 trace("read %i bytes\n", inetbuffers.dwBufferLength);
983 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
984 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
987 rc = InternetReadFileEx(NULL, &inetbuffers, 0, 0xdeadcafe);
988 ok(!rc && (GetLastError() == ERROR_INVALID_HANDLE),
989 "InternetReadFileEx should have failed with ERROR_INVALID_HANDLE instead of %s, %u\n",
990 rc ? "TRUE" : "FALSE", GetLastError());
993 trace("Entering Query loop\n");
997 inetbuffers.dwStructSize = sizeof(INTERNET_BUFFERS);
998 inetbuffers.dwBufferLength = 1024;
999 inetbuffers.lpvBuffer = HeapAlloc(GetProcessHeap(), 0, inetbuffers.dwBufferLength+1);
1000 inetbuffers.dwOffsetHigh = 1234;
1001 inetbuffers.dwOffsetLow = 5678;
1003 SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
1004 SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
1005 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
1006 rc = InternetReadFileExA(hor, &inetbuffers, IRF_ASYNC | IRF_USE_CONTEXT, 0xcafebabe);
1009 if (GetLastError() == ERROR_IO_PENDING)
1011 trace("InternetReadFileEx -> PENDING\n");
1012 ok(flags & INTERNET_FLAG_ASYNC,
1013 "Should not get ERROR_IO_PENDING without INTERNET_FLAG_ASYNC\n");
1014 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1015 WaitForSingleObject(hCompleteEvent, INFINITE);
1016 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1017 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1018 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
1022 trace("InternetReadFileEx -> FAILED %u\n", GetLastError());
1028 trace("InternetReadFileEx -> SUCCEEDED\n");
1029 CHECK_NOT_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1030 if (inetbuffers.dwBufferLength)
1033 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1034 CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1039 /* Win98 still sends these when 0 bytes are read, WinXP does not */
1040 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1041 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1045 trace("read %i bytes\n", inetbuffers.dwBufferLength);
1046 ((char *)inetbuffers.lpvBuffer)[inetbuffers.dwBufferLength] = '\0';
1048 ok(inetbuffers.dwOffsetHigh == 1234 && inetbuffers.dwOffsetLow == 5678,
1049 "InternetReadFileEx sets offsets to 0x%x%08x\n",
1050 inetbuffers.dwOffsetHigh, inetbuffers.dwOffsetLow);
1052 HeapFree(GetProcessHeap(), 0, inetbuffers.lpvBuffer);
1054 if (!inetbuffers.dwBufferLength)
1057 length += inetbuffers.dwBufferLength;
1059 ok(length > 0, "failed to read any of the document\n");
1060 trace("Finished. Read %d bytes\n", length);
1063 close_async_handle(hi, hCompleteEvent, 2);
1064 CloseHandle(hCompleteEvent);
1065 first_connection_to_test_url = FALSE;
1068 static void InternetOpenUrlA_test(void)
1070 HINTERNET myhinternet, myhttp;
1072 DWORD size, readbytes, totalbytes=0;
1075 ret = DeleteUrlCacheEntry(TEST_URL);
1076 ok(ret || GetLastError() == ERROR_FILE_NOT_FOUND,
1077 "DeleteUrlCacheEntry returned %x, GetLastError() = %d\n", ret, GetLastError());
1079 myhinternet = InternetOpen("Winetest",0,NULL,NULL,INTERNET_FLAG_NO_CACHE_WRITE);
1080 ok((myhinternet != 0), "InternetOpen failed, error %u\n",GetLastError());
1082 ret = InternetCanonicalizeUrl(TEST_URL, buffer, &size,ICU_BROWSER_MODE);
1083 ok( ret, "InternetCanonicalizeUrl failed, error %u\n",GetLastError());
1086 myhttp = InternetOpenUrl(myhinternet, TEST_URL, 0, 0,
1087 INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_TRANSFER_BINARY,0);
1088 if (GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1089 return; /* WinXP returns this when not connected to the net */
1090 ok((myhttp != 0),"InternetOpenUrl failed, error %u\n",GetLastError());
1091 ret = InternetReadFile(myhttp, buffer,0x400,&readbytes);
1092 ok( ret, "InternetReadFile failed, error %u\n",GetLastError());
1093 totalbytes += readbytes;
1094 while (readbytes && InternetReadFile(myhttp, buffer,0x400,&readbytes))
1095 totalbytes += readbytes;
1096 trace("read 0x%08x bytes\n",totalbytes);
1098 InternetCloseHandle(myhttp);
1099 InternetCloseHandle(myhinternet);
1101 ret = DeleteUrlCacheEntry(TEST_URL);
1102 ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND, "INTERNET_FLAG_NO_CACHE_WRITE flag doesn't work\n");
1105 static void HttpSendRequestEx_test(void)
1111 INTERNET_BUFFERS BufferIn;
1112 DWORD dwBytesWritten, dwBytesRead, error;
1117 static char szPostData[] = "mode=Test";
1118 static const char szContentType[] = "Content-Type: application/x-www-form-urlencoded";
1120 hSession = InternetOpen("Wine Regression Test",
1121 INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
1122 ok( hSession != NULL ,"Unable to open Internet session\n");
1123 hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
1124 INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
1126 ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
1127 hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
1128 NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1129 if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1131 skip( "Network unreachable, skipping test\n" );
1134 ok( hRequest != NULL, "Failed to open request handle err %u\n", GetLastError());
1136 test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1138 BufferIn.dwStructSize = sizeof( INTERNET_BUFFERS);
1139 BufferIn.Next = (LPINTERNET_BUFFERS)0xdeadcab;
1140 BufferIn.lpcszHeader = szContentType;
1141 BufferIn.dwHeadersLength = sizeof(szContentType)-1;
1142 BufferIn.dwHeadersTotal = sizeof(szContentType)-1;
1143 BufferIn.lpvBuffer = szPostData;
1144 BufferIn.dwBufferLength = 3;
1145 BufferIn.dwBufferTotal = sizeof(szPostData)-1;
1146 BufferIn.dwOffsetLow = 0;
1147 BufferIn.dwOffsetHigh = 0;
1149 SetLastError(0xdeadbeef);
1150 ret = HttpSendRequestEx(hRequest, &BufferIn, NULL, 0 ,0);
1151 error = GetLastError();
1152 ok(ret, "HttpSendRequestEx Failed with error %u\n", error);
1153 ok(error == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %u\n", error);
1155 test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1157 for (i = 3; szPostData[i]; i++)
1158 ok(InternetWriteFile(hRequest, &szPostData[i], 1, &dwBytesWritten),
1159 "InternetWriteFile failed\n");
1161 test_request_flags(hRequest, INTERNET_REQFLAG_NO_HEADERS);
1163 ok(HttpEndRequest(hRequest, NULL, 0, 0), "HttpEndRequest Failed\n");
1165 test_request_flags(hRequest, 0);
1167 ok(InternetReadFile(hRequest, szBuffer, 255, &dwBytesRead),
1168 "Unable to read response\n");
1169 szBuffer[dwBytesRead] = 0;
1171 ok(dwBytesRead == 13,"Read %u bytes instead of 13\n",dwBytesRead);
1172 ok(strncmp(szBuffer,"mode => Test\n",dwBytesRead)==0 || broken(proxy_active()),"Got string %s\n",szBuffer);
1174 ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
1176 ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
1177 ok(InternetCloseHandle(hSession), "Close session handle failed\n");
1180 static void InternetOpenRequest_test(void)
1182 HINTERNET session, connect, request;
1183 static const char *types[] = { "*", "", NULL };
1184 static const WCHAR slash[] = {'/', 0}, any[] = {'*', 0}, empty[] = {0};
1185 static const WCHAR *typesW[] = { any, empty, NULL };
1188 session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
1189 ok(session != NULL ,"Unable to open Internet session\n");
1191 connect = InternetConnectA(session, NULL, INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1192 INTERNET_SERVICE_HTTP, 0, 0);
1193 ok(connect == NULL, "InternetConnectA should have failed\n");
1194 ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with NULL server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1196 connect = InternetConnectA(session, "", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1197 INTERNET_SERVICE_HTTP, 0, 0);
1198 ok(connect == NULL, "InternetConnectA should have failed\n");
1199 ok(GetLastError() == ERROR_INVALID_PARAMETER, "InternetConnectA with blank server named should have failed with ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
1201 connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1202 INTERNET_SERVICE_HTTP, 0, 0);
1203 ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1205 request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1206 if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1208 skip( "Network unreachable, skipping test\n" );
1211 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1213 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1214 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1215 ok(InternetCloseHandle(request), "Close request handle failed\n");
1217 request = HttpOpenRequestW(connect, NULL, slash, NULL, NULL, typesW, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1218 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1220 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1221 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1222 ok(InternetCloseHandle(request), "Close request handle failed\n");
1225 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1226 ok(InternetCloseHandle(session), "Close session handle failed\n");
1229 static void test_cache_read(void)
1231 HINTERNET session, connection, req;
1232 FILETIME now, tomorrow, yesterday;
1233 BYTE content[1000], buf[2000];
1234 char file_path[MAX_PATH];
1241 static const char cache_only_url[] = "http://test.winehq.org/tests/cache-only";
1242 BYTE cache_headers[] = "HTTP/1.1 200 OK\r\n\r\n";
1244 trace("Testing cache read...\n");
1246 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
1248 for(i = 0; i < sizeof(content); i++)
1249 content[i] = '0' + (i%10);
1251 GetSystemTimeAsFileTime(&now);
1252 li.u.HighPart = now.dwHighDateTime;
1253 li.u.LowPart = now.dwLowDateTime;
1254 li.QuadPart += (LONGLONG)10000000 * 3600 * 24;
1255 tomorrow.dwHighDateTime = li.u.HighPart;
1256 tomorrow.dwLowDateTime = li.u.LowPart;
1257 li.QuadPart -= (LONGLONG)10000000 * 3600 * 24 * 2;
1258 yesterday.dwHighDateTime = li.u.HighPart;
1259 yesterday.dwLowDateTime = li.u.LowPart;
1261 res = CreateUrlCacheEntryA(cache_only_url, sizeof(content), "", file_path, 0);
1262 ok(res, "CreateUrlCacheEntryA failed: %u\n", GetLastError());
1264 file = CreateFileA(file_path, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1265 ok(file != INVALID_HANDLE_VALUE, "CreateFile failed\n");
1267 WriteFile(file, content, sizeof(content), &size, NULL);
1270 res = CommitUrlCacheEntryA(cache_only_url, file_path, tomorrow, yesterday, NORMAL_CACHE_ENTRY,
1271 cache_headers, sizeof(cache_headers)-1, "", 0);
1272 ok(res, "CommitUrlCacheEntryA failed: %u\n", GetLastError());
1274 session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
1275 ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
1277 pInternetSetStatusCallbackA(session, callback);
1279 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
1280 connection = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT,
1281 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
1282 ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
1283 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
1285 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
1286 req = HttpOpenRequestA(connection, "GET", "/tests/cache-only", NULL, NULL, NULL, 0, 0xdeadbead);
1287 ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
1288 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
1290 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTING_TO_SERVER);
1291 SET_WINE_ALLOW(INTERNET_STATUS_CONNECTED_TO_SERVER);
1292 SET_WINE_ALLOW(INTERNET_STATUS_SENDING_REQUEST);
1293 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_SENT);
1294 SET_WINE_ALLOW(INTERNET_STATUS_RECEIVING_RESPONSE);
1295 SET_WINE_ALLOW(INTERNET_STATUS_RESPONSE_RECEIVED);
1296 SET_WINE_ALLOW(INTERNET_STATUS_REQUEST_COMPLETE);
1298 res = HttpSendRequestA(req, NULL, -1, NULL, 0);
1300 ok(res, "HttpSendRequest failed: %u\n", GetLastError());
1304 res = InternetQueryDataAvailable(req, &size, 0, 0);
1305 ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
1306 ok(size == sizeof(content), "size = %u\n", size);
1309 res = InternetReadFile(req, buf, sizeof(buf), &size);
1310 ok(res, "InternetReadFile failed: %u\n", GetLastError());
1311 ok(size == sizeof(content), "size = %u\n", size);
1312 ok(!memcmp(content, buf, sizeof(content)), "unexpected content\n");
1315 close_async_handle(session, hCompleteEvent, 2);
1317 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
1318 CLEAR_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
1319 CLEAR_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
1320 CLEAR_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
1321 CLEAR_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
1322 CLEAR_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
1323 CLEAR_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
1325 res = DeleteUrlCacheEntryA(cache_only_url);
1326 ok(res, "DeleteUrlCacheEntryA failed: %u\n", GetLastError());
1328 CloseHandle(hCompleteEvent);
1331 static void test_http_cache(void)
1333 HINTERNET session, connect, request;
1334 char file_name[MAX_PATH], url[INTERNET_MAX_URL_LENGTH];
1335 DWORD size, file_size;
1340 static const char *types[] = { "*", "", NULL };
1342 session = InternetOpenA("Wine Regression Test", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
1343 ok(session != NULL ,"Unable to open Internet session\n");
1345 connect = InternetConnectA(session, "test.winehq.org", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL,
1346 INTERNET_SERVICE_HTTP, 0, 0);
1347 ok(connect != NULL, "Unable to connect to http://test.winehq.org with error %d\n", GetLastError());
1349 request = HttpOpenRequestA(connect, NULL, "/tests/hello.html", NULL, NULL, types, INTERNET_FLAG_NEED_FILE, 0);
1350 if (!request && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1352 skip( "Network unreachable, skipping test\n" );
1354 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1355 ok(InternetCloseHandle(session), "Close session handle failed\n");
1359 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1362 ret = InternetQueryOptionA(request, INTERNET_OPTION_URL, url, &size);
1363 ok(ret, "InternetQueryOptionA(INTERNET_OPTION_URL) failed: %u\n", GetLastError());
1364 ok(!strcmp(url, "http://test.winehq.org/tests/hello.html"), "Wrong URL %s\n", url);
1366 size = sizeof(file_name);
1367 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1368 ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1369 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
1370 ok(!size, "size = %d\n", size);
1372 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1373 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1375 size = sizeof(file_name);
1376 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1377 ok(ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) failed: %u\n", GetLastError());
1379 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
1380 FILE_ATTRIBUTE_NORMAL, NULL);
1381 ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1382 file_size = GetFileSize(file, NULL);
1383 ok(file_size == 106, "file size = %u\n", file_size);
1386 ret = InternetReadFile(request, buf, sizeof(buf), &size);
1387 ok(ret, "InternetReadFile failed: %u\n", GetLastError());
1388 ok(size == 100, "size = %u\n", size);
1390 file_size = GetFileSize(file, NULL);
1391 ok(file_size == 106, "file size = %u\n", file_size);
1394 ok(InternetCloseHandle(request), "Close request handle failed\n");
1396 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1397 FILE_ATTRIBUTE_NORMAL, NULL);
1398 ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1401 /* Send the same request, requiring it to be retrieved from the cache */
1402 request = HttpOpenRequest(connect, "GET", "/tests/hello.html", NULL, NULL, NULL, INTERNET_FLAG_FROM_CACHE, 0);
1404 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1405 ok(ret, "HttpSendRequest failed\n");
1408 ret = InternetReadFile(request, buf, sizeof(buf), &size);
1409 ok(ret, "InternetReadFile failed: %u\n", GetLastError());
1410 ok(size == 100, "size = %u\n", size);
1412 ok(InternetCloseHandle(request), "Close request handle failed\n");
1414 request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, types, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1415 ok(request != NULL, "Failed to open request handle err %u\n", GetLastError());
1417 size = sizeof(file_name);
1418 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1419 ok(!ret, "InternetQueryOptionA(INTERNET_OPTION_DATAFILE_NAME) succeeded\n");
1420 ok(GetLastError() == ERROR_INTERNET_ITEM_NOT_FOUND, "GetLastError()=%u\n", GetLastError());
1421 ok(!size, "size = %d\n", size);
1423 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
1424 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
1426 size = sizeof(file_name);
1428 ret = InternetQueryOptionA(request, INTERNET_OPTION_DATAFILE_NAME, file_name, &size);
1431 file = CreateFile(file_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1432 FILE_ATTRIBUTE_NORMAL, NULL);
1433 ok(file != INVALID_HANDLE_VALUE, "Could not create file: %u\n", GetLastError());
1439 ok(file_name[0] == 0, "Didn't expect a file name\n");
1442 ok(InternetCloseHandle(request), "Close request handle failed\n");
1443 ok(InternetCloseHandle(connect), "Close connect handle failed\n");
1444 ok(InternetCloseHandle(session), "Close session handle failed\n");
1449 static void HttpHeaders_test(void)
1460 hSession = InternetOpen("Wine Regression Test",
1461 INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
1462 ok( hSession != NULL ,"Unable to open Internet session\n");
1463 hConnect = InternetConnect(hSession, "crossover.codeweavers.com",
1464 INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0,
1466 ok( hConnect != NULL, "Unable to connect to http://crossover.codeweavers.com\n");
1467 hRequest = HttpOpenRequest(hConnect, "POST", "/posttest.php",
1468 NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
1469 if (!hRequest && GetLastError() == ERROR_INTERNET_NAME_NOT_RESOLVED)
1471 skip( "Network unreachable, skipping test\n" );
1474 ok( hRequest != NULL, "Failed to open request handle\n");
1477 len = sizeof(buffer);
1478 strcpy(buffer,"Warning");
1479 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1480 buffer,&len,&index)==0,"Warning hearder reported as Existing\n");
1482 ok(HttpAddRequestHeaders(hRequest,"Warning:test1",-1,HTTP_ADDREQ_FLAG_ADD),
1483 "Failed to add new header\n");
1486 len = sizeof(buffer);
1487 strcpy(buffer,"Warning");
1488 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1489 buffer,&len,&index),"Unable to query header\n");
1490 ok(index == 1, "Index was not incremented\n");
1491 ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1492 ok(len == 5, "Invalid length (exp. 5, got %d)\n", len);
1493 ok((len < sizeof(buffer)) && (buffer[len] == 0), "Buffer not NULL-terminated\n"); /* len show only 5 characters but the buffer is NULL-terminated*/
1494 len = sizeof(buffer);
1495 strcpy(buffer,"Warning");
1496 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1497 buffer,&len,&index)==0,"Second Index Should Not Exist\n");
1500 len = 5; /* could store the string but not the NULL terminator */
1501 strcpy(buffer,"Warning");
1502 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1503 buffer,&len,&index) == FALSE,"Query succeeded on a too small buffer\n");
1504 ok(strcmp(buffer,"Warning")==0, "incorrect string was returned(%s)\n",buffer); /* string not touched */
1505 ok(len == 6, "Invalid length (exp. 6, got %d)\n", len); /* unlike success, the length includes the NULL-terminator */
1507 /* a call with NULL will fail but will return the length */
1509 len = sizeof(buffer);
1510 SetLastError(0xdeadbeef);
1511 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1512 NULL,&len,&index) == FALSE,"Query worked\n");
1513 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1514 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1515 ok(index == 0, "Index was incremented\n");
1517 /* even for a len that is too small */
1520 SetLastError(0xdeadbeef);
1521 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1522 NULL,&len,&index) == FALSE,"Query worked\n");
1523 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1524 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1525 ok(index == 0, "Index was incremented\n");
1529 SetLastError(0xdeadbeef);
1530 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1531 NULL,&len,&index) == FALSE,"Query worked\n");
1532 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1533 ok(len > 40, "Invalid length (exp. more than 40, got %d)\n", len);
1534 ok(index == 0, "Index was incremented\n");
1535 oldlen = len; /* bytes; at least long enough to hold buffer & nul */
1538 /* a working query */
1540 len = sizeof(buffer);
1541 memset(buffer, 'x', sizeof(buffer));
1542 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1543 buffer,&len,&index),"Unable to query header\n");
1544 ok(len + sizeof(CHAR) <= oldlen, "Result longer than advertised\n");
1545 ok((len < sizeof(buffer)-sizeof(CHAR)) && (buffer[len/sizeof(CHAR)] == 0),"No NUL at end\n");
1546 ok(len == strlen(buffer) * sizeof(CHAR), "Length wrong\n");
1547 /* what's in the middle differs between Wine and Windows so currently we check only the beginning and the end */
1548 ok(strncmp(buffer, "POST /posttest.php HTTP/1", 25)==0, "Invalid beginning of headers string\n");
1549 ok(strcmp(buffer + strlen(buffer) - 4, "\r\n\r\n")==0, "Invalid end of headers string\n");
1550 ok(index == 0, "Index was incremented\n");
1552 /* Like above two tests, but for W version */
1556 SetLastError(0xdeadbeef);
1557 ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1558 NULL,&len,&index) == FALSE,"Query worked\n");
1559 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "Unexpected last error: %d\n", GetLastError());
1560 ok(len > 80, "Invalid length (exp. more than 80, got %d)\n", len);
1561 ok(index == 0, "Index was incremented\n");
1562 oldlen = len; /* bytes; at least long enough to hold buffer & nul */
1564 /* a working query */
1566 len = sizeof(wbuffer);
1567 memset(wbuffer, 'x', sizeof(wbuffer));
1568 ok(HttpQueryInfoW(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1569 wbuffer,&len,&index),"Unable to query header\n");
1570 ok(len + sizeof(WCHAR) <= oldlen, "Result longer than advertised\n");
1571 ok(len == lstrlenW(wbuffer) * sizeof(WCHAR), "Length wrong\n");
1572 ok((len < sizeof(wbuffer)-sizeof(WCHAR)) && (wbuffer[len/sizeof(WCHAR)] == 0),"No NUL at end\n");
1573 ok(index == 0, "Index was incremented\n");
1575 /* end of W version tests */
1577 /* Without HTTP_QUERY_FLAG_REQUEST_HEADERS */
1579 len = sizeof(buffer);
1580 memset(buffer, 'x', sizeof(buffer));
1581 ok(HttpQueryInfo(hRequest,HTTP_QUERY_RAW_HEADERS_CRLF,
1582 buffer,&len,&index) == TRUE,"Query failed\n");
1583 ok(len == 2, "Expected 2, got %d\n", len);
1584 ok(strcmp(buffer, "\r\n") == 0, "Expected CRLF, got '%s'\n", buffer);
1585 ok(index == 0, "Index was incremented\n");
1587 ok(HttpAddRequestHeaders(hRequest,"Warning:test2",-1,HTTP_ADDREQ_FLAG_ADD),
1588 "Failed to add duplicate header using HTTP_ADDREQ_FLAG_ADD\n");
1591 len = sizeof(buffer);
1592 strcpy(buffer,"Warning");
1593 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1594 buffer,&len,&index),"Unable to query header\n");
1595 ok(index == 1, "Index was not incremented\n");
1596 ok(strcmp(buffer,"test1")==0, "incorrect string was returned(%s)\n",buffer);
1597 len = sizeof(buffer);
1598 strcpy(buffer,"Warning");
1599 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1600 buffer,&len,&index),"Failed to get second header\n");
1601 ok(index == 2, "Index was not incremented\n");
1602 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1603 len = sizeof(buffer);
1604 strcpy(buffer,"Warning");
1605 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1606 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1608 ok(HttpAddRequestHeaders(hRequest,"Warning:test3",-1,HTTP_ADDREQ_FLAG_REPLACE), "Failed to replace header using HTTP_ADDREQ_FLAG_REPLACE\n");
1611 len = sizeof(buffer);
1612 strcpy(buffer,"Warning");
1613 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1614 buffer,&len,&index),"Unable to query header\n");
1615 ok(index == 1, "Index was not incremented\n");
1616 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1617 len = sizeof(buffer);
1618 strcpy(buffer,"Warning");
1619 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1620 buffer,&len,&index),"Failed to get second header\n");
1621 ok(index == 2, "Index was not incremented\n");
1622 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1623 len = sizeof(buffer);
1624 strcpy(buffer,"Warning");
1625 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1626 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1628 ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1,HTTP_ADDREQ_FLAG_ADD_IF_NEW)==0, "HTTP_ADDREQ_FLAG_ADD_IF_NEW replaced existing header\n");
1631 len = sizeof(buffer);
1632 strcpy(buffer,"Warning");
1633 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1634 buffer,&len,&index),"Unable to query header\n");
1635 ok(index == 1, "Index was not incremented\n");
1636 ok(strcmp(buffer,"test2")==0, "incorrect string was returned(%s)\n",buffer);
1637 len = sizeof(buffer);
1638 strcpy(buffer,"Warning");
1639 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1640 buffer,&len,&index),"Failed to get second header\n");
1641 ok(index == 2, "Index was not incremented\n");
1642 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1643 len = sizeof(buffer);
1644 strcpy(buffer,"Warning");
1645 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1646 buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1648 ok(HttpAddRequestHeaders(hRequest,"Warning:test4",-1, HTTP_ADDREQ_FLAG_COALESCE), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1651 len = sizeof(buffer);
1652 strcpy(buffer,"Warning");
1653 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS,
1654 buffer,&len,&index),"Unable to query header\n");
1655 ok(index == 1, "Index was not incremented\n");
1656 ok(strcmp(buffer,"test2, test4")==0, "incorrect string was returned(%s)\n", buffer);
1657 len = sizeof(buffer);
1658 strcpy(buffer,"Warning");
1659 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1660 ok(index == 2, "Index was not incremented\n");
1661 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1662 len = sizeof(buffer);
1663 strcpy(buffer,"Warning");
1664 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1666 ok(HttpAddRequestHeaders(hRequest,"Warning:test5",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1669 len = sizeof(buffer);
1670 strcpy(buffer,"Warning");
1671 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1672 ok(index == 1, "Index was not incremented\n");
1673 ok(strcmp(buffer,"test2, test4, test5")==0, "incorrect string was returned(%s)\n",buffer);
1674 len = sizeof(buffer);
1675 strcpy(buffer,"Warning");
1676 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1677 ok(index == 2, "Index was not incremented\n");
1678 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1679 len = sizeof(buffer);
1680 strcpy(buffer,"Warning");
1681 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1683 ok(HttpAddRequestHeaders(hRequest,"Warning:test6",-1, HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON), "HTTP_ADDREQ_FLAG_COALESCE Did not work\n");
1686 len = sizeof(buffer);
1687 strcpy(buffer,"Warning");
1688 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1689 ok(index == 1, "Index was not incremented\n");
1690 ok(strcmp(buffer,"test2, test4, test5; test6")==0, "incorrect string was returned(%s)\n",buffer);
1691 len = sizeof(buffer);
1692 strcpy(buffer,"Warning");
1693 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1694 ok(index == 2, "Index was not incremented\n");
1695 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1696 len = sizeof(buffer);
1697 strcpy(buffer,"Warning");
1698 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1700 ok(HttpAddRequestHeaders(hRequest,"Warning:test7",-1, HTTP_ADDREQ_FLAG_ADD|HTTP_ADDREQ_FLAG_REPLACE), "HTTP_ADDREQ_FLAG_ADD with HTTP_ADDREQ_FLAG_REPALCE Did not work\n");
1703 len = sizeof(buffer);
1704 strcpy(buffer,"Warning");
1705 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1706 ok(index == 1, "Index was not incremented\n");
1707 ok(strcmp(buffer,"test3")==0, "incorrect string was returned(%s)\n",buffer);
1708 len = sizeof(buffer);
1709 strcpy(buffer,"Warning");
1710 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Failed to get second header\n");
1711 ok(index == 2, "Index was not incremented\n");
1712 ok(strcmp(buffer,"test7")==0, "incorrect string was returned(%s)\n",buffer);
1713 len = sizeof(buffer);
1714 strcpy(buffer,"Warning");
1715 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index)==0,"Third Header Should Not Exist\n");
1717 /* Ensure that blank headers are ignored and don't cause a failure */
1718 ok(HttpAddRequestHeaders(hRequest,"\r\nBlankTest:value\r\n\r\n",-1, HTTP_ADDREQ_FLAG_ADD_IF_NEW), "Failed to add header with blank entries in list\n");
1721 len = sizeof(buffer);
1722 strcpy(buffer,"BlankTest");
1723 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1724 ok(index == 1, "Index was not incremented\n");
1725 ok(strcmp(buffer,"value")==0, "incorrect string was returned(%s)\n",buffer);
1727 /* Ensure that malformed header separators are ignored and don't cause a failure */
1728 ok(HttpAddRequestHeaders(hRequest,"\r\rMalformedTest:value\n\nMalformedTestTwo: value2\rMalformedTestThree: value3\n\n\r\r\n",-1, HTTP_ADDREQ_FLAG_ADD|HTTP_ADDREQ_FLAG_REPLACE),
1729 "Failed to add header with malformed entries in list\n");
1732 len = sizeof(buffer);
1733 strcpy(buffer,"MalformedTest");
1734 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1735 ok(index == 1, "Index was not incremented\n");
1736 ok(strcmp(buffer,"value")==0, "incorrect string was returned(%s)\n",buffer);
1738 len = sizeof(buffer);
1739 strcpy(buffer,"MalformedTestTwo");
1740 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1741 ok(index == 1, "Index was not incremented\n");
1742 ok(strcmp(buffer,"value2")==0, "incorrect string was returned(%s)\n",buffer);
1744 len = sizeof(buffer);
1745 strcpy(buffer,"MalformedTestThree");
1746 ok(HttpQueryInfo(hRequest,HTTP_QUERY_CUSTOM|HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer,&len,&index),"Unable to query header\n");
1747 ok(index == 1, "Index was not incremented\n");
1748 ok(strcmp(buffer,"value3")==0, "incorrect string was returned(%s)\n",buffer);
1750 ok(InternetCloseHandle(hRequest), "Close request handle failed\n");
1752 ok(InternetCloseHandle(hConnect), "Close connect handle failed\n");
1753 ok(InternetCloseHandle(hSession), "Close session handle failed\n");
1756 static const char garbagemsg[] =
1757 "Garbage: Header\r\n";
1759 static const char contmsg[] =
1760 "HTTP/1.1 100 Continue\r\n";
1762 static const char expandcontmsg[] =
1763 "HTTP/1.1 100 Continue\r\n"
1764 "Server: winecontinue\r\n"
1765 "Tag: something witty\r\n"
1768 static const char okmsg[] =
1769 "HTTP/1.1 200 OK\r\n"
1770 "Server: winetest\r\n"
1773 static const char okmsg2[] =
1774 "HTTP/1.1 200 OK\r\n"
1775 "Date: Mon, 01 Dec 2008 13:44:34 GMT\r\n"
1776 "Server: winetest\r\n"
1777 "Content-Length: 0\r\n"
1778 "Set-Cookie: one\r\n"
1779 "Set-Cookie: two\r\n"
1782 static const char notokmsg[] =
1783 "HTTP/1.1 400 Bad Request\r\n"
1784 "Server: winetest\r\n"
1787 static const char noauthmsg[] =
1788 "HTTP/1.1 401 Unauthorized\r\n"
1789 "Server: winetest\r\n"
1790 "Connection: close\r\n"
1791 "WWW-Authenticate: Basic realm=\"placebo\"\r\n"
1794 static const char noauthmsg2[] =
1795 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed\r\n"
1796 "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"
1798 "Server: winetest\r\n";
1800 static const char proxymsg[] =
1801 "HTTP/1.1 407 Proxy Authentication Required\r\n"
1802 "Server: winetest\r\n"
1803 "Proxy-Connection: close\r\n"
1804 "Proxy-Authenticate: Basic realm=\"placebo\"\r\n"
1807 static const char page1[] =
1809 "<HEAD><TITLE>wininet test page</TITLE></HEAD>\r\n"
1810 "<BODY>The quick brown fox jumped over the lazy dog<P></BODY>\r\n"
1813 struct server_info {
1818 static DWORD CALLBACK server_thread(LPVOID param)
1820 struct server_info *si = param;
1823 struct sockaddr_in sa;
1826 int last_request = 0;
1827 char host_header[22];
1828 static int test_b = 0;
1829 static int test_no_cache = 0;
1831 WSAStartup(MAKEWORD(1,1), &wsaData);
1833 s = socket(AF_INET, SOCK_STREAM, 0);
1834 if (s == INVALID_SOCKET)
1838 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof on);
1840 memset(&sa, 0, sizeof sa);
1841 sa.sin_family = AF_INET;
1842 sa.sin_port = htons(si->port);
1843 sa.sin_addr.S_un.S_addr = inet_addr("127.0.0.1");
1845 r = bind(s, (struct sockaddr*) &sa, sizeof sa);
1851 SetEvent(si->hEvent);
1853 sprintf(host_header, "Host: localhost:%d", si->port);
1857 c = accept(s, NULL, NULL);
1859 memset(buffer, 0, sizeof buffer);
1860 for(i=0; i<(sizeof buffer-1); i++)
1862 r = recv(c, &buffer[i], 1, 0);
1866 if (buffer[i-2] == '\n' && buffer[i] == '\n' &&
1867 buffer[i-3] == '\r' && buffer[i-1] == '\r')
1870 if (strstr(buffer, "GET /test1"))
1872 if (!strstr(buffer, "Content-Length: 0"))
1874 send(c, okmsg, sizeof okmsg-1, 0);
1875 send(c, page1, sizeof page1-1, 0);
1878 send(c, notokmsg, sizeof notokmsg-1, 0);
1880 if (strstr(buffer, "/test2"))
1882 if (strstr(buffer, "Proxy-Authorization: Basic bWlrZToxMTAx"))
1884 send(c, okmsg, sizeof okmsg-1, 0);
1885 send(c, page1, sizeof page1-1, 0);
1888 send(c, proxymsg, sizeof proxymsg-1, 0);
1890 if (strstr(buffer, "/test3"))
1892 if (strstr(buffer, "Authorization: Basic dXNlcjpwd2Q="))
1893 send(c, okmsg, sizeof okmsg-1, 0);
1895 send(c, noauthmsg, sizeof noauthmsg-1, 0);
1897 if (strstr(buffer, "/test4"))
1899 if (strstr(buffer, "Connection: Close"))
1900 send(c, okmsg, sizeof okmsg-1, 0);
1902 send(c, notokmsg, sizeof notokmsg-1, 0);
1904 if (strstr(buffer, "POST /test5") ||
1905 strstr(buffer, "RPC_IN_DATA /test5") ||
1906 strstr(buffer, "RPC_OUT_DATA /test5"))
1908 if (strstr(buffer, "Content-Length: 0"))
1910 send(c, okmsg, sizeof okmsg-1, 0);
1911 send(c, page1, sizeof page1-1, 0);
1914 send(c, notokmsg, sizeof notokmsg-1, 0);
1916 if (strstr(buffer, "GET /test6"))
1918 send(c, contmsg, sizeof contmsg-1, 0);
1919 send(c, contmsg, sizeof contmsg-1, 0);
1920 send(c, okmsg, sizeof okmsg-1, 0);
1921 send(c, page1, sizeof page1-1, 0);
1923 if (strstr(buffer, "POST /test7"))
1925 if (strstr(buffer, "Content-Length: 100"))
1927 send(c, okmsg, sizeof okmsg-1, 0);
1928 send(c, page1, sizeof page1-1, 0);
1931 send(c, notokmsg, sizeof notokmsg-1, 0);
1933 if (strstr(buffer, "/test8"))
1935 if (!strstr(buffer, "Connection: Close") &&
1936 strstr(buffer, "Connection: Keep-Alive") &&
1937 !strstr(buffer, "Cache-Control: no-cache") &&
1938 !strstr(buffer, "Pragma: no-cache") &&
1939 strstr(buffer, host_header))
1940 send(c, okmsg, sizeof okmsg-1, 0);
1942 send(c, notokmsg, sizeof notokmsg-1, 0);
1944 if (strstr(buffer, "/test9"))
1946 if (!strstr(buffer, "Connection: Close") &&
1947 !strstr(buffer, "Connection: Keep-Alive") &&
1948 !strstr(buffer, "Cache-Control: no-cache") &&
1949 !strstr(buffer, "Pragma: no-cache") &&
1950 strstr(buffer, host_header))
1951 send(c, okmsg, sizeof okmsg-1, 0);
1953 send(c, notokmsg, sizeof notokmsg-1, 0);
1955 if (strstr(buffer, "/testA"))
1957 if (!strstr(buffer, "Connection: Close") &&
1958 !strstr(buffer, "Connection: Keep-Alive") &&
1959 (strstr(buffer, "Cache-Control: no-cache") ||
1960 strstr(buffer, "Pragma: no-cache")) &&
1961 strstr(buffer, host_header))
1962 send(c, okmsg, sizeof okmsg-1, 0);
1964 send(c, notokmsg, sizeof notokmsg-1, 0);
1966 if (!test_b && strstr(buffer, "/testB HTTP/1.1"))
1969 send(c, okmsg, sizeof okmsg-1, 0);
1970 recvfrom(c, buffer, sizeof buffer, 0, NULL, NULL);
1971 send(c, okmsg, sizeof okmsg-1, 0);
1973 if (strstr(buffer, "/testC"))
1975 if (strstr(buffer, "Cookie: cookie=biscuit"))
1976 send(c, okmsg, sizeof okmsg-1, 0);
1978 send(c, notokmsg, sizeof notokmsg-1, 0);
1980 if (strstr(buffer, "/testD"))
1982 send(c, okmsg2, sizeof okmsg2-1, 0);
1984 if (strstr(buffer, "/testE"))
1986 send(c, noauthmsg2, sizeof noauthmsg2-1, 0);
1988 if (strstr(buffer, "GET /quit"))
1990 send(c, okmsg, sizeof okmsg-1, 0);
1991 send(c, page1, sizeof page1-1, 0);
1994 if (strstr(buffer, "GET /testF"))
1996 send(c, expandcontmsg, sizeof expandcontmsg-1, 0);
1997 send(c, garbagemsg, sizeof garbagemsg-1, 0);
1998 send(c, contmsg, sizeof contmsg-1, 0);
1999 send(c, garbagemsg, sizeof garbagemsg-1, 0);
2000 send(c, okmsg, sizeof okmsg-1, 0);
2001 send(c, page1, sizeof page1-1, 0);
2003 if (strstr(buffer, "GET /testG"))
2005 send(c, page1, sizeof page1-1, 0);
2007 if (strstr(buffer, "GET /test_no_content"))
2009 static const char nocontentmsg[] = "HTTP/1.1 204 No Content\r\nConnection: close\r\n\r\n";
2010 send(c, nocontentmsg, sizeof(nocontentmsg)-1, 0);
2012 if (strstr(buffer, "GET /test_conn_close"))
2014 static const char conn_close_response[] = "HTTP/1.1 200 OK\r\nConnection: close\r\n\r\nsome content";
2015 send(c, conn_close_response, sizeof(conn_close_response)-1, 0);
2016 WaitForSingleObject(conn_close_event, INFINITE);
2017 trace("closing connection\n");
2019 if (strstr(buffer, "GET /test_cache_control_no_cache"))
2021 static const char no_cache_response[] = "HTTP/1.1 200 OK\r\nCache-Control: no-cache\r\n\r\nsome content";
2022 if(!test_no_cache++)
2023 send(c, no_cache_response, sizeof(no_cache_response)-1, 0);
2025 send(c, okmsg, sizeof(okmsg)-1, 0);
2027 if (strstr(buffer, "GET /test_cache_control_no_store"))
2029 static const char no_cache_response[] = "HTTP/1.1 200 OK\r\nCache-Control: junk, \t No-StOrE\r\n\r\nsome content";
2030 send(c, no_cache_response, sizeof(no_cache_response)-1, 0);
2032 if (strstr(buffer, "GET /test_premature_disconnect"))
2033 trace("closing connection\n");
2037 } while (!last_request);
2044 static void test_basic_request(int port, const char *verb, const char *url)
2046 HINTERNET hi, hc, hr;
2050 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2051 ok(hi != NULL, "open failed\n");
2053 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2054 ok(hc != NULL, "connect failed\n");
2056 hr = HttpOpenRequest(hc, verb, url, NULL, NULL, NULL, 0, 0);
2057 ok(hr != NULL, "HttpOpenRequest failed\n");
2059 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2060 ok(r, "HttpSendRequest failed\n");
2063 memset(buffer, 0, sizeof buffer);
2064 SetLastError(0xdeadbeef);
2065 r = InternetReadFile(hr, buffer, sizeof buffer, &count);
2066 ok(r, "InternetReadFile failed %u\n", GetLastError());
2067 ok(count == sizeof page1 - 1, "count was wrong\n");
2068 ok(!memcmp(buffer, page1, sizeof page1), "http data wrong, got: %s\n", buffer);
2070 InternetCloseHandle(hr);
2071 InternetCloseHandle(hc);
2072 InternetCloseHandle(hi);
2075 static void test_last_error(int port)
2077 HINTERNET hi, hc, hr;
2081 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2082 ok(hi != NULL, "open failed\n");
2084 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2085 ok(hc != NULL, "connect failed\n");
2087 hr = HttpOpenRequest(hc, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2088 ok(hr != NULL, "HttpOpenRequest failed\n");
2090 SetLastError(0xdeadbeef);
2091 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2092 error = GetLastError();
2093 ok(r, "HttpSendRequest failed\n");
2094 ok(error == ERROR_SUCCESS || broken(error != ERROR_SUCCESS), "expected ERROR_SUCCESS, got %u\n", error);
2096 InternetCloseHandle(hr);
2097 InternetCloseHandle(hc);
2098 InternetCloseHandle(hi);
2101 static void test_proxy_indirect(int port)
2103 HINTERNET hi, hc, hr;
2107 hi = InternetOpen(NULL, 0, NULL, NULL, 0);
2108 ok(hi != NULL, "open failed\n");
2110 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2111 ok(hc != NULL, "connect failed\n");
2113 hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
2114 ok(hr != NULL, "HttpOpenRequest failed\n");
2116 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2117 ok(r, "HttpSendRequest failed %u\n", GetLastError());
2120 r = HttpQueryInfo(hr, HTTP_QUERY_PROXY_AUTHENTICATE, buffer, &sz, NULL);
2121 ok(r || GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo failed: %d\n", GetLastError());
2124 skip("missing proxy header, not testing remaining proxy headers\n");
2127 ok(!strcmp(buffer, "Basic realm=\"placebo\""), "proxy auth info wrong\n");
2129 test_status_code(hr, 407);
2130 test_request_flags(hr, 0);
2133 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &sz, NULL);
2134 ok(r, "HttpQueryInfo failed\n");
2135 ok(!strcmp(buffer, "Proxy Authentication Required"), "proxy text wrong\n");
2138 r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &sz, NULL);
2139 ok(r, "HttpQueryInfo failed\n");
2140 ok(!strcmp(buffer, "HTTP/1.1"), "http version wrong\n");
2143 r = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &sz, NULL);
2144 ok(r, "HttpQueryInfo failed\n");
2145 ok(!strcmp(buffer, "winetest"), "http server wrong\n");
2148 r = HttpQueryInfo(hr, HTTP_QUERY_CONTENT_ENCODING, buffer, &sz, NULL);
2149 ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfo should fail\n");
2150 ok(r == FALSE, "HttpQueryInfo failed\n");
2153 InternetCloseHandle(hr);
2154 InternetCloseHandle(hc);
2155 InternetCloseHandle(hi);
2158 static void test_proxy_direct(int port)
2160 HINTERNET hi, hc, hr;
2162 char buffer[0x40], *url;
2163 WCHAR bufferW[0x40];
2164 static CHAR username[] = "mike",
2165 password[] = "1101",
2166 useragent[] = "winetest",
2167 url_fmt[] = "http://test.winehq.org:%u/test2";
2168 static WCHAR usernameW[] = {'m','i','k','e',0},
2169 passwordW[] = {'1','1','0','1',0},
2170 useragentW[] = {'w','i','n','e','t','e','s','t',0};
2172 sprintf(buffer, "localhost:%d\n", port);
2173 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_PROXY, buffer, NULL, 0);
2174 ok(hi != NULL, "open failed\n");
2176 /* try connect without authorization */
2177 hc = InternetConnect(hi, "test.winehq.org", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2178 ok(hc != NULL, "connect failed\n");
2180 hr = HttpOpenRequest(hc, NULL, "/test2", NULL, NULL, NULL, 0, 0);
2181 ok(hr != NULL, "HttpOpenRequest failed\n");
2183 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2184 ok(r, "HttpSendRequest failed %u\n", GetLastError());
2186 test_status_code(hr, 407);
2188 /* set the user + password then try again */
2189 r = InternetSetOption(hi, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2190 ok(!r, "unexpected success\n");
2192 r = InternetSetOption(hc, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2193 ok(r, "failed to set user\n");
2195 r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 4);
2196 ok(r, "failed to set user\n");
2200 SetLastError(0xdeadbeef);
2201 r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2202 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2203 ok(!r, "unexpected success\n");
2204 ok(sz == strlen(username) + 1, "got %u\n", sz);
2208 SetLastError(0xdeadbeef);
2209 r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_USERNAME, bufferW, &sz);
2210 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2211 ok(!r, "unexpected success\n");
2212 ok(sz == (lstrlenW(usernameW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2215 sz = sizeof(buffer);
2216 r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2217 ok(r, "failed to get username\n");
2218 ok(!strcmp(buffer, username), "got %s\n", buffer);
2219 ok(sz == strlen(username), "got %u\n", sz);
2222 sz = sizeof(bufferW);
2223 r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_USERNAME, bufferW, &sz);
2224 ok(r, "failed to get username\n");
2225 ok(!lstrcmpW(bufferW, usernameW), "wrong username\n");
2226 ok(sz == lstrlenW(usernameW), "got %u\n", sz);
2228 r = InternetSetOption(hr, INTERNET_OPTION_PROXY_USERNAME, username, 1);
2229 ok(r, "failed to set user\n");
2232 sz = sizeof(buffer);
2233 r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_USERNAME, buffer, &sz);
2234 ok(r, "failed to get username\n");
2235 ok(!strcmp(buffer, username), "got %s\n", buffer);
2236 ok(sz == strlen(username), "got %u\n", sz);
2238 r = InternetSetOption(hi, INTERNET_OPTION_USER_AGENT, useragent, 1);
2239 ok(r, "failed to set useragent\n");
2243 SetLastError(0xdeadbeef);
2244 r = InternetQueryOption(hi, INTERNET_OPTION_USER_AGENT, buffer, &sz);
2245 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2246 ok(!r, "unexpected success\n");
2247 ok(sz == strlen(useragent) + 1, "got %u\n", sz);
2250 sz = sizeof(buffer);
2251 r = InternetQueryOption(hi, INTERNET_OPTION_USER_AGENT, buffer, &sz);
2252 ok(r, "failed to get user agent\n");
2253 ok(!strcmp(buffer, useragent), "got %s\n", buffer);
2254 ok(sz == strlen(useragent), "got %u\n", sz);
2258 SetLastError(0xdeadbeef);
2259 r = InternetQueryOptionW(hi, INTERNET_OPTION_USER_AGENT, bufferW, &sz);
2260 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2261 ok(!r, "unexpected success\n");
2262 ok(sz == (lstrlenW(useragentW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2265 sz = sizeof(bufferW);
2266 r = InternetQueryOptionW(hi, INTERNET_OPTION_USER_AGENT, bufferW, &sz);
2267 ok(r, "failed to get user agent\n");
2268 ok(!lstrcmpW(bufferW, useragentW), "wrong user agent\n");
2269 ok(sz == lstrlenW(useragentW), "got %u\n", sz);
2271 r = InternetSetOption(hr, INTERNET_OPTION_USERNAME, username, 1);
2272 ok(r, "failed to set user\n");
2276 SetLastError(0xdeadbeef);
2277 r = InternetQueryOption(hr, INTERNET_OPTION_USERNAME, buffer, &sz);
2278 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2279 ok(!r, "unexpected success\n");
2280 ok(sz == strlen(username) + 1, "got %u\n", sz);
2283 sz = sizeof(buffer);
2284 r = InternetQueryOption(hr, INTERNET_OPTION_USERNAME, buffer, &sz);
2285 ok(r, "failed to get user\n");
2286 ok(!strcmp(buffer, username), "got %s\n", buffer);
2287 ok(sz == strlen(username), "got %u\n", sz);
2291 SetLastError(0xdeadbeef);
2292 r = InternetQueryOptionW(hr, INTERNET_OPTION_USERNAME, bufferW, &sz);
2293 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2294 ok(!r, "unexpected success\n");
2295 ok(sz == (lstrlenW(usernameW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2298 sz = sizeof(bufferW);
2299 r = InternetQueryOptionW(hr, INTERNET_OPTION_USERNAME, bufferW, &sz);
2300 ok(r, "failed to get user\n");
2301 ok(!lstrcmpW(bufferW, usernameW), "wrong user\n");
2302 ok(sz == lstrlenW(usernameW), "got %u\n", sz);
2304 r = InternetSetOption(hr, INTERNET_OPTION_PASSWORD, password, 1);
2305 ok(r, "failed to set password\n");
2309 SetLastError(0xdeadbeef);
2310 r = InternetQueryOption(hr, INTERNET_OPTION_PASSWORD, buffer, &sz);
2311 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2312 ok(!r, "unexpected success\n");
2313 ok(sz == strlen(password) + 1, "got %u\n", sz);
2316 sz = sizeof(buffer);
2317 r = InternetQueryOption(hr, INTERNET_OPTION_PASSWORD, buffer, &sz);
2318 ok(r, "failed to get password\n");
2319 ok(!strcmp(buffer, password), "got %s\n", buffer);
2320 ok(sz == strlen(password), "got %u\n", sz);
2324 SetLastError(0xdeadbeef);
2325 r = InternetQueryOptionW(hr, INTERNET_OPTION_PASSWORD, bufferW, &sz);
2326 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2327 ok(!r, "unexpected success\n");
2328 ok(sz == (lstrlenW(passwordW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2331 sz = sizeof(bufferW);
2332 r = InternetQueryOptionW(hr, INTERNET_OPTION_PASSWORD, bufferW, &sz);
2333 ok(r, "failed to get password\n");
2334 ok(!lstrcmpW(bufferW, passwordW), "wrong password\n");
2335 ok(sz == lstrlenW(passwordW), "got %u\n", sz);
2337 url = HeapAlloc(GetProcessHeap(), 0, strlen(url_fmt) + 11);
2338 sprintf(url, url_fmt, port);
2341 SetLastError(0xdeadbeef);
2342 r = InternetQueryOption(hr, INTERNET_OPTION_URL, buffer, &sz);
2343 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2344 ok(!r, "unexpected success\n");
2345 ok(sz == strlen(url) + 1, "got %u\n", sz);
2348 sz = sizeof(buffer);
2349 r = InternetQueryOption(hr, INTERNET_OPTION_URL, buffer, &sz);
2350 ok(r, "failed to get url\n");
2351 ok(!strcmp(buffer, url), "got %s\n", buffer);
2352 ok(sz == strlen(url), "got %u\n", sz);
2356 SetLastError(0xdeadbeef);
2357 r = InternetQueryOptionW(hr, INTERNET_OPTION_URL, bufferW, &sz);
2358 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2359 ok(!r, "unexpected success\n");
2360 ok(sz == (strlen(url) + 1) * sizeof(WCHAR), "got %u\n", sz);
2363 sz = sizeof(bufferW);
2364 r = InternetQueryOptionW(hr, INTERNET_OPTION_URL, bufferW, &sz);
2365 ok(r, "failed to get url\n");
2366 ok(!strcmp_wa(bufferW, url), "wrong url\n");
2367 ok(sz == strlen(url), "got %u\n", sz);
2368 HeapFree(GetProcessHeap(), 0, url);
2370 r = InternetSetOption(hr, INTERNET_OPTION_PROXY_PASSWORD, password, 4);
2371 ok(r, "failed to set password\n");
2375 SetLastError(0xdeadbeef);
2376 r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_PASSWORD, buffer, &sz);
2377 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2378 ok(!r, "unexpected success\n");
2379 ok(sz == strlen(password) + 1, "got %u\n", sz);
2382 sz = sizeof(buffer);
2383 r = InternetQueryOption(hr, INTERNET_OPTION_PROXY_PASSWORD, buffer, &sz);
2384 ok(r, "failed to get password\n");
2385 ok(!strcmp(buffer, password), "got %s\n", buffer);
2386 ok(sz == strlen(password), "got %u\n", sz);
2390 SetLastError(0xdeadbeef);
2391 r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_PASSWORD, bufferW, &sz);
2392 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
2393 ok(!r, "unexpected success\n");
2394 ok(sz == (lstrlenW(passwordW) + 1) * sizeof(WCHAR), "got %u\n", sz);
2397 sz = sizeof(bufferW);
2398 r = InternetQueryOptionW(hr, INTERNET_OPTION_PROXY_PASSWORD, bufferW, &sz);
2399 ok(r, "failed to get password\n");
2400 ok(!lstrcmpW(bufferW, passwordW), "wrong password\n");
2401 ok(sz == lstrlenW(passwordW), "got %u\n", sz);
2403 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2404 ok(r, "HttpSendRequest failed %u\n", GetLastError());
2406 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_CODE, buffer, &sz, NULL);
2407 ok(r, "HttpQueryInfo failed\n");
2408 ok(!strcmp(buffer, "200"), "proxy code wrong\n");
2410 InternetCloseHandle(hr);
2411 InternetCloseHandle(hc);
2412 InternetCloseHandle(hi);
2415 static void test_header_handling_order(int port)
2417 static char authorization[] = "Authorization: Basic dXNlcjpwd2Q=";
2418 static char connection[] = "Connection: Close";
2420 static const char *types[2] = { "*", NULL };
2421 HINTERNET session, connect, request;
2425 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2426 ok(session != NULL, "InternetOpen failed\n");
2428 connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2429 ok(connect != NULL, "InternetConnect failed\n");
2431 request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2432 ok(request != NULL, "HttpOpenRequest failed\n");
2434 ret = HttpAddRequestHeaders(request, authorization, ~0u, HTTP_ADDREQ_FLAG_ADD);
2435 ok(ret, "HttpAddRequestHeaders failed\n");
2437 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2438 ok(ret, "HttpSendRequest failed\n");
2440 test_status_code(request, 200);
2441 test_request_flags(request, 0);
2443 InternetCloseHandle(request);
2445 request = HttpOpenRequest(connect, NULL, "/test4", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2446 ok(request != NULL, "HttpOpenRequest failed\n");
2448 ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2449 ok(ret, "HttpSendRequest failed\n");
2452 size = sizeof(status);
2453 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2454 ok(ret, "HttpQueryInfo failed\n");
2455 ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2457 InternetCloseHandle(request);
2459 request = HttpOpenRequest(connect, "POST", "/test7", NULL, NULL, types, INTERNET_FLAG_KEEP_CONNECTION, 0);
2460 ok(request != NULL, "HttpOpenRequest failed\n");
2462 ret = HttpAddRequestHeaders(request, "Content-Length: 100\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
2463 ok(ret, "HttpAddRequestHeaders failed\n");
2465 ret = HttpSendRequest(request, connection, ~0u, NULL, 0);
2466 ok(ret, "HttpSendRequest failed\n");
2469 size = sizeof(status);
2470 ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
2471 ok(ret, "HttpQueryInfo failed\n");
2472 ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
2474 InternetCloseHandle(request);
2475 InternetCloseHandle(connect);
2476 InternetCloseHandle(session);
2479 static void test_connection_header(int port)
2481 HINTERNET ses, con, req;
2484 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2485 ok(ses != NULL, "InternetOpen failed\n");
2487 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2488 ok(con != NULL, "InternetConnect failed\n");
2490 req = HttpOpenRequest(con, NULL, "/test8", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2491 ok(req != NULL, "HttpOpenRequest failed\n");
2493 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2494 ok(ret, "HttpSendRequest failed\n");
2496 test_status_code(req, 200);
2498 InternetCloseHandle(req);
2500 req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, 0, 0);
2501 ok(req != NULL, "HttpOpenRequest failed\n");
2503 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2504 ok(ret, "HttpSendRequest failed\n");
2506 test_status_code(req, 200);
2508 InternetCloseHandle(req);
2510 req = HttpOpenRequest(con, NULL, "/test9", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2511 ok(req != NULL, "HttpOpenRequest failed\n");
2513 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2514 ok(ret, "HttpSendRequest failed\n");
2516 test_status_code(req, 200);
2518 InternetCloseHandle(req);
2520 req = HttpOpenRequest(con, "POST", "/testA", NULL, NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE, 0);
2521 ok(req != NULL, "HttpOpenRequest failed\n");
2523 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2524 ok(ret, "HttpSendRequest failed\n");
2526 test_status_code(req, 200);
2528 InternetCloseHandle(req);
2529 InternetCloseHandle(con);
2530 InternetCloseHandle(ses);
2533 static void test_http1_1(int port)
2535 HINTERNET ses, con, req;
2538 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2539 ok(ses != NULL, "InternetOpen failed\n");
2541 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2542 ok(con != NULL, "InternetConnect failed\n");
2544 req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2545 ok(req != NULL, "HttpOpenRequest failed\n");
2547 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2550 InternetCloseHandle(req);
2552 req = HttpOpenRequest(con, NULL, "/testB", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2553 ok(req != NULL, "HttpOpenRequest failed\n");
2555 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2556 ok(ret, "HttpSendRequest failed\n");
2559 InternetCloseHandle(req);
2560 InternetCloseHandle(con);
2561 InternetCloseHandle(ses);
2564 static void test_no_content(int port)
2566 HINTERNET session, connection, req;
2569 trace("Testing 204 no content response...\n");
2571 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2573 session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2574 ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2576 pInternetSetStatusCallbackA(session, callback);
2578 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2579 connection = InternetConnectA(session, "localhost", port,
2580 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2581 ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2582 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2584 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2585 req = HttpOpenRequestA(connection, "GET", "/test_no_content", NULL, NULL, NULL,
2586 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2587 ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2588 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2590 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2591 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2592 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2593 SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2594 SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2595 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2596 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2597 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2598 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2599 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2601 res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2602 ok(!res && (GetLastError() == ERROR_IO_PENDING),
2603 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2604 WaitForSingleObject(hCompleteEvent, INFINITE);
2605 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2607 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2608 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2609 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2610 CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2611 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2612 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2613 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2614 CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2615 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2616 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2618 close_async_handle(session, hCompleteEvent, 2);
2619 CloseHandle(hCompleteEvent);
2622 static void test_conn_close(int port)
2624 HINTERNET session, connection, req;
2625 DWORD res, avail, size;
2628 trace("Testing connection close connection...\n");
2630 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2631 conn_close_event = CreateEvent(NULL, FALSE, FALSE, NULL);
2633 session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
2634 ok(session != NULL,"InternetOpen failed with error %u\n", GetLastError());
2636 pInternetSetStatusCallbackA(session, callback);
2638 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2639 connection = InternetConnectA(session, "localhost", port,
2640 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
2641 ok(connection != NULL,"InternetConnect failed with error %u\n", GetLastError());
2642 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2644 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
2645 req = HttpOpenRequestA(connection, "GET", "/test_conn_close", NULL, NULL, NULL,
2646 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
2647 ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
2648 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
2650 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
2651 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
2652 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
2653 SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
2654 SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
2655 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
2656 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
2657 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2659 res = HttpSendRequestA(req, NULL, -1, NULL, 0);
2660 ok(!res && (GetLastError() == ERROR_IO_PENDING),
2661 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2662 WaitForSingleObject(hCompleteEvent, INFINITE);
2663 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2665 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
2666 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
2667 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
2668 CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
2669 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
2670 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
2671 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
2672 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2675 res = InternetQueryDataAvailable(req, &avail, 0, 0);
2676 ok(res, "InternetQueryDataAvailable failed: %u\n", GetLastError());
2677 ok(avail != 0, "avail = 0\n");
2680 res = InternetReadFile(req, buf, avail, &size);
2681 ok(res, "InternetReadFile failed: %u\n", GetLastError());
2683 res = InternetQueryDataAvailable(req, &avail, 0, 0);
2684 ok(!res && (GetLastError() == ERROR_IO_PENDING),
2685 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
2686 ok(!avail, "avail = %u, expected 0\n", avail);
2688 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
2689 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
2690 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
2691 SetEvent(conn_close_event);
2692 WaitForSingleObject(hCompleteEvent, INFINITE);
2693 ok(req_error == ERROR_SUCCESS, "req_error = %u\n", req_error);
2694 CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
2695 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
2696 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
2698 close_async_handle(session, hCompleteEvent, 2);
2699 CloseHandle(hCompleteEvent);
2702 static void test_no_cache(int port)
2704 static const char cache_control_no_cache[] = "/test_cache_control_no_cache";
2705 static const char cache_control_no_store[] = "/test_cache_control_no_store";
2706 static const char cache_url_fmt[] = "http://localhost:%d%s";
2708 char cache_url[256], buf[256];
2709 HINTERNET ses, con, req;
2713 trace("Testing no-cache header\n");
2715 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2716 ok(ses != NULL,"InternetOpen failed with error %u\n", GetLastError());
2718 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2719 ok(con != NULL, "InternetConnect failed with error %u\n", GetLastError());
2721 req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2722 ok(req != NULL, "HttpOpenRequest failed\n");
2724 sprintf(cache_url, cache_url_fmt, port, cache_control_no_cache);
2725 DeleteUrlCacheEntry(cache_url);
2727 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2728 ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2730 while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2732 ok(size == 12, "read %d bytes of data\n", size);
2733 InternetCloseHandle(req);
2735 req = HttpOpenRequest(con, NULL, cache_control_no_cache, NULL, NULL, NULL, 0, 0);
2736 ok(req != NULL, "HttpOpenRequest failed\n");
2738 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2739 ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2741 while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2743 ok(size == 0, "read %d bytes of data\n", size);
2744 InternetCloseHandle(req);
2745 DeleteUrlCacheEntry(cache_url);
2747 req = HttpOpenRequest(con, NULL, cache_control_no_store, NULL, NULL, NULL, 0, 0);
2748 ok(req != NULL, "HttpOpenRequest failed\n");
2750 sprintf(cache_url, cache_url_fmt, port, cache_control_no_store);
2751 DeleteUrlCacheEntry(cache_url);
2753 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2754 ok(ret, "HttpSendRequest failed with error %u\n", GetLastError());
2756 while(InternetReadFile(req, buf, sizeof(buf), &read) && read)
2758 ok(size == 12, "read %d bytes of data\n", size);
2759 InternetCloseHandle(req);
2761 ret = DeleteUrlCacheEntry(cache_url);
2762 ok(!ret && GetLastError()==ERROR_FILE_NOT_FOUND, "cache entry should not exist\n");
2764 InternetCloseHandle(con);
2765 InternetCloseHandle(ses);
2768 static void test_HttpSendRequestW(int port)
2770 static const WCHAR header[] = {'U','A','-','C','P','U',':',' ','x','8','6',0};
2771 HINTERNET ses, con, req;
2775 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);
2776 ok(ses != NULL, "InternetOpen failed\n");
2778 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2779 ok(con != NULL, "InternetConnect failed\n");
2781 req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
2782 ok(req != NULL, "HttpOpenRequest failed\n");
2784 SetLastError(0xdeadbeef);
2785 ret = HttpSendRequestW(req, header, ~0u, NULL, 0);
2786 error = GetLastError();
2787 ok(!ret, "HttpSendRequestW succeeded\n");
2788 ok(error == ERROR_IO_PENDING ||
2789 broken(error == ERROR_HTTP_HEADER_NOT_FOUND) || /* IE6 */
2790 broken(error == ERROR_INVALID_PARAMETER), /* IE5 */
2791 "got %u expected ERROR_IO_PENDING\n", error);
2793 InternetCloseHandle(req);
2794 InternetCloseHandle(con);
2795 InternetCloseHandle(ses);
2798 static void test_cookie_header(int port)
2800 HINTERNET ses, con, req;
2805 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2806 ok(ses != NULL, "InternetOpen failed\n");
2808 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2809 ok(con != NULL, "InternetConnect failed\n");
2811 InternetSetCookie("http://localhost", "cookie", "biscuit");
2813 req = HttpOpenRequest(con, NULL, "/testC", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2814 ok(req != NULL, "HttpOpenRequest failed\n");
2817 size = sizeof(buffer);
2818 SetLastError(0xdeadbeef);
2819 ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2820 error = GetLastError();
2821 ok(!ret, "HttpQueryInfo succeeded\n");
2822 ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "got %u expected ERROR_HTTP_HEADER_NOT_FOUND\n", error);
2824 ret = HttpAddRequestHeaders(req, "Cookie: cookie=not biscuit\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD);
2825 ok(ret, "HttpAddRequestHeaders failed: %u\n", GetLastError());
2828 size = sizeof(buffer);
2829 ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2830 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2831 ok(!strcmp(buffer, "cookie=not biscuit"), "got '%s' expected \'cookie=not biscuit\'\n", buffer);
2833 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
2834 ok(ret, "HttpSendRequest failed: %u\n", GetLastError());
2836 test_status_code(req, 200);
2839 size = sizeof(buffer);
2840 ret = HttpQueryInfo(req, HTTP_QUERY_COOKIE | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
2841 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
2842 ok(!strcmp(buffer, "cookie=biscuit"), "got '%s' expected \'cookie=biscuit\'\n", buffer);
2844 InternetCloseHandle(req);
2845 InternetCloseHandle(con);
2846 InternetCloseHandle(ses);
2849 static void test_basic_authentication(int port)
2851 HINTERNET session, connect, request;
2854 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2855 ok(session != NULL, "InternetOpen failed\n");
2857 connect = InternetConnect(session, "localhost", port, "user", "pwd", INTERNET_SERVICE_HTTP, 0, 0);
2858 ok(connect != NULL, "InternetConnect failed\n");
2860 request = HttpOpenRequest(connect, NULL, "/test3", NULL, NULL, NULL, 0, 0);
2861 ok(request != NULL, "HttpOpenRequest failed\n");
2863 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2864 ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2866 test_status_code(request, 200);
2867 test_request_flags(request, 0);
2869 InternetCloseHandle(request);
2870 InternetCloseHandle(connect);
2871 InternetCloseHandle(session);
2874 static void test_premature_disconnect(int port)
2876 HINTERNET session, connect, request;
2880 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2881 ok(session != NULL, "InternetOpen failed\n");
2883 connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2884 ok(connect != NULL, "InternetConnect failed\n");
2886 request = HttpOpenRequest(connect, NULL, "/premature_disconnect", NULL, NULL, NULL, INTERNET_FLAG_KEEP_CONNECTION, 0);
2887 ok(request != NULL, "HttpOpenRequest failed\n");
2889 SetLastError(0xdeadbeef);
2890 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2891 err = GetLastError();
2892 todo_wine ok(!ret, "HttpSendRequest succeeded\n");
2893 todo_wine ok(err == ERROR_HTTP_INVALID_SERVER_RESPONSE, "got %u\n", err);
2895 InternetCloseHandle(request);
2896 InternetCloseHandle(connect);
2897 InternetCloseHandle(session);
2900 static void test_invalid_response_headers(int port)
2902 HINTERNET session, connect, request;
2907 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2908 ok(session != NULL, "InternetOpen failed\n");
2910 connect = InternetConnect(session, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2911 ok(connect != NULL, "InternetConnect failed\n");
2913 request = HttpOpenRequest(connect, NULL, "/testE", NULL, NULL, NULL, 0, 0);
2914 ok(request != NULL, "HttpOpenRequest failed\n");
2916 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
2917 ok(ret, "HttpSendRequest failed %u\n", GetLastError());
2919 test_status_code(request, 401);
2920 test_request_flags(request, 0);
2923 size = sizeof(buffer);
2924 ret = HttpQueryInfo( request, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2925 ok(ret, "HttpQueryInfo failed\n");
2926 ok(!strcmp(buffer, "HTTP/1.0 401 Anonymous requests or requests on unsecure channel are not allowed"),
2927 "headers wrong \"%s\"\n", buffer);
2930 size = sizeof(buffer);
2931 ret = HttpQueryInfo( request, HTTP_QUERY_SERVER, buffer, &size, NULL);
2932 ok(ret, "HttpQueryInfo failed\n");
2933 ok(!strcmp(buffer, "winetest"), "server wrong \"%s\"\n", buffer);
2935 InternetCloseHandle(request);
2936 InternetCloseHandle(connect);
2937 InternetCloseHandle(session);
2940 static void test_response_without_headers(int port)
2942 HINTERNET hi, hc, hr;
2943 DWORD r, count, size;
2946 SetLastError(0xdeadbeef);
2947 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
2948 ok(hi != NULL, "open failed %u\n", GetLastError());
2950 SetLastError(0xdeadbeef);
2951 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
2952 ok(hc != NULL, "connect failed %u\n", GetLastError());
2954 SetLastError(0xdeadbeef);
2955 hr = HttpOpenRequest(hc, NULL, "/testG", NULL, NULL, NULL, 0, 0);
2956 ok(hr != NULL, "HttpOpenRequest failed %u\n", GetLastError());
2958 test_request_flags(hr, INTERNET_REQFLAG_NO_HEADERS);
2960 SetLastError(0xdeadbeef);
2961 r = HttpSendRequest(hr, NULL, 0, NULL, 0);
2962 ok(r, "HttpSendRequest failed %u\n", GetLastError());
2964 test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2967 memset(buffer, 0, sizeof buffer);
2968 SetLastError(0xdeadbeef);
2969 r = InternetReadFile(hr, buffer, sizeof buffer, &count);
2970 ok(r, "InternetReadFile failed %u\n", GetLastError());
2971 todo_wine ok(count == sizeof page1 - 1, "count was wrong\n");
2972 todo_wine ok(!memcmp(buffer, page1, sizeof page1), "http data wrong\n");
2974 test_status_code(hr, 200);
2975 test_request_flags_todo(hr, INTERNET_REQFLAG_NO_HEADERS);
2978 size = sizeof(buffer);
2979 SetLastError(0xdeadbeef);
2980 r = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, NULL );
2981 ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2982 ok(!strcmp(buffer, "OK"), "expected OK got: \"%s\"\n", buffer);
2985 size = sizeof(buffer);
2986 SetLastError(0xdeadbeef);
2987 r = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, NULL);
2988 ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2989 ok(!strcmp(buffer, "HTTP/1.0"), "expected HTTP/1.0 got: \"%s\"\n", buffer);
2992 size = sizeof(buffer);
2993 SetLastError(0xdeadbeef);
2994 r = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, NULL);
2995 ok(r, "HttpQueryInfo failed %u\n", GetLastError());
2996 ok(!strcmp(buffer, "HTTP/1.0 200 OK"), "raw headers wrong: \"%s\"\n", buffer);
2998 InternetCloseHandle(hr);
2999 InternetCloseHandle(hc);
3000 InternetCloseHandle(hi);
3003 static void test_HttpQueryInfo(int port)
3005 HINTERNET hi, hc, hr;
3010 hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
3011 ok(hi != NULL, "InternetOpen failed\n");
3013 hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3014 ok(hc != NULL, "InternetConnect failed\n");
3016 hr = HttpOpenRequest(hc, NULL, "/testD", NULL, NULL, NULL, 0, 0);
3017 ok(hr != NULL, "HttpOpenRequest failed\n");
3019 ret = HttpSendRequest(hr, NULL, 0, NULL, 0);
3020 ok(ret, "HttpSendRequest failed\n");
3023 size = sizeof(buffer);
3024 ret = HttpQueryInfo(hr, HTTP_QUERY_HOST | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, &index);
3025 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3026 ok(index == 1, "expected 1 got %u\n", index);
3029 size = sizeof(buffer);
3030 ret = HttpQueryInfo(hr, HTTP_QUERY_DATE | HTTP_QUERY_FLAG_SYSTEMTIME, buffer, &size, &index);
3031 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3032 ok(index == 1, "expected 1 got %u\n", index);
3035 size = sizeof(buffer);
3036 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3037 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3038 ok(index == 0, "expected 0 got %u\n", index);
3040 size = sizeof(buffer);
3041 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3042 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3043 ok(index == 0, "expected 0 got %u\n", index);
3045 index = 0xdeadbeef; /* invalid start index */
3046 size = sizeof(buffer);
3047 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS, buffer, &size, &index);
3048 todo_wine ok(!ret, "HttpQueryInfo should have failed\n");
3049 todo_wine ok(GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND,
3050 "Expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", GetLastError());
3053 size = sizeof(buffer);
3054 ret = HttpQueryInfo(hr, HTTP_QUERY_RAW_HEADERS_CRLF, buffer, &size, &index);
3055 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3056 ok(index == 0, "expected 0 got %u\n", index);
3058 size = sizeof(buffer);
3059 ret = HttpQueryInfo(hr, HTTP_QUERY_STATUS_TEXT, buffer, &size, &index);
3060 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3061 ok(index == 0, "expected 0 got %u\n", index);
3063 size = sizeof(buffer);
3064 ret = HttpQueryInfo(hr, HTTP_QUERY_VERSION, buffer, &size, &index);
3065 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3066 ok(index == 0, "expected 0 got %u\n", index);
3068 test_status_code(hr, 200);
3071 size = sizeof(buffer);
3072 ret = HttpQueryInfo(hr, HTTP_QUERY_FORWARDED, buffer, &size, &index);
3073 ok(!ret, "HttpQueryInfo succeeded\n");
3074 ok(index == 0xdeadbeef, "expected 0xdeadbeef got %u\n", index);
3077 size = sizeof(buffer);
3078 ret = HttpQueryInfo(hr, HTTP_QUERY_SERVER, buffer, &size, &index);
3079 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3080 ok(index == 1, "expected 1 got %u\n", index);
3083 size = sizeof(buffer);
3084 strcpy(buffer, "Server");
3085 ret = HttpQueryInfo(hr, HTTP_QUERY_CUSTOM, buffer, &size, &index);
3086 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3087 ok(index == 1, "expected 1 got %u\n", index);
3090 size = sizeof(buffer);
3091 ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
3092 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3093 ok(index == 1, "expected 1 got %u\n", index);
3095 size = sizeof(buffer);
3096 ret = HttpQueryInfo(hr, HTTP_QUERY_SET_COOKIE, buffer, &size, &index);
3097 ok(ret, "HttpQueryInfo failed %u\n", GetLastError());
3098 ok(index == 2, "expected 2 got %u\n", index);
3100 InternetCloseHandle(hr);
3101 InternetCloseHandle(hc);
3102 InternetCloseHandle(hi);
3105 static void test_options(int port)
3107 HINTERNET ses, con, req;
3112 ses = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
3113 ok(ses != NULL, "InternetOpen failed\n");
3115 SetLastError(0xdeadbeef);
3116 ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, 0);
3117 error = GetLastError();
3118 ok(!ret, "InternetSetOption succeeded\n");
3119 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3121 SetLastError(0xdeadbeef);
3122 ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, sizeof(ctx));
3123 ok(!ret, "InternetSetOption succeeded\n");
3124 error = GetLastError();
3125 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3127 SetLastError(0xdeadbeef);
3128 ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, 0);
3129 ok(!ret, "InternetSetOption succeeded\n");
3130 error = GetLastError();
3131 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3134 ret = InternetSetOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3135 ok(ret, "InternetSetOption failed %u\n", GetLastError());
3137 SetLastError(0xdeadbeef);
3138 ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, NULL);
3139 error = GetLastError();
3140 ok(!ret, "InternetQueryOption succeeded\n");
3141 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3143 SetLastError(0xdeadbeef);
3144 ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, NULL);
3145 error = GetLastError();
3146 ok(!ret, "InternetQueryOption succeeded\n");
3147 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3150 SetLastError(0xdeadbeef);
3151 ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, NULL, &size);
3152 error = GetLastError();
3153 ok(!ret, "InternetQueryOption succeeded\n");
3154 ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
3157 SetLastError(0xdeadbeef);
3158 ret = InternetQueryOption(NULL, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3159 error = GetLastError();
3160 ok(!ret, "InternetQueryOption succeeded\n");
3161 ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE, got %u\n", error);
3165 ret = InternetQueryOption(ses, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3166 ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3167 ok(ctx == 1, "expected 1 got %lu\n", ctx);
3169 con = InternetConnect(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3170 ok(con != NULL, "InternetConnect failed\n");
3174 ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3175 ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3176 ok(ctx == 0, "expected 0 got %lu\n", ctx);
3179 ret = InternetSetOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3180 ok(ret, "InternetSetOption failed %u\n", GetLastError());
3184 ret = InternetQueryOption(con, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3185 ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3186 ok(ctx == 2, "expected 2 got %lu\n", ctx);
3188 req = HttpOpenRequest(con, NULL, "/test1", NULL, NULL, NULL, 0, 0);
3189 ok(req != NULL, "HttpOpenRequest failed\n");
3193 ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3194 ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3195 ok(ctx == 0, "expected 0 got %lu\n", ctx);
3198 ret = InternetSetOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, sizeof(ctx));
3199 ok(ret, "InternetSetOption failed %u\n", GetLastError());
3203 ret = InternetQueryOption(req, INTERNET_OPTION_CONTEXT_VALUE, &ctx, &size);
3204 ok(ret, "InternetQueryOption failed %u\n", GetLastError());
3205 ok(ctx == 3, "expected 3 got %lu\n", ctx);
3207 /* INTERNET_OPTION_PROXY */
3208 SetLastError(0xdeadbeef);
3209 ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, NULL);
3210 error = GetLastError();
3211 ok(!ret, "InternetQueryOption succeeded\n");
3212 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3214 SetLastError(0xdeadbeef);
3215 ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, &ctx, NULL);
3216 error = GetLastError();
3217 ok(!ret, "InternetQueryOption succeeded\n");
3218 ok(error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", error);
3221 SetLastError(0xdeadbeef);
3222 ret = InternetQueryOptionA(ses, INTERNET_OPTION_PROXY, NULL, &size);
3223 error = GetLastError();
3224 ok(!ret, "InternetQueryOption succeeded\n");
3225 ok(error == ERROR_INSUFFICIENT_BUFFER, "expected ERROR_INSUFFICIENT_BUFFER, got %u\n", error);
3226 ok(size >= sizeof(INTERNET_PROXY_INFOA), "expected size to be greater or equal to the struct size\n");
3228 InternetCloseHandle(req);
3229 InternetCloseHandle(con);
3230 InternetCloseHandle(ses);
3233 static void test_http_connection(void)
3235 struct server_info si;
3239 si.hEvent = CreateEvent(NULL, 0, 0, NULL);
3242 hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id);
3243 ok( hThread != NULL, "create thread failed\n");
3245 r = WaitForSingleObject(si.hEvent, 10000);
3246 ok (r == WAIT_OBJECT_0, "failed to start wininet test server\n");
3247 if (r != WAIT_OBJECT_0)
3250 test_basic_request(si.port, "GET", "/test1");
3251 test_proxy_indirect(si.port);
3252 test_proxy_direct(si.port);
3253 test_header_handling_order(si.port);
3254 test_basic_request(si.port, "POST", "/test5");
3255 test_basic_request(si.port, "RPC_IN_DATA", "/test5");
3256 test_basic_request(si.port, "RPC_OUT_DATA", "/test5");
3257 test_basic_request(si.port, "GET", "/test6");
3258 test_basic_request(si.port, "GET", "/testF");
3259 test_connection_header(si.port);
3260 test_http1_1(si.port);
3261 test_cookie_header(si.port);
3262 test_basic_authentication(si.port);
3263 test_invalid_response_headers(si.port);
3264 test_response_without_headers(si.port);
3265 test_HttpQueryInfo(si.port);
3266 test_HttpSendRequestW(si.port);
3267 test_last_error(si.port);
3268 test_options(si.port);
3269 test_no_content(si.port);
3270 test_conn_close(si.port);
3271 test_no_cache(si.port);
3272 test_premature_disconnect(si.port);
3274 /* send the basic request again to shutdown the server thread */
3275 test_basic_request(si.port, "GET", "/quit");
3277 r = WaitForSingleObject(hThread, 3000);
3278 ok( r == WAIT_OBJECT_0, "thread wait failed\n");
3279 CloseHandle(hThread);
3282 static void release_cert_info(INTERNET_CERTIFICATE_INFOA *info)
3284 LocalFree(info->lpszSubjectInfo);
3285 LocalFree(info->lpszIssuerInfo);
3286 LocalFree(info->lpszProtocolName);
3287 LocalFree(info->lpszSignatureAlgName);
3288 LocalFree(info->lpszEncryptionAlgName);
3291 static void test_cert_struct(HINTERNET req)
3293 INTERNET_CERTIFICATE_INFOA info;
3297 static const char ex_subject[] =
3302 "test.winehq.org\r\n"
3303 "webmaster@winehq.org";
3305 static const char ex_issuer[] =
3309 "test.winehq.org\r\n"
3310 "webmaster@winehq.org";
3312 memset(&info, 0x5, sizeof(info));
3314 size = sizeof(info);
3315 res = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT, &info, &size);
3316 ok(res, "InternetQueryOption failed: %u\n", GetLastError());
3317 ok(size == sizeof(info), "size = %u\n", size);
3319 ok(!strcmp(info.lpszSubjectInfo, ex_subject), "lpszSubjectInfo = %s\n", info.lpszSubjectInfo);
3320 ok(!strcmp(info.lpszIssuerInfo, ex_issuer), "lpszIssuerInfo = %s\n", info.lpszIssuerInfo);
3321 ok(!info.lpszSignatureAlgName, "lpszSignatureAlgName = %s\n", info.lpszSignatureAlgName);
3322 ok(!info.lpszEncryptionAlgName, "lpszEncryptionAlgName = %s\n", info.lpszEncryptionAlgName);
3323 ok(!info.lpszProtocolName, "lpszProtocolName = %s\n", info.lpszProtocolName);
3324 ok(info.dwKeySize == 128, "dwKeySize = %u\n", info.dwKeySize);
3326 release_cert_info(&info);
3329 #define test_security_info(a,b,c) _test_security_info(__LINE__,a,b,c)
3330 static void _test_security_info(unsigned line, const char *urlc, DWORD error, DWORD ex_flags)
3332 char url[INTERNET_MAX_URL_LENGTH];
3333 const CERT_CHAIN_CONTEXT *chain;
3337 if(!pInternetGetSecurityInfoByURLA) {
3338 win_skip("pInternetGetSecurityInfoByURLA not available\n");
3343 chain = (void*)0xdeadbeef;
3345 res = pInternetGetSecurityInfoByURLA(url, &chain, &flags);
3346 if(error == ERROR_SUCCESS) {
3347 ok_(__FILE__,line)(res, "InternetGetSecurityInfoByURLA failed: %u\n", GetLastError());
3348 ok_(__FILE__,line)(chain != NULL, "chain = NULL\n");
3349 ok_(__FILE__,line)(flags == ex_flags, "flags = %x\n", flags);
3350 CertFreeCertificateChain(chain);
3352 ok_(__FILE__,line)(!res && GetLastError() == error,
3353 "InternetGetSecurityInfoByURLA returned: %x(%u), exected %u\n", res, GetLastError(), error);
3357 #define test_secflags_option(a,b) _test_secflags_option(__LINE__,a,b)
3358 static void _test_secflags_option(unsigned line, HINTERNET req, DWORD ex_flags)
3364 size = sizeof(flags);
3365 res = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3366 ok_(__FILE__,line)(res, "InternetQueryOptionW(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3367 ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS flags = %x, expected %x\n", flags, ex_flags);
3369 /* Option 98 is undocumented and seems to be the same as INTERNET_OPTION_SECURITY_FLAGS */
3371 size = sizeof(flags);
3372 res = InternetQueryOptionW(req, 98, &flags, &size);
3373 ok_(__FILE__,line)(res, "InternetQueryOptionW(98) failed: %u\n", GetLastError());
3374 ok_(__FILE__,line)(flags == ex_flags, "INTERNET_OPTION_SECURITY_FLAGS(98) flags = %x, expected %x\n", flags, ex_flags);
3377 #define set_secflags(a,b,c) _set_secflags(__LINE__,a,b,c)
3378 static void _set_secflags(unsigned line, HINTERNET req, BOOL use_undoc, DWORD flags)
3382 res = InternetSetOptionW(req, use_undoc ? 99 : INTERNET_OPTION_SECURITY_FLAGS, &flags, sizeof(flags));
3383 ok_(__FILE__,line)(res, "InternetSetOption(INTERNET_OPTION_SECURITY_FLAGS) failed: %u\n", GetLastError());
3386 static void test_security_flags(void)
3388 HINTERNET ses, conn, req;
3393 trace("Testing security flags...\n");
3395 hCompleteEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
3397 ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3398 ok(ses != NULL, "InternetOpen failed\n");
3400 pInternetSetStatusCallbackA(ses, &callback);
3402 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3403 conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3404 NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3405 ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3406 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3408 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3409 req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3410 INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3412 ok(req != NULL, "HttpOpenRequest failed\n");
3413 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3416 size = sizeof(flags);
3417 res = InternetQueryOptionW(req, 98, &flags, &size);
3418 if(!res && GetLastError() == ERROR_INVALID_PARAMETER) {
3419 win_skip("Incomplete security flags support, skipping\n");
3421 close_async_handle(ses, hCompleteEvent, 2);
3422 CloseHandle(hCompleteEvent);
3426 test_secflags_option(req, 0);
3427 test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3429 set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_REVOCATION);
3430 test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION);
3432 set_secflags(req, TRUE, SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3433 test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3435 set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3436 test_secflags_option(req, SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
3438 flags = SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_SECURE;
3439 res = InternetSetOptionW(req, 99, &flags, sizeof(flags));
3440 ok(!res && GetLastError() == ERROR_INTERNET_OPTION_NOT_SETTABLE, "InternetSetOption(99) failed: %u\n", GetLastError());
3442 SET_EXPECT(INTERNET_STATUS_RESOLVING_NAME);
3443 SET_EXPECT(INTERNET_STATUS_NAME_RESOLVED);
3444 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3445 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3446 SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3447 SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3448 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3449 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3450 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3451 SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3452 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3454 res = HttpSendRequest(req, NULL, 0, NULL, 0);
3455 ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3457 WaitForSingleObject(hCompleteEvent, INFINITE);
3458 ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3460 todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_RESOLVING_NAME);
3461 todo_wine CHECK_NOT_NOTIFIED(INTERNET_STATUS_NAME_RESOLVED);
3462 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3463 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3464 CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3465 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3466 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3467 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3468 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3469 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3470 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3472 test_request_flags(req, 0);
3473 test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3474 |SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_STRENGTH_STRONG);
3476 res = InternetReadFile(req, buf, sizeof(buf), &size);
3477 ok(res, "InternetReadFile failed: %u\n", GetLastError());
3478 ok(size, "size = 0\n");
3480 /* Collect all existing persistent connections */
3481 res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3482 ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3484 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3485 req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3486 INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3488 ok(req != NULL, "HttpOpenRequest failed\n");
3489 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3491 flags = INTERNET_ERROR_MASK_COMBINED_SEC_CERT|INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY;
3492 res = InternetSetOption(req, INTERNET_OPTION_ERROR_MASK, (void*)&flags, sizeof(flags));
3493 ok(res, "InternetQueryOption(INTERNET_OPTION_ERROR_MASK failed: %u\n", GetLastError());
3495 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3496 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3497 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3498 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3499 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3500 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3501 SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3503 res = HttpSendRequest(req, NULL, 0, NULL, 0);
3504 ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3506 WaitForSingleObject(hCompleteEvent, INFINITE);
3507 ok(req_error == ERROR_INTERNET_SEC_CERT_REV_FAILED || broken(req_error == ERROR_INTERNET_SEC_CERT_ERRORS),
3508 "req_error = %d\n", req_error);
3510 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3511 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3512 CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3513 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3514 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3515 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3516 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3518 if(req_error != ERROR_INTERNET_SEC_CERT_REV_FAILED) {
3519 win_skip("Unexpected cert errors, skipping security flags tests\n");
3521 close_async_handle(ses, hCompleteEvent, 3);
3522 CloseHandle(hCompleteEvent);
3527 res = HttpQueryInfoA(req, HTTP_QUERY_CONTENT_ENCODING, buf, &size, 0);
3528 ok(!res && GetLastError() == ERROR_HTTP_HEADER_NOT_FOUND, "HttpQueryInfoA(HTTP_QUERY_CONTENT_ENCODING) failed: %u\n", GetLastError());
3530 test_request_flags(req, 8);
3531 test_secflags_option(req, 0x800000);
3533 set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_REVOCATION);
3534 test_secflags_option(req, 0x800000|SECURITY_FLAG_IGNORE_REVOCATION);
3536 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3537 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3538 SET_EXPECT(INTERNET_STATUS_CLOSING_CONNECTION);
3539 SET_EXPECT(INTERNET_STATUS_CONNECTION_CLOSED);
3540 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3541 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3542 SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3544 res = HttpSendRequest(req, NULL, 0, NULL, 0);
3545 ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3547 WaitForSingleObject(hCompleteEvent, INFINITE);
3548 ok(req_error == ERROR_INTERNET_SEC_CERT_ERRORS, "req_error = %d\n", req_error);
3550 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3551 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3552 CHECK_NOTIFIED(INTERNET_STATUS_CLOSING_CONNECTION);
3553 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTION_CLOSED);
3554 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3555 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3556 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3558 test_request_flags(req, INTERNET_REQFLAG_NO_HEADERS);
3559 test_secflags_option(req, SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3560 test_security_info("https://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3562 set_secflags(req, FALSE, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
3563 test_secflags_option(req, 0x1800000|SECURITY_FLAG_IGNORE_REVOCATION|SECURITY_FLAG_IGNORE_UNKNOWN_CA
3564 |SECURITY_FLAG_IGNORE_REVOCATION);
3565 test_http_version(req);
3567 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3568 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3569 SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3570 SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3571 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3572 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3573 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3574 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3575 SET_OPTIONAL(INTERNET_STATUS_DETECTING_PROXY);
3577 res = HttpSendRequest(req, NULL, 0, NULL, 0);
3578 ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3580 WaitForSingleObject(hCompleteEvent, INFINITE);
3581 ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3583 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3584 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3585 CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3586 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3587 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3588 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3589 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3590 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3591 CLEAR_NOTIFIED(INTERNET_STATUS_DETECTING_PROXY);
3593 test_request_flags(req, 0);
3594 test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_IGNORE_REVOCATION
3595 |SECURITY_FLAG_STRENGTH_STRONG|0x1800000);
3597 test_cert_struct(req);
3598 test_security_info("https://test.winehq.org/data/some_file.html?q", 0, 0x1800000);
3600 res = InternetReadFile(req, buf, sizeof(buf), &size);
3601 ok(res, "InternetReadFile failed: %u\n", GetLastError());
3602 ok(size, "size = 0\n");
3604 close_async_handle(ses, hCompleteEvent, 3);
3606 /* Collect all existing persistent connections */
3607 res = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3608 ok(res, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3610 /* Make another request, without setting security flags */
3612 ses = InternetOpen("WineTest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
3613 ok(ses != NULL, "InternetOpen failed\n");
3615 pInternetSetStatusCallbackA(ses, &callback);
3617 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3618 conn = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT,
3619 NULL, NULL, INTERNET_SERVICE_HTTP, INTERNET_FLAG_SECURE, 0xdeadbeef);
3620 ok(conn != NULL, "InternetConnect failed with error %u\n", GetLastError());
3621 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3623 SET_EXPECT(INTERNET_STATUS_HANDLE_CREATED);
3624 req = HttpOpenRequest(conn, "GET", "/tests/hello.html", NULL, NULL, NULL,
3625 INTERNET_FLAG_SECURE|INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE,
3627 ok(req != NULL, "HttpOpenRequest failed\n");
3628 CHECK_NOTIFIED(INTERNET_STATUS_HANDLE_CREATED);
3630 test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3631 |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3632 test_http_version(req);
3634 SET_EXPECT(INTERNET_STATUS_CONNECTING_TO_SERVER);
3635 SET_EXPECT(INTERNET_STATUS_CONNECTED_TO_SERVER);
3636 SET_EXPECT(INTERNET_STATUS_SENDING_REQUEST);
3637 SET_EXPECT(INTERNET_STATUS_REQUEST_SENT);
3638 SET_EXPECT(INTERNET_STATUS_RECEIVING_RESPONSE);
3639 SET_EXPECT(INTERNET_STATUS_RESPONSE_RECEIVED);
3640 SET_EXPECT(INTERNET_STATUS_REQUEST_COMPLETE);
3641 SET_OPTIONAL(INTERNET_STATUS_COOKIE_SENT);
3643 res = HttpSendRequest(req, NULL, 0, NULL, 0);
3644 ok(!res && GetLastError() == ERROR_IO_PENDING, "HttpSendRequest failed: %u\n", GetLastError());
3646 WaitForSingleObject(hCompleteEvent, INFINITE);
3647 ok(req_error == ERROR_SUCCESS, "req_error = %d\n", req_error);
3649 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTING_TO_SERVER);
3650 CHECK_NOTIFIED(INTERNET_STATUS_CONNECTED_TO_SERVER);
3651 CHECK_NOTIFIED(INTERNET_STATUS_SENDING_REQUEST);
3652 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_SENT);
3653 CHECK_NOTIFIED(INTERNET_STATUS_RECEIVING_RESPONSE);
3654 CHECK_NOTIFIED(INTERNET_STATUS_RESPONSE_RECEIVED);
3655 CHECK_NOTIFIED(INTERNET_STATUS_REQUEST_COMPLETE);
3656 CLEAR_NOTIFIED(INTERNET_STATUS_COOKIE_SENT);
3658 test_request_flags(req, 0);
3659 test_secflags_option(req, SECURITY_FLAG_SECURE|SECURITY_FLAG_IGNORE_UNKNOWN_CA|SECURITY_FLAG_STRENGTH_STRONG
3660 |SECURITY_FLAG_IGNORE_REVOCATION|0x1800000);
3662 res = InternetReadFile(req, buf, sizeof(buf), &size);
3663 ok(res, "InternetReadFile failed: %u\n", GetLastError());
3664 ok(size, "size = 0\n");
3666 close_async_handle(ses, hCompleteEvent, 2);
3668 CloseHandle(hCompleteEvent);
3670 test_security_info("http://test.winehq.org/data/some_file.html?q", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3671 test_security_info("file:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3672 test_security_info("xxx:///c:/dir/file.txt", ERROR_INTERNET_ITEM_NOT_FOUND, 0);
3675 static void test_secure_connection(void)
3677 static const WCHAR gizmo5[] = {'G','i','z','m','o','5',0};
3678 static const WCHAR testbot[] = {'t','e','s','t','b','o','t','.','w','i','n','e','h','q','.','o','r','g',0};
3679 static const WCHAR get[] = {'G','E','T',0};
3680 static const WCHAR slash[] = {'/',0};
3681 HINTERNET ses, con, req;
3683 INTERNET_CERTIFICATE_INFOA *certificate_structA = NULL;
3684 INTERNET_CERTIFICATE_INFOW *certificate_structW = NULL;
3687 ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3688 ok(ses != NULL, "InternetOpen failed\n");
3690 con = InternetConnect(ses, "testbot.winehq.org",
3691 INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3692 INTERNET_SERVICE_HTTP, 0, 0);
3693 ok(con != NULL, "InternetConnect failed\n");
3695 req = HttpOpenRequest(con, "GET", "/", NULL, NULL, NULL,
3696 INTERNET_FLAG_SECURE, 0);
3697 ok(req != NULL, "HttpOpenRequest failed\n");
3699 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3700 ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3702 size = sizeof(flags);
3703 ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3704 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3705 ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3707 ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3709 ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3710 ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3711 certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3712 ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3713 certificate_structA, &size);
3714 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3717 ok(certificate_structA->lpszSubjectInfo &&
3718 strlen(certificate_structA->lpszSubjectInfo) > 1,
3719 "expected a non-empty subject name\n");
3720 ok(certificate_structA->lpszIssuerInfo &&
3721 strlen(certificate_structA->lpszIssuerInfo) > 1,
3722 "expected a non-empty issuer name\n");
3723 ok(!certificate_structA->lpszSignatureAlgName,
3724 "unexpected signature algorithm name\n");
3725 ok(!certificate_structA->lpszEncryptionAlgName,
3726 "unexpected encryption algorithm name\n");
3727 ok(!certificate_structA->lpszProtocolName,
3728 "unexpected protocol name\n");
3729 ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3730 release_cert_info(certificate_structA);
3732 HeapFree(GetProcessHeap(), 0, certificate_structA);
3734 /* Querying the same option through InternetQueryOptionW still results in
3735 * ASCII strings being returned.
3738 ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3740 ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3741 ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3742 certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3743 ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3744 certificate_structW, &size);
3745 certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3746 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3749 ok(certificate_structA->lpszSubjectInfo &&
3750 strlen(certificate_structA->lpszSubjectInfo) > 1,
3751 "expected a non-empty subject name\n");
3752 ok(certificate_structA->lpszIssuerInfo &&
3753 strlen(certificate_structA->lpszIssuerInfo) > 1,
3754 "expected a non-empty issuer name\n");
3755 ok(!certificate_structA->lpszSignatureAlgName,
3756 "unexpected signature algorithm name\n");
3757 ok(!certificate_structA->lpszEncryptionAlgName,
3758 "unexpected encryption algorithm name\n");
3759 ok(!certificate_structA->lpszProtocolName,
3760 "unexpected protocol name\n");
3761 ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3762 release_cert_info(certificate_structA);
3764 HeapFree(GetProcessHeap(), 0, certificate_structW);
3766 InternetCloseHandle(req);
3767 InternetCloseHandle(con);
3768 InternetCloseHandle(ses);
3770 /* Repeating the tests with the W functions has the same result: */
3771 ses = InternetOpenW(gizmo5, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3772 ok(ses != NULL, "InternetOpen failed\n");
3774 con = InternetConnectW(ses, testbot,
3775 INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL,
3776 INTERNET_SERVICE_HTTP, 0, 0);
3777 ok(con != NULL, "InternetConnect failed\n");
3779 req = HttpOpenRequestW(con, get, slash, NULL, NULL, NULL,
3780 INTERNET_FLAG_SECURE, 0);
3781 ok(req != NULL, "HttpOpenRequest failed\n");
3783 ret = HttpSendRequest(req, NULL, 0, NULL, 0);
3784 ok(ret, "HttpSendRequest failed: %d\n", GetLastError());
3786 size = sizeof(flags);
3787 ret = InternetQueryOption(req, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
3788 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3789 ok(flags & SECURITY_FLAG_SECURE, "expected secure flag to be set\n");
3791 ret = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3793 ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3794 ok(size == sizeof(INTERNET_CERTIFICATE_INFOA), "size = %d\n", size);
3795 certificate_structA = HeapAlloc(GetProcessHeap(), 0, size);
3796 ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3797 certificate_structA, &size);
3798 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3801 ok(certificate_structA->lpszSubjectInfo &&
3802 strlen(certificate_structA->lpszSubjectInfo) > 1,
3803 "expected a non-empty subject name\n");
3804 ok(certificate_structA->lpszIssuerInfo &&
3805 strlen(certificate_structA->lpszIssuerInfo) > 1,
3806 "expected a non-empty issuer name\n");
3807 ok(!certificate_structA->lpszSignatureAlgName,
3808 "unexpected signature algorithm name\n");
3809 ok(!certificate_structA->lpszEncryptionAlgName,
3810 "unexpected encryption algorithm name\n");
3811 ok(!certificate_structA->lpszProtocolName,
3812 "unexpected protocol name\n");
3813 ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3814 release_cert_info(certificate_structA);
3816 HeapFree(GetProcessHeap(), 0, certificate_structA);
3818 /* Again, querying the same option through InternetQueryOptionW still
3819 * results in ASCII strings being returned.
3822 ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3824 ok(ret || GetLastError() == ERROR_INSUFFICIENT_BUFFER, "InternetQueryOption failed: %d\n", GetLastError());
3825 ok(size == sizeof(INTERNET_CERTIFICATE_INFOW), "size = %d\n", size);
3826 certificate_structW = HeapAlloc(GetProcessHeap(), 0, size);
3827 ret = InternetQueryOptionW(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT,
3828 certificate_structW, &size);
3829 certificate_structA = (INTERNET_CERTIFICATE_INFOA *)certificate_structW;
3830 ok(ret, "InternetQueryOption failed: %d\n", GetLastError());
3833 ok(certificate_structA->lpszSubjectInfo &&
3834 strlen(certificate_structA->lpszSubjectInfo) > 1,
3835 "expected a non-empty subject name\n");
3836 ok(certificate_structA->lpszIssuerInfo &&
3837 strlen(certificate_structA->lpszIssuerInfo) > 1,
3838 "expected a non-empty issuer name\n");
3839 ok(!certificate_structA->lpszSignatureAlgName,
3840 "unexpected signature algorithm name\n");
3841 ok(!certificate_structA->lpszEncryptionAlgName,
3842 "unexpected encryption algorithm name\n");
3843 ok(!certificate_structA->lpszProtocolName,
3844 "unexpected protocol name\n");
3845 ok(certificate_structA->dwKeySize, "expected a non-zero key size\n");
3846 release_cert_info(certificate_structA);
3848 HeapFree(GetProcessHeap(), 0, certificate_structW);
3850 InternetCloseHandle(req);
3851 InternetCloseHandle(con);
3852 InternetCloseHandle(ses);
3855 static void test_user_agent_header(void)
3857 HINTERNET ses, con, req;
3862 ses = InternetOpen("Gizmo5", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
3863 ok(ses != NULL, "InternetOpen failed\n");
3865 con = InternetConnect(ses, "test.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3866 ok(con != NULL, "InternetConnect failed\n");
3868 req = HttpOpenRequest(con, "GET", "/tests/hello.html", "HTTP/1.0", NULL, NULL, 0, 0);
3869 ok(req != NULL, "HttpOpenRequest failed\n");
3871 size = sizeof(buffer);
3872 ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3873 err = GetLastError();
3874 ok(!ret, "HttpQueryInfo succeeded\n");
3875 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3877 ret = HttpAddRequestHeaders(req, "User-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3878 ok(ret, "HttpAddRequestHeaders succeeded\n");
3880 size = sizeof(buffer);
3881 ret = HttpQueryInfo(req, HTTP_QUERY_USER_AGENT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3882 err = GetLastError();
3883 ok(ret, "HttpQueryInfo failed\n");
3884 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3886 InternetCloseHandle(req);
3888 req = HttpOpenRequest(con, "GET", "/", "HTTP/1.0", NULL, NULL, 0, 0);
3889 ok(req != NULL, "HttpOpenRequest failed\n");
3891 size = sizeof(buffer);
3892 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3893 err = GetLastError();
3894 ok(!ret, "HttpQueryInfo succeeded\n");
3895 ok(err == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", err);
3897 ret = HttpAddRequestHeaders(req, "Accept: audio/*, image/*, text/*\r\nUser-Agent: Gizmo Project\r\n", ~0u, HTTP_ADDREQ_FLAG_ADD_IF_NEW);
3898 ok(ret, "HttpAddRequestHeaders failed\n");
3901 size = sizeof(buffer);
3902 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3903 ok(ret, "HttpQueryInfo failed: %u\n", GetLastError());
3904 ok(!strcmp(buffer, "audio/*, image/*, text/*"), "got '%s' expected 'audio/*, image/*, text/*'\n", buffer);
3906 InternetCloseHandle(req);
3907 InternetCloseHandle(con);
3908 InternetCloseHandle(ses);
3911 static void test_bogus_accept_types_array(void)
3913 HINTERNET ses, con, req;
3914 static const char *types[] = { (const char *)6240, "*/*", "%p", "", (const char *)0xffffffff, "*/*", NULL };
3919 ses = InternetOpen("MERONG(0.9/;p)", INTERNET_OPEN_TYPE_DIRECT, "", "", 0);
3920 con = InternetConnect(ses, "www.winehq.org", 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
3921 req = HttpOpenRequest(con, "POST", "/post/post_action.php", "HTTP/1.0", "", types, INTERNET_FLAG_FORMS_SUBMIT, 0);
3923 ok(req != NULL, "HttpOpenRequest failed: %u\n", GetLastError());
3926 size = sizeof(buffer);
3927 SetLastError(0xdeadbeef);
3928 ret = HttpQueryInfo(req, HTTP_QUERY_ACCEPT | HTTP_QUERY_FLAG_REQUEST_HEADERS, buffer, &size, NULL);
3929 error = GetLastError();
3930 ok(!ret || broken(ret), "HttpQueryInfo succeeded\n");
3931 if (!ret) ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND, got %u\n", error);
3932 ok(broken(!strcmp(buffer, ", */*, %p, , , */*")) /* IE6 */ ||
3933 broken(!strcmp(buffer, "*/*, %p, */*")) /* IE7/8 */ ||
3934 !strcmp(buffer, ""), "got '%s' expected ''\n", buffer);
3936 InternetCloseHandle(req);
3937 InternetCloseHandle(con);
3938 InternetCloseHandle(ses);
3947 static void WINAPI cb(HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID info, DWORD size)
3949 INTERNET_ASYNC_RESULT *result = info;
3950 struct context *ctx = (struct context *)context;
3952 trace("%p 0x%08lx %u %p 0x%08x\n", handle, context, status, info, size);
3955 case INTERNET_STATUS_REQUEST_COMPLETE:
3956 trace("request handle: 0x%08lx\n", result->dwResult);
3957 ctx->req = (HINTERNET)result->dwResult;
3958 SetEvent(ctx->event);
3960 case INTERNET_STATUS_HANDLE_CLOSING: {
3961 DWORD type = INTERNET_HANDLE_TYPE_CONNECT_HTTP, size = sizeof(type);
3963 if (InternetQueryOption(handle, INTERNET_OPTION_HANDLE_TYPE, &type, &size))
3964 ok(type != INTERNET_HANDLE_TYPE_CONNECT_HTTP, "unexpected callback\n");
3965 SetEvent(ctx->event);
3968 case INTERNET_STATUS_NAME_RESOLVED:
3969 case INTERNET_STATUS_CONNECTING_TO_SERVER:
3970 case INTERNET_STATUS_CONNECTED_TO_SERVER: {
3972 ok(str[0] && str[1], "Got string: %s\n", str);
3973 ok(size == strlen(str)+1, "unexpected size %u\n", size);
3978 static void test_open_url_async(void)
3986 /* Collect all existing persistent connections */
3987 ret = InternetSetOptionA(NULL, INTERNET_OPTION_SETTINGS_CHANGED, NULL, 0);
3988 ok(ret, "InternetSetOption(INTERNET_OPTION_END_BROWSER_SESSION) failed: %u\n", GetLastError());
3991 * Some versions of IE6 fail those tests. They pass some notification data as UNICODE string, while
3992 * other versions never do. They also hang of following tests. We disable it for everything older
3995 if(!pInternetGetSecurityInfoByURLA) {
3996 win_skip("Skipping async open on too old wininet version.\n");
4001 ctx.event = CreateEvent(NULL, TRUE, FALSE, "Z:_home_hans_jaman-installer.exe_ev1");
4003 ses = InternetOpen("AdvancedInstaller", 0, NULL, NULL, INTERNET_FLAG_ASYNC);
4004 ok(ses != NULL, "InternetOpen failed\n");
4006 SetLastError(0xdeadbeef);
4007 ret = InternetSetOptionA(NULL, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
4008 error = GetLastError();
4009 ok(!ret, "InternetSetOptionA succeeded\n");
4010 ok(error == ERROR_INTERNET_INCORRECT_HANDLE_TYPE, "got %u expected ERROR_INTERNET_INCORRECT_HANDLE_TYPE\n", error);
4012 ret = InternetSetOptionA(ses, INTERNET_OPTION_CALLBACK, &cb, sizeof(DWORD_PTR));
4013 error = GetLastError();
4014 ok(!ret, "InternetSetOptionA failed\n");
4015 ok(error == ERROR_INTERNET_OPTION_NOT_SETTABLE, "got %u expected ERROR_INTERNET_OPTION_NOT_SETTABLE\n", error);
4017 pInternetSetStatusCallbackW(ses, cb);
4018 ResetEvent(ctx.event);
4020 req = InternetOpenUrl(ses, "http://test.winehq.org", NULL, 0, 0, (DWORD_PTR)&ctx);
4021 ok(!req && GetLastError() == ERROR_IO_PENDING, "InternetOpenUrl failed\n");
4023 WaitForSingleObject(ctx.event, INFINITE);
4026 size = sizeof(type);
4027 ret = InternetQueryOption(ctx.req, INTERNET_OPTION_HANDLE_TYPE, &type, &size);
4028 ok(ret, "InternetQueryOption failed: %u\n", GetLastError());
4029 ok(type == INTERNET_HANDLE_TYPE_HTTP_REQUEST,
4030 "expected INTERNET_HANDLE_TYPE_HTTP_REQUEST, got %u\n", type);
4033 ret = HttpQueryInfo(ctx.req, HTTP_QUERY_RAW_HEADERS_CRLF, NULL, &size, NULL);
4034 ok(!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER, "HttpQueryInfo failed\n");
4035 ok(size > 0, "expected size > 0\n");
4037 ResetEvent(ctx.event);
4038 InternetCloseHandle(ctx.req);
4039 WaitForSingleObject(ctx.event, INFINITE);
4041 InternetCloseHandle(ses);
4042 CloseHandle(ctx.event);
4047 internet_connect = 1,
4049 http_send_request_ex,
4052 internet_close_handle
4057 enum api function; /* api responsible for notification */
4058 unsigned int status; /* status received */
4059 int async; /* delivered from another thread? */
4067 const struct notification *test;
4073 DWORD expect_result;
4077 static CRITICAL_SECTION notification_cs;
4079 static void CALLBACK check_notification( HINTERNET handle, DWORD_PTR context, DWORD status, LPVOID buffer, DWORD buflen )
4081 BOOL status_ok, function_ok;
4082 struct info *info = (struct info *)context;
4085 EnterCriticalSection( ¬ification_cs );
4087 if(info->is_aborted) {
4088 LeaveCriticalSection(¬ification_cs);
4092 if (status == INTERNET_STATUS_HANDLE_CREATED)
4094 DWORD size = sizeof(struct info *);
4095 HttpQueryInfoA( handle, INTERNET_OPTION_CONTEXT_VALUE, &info, &size, 0 );
4096 }else if(status == INTERNET_STATUS_REQUEST_COMPLETE) {
4097 INTERNET_ASYNC_RESULT *ar = (INTERNET_ASYNC_RESULT*)buffer;
4099 ok(buflen == sizeof(*ar), "unexpected buflen = %d\n", buflen);
4100 if(info->expect_result == ERROR_SUCCESS) {
4101 ok(ar->dwResult == 1, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
4103 ok(!ar->dwResult, "ar->dwResult = %ld, expected 1\n", ar->dwResult);
4104 ok(ar->dwError == info->expect_result, "ar->dwError = %d, expected %d\n", ar->dwError, info->expect_result);
4109 if (i >= info->count)
4111 LeaveCriticalSection( ¬ification_cs );
4115 while (info->test[i].status != status &&
4116 (info->test[i].optional || info->test[i].todo) &&
4117 i < info->count - 1 &&
4118 info->test[i].function == info->test[i + 1].function)
4123 status_ok = (info->test[i].status == status);
4124 function_ok = (info->test[i].function == info->function);
4126 if (!info->test[i].todo)
4128 ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
4129 ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
4131 if (info->test[i].async)
4132 ok(info->thread != GetCurrentThreadId(), "%u: expected thread %u got %u\n",
4133 info->line, info->thread, GetCurrentThreadId());
4137 todo_wine ok( status_ok, "%u: expected status %u got %u\n", info->line, info->test[i].status, status );
4139 todo_wine ok( function_ok, "%u: expected function %u got %u\n", info->line, info->test[i].function, info->function );
4141 if (i == info->count - 1 || info->test[i].function != info->test[i + 1].function) SetEvent( info->wait );
4144 LeaveCriticalSection( ¬ification_cs );
4147 static void setup_test( struct info *info, enum api function, unsigned int line, DWORD expect_result )
4149 info->function = function;
4151 info->expect_result = expect_result;
4154 struct notification_data
4156 const struct notification *test;
4157 const unsigned int count;
4162 BOOL expect_conn_failure;
4165 static const struct notification async_send_request_ex_test[] =
4167 { internet_connect, INTERNET_STATUS_HANDLE_CREATED, 0 },
4168 { http_open_request, INTERNET_STATUS_HANDLE_CREATED, 0 },
4169 { http_send_request_ex, INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4170 { http_send_request_ex, INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
4171 { http_send_request_ex, INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
4172 { http_send_request_ex, INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
4173 { http_send_request_ex, INTERNET_STATUS_CONNECTING_TO_SERVER, 1 },
4174 { http_send_request_ex, INTERNET_STATUS_CONNECTED_TO_SERVER, 1 },
4175 { http_send_request_ex, INTERNET_STATUS_SENDING_REQUEST, 1 },
4176 { http_send_request_ex, INTERNET_STATUS_REQUEST_SENT, 1 },
4177 { http_send_request_ex, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4178 { internet_writefile, INTERNET_STATUS_SENDING_REQUEST, 0 },
4179 { internet_writefile, INTERNET_STATUS_REQUEST_SENT, 0 },
4180 { http_end_request, INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
4181 { http_end_request, INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
4182 { http_end_request, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4183 { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4184 { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4185 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4186 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4189 static const struct notification async_send_request_ex_test2[] =
4191 { internet_connect, INTERNET_STATUS_HANDLE_CREATED, 0 },
4192 { http_open_request, INTERNET_STATUS_HANDLE_CREATED, 0 },
4193 { http_send_request_ex, INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4194 { http_send_request_ex, INTERNET_STATUS_COOKIE_SENT, 1, 0, 1 },
4195 { http_send_request_ex, INTERNET_STATUS_RESOLVING_NAME, 1, 0, 1 },
4196 { http_send_request_ex, INTERNET_STATUS_NAME_RESOLVED, 1, 0, 1 },
4197 { http_send_request_ex, INTERNET_STATUS_CONNECTING_TO_SERVER, 1, 1 },
4198 { http_send_request_ex, INTERNET_STATUS_CONNECTED_TO_SERVER, 1, 1 },
4199 { http_send_request_ex, INTERNET_STATUS_SENDING_REQUEST, 1 },
4200 { http_send_request_ex, INTERNET_STATUS_REQUEST_SENT, 1 },
4201 { http_send_request_ex, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4202 { http_end_request, INTERNET_STATUS_RECEIVING_RESPONSE, 1 },
4203 { http_end_request, INTERNET_STATUS_RESPONSE_RECEIVED, 1 },
4204 { http_end_request, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4205 { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4206 { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4207 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4208 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4211 static const struct notification async_send_request_ex_resolve_failure_test[] =
4213 { internet_connect, INTERNET_STATUS_HANDLE_CREATED, 0 },
4214 { http_open_request, INTERNET_STATUS_HANDLE_CREATED, 0 },
4215 { http_send_request_ex, INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4216 { http_send_request_ex, INTERNET_STATUS_RESOLVING_NAME, 1 },
4217 { http_send_request_ex, INTERNET_STATUS_DETECTING_PROXY, 1, 0, 1 },
4218 { http_send_request_ex, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4219 { http_end_request, INTERNET_STATUS_REQUEST_COMPLETE, 1 },
4220 { internet_close_handle, INTERNET_STATUS_CLOSING_CONNECTION, 0, 0, 1 },
4221 { internet_close_handle, INTERNET_STATUS_CONNECTION_CLOSED, 0, 0, 1 },
4222 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, },
4223 { internet_close_handle, INTERNET_STATUS_HANDLE_CLOSING, 0, }
4226 static const struct notification_data notification_data[] = {
4228 async_send_request_ex_test,
4229 sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4232 "tests/posttest.php",
4233 "Public ID=codeweavers"
4236 async_send_request_ex_test2,
4237 sizeof(async_send_request_ex_test)/sizeof(async_send_request_ex_test[0]),
4240 "tests/posttest.php"
4243 async_send_request_ex_resolve_failure_test,
4244 sizeof(async_send_request_ex_resolve_failure_test)/sizeof(async_send_request_ex_resolve_failure_test[0]),
4253 static void test_async_HttpSendRequestEx(const struct notification_data *nd)
4256 HINTERNET ses, req, con;
4258 DWORD size, written, error;
4259 INTERNET_BUFFERSA b;
4260 static const char *accept[2] = {"*/*", NULL};
4263 trace("Async HttpSendRequestEx test (%s %s)\n", nd->method, nd->host);
4265 InitializeCriticalSection( ¬ification_cs );
4267 info.test = nd->test;
4268 info.count = nd->count;
4270 info.wait = CreateEvent( NULL, FALSE, FALSE, NULL );
4271 info.thread = GetCurrentThreadId();
4272 info.is_aborted = FALSE;
4274 ses = InternetOpen( "winetest", 0, NULL, NULL, INTERNET_FLAG_ASYNC );
4275 ok( ses != NULL, "InternetOpen failed\n" );
4277 pInternetSetStatusCallbackA( ses, check_notification );
4279 setup_test( &info, internet_connect, __LINE__, ERROR_SUCCESS );
4280 con = InternetConnect( ses, nd->host, 80, NULL, NULL, INTERNET_SERVICE_HTTP, 0, (DWORD_PTR)&info );
4281 ok( con != NULL, "InternetConnect failed %u\n", GetLastError() );
4283 WaitForSingleObject( info.wait, 10000 );
4285 setup_test( &info, http_open_request, __LINE__, ERROR_SUCCESS );
4286 req = HttpOpenRequest( con, nd->method, nd->path, NULL, NULL, accept, 0, (DWORD_PTR)&info );
4287 ok( req != NULL, "HttpOpenRequest failed %u\n", GetLastError() );
4289 WaitForSingleObject( info.wait, 10000 );
4292 memset( &b, 0, sizeof(INTERNET_BUFFERSA) );
4293 b.dwStructSize = sizeof(INTERNET_BUFFERSA);
4294 b.lpcszHeader = "Content-Type: application/x-www-form-urlencoded";
4295 b.dwHeadersLength = strlen( b.lpcszHeader );
4296 b.dwBufferTotal = nd->data ? strlen( nd->data ) : 0;
4299 setup_test( &info, http_send_request_ex, __LINE__,
4300 nd->expect_conn_failure ? ERROR_INTERNET_NAME_NOT_RESOLVED : ERROR_SUCCESS );
4301 ret = HttpSendRequestExA( req, nd->data ? &b : NULL, NULL, 0x28, 0 );
4302 ok( !ret && GetLastError() == ERROR_IO_PENDING, "HttpSendRequestExA failed %d %u\n", ret, GetLastError() );
4304 error = WaitForSingleObject( info.wait, 10000 );
4305 if(error != WAIT_OBJECT_0) {
4306 skip("WaitForSingleObject returned %d, assuming DNS problem\n", error);
4307 info.is_aborted = TRUE;
4311 size = sizeof(buffer);
4312 SetLastError( 0xdeadbeef );
4313 ret = HttpQueryInfoA( req, HTTP_QUERY_CONTENT_ENCODING, buffer, &size, 0 );
4314 error = GetLastError();
4315 ok( !ret, "HttpQueryInfoA failed %u\n", GetLastError() );
4316 if(nd->expect_conn_failure) {
4317 ok(error == ERROR_HTTP_HEADER_NOT_FOUND, "expected ERROR_HTTP_HEADER_NOT_FOUND got %u\n", error );
4320 ok(error == ERROR_INTERNET_INCORRECT_HANDLE_STATE,
4321 "expected ERROR_INTERNET_INCORRECT_HANDLE_STATE got %u\n", error );
4327 size = strlen( nd->data );
4328 setup_test( &info, internet_writefile, __LINE__, ERROR_SUCCESS );
4329 ret = InternetWriteFile( req, nd->data, size, &written );
4330 ok( ret, "InternetWriteFile failed %u\n", GetLastError() );
4331 ok( written == size, "expected %u got %u\n", written, size );
4333 WaitForSingleObject( info.wait, 10000 );
4335 SetLastError( 0xdeadbeef );
4336 ret = HttpEndRequestA( req, (void *)nd->data, 0x28, 0 );
4337 error = GetLastError();
4338 ok( !ret, "HttpEndRequestA succeeded\n" );
4339 ok( error == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got %u\n", error );
4342 SetLastError( 0xdeadbeef );
4343 setup_test( &info, http_end_request, __LINE__,
4344 nd->expect_conn_failure ? ERROR_INTERNET_OPERATION_CANCELLED : ERROR_SUCCESS);
4345 ret = HttpEndRequestA( req, NULL, 0x28, 0 );
4346 error = GetLastError();
4347 ok( !ret, "HttpEndRequestA succeeded\n" );
4348 ok( error == ERROR_IO_PENDING, "expected ERROR_IO_PENDING got %u\n", error );
4350 WaitForSingleObject( info.wait, 10000 );
4352 setup_test( &info, internet_close_handle, __LINE__, ERROR_SUCCESS );
4354 InternetCloseHandle( req );
4355 InternetCloseHandle( con );
4356 InternetCloseHandle( ses );
4358 WaitForSingleObject( info.wait, 10000 );
4360 CloseHandle( info.wait );
4363 static HINTERNET closetest_session, closetest_req, closetest_conn;
4364 static BOOL closetest_closed;
4366 static void WINAPI closetest_callback(HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetStatus,
4367 LPVOID lpvStatusInformation, DWORD dwStatusInformationLength)
4372 trace("closetest_callback %p: %d\n", hInternet, dwInternetStatus);
4374 ok(hInternet == closetest_session || hInternet == closetest_conn || hInternet == closetest_req,
4375 "Unexpected hInternet %p\n", hInternet);
4376 if(!closetest_closed)
4380 res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_HANDLE_TYPE, &type, &len);
4381 ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4382 "InternetQueryOptionA(%p INTERNET_OPTION_HANDLE_TYPE) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4383 closetest_req, res, GetLastError());
4386 static void test_InternetCloseHandle(void)
4391 closetest_session = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, INTERNET_FLAG_ASYNC);
4392 ok(closetest_session != NULL,"InternetOpen failed with error %u\n", GetLastError());
4394 pInternetSetStatusCallbackA(closetest_session, closetest_callback);
4396 closetest_conn = InternetConnectA(closetest_session, "source.winehq.org", INTERNET_INVALID_PORT_NUMBER,
4397 NULL, NULL, INTERNET_SERVICE_HTTP, 0x0, 0xdeadbeef);
4398 ok(closetest_conn != NULL,"InternetConnect failed with error %u\n", GetLastError());
4400 closetest_req = HttpOpenRequestA(closetest_conn, "GET", "winegecko.php", NULL, NULL, NULL,
4401 INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RESYNCHRONIZE, 0xdeadbead);
4403 res = HttpSendRequestA(closetest_req, NULL, -1, NULL, 0);
4404 ok(!res && (GetLastError() == ERROR_IO_PENDING),
4405 "Asynchronous HttpSendRequest NOT returning 0 with error ERROR_IO_PENDING\n");
4407 test_request_flags(closetest_req, INTERNET_REQFLAG_NO_HEADERS);
4409 res = InternetCloseHandle(closetest_session);
4410 ok(res, "InternetCloseHandle failed: %u\n", GetLastError());
4411 closetest_closed = TRUE;
4412 trace("Closed session handle\n");
4414 res = InternetCloseHandle(closetest_conn);
4415 ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(conn) failed: %x %u\n",
4416 res, GetLastError());
4418 res = InternetCloseHandle(closetest_req);
4419 ok(!res && GetLastError() == ERROR_INVALID_HANDLE, "InternetCloseConnection(req) failed: %x %u\n",
4420 res, GetLastError());
4422 len = sizeof(flags);
4423 res = InternetQueryOptionA(closetest_req, INTERNET_OPTION_REQUEST_FLAGS, &flags, &len);
4424 ok(!res && GetLastError() == ERROR_INVALID_HANDLE,
4425 "InternetQueryOptionA(%p INTERNET_OPTION_URL) failed: %x %u, expected TRUE ERROR_INVALID_HANDLE\n",
4426 closetest_req, res, GetLastError());
4429 static void test_connection_failure(void)
4431 HINTERNET session, connect, request;
4435 session = InternetOpenA("winetest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
4436 ok(session != NULL, "failed to get session handle\n");
4438 connect = InternetConnectA(session, "localhost", 1, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
4439 ok(connect != NULL, "failed to get connection handle\n");
4441 request = HttpOpenRequestA(connect, NULL, "/", NULL, NULL, NULL, 0, 0);
4442 ok(request != NULL, "failed to get request handle\n");
4444 SetLastError(0xdeadbeef);
4445 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4446 error = GetLastError();
4447 ok(!ret, "unexpected success\n");
4448 ok(error == ERROR_INTERNET_CANNOT_CONNECT, "wrong error %u\n", error);
4450 InternetCloseHandle(request);
4451 InternetCloseHandle(connect);
4452 InternetCloseHandle(session);
4455 static void test_default_service_port(void)
4457 HINTERNET session, connect, request;
4461 session = InternetOpen("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
4462 ok(session != NULL, "InternetOpen failed\n");
4464 connect = InternetConnect(session, "test.winehq.org", INTERNET_INVALID_PORT_NUMBER, NULL, NULL,
4465 INTERNET_SERVICE_HTTP, 0, 0);
4466 ok(connect != NULL, "InternetConnect failed\n");
4468 request = HttpOpenRequest(connect, NULL, "/", NULL, NULL, NULL, INTERNET_FLAG_SECURE, 0);
4469 ok(request != NULL, "HttpOpenRequest failed\n");
4471 SetLastError(0xdeadbeef);
4472 ret = HttpSendRequest(request, NULL, 0, NULL, 0);
4473 error = GetLastError();
4474 ok(!ret, "HttpSendRequest succeeded\n");
4475 ok(error == ERROR_INTERNET_SECURITY_CHANNEL_ERROR || error == ERROR_INTERNET_CANNOT_CONNECT,
4478 InternetCloseHandle(request);
4479 InternetCloseHandle(connect);
4480 InternetCloseHandle(session);
4483 static void init_status_tests(void)
4485 memset(expect, 0, sizeof(expect));
4486 memset(optional, 0, sizeof(optional));
4487 memset(wine_allow, 0, sizeof(wine_allow));
4488 memset(notified, 0, sizeof(notified));
4489 memset(status_string, 0, sizeof(status_string));
4491 #define STATUS_STRING(status) status_string[status] = #status
4492 STATUS_STRING(INTERNET_STATUS_RESOLVING_NAME);
4493 STATUS_STRING(INTERNET_STATUS_NAME_RESOLVED);
4494 STATUS_STRING(INTERNET_STATUS_CONNECTING_TO_SERVER);
4495 STATUS_STRING(INTERNET_STATUS_CONNECTED_TO_SERVER);
4496 STATUS_STRING(INTERNET_STATUS_SENDING_REQUEST);
4497 STATUS_STRING(INTERNET_STATUS_REQUEST_SENT);
4498 STATUS_STRING(INTERNET_STATUS_RECEIVING_RESPONSE);
4499 STATUS_STRING(INTERNET_STATUS_RESPONSE_RECEIVED);
4500 STATUS_STRING(INTERNET_STATUS_CTL_RESPONSE_RECEIVED);
4501 STATUS_STRING(INTERNET_STATUS_PREFETCH);
4502 STATUS_STRING(INTERNET_STATUS_CLOSING_CONNECTION);
4503 STATUS_STRING(INTERNET_STATUS_CONNECTION_CLOSED);
4504 STATUS_STRING(INTERNET_STATUS_HANDLE_CREATED);
4505 STATUS_STRING(INTERNET_STATUS_HANDLE_CLOSING);
4506 STATUS_STRING(INTERNET_STATUS_DETECTING_PROXY);
4507 STATUS_STRING(INTERNET_STATUS_REQUEST_COMPLETE);
4508 STATUS_STRING(INTERNET_STATUS_REDIRECT);
4509 STATUS_STRING(INTERNET_STATUS_INTERMEDIATE_RESPONSE);
4510 STATUS_STRING(INTERNET_STATUS_USER_INPUT_REQUIRED);
4511 STATUS_STRING(INTERNET_STATUS_STATE_CHANGE);
4512 STATUS_STRING(INTERNET_STATUS_COOKIE_SENT);
4513 STATUS_STRING(INTERNET_STATUS_COOKIE_RECEIVED);
4514 STATUS_STRING(INTERNET_STATUS_PRIVACY_IMPACTED);
4515 STATUS_STRING(INTERNET_STATUS_P3P_HEADER);
4516 STATUS_STRING(INTERNET_STATUS_P3P_POLICYREF);
4517 STATUS_STRING(INTERNET_STATUS_COOKIE_HISTORY);
4518 #undef STATUS_STRING
4524 hdll = GetModuleHandleA("wininet.dll");
4526 if(!GetProcAddress(hdll, "InternetGetCookieExW")) {
4527 win_skip("Too old IE (older than 6.0)\n");
4531 pInternetSetStatusCallbackA = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackA");
4532 pInternetSetStatusCallbackW = (void*)GetProcAddress(hdll, "InternetSetStatusCallbackW");
4533 pInternetGetSecurityInfoByURLA = (void*)GetProcAddress(hdll, "InternetGetSecurityInfoByURLA");
4535 init_status_tests();
4536 test_InternetCloseHandle();
4537 InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[0]);
4538 InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[1]);
4539 InternetReadFile_test(0, &test_data[1]);
4540 first_connection_to_test_url = TRUE;
4541 InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[2]);
4542 test_security_flags();
4543 InternetReadFile_test(0, &test_data[2]);
4544 InternetReadFileExA_test(INTERNET_FLAG_ASYNC);
4545 test_open_url_async();
4546 test_async_HttpSendRequestEx(¬ification_data[0]);
4547 test_async_HttpSendRequestEx(¬ification_data[1]);
4548 test_async_HttpSendRequestEx(¬ification_data[2]);
4549 InternetOpenRequest_test();
4551 InternetOpenUrlA_test();
4553 test_http_connection();
4554 test_secure_connection();
4555 test_user_agent_header();
4556 test_bogus_accept_types_array();
4557 InternetReadFile_chunked_test();
4558 HttpSendRequestEx_test();
4559 InternetReadFile_test(INTERNET_FLAG_ASYNC, &test_data[3]);
4560 test_connection_failure();
4561 test_default_service_port();