mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
123 lines
4.6 KiB
Diff
123 lines
4.6 KiB
Diff
From 284cf431a6dc5ba77356c0103098f4009cb498eb Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
|
Date: Fri, 15 May 2015 21:18:37 +0200
|
|
Subject: wininet/tests: Test auth credential reusage with host override.
|
|
|
|
---
|
|
dlls/wininet/tests/http.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 92 insertions(+)
|
|
|
|
diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c
|
|
index 16773e6..a6e860b 100644
|
|
--- a/dlls/wininet/tests/http.c
|
|
+++ b/dlls/wininet/tests/http.c
|
|
@@ -2401,6 +2401,20 @@ static DWORD CALLBACK server_thread(LPVOID param)
|
|
WaitForSingleObject(conn_wait_event, INFINITE);
|
|
send(c, page1_mid, page1_end - page1_mid, 0);
|
|
}
|
|
+ if (strstr(buffer, "HEAD /test_auth_host1"))
|
|
+ {
|
|
+ if (strstr(buffer, "Authorization: Basic dGVzdDE6cGFzcw=="))
|
|
+ send(c, okmsg, sizeof okmsg-1, 0);
|
|
+ else
|
|
+ send(c, noauthmsg, sizeof noauthmsg-1, 0);
|
|
+ }
|
|
+ if (strstr(buffer, "HEAD /test_auth_host2"))
|
|
+ {
|
|
+ if (strstr(buffer, "Authorization: Basic dGVzdDE6cGFzczI="))
|
|
+ send(c, okmsg, sizeof okmsg-1, 0);
|
|
+ else
|
|
+ send(c, noauthmsg, sizeof noauthmsg-1, 0);
|
|
+ }
|
|
shutdown(c, 2);
|
|
closesocket(c);
|
|
c = -1;
|
|
@@ -3112,6 +3126,84 @@ static void test_header_override(int port)
|
|
InternetCloseHandle(req);
|
|
InternetCloseHandle(con);
|
|
InternetCloseHandle(ses);
|
|
+
|
|
+ ses = InternetOpenA("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
|
|
+ ok(ses != NULL, "InternetOpenA failed\n");
|
|
+
|
|
+ con = InternetConnectA(ses, "localhost", port, "test1", "pass", INTERNET_SERVICE_HTTP, 0, 0);
|
|
+ ok(con != NULL, "InternetConnectA failed %u\n", GetLastError());
|
|
+
|
|
+ req = HttpOpenRequestA( con, "HEAD", "/test_auth_host1", NULL, NULL, NULL, 0, 0);
|
|
+ ok(req != NULL, "HttpOpenRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ ret = HttpSendRequestA(req, NULL, 0, NULL, 0);
|
|
+ ok(ret, "HttpSendRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ test_status_code(req, 200);
|
|
+
|
|
+ InternetCloseHandle(req);
|
|
+ InternetCloseHandle(con);
|
|
+ InternetCloseHandle(ses);
|
|
+
|
|
+ ses = InternetOpenA("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
|
|
+ ok(ses != NULL, "InternetOpenA failed\n");
|
|
+
|
|
+ con = InternetConnectA( ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
|
|
+ ok(con != NULL, "InternetConnectA failed %u\n", GetLastError());
|
|
+
|
|
+ req = HttpOpenRequestA(con, "HEAD", "/test_auth_host1", NULL, NULL, NULL, 0, 0);
|
|
+ ok(req != NULL, "HttpOpenRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ ret = HttpAddRequestHeadersA(req, host_header_override, ~0u, HTTP_ADDREQ_FLAG_ADD);
|
|
+ ok(ret, "HttpAddRequestHeaders failed\n");
|
|
+
|
|
+ ret = HttpSendRequestA( req, NULL, 0, NULL, 0 );
|
|
+ ok( ret, "HttpSendRequestA failed %u\n", GetLastError() );
|
|
+
|
|
+ test_status_code(req, 200);
|
|
+
|
|
+ InternetCloseHandle(req);
|
|
+ InternetCloseHandle(con);
|
|
+ InternetCloseHandle(ses);
|
|
+
|
|
+ ses = InternetOpenA("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
|
|
+ ok(ses != NULL, "InternetOpenA failed\n");
|
|
+
|
|
+ con = InternetConnectA(ses, "localhost", port, "test1", "pass2", INTERNET_SERVICE_HTTP, 0, 0);
|
|
+ ok(con != NULL, "InternetConnectA failed %u\n", GetLastError());
|
|
+
|
|
+ req = HttpOpenRequestA(con, "HEAD", "/test_auth_host2", NULL, NULL, NULL, 0, 0);
|
|
+ ok(req != NULL, "HttpOpenRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ ret = HttpAddRequestHeadersA(req, host_header_override, ~0u, HTTP_ADDREQ_FLAG_ADD);
|
|
+ ok(ret, "HttpAddRequestHeaders failed\n");
|
|
+
|
|
+ ret = HttpSendRequestA(req, NULL, 0, NULL, 0);
|
|
+ ok(ret, "HttpSendRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ test_status_code(req, 200);
|
|
+
|
|
+ InternetCloseHandle(req);
|
|
+ InternetCloseHandle(con);
|
|
+ InternetCloseHandle(ses);
|
|
+
|
|
+ ses = InternetOpenA("winetest", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
|
|
+ ok(ses != NULL, "InternetOpenA failed\n");
|
|
+
|
|
+ con = InternetConnectA(ses, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
|
|
+ ok(con != NULL, "InternetConnectA failed %u\n", GetLastError());
|
|
+
|
|
+ req = HttpOpenRequestA(con, "HEAD", "/test_auth_host2", NULL, NULL, NULL, 0, 0);
|
|
+ ok(req != NULL, "HttpOpenRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ ret = HttpSendRequestA(req, NULL, 0, NULL, 0);
|
|
+ ok(ret, "HttpSendRequestA failed %u\n", GetLastError());
|
|
+
|
|
+ test_status_code(req, 200);
|
|
+
|
|
+ InternetCloseHandle(req);
|
|
+ InternetCloseHandle(con);
|
|
+ InternetCloseHandle(ses);
|
|
}
|
|
|
|
static void test_http1_1(int port)
|
|
--
|
|
2.8.0
|
|
|