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
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include <gtest/gtest.h>
#include <stddef.h>
#include "base/command_line.h"
#include "base/memory/ref_counted.h"
#include "chrome/browser/prefs/chrome_command_line_pref_store.h"
#include "chrome/common/chrome_switches.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/proxy_config/pref_proxy_config_tracker_impl.h"
#include "components/sync_preferences/pref_service_mock_factory.h"
#include "content/public/common/content_switches.h"
#include "net/proxy_resolution/proxy_config_service_common_unittest.h"
#include "url/gurl.h"
namespace {
// Test parameter object for testing command line proxy configuration.
struct CommandLineTestParams {
// Short description to identify the test.
const char* description;
// The command line to build a ProxyConfig from.
struct SwitchValue {
const char* name;
const char* value;
} switches[2];
// Expected outputs (fields of the ProxyConfig).
bool is_null;
bool auto_detect;
std::string pac_url;
net::ProxyRulesExpectation proxy_rules;
};
void PrintTo(const CommandLineTestParams& params, std::ostream* os) {
*os << params.description;
}
static const CommandLineTestParams kCommandLineTestParams[] = {
{
"Empty command line",
// Input
{},
// Expected result
true, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::Empty(),
},
{
"No proxy",
// Input
{
{switches::kNoProxyServer, nullptr},
},
// Expected result
false, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::Empty(),
},
{
"No proxy with extra parameters.",
// Input
{
{switches::kNoProxyServer, nullptr},
{switches::kProxyServer, "http://proxy:8888"},
},
// Expected result
false, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::Empty(),
},
{
"Single proxy.",
// Input
{
{switches::kProxyServer, "http://proxy:8888"},
},
// Expected result
false, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::Single("proxy:8888", // single proxy
""), // bypass rules
},
{
"Per scheme proxy.",
// Input
{
{switches::kProxyServer, "http=httpproxy:8888;ftp=ftpproxy:8889"},
},
// Expected result
false, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::PerScheme("httpproxy:8888", // http
"", // https
"ftpproxy:8889", // ftp
""), // bypass rules
},
{
"Per scheme proxy with bypass URLs.",
// Input
{
{switches::kProxyServer, "http=httpproxy:8888;ftp=ftpproxy:8889"},
{switches::kProxyBypassList,
".google.com, foo.com:99, 1.2.3.4:22, 127.0.0.1/8"},
},
// Expected result
false, // is_null
false, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::PerScheme(
"httpproxy:8888", // http
"", // https
"ftpproxy:8889", // ftp
"*.google.com,foo.com:99,1.2.3.4:22,127.0.0.1/8"),
},
{
"Pac URL",
// Input
{
{switches::kProxyPacUrl, "http://wpad/wpad.dat"},
},
// Expected result
false, // is_null
false, // auto_detect
"http://wpad/wpad.dat", // pac_url
net::ProxyRulesExpectation::Empty(),
},
{
"Autodetect",
// Input
{
{switches::kProxyAutoDetect, nullptr},
},
// Expected result
false, // is_null
true, // auto_detect
"", // pac_url
net::ProxyRulesExpectation::Empty(),
},
};
} // namespace
class ChromeCommandLinePrefStoreProxyTest
: public testing::TestWithParam<CommandLineTestParams> {
protected:
ChromeCommandLinePrefStoreProxyTest()
: command_line_(base::CommandLine::NO_PROGRAM) {}
net::ProxyConfigWithAnnotation* proxy_config() { return &proxy_config_; }
void SetUp() override {
for (size_t i = 0; i < std::size(GetParam().switches); i++) {
const char* name = GetParam().switches[i].name;
const char* value = GetParam().switches[i].value;
if (name && value)
command_line_.AppendSwitchASCII(name, value);
else if (name)
command_line_.AppendSwitch(name);
}
scoped_refptr<PrefRegistrySimple> registry = new PrefRegistrySimple;
PrefProxyConfigTrackerImpl::RegisterPrefs(registry.get());
sync_preferences::PrefServiceMockFactory factory;
factory.set_command_line_prefs(
new ChromeCommandLinePrefStore(&command_line_));
pref_service_ = factory.Create(registry.get());
PrefProxyConfigTrackerImpl::ReadPrefConfig(pref_service_.get(),
&proxy_config_);
}
private:
base::CommandLine command_line_;
std::unique_ptr<PrefService> pref_service_;
net::ProxyConfigWithAnnotation proxy_config_;
};
TEST_P(ChromeCommandLinePrefStoreProxyTest, CommandLine) {
EXPECT_EQ(GetParam().auto_detect, proxy_config()->value().auto_detect());
EXPECT_EQ(GURL(GetParam().pac_url), proxy_config()->value().pac_url());
EXPECT_TRUE(
GetParam().proxy_rules.Matches(proxy_config()->value().proxy_rules()));
}
INSTANTIATE_TEST_SUITE_P(ChromeCommandLinePrefStoreProxyTestInstance,
ChromeCommandLinePrefStoreProxyTest,
testing::ValuesIn(kCommandLineTestParams));
|