1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/proxy_resolution/win/proxy_config_service_win.h"
#include <array>
#include "net/base/net_errors.h"
#include "net/proxy_resolution/proxy_config.h"
#include "net/proxy_resolution/proxy_config_service_common_unittest.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
TEST(ProxyConfigServiceWinTest, SetFromIEConfig) {
// Like WINHTTP_CURRENT_USER_IE_PROXY_CONFIG, but with const strings.
struct IEProxyConfig {
BOOL auto_detect;
const wchar_t* auto_config_url;
const wchar_t* proxy;
const wchar_t* proxy_bypass;
};
struct Test {
// Input.
IEProxyConfig ie_config;
// Expected outputs (fields of the ProxyConfig).
bool auto_detect;
GURL pac_url;
ProxyRulesExpectation proxy_rules;
const char* proxy_bypass_list; // newline separated
};
auto tests = std::to_array<Test>({
// Auto detect.
{
{
// Input.
TRUE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
nullptr, // lpszProxy
nullptr, // lpszProxyBypass
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::Empty(),
},
// Valid PAC url
{
{
// Input.
FALSE, // fAutoDetect
L"http://wpad/wpad.dat", // lpszAutoConfigUrl
nullptr, // lpszProxy
nullptr, // lpszProxy_bypass
},
// Expected result.
false, // auto_detect
GURL("http://wpad/wpad.dat"), // pac_url
ProxyRulesExpectation::Empty(),
},
// Invalid PAC url string.
{
{
// Input.
FALSE, // fAutoDetect
L"wpad.dat", // lpszAutoConfigUrl
nullptr, // lpszProxy
nullptr, // lpszProxy_bypass
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::Empty(),
},
// Single-host in proxy list.
{
{
// Input.
FALSE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
L"www.google.com", // lpszProxy
nullptr, // lpszProxy_bypass
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::Single("www.google.com:80", // single proxy
""), // bypass rules
},
// Per-scheme proxy rules.
{
{
// Input.
FALSE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
L"http=www.google.com:80;https=www.foo.com:110", // lpszProxy
nullptr, // lpszProxy_bypass
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::PerScheme("www.google.com:80", // http
"www.foo.com:110", // https
"", // ftp
""), // bypass rules
},
// SOCKS proxy configuration.
{
{
// Input.
FALSE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
L"http=www.google.com:80;https=www.foo.com:110;"
L"ftp=ftpproxy:20;socks=foopy:130", // lpszProxy
nullptr, // lpszProxy_bypass
},
// Expected result.
// Note that "socks" is interprted as meaning "socks4", since that is
// how
// Internet Explorer applies the settings. For more details on this
// policy, see:
// http://code.google.com/p/chromium/issues/detail?id=55912#c2
false, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::PerSchemeWithSocks(
"www.google.com:80", // http
"www.foo.com:110", // https
"ftpproxy:20", // ftp
"socks4://foopy:130", // socks
""), // bypass rules
},
// Bypass local names.
{
{
// Input.
TRUE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
nullptr, // lpszProxy
L"<local>", // lpszProxy_bypass
},
true, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::EmptyWithBypass("<local>"),
},
// Bypass "google.com" and local names, using semicolon as delimiter
// (ignoring white space).
{
{
// Input.
TRUE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
nullptr, // lpszProxy
L"<local> ; google.com", // lpszProxy_bypass
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::EmptyWithBypass("<local>,google.com"),
},
// Bypass "foo.com" and "google.com", using lines as delimiter.
{
{
// Input.
TRUE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
nullptr, // lpszProxy
L"foo.com\r\ngoogle.com", // lpszProxy_bypass
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::EmptyWithBypass("foo.com,google.com"),
},
// Bypass "foo.com" and "google.com", using commas as delimiter.
{
{
// Input.
TRUE, // fAutoDetect
nullptr, // lpszAutoConfigUrl
nullptr, // lpszProxy
L"foo.com, google.com", // lpszProxy_bypass
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyRulesExpectation::EmptyWithBypass("foo.com,google.com"),
},
});
for (size_t i = 0; i < std::size(tests); ++i) {
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG ie_config = {
tests[i].ie_config.auto_detect,
const_cast<wchar_t*>(tests[i].ie_config.auto_config_url),
const_cast<wchar_t*>(tests[i].ie_config.proxy),
const_cast<wchar_t*>(tests[i].ie_config.proxy_bypass)};
ProxyConfig config;
ProxyConfigServiceWin::SetFromIEConfig(&config, ie_config);
EXPECT_EQ(tests[i].auto_detect, config.auto_detect());
EXPECT_EQ(tests[i].pac_url, config.pac_url());
EXPECT_TRUE(tests[i].proxy_rules.Matches(config.proxy_rules()));
}
}
} // namespace net
|