Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Unified Diff: net/proxy/proxy_script_decider_unittest.cc

Issue 8896019: Refactor: Extract "InitProxyResolver" to "ProxyScriptDecider". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do another sync since commitbot failed... Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/proxy/proxy_script_decider.cc ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_script_decider_unittest.cc
===================================================================
--- net/proxy/proxy_script_decider_unittest.cc (revision 113525)
+++ net/proxy/proxy_script_decider_unittest.cc (working copy)
@@ -12,10 +12,10 @@
#include "net/base/net_log.h"
#include "net/base/net_log_unittest.h"
#include "net/base/test_completion_callback.h"
-#include "net/proxy/init_proxy_resolver.h"
#include "net/proxy/dhcp_proxy_script_fetcher.h"
#include "net/proxy/proxy_config.h"
#include "net/proxy/proxy_resolver.h"
+#include "net/proxy/proxy_script_decider.h"
#include "net/proxy/proxy_script_fetcher.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -24,23 +24,21 @@
enum Error {
kFailedDownloading = -100,
- kFailedParsing = -200,
+ kFailedParsing = ERR_PAC_SCRIPT_FAILED,
};
class Rules {
public:
struct Rule {
- Rule(const GURL& url,
- int fetch_error,
- int set_pac_error)
+ Rule(const GURL& url, int fetch_error, bool is_valid_script)
: url(url),
fetch_error(fetch_error),
- set_pac_error(set_pac_error) {
+ is_valid_script(is_valid_script) {
}
string16 text() const {
- if (set_pac_error == OK)
- return UTF8ToUTF16(url.spec() + "!valid-script");
+ if (is_valid_script)
+ return UTF8ToUTF16(url.spec() + "!FindProxyForURL");
if (fetch_error == OK)
return UTF8ToUTF16(url.spec() + "!invalid-script");
return string16();
@@ -48,23 +46,22 @@
GURL url;
int fetch_error;
- int set_pac_error;
+ bool is_valid_script;
};
Rule AddSuccessRule(const char* url) {
- Rule rule(GURL(url), OK /*fetch_error*/, OK /*set_pac_error*/);
+ Rule rule(GURL(url), OK /*fetch_error*/, true);
rules_.push_back(rule);
return rule;
}
void AddFailDownloadRule(const char* url) {
rules_.push_back(Rule(GURL(url), kFailedDownloading /*fetch_error*/,
- ERR_UNEXPECTED /*set_pac_error*/));
+ false));
}
void AddFailParsingRule(const char* url) {
- rules_.push_back(Rule(GURL(url), OK /*fetch_error*/,
- kFailedParsing /*set_pac_error*/));
+ rules_.push_back(Rule(GURL(url), OK /*fetch_error*/, false));
}
const Rule& GetRuleByUrl(const GURL& url) const {
@@ -116,77 +113,9 @@
const Rules* rules_;
};
-class RuleBasedProxyResolver : public ProxyResolver {
- public:
- RuleBasedProxyResolver(const Rules* rules, bool expects_pac_bytes)
- : ProxyResolver(expects_pac_bytes), rules_(rules) {}
-
- // ProxyResolver implementation:
- virtual int GetProxyForURL(const GURL& /*url*/,
- ProxyInfo* /*results*/,
- OldCompletionCallback* /*callback*/,
- RequestHandle* /*request_handle*/,
- const BoundNetLog& /*net_log*/) {
- NOTREACHED();
- return ERR_UNEXPECTED;
- }
-
- virtual void CancelRequest(RequestHandle request_handle) {
- NOTREACHED();
- }
-
- virtual LoadState GetLoadState(RequestHandle request_handle) const {
- NOTREACHED();
- return LOAD_STATE_IDLE;
- }
-
- virtual LoadState GetLoadStateThreadSafe(
- RequestHandle request) const OVERRIDE {
- NOTREACHED();
- return LOAD_STATE_IDLE;
- }
-
- virtual void CancelSetPacScript() {
- NOTREACHED();
- }
-
- virtual int SetPacScript(
- const scoped_refptr<ProxyResolverScriptData>& script_data,
- OldCompletionCallback* callback) {
-
- const GURL url =
- script_data->type() == ProxyResolverScriptData::TYPE_SCRIPT_URL ?
- script_data->url() : GURL();
-
- const Rules::Rule& rule = expects_pac_bytes() ?
- rules_->GetRuleByText(script_data->utf16()) :
- rules_->GetRuleByUrl(url);
-
- int rv = rule.set_pac_error;
- EXPECT_NE(ERR_UNEXPECTED, rv);
-
- if (expects_pac_bytes()) {
- EXPECT_EQ(rule.text(), script_data->utf16());
- } else {
- EXPECT_EQ(rule.url, url);
- }
-
- if (rv == OK)
- script_data_ = script_data;
- return rv;
- }
-
- const ProxyResolverScriptData* script_data() const { return script_data_; }
-
- private:
- const Rules* rules_;
- scoped_refptr<ProxyResolverScriptData> script_data_;
-};
-
// Succeed using custom PAC script.
-TEST(InitProxyResolverTest, CustomPacSucceeds) {
+TEST(ProxyScriptDeciderTest, CustomPacSucceeds) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -197,38 +126,32 @@
TestOldCompletionCallback callback;
CapturingNetLog log(CapturingNetLog::kUnbounded);
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, &log);
- EXPECT_EQ(OK, init.Init(
- config, base::TimeDelta(), &effective_config, &callback));
- EXPECT_EQ(rule.text(), resolver.script_data()->utf16());
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, &log);
+ EXPECT_EQ(OK, decider.Start(
+ config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(rule.text(), decider.script_data()->utf16());
// Check the NetLog was filled correctly.
CapturingNetLog::EntryList entries;
log.GetEntries(&entries);
- EXPECT_EQ(6u, entries.size());
+ EXPECT_EQ(4u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 0, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 0, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 1, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 1, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 2, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsBeginEvent(
- entries, 3, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
+ entries, 2, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 4, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsEndEvent(
- entries, 5, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 3, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
- EXPECT_TRUE(effective_config.has_pac_url());
- EXPECT_EQ(config.pac_url(), effective_config.pac_url());
+ EXPECT_TRUE(decider.effective_config().has_pac_url());
+ EXPECT_EQ(config.pac_url(), decider.effective_config().pac_url());
}
// Fail downloading the custom PAC script.
-TEST(InitProxyResolverTest, CustomPacFails1) {
+TEST(ProxyScriptDeciderTest, CustomPacFails1) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -239,11 +162,10 @@
TestOldCompletionCallback callback;
CapturingNetLog log(CapturingNetLog::kUnbounded);
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, &log);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, &log);
EXPECT_EQ(kFailedDownloading,
- init.Init(config, base::TimeDelta(), &effective_config, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
// Check the NetLog was filled correctly.
CapturingNetLog::EntryList entries;
@@ -251,21 +173,20 @@
EXPECT_EQ(4u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 0, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 0, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 1, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 1, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 2, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 2, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 3, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 3, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
- EXPECT_FALSE(effective_config.has_pac_url());
+ EXPECT_FALSE(decider.effective_config().has_pac_url());
}
// Fail parsing the custom PAC script.
-TEST(InitProxyResolverTest, CustomPacFails2) {
+TEST(ProxyScriptDeciderTest, CustomPacFails2) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -275,32 +196,30 @@
rules.AddFailParsingRule("http://custom/proxy.pac");
TestOldCompletionCallback callback;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
EXPECT_EQ(kFailedParsing,
- init.Init(config, base::TimeDelta(), NULL, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
}
// Fail downloading the custom PAC script, because the fetcher was NULL.
-TEST(InitProxyResolverTest, HasNullProxyScriptFetcher) {
+TEST(ProxyScriptDeciderTest, HasNullProxyScriptFetcher) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
ProxyConfig config;
config.set_pac_url(GURL("http://custom/proxy.pac"));
TestOldCompletionCallback callback;
- InitProxyResolver init(&resolver, NULL, &dhcp_fetcher, NULL);
+ ProxyScriptDecider decider(NULL, &dhcp_fetcher, NULL);
EXPECT_EQ(ERR_UNEXPECTED,
- init.Init(config, base::TimeDelta(), NULL, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
}
// Succeeds in choosing autodetect (WPAD DNS).
-TEST(InitProxyResolverTest, AutodetectSuccess) {
+TEST(ProxyScriptDeciderTest, AutodetectSuccess) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -310,20 +229,18 @@
Rules::Rule rule = rules.AddSuccessRule("http://wpad/wpad.dat");
TestOldCompletionCallback callback;
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
- EXPECT_EQ(OK, init.Init(
- config, base::TimeDelta(), &effective_config, &callback));
- EXPECT_EQ(rule.text(), resolver.script_data()->utf16());
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
+ EXPECT_EQ(OK, decider.Start(
+ config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(rule.text(), decider.script_data()->utf16());
- EXPECT_TRUE(effective_config.has_pac_url());
- EXPECT_EQ(rule.url, effective_config.pac_url());
+ EXPECT_TRUE(decider.effective_config().has_pac_url());
+ EXPECT_EQ(rule.url, decider.effective_config().pac_url());
}
// Fails at WPAD (downloading), but succeeds in choosing the custom PAC.
-TEST(InitProxyResolverTest, AutodetectFailCustomSuccess1) {
+TEST(ProxyScriptDeciderTest, AutodetectFailCustomSuccess1) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -335,21 +252,19 @@
Rules::Rule rule = rules.AddSuccessRule("http://custom/proxy.pac");
TestOldCompletionCallback callback;
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
- EXPECT_EQ(OK, init.Init(
- config, base::TimeDelta(), &effective_config, &callback));
- EXPECT_EQ(rule.text(), resolver.script_data()->utf16());
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
+ EXPECT_EQ(OK, decider.Start(
+ config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(rule.text(), decider.script_data()->utf16());
- EXPECT_TRUE(effective_config.has_pac_url());
- EXPECT_EQ(rule.url, effective_config.pac_url());
+ EXPECT_TRUE(decider.effective_config().has_pac_url());
+ EXPECT_EQ(rule.url, decider.effective_config().pac_url());
}
// Fails at WPAD (no DHCP config, DNS PAC fails parsing), but succeeds in
// choosing the custom PAC.
-TEST(InitProxyResolverTest, AutodetectFailCustomSuccess2) {
+TEST(ProxyScriptDeciderTest, AutodetectFailCustomSuccess2) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -364,15 +279,14 @@
TestOldCompletionCallback callback;
CapturingNetLog log(CapturingNetLog::kUnbounded);
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, &log);
- EXPECT_EQ(OK, init.Init(config, base::TimeDelta(),
- &effective_config, &callback));
- EXPECT_EQ(rule.text(), resolver.script_data()->utf16());
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, &log);
+ EXPECT_EQ(OK, decider.Start(config, base::TimeDelta(),
+ true, &callback));
+ EXPECT_EQ(rule.text(), decider.script_data()->utf16());
// Verify that the effective configuration no longer contains auto detect or
// any of the manual settings.
- EXPECT_TRUE(effective_config.Equals(
+ EXPECT_TRUE(decider.effective_config().Equals(
ProxyConfig::CreateFromCustomPacURL(GURL("http://custom/proxy.pac"))));
// Check the NetLog was filled correctly.
@@ -381,49 +295,40 @@
CapturingNetLog::EntryList entries;
log.GetEntries(&entries);
- EXPECT_EQ(14u, entries.size());
+ EXPECT_EQ(10u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 0, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 0, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
// This is the DHCP phase, which fails fetching rather than parsing, so
// there is no pair of SET_PAC_SCRIPT events.
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 1, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 1, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 2, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 2, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEvent(
entries, 3,
- NetLog::TYPE_INIT_PROXY_RESOLVER_FALLING_BACK_TO_NEXT_PAC_SOURCE,
+ NetLog::TYPE_PROXY_SCRIPT_DECIDER_FALLING_BACK_TO_NEXT_PAC_SOURCE,
NetLog::PHASE_NONE));
// This is the DNS phase, which attempts a fetch but fails.
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 4, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 4, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 5, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsBeginEvent(
- entries, 6, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsEndEvent(
- entries, 7, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
+ entries, 5, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEvent(
- entries, 8,
- NetLog::TYPE_INIT_PROXY_RESOLVER_FALLING_BACK_TO_NEXT_PAC_SOURCE,
+ entries, 6,
+ NetLog::TYPE_PROXY_SCRIPT_DECIDER_FALLING_BACK_TO_NEXT_PAC_SOURCE,
NetLog::PHASE_NONE));
// Finally, the custom PAC URL phase.
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 9, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 7, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 10, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsBeginEvent(
- entries, 11, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
+ entries, 8, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 12, NetLog::TYPE_INIT_PROXY_RESOLVER_SET_PAC_SCRIPT));
- EXPECT_TRUE(LogContainsEndEvent(
- entries, 13, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 9, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
}
// Fails at WPAD (downloading), and fails at custom PAC (downloading).
-TEST(InitProxyResolverTest, AutodetectFailCustomFails1) {
+TEST(ProxyScriptDeciderTest, AutodetectFailCustomFails1) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -435,16 +340,15 @@
rules.AddFailDownloadRule("http://custom/proxy.pac");
TestOldCompletionCallback callback;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
EXPECT_EQ(kFailedDownloading,
- init.Init(config, base::TimeDelta(), NULL, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
}
// Fails at WPAD (downloading), and fails at custom PAC (parsing).
-TEST(InitProxyResolverTest, AutodetectFailCustomFails2) {
+TEST(ProxyScriptDeciderTest, AutodetectFailCustomFails2) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -456,40 +360,17 @@
rules.AddFailParsingRule("http://custom/proxy.pac");
TestOldCompletionCallback callback;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
EXPECT_EQ(kFailedParsing,
- init.Init(config, base::TimeDelta(), NULL, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
}
-// Fails at WPAD (parsing), but succeeds in choosing the custom PAC.
-// This is the same as AutodetectFailCustomSuccess2, but using a ProxyResolver
-// that doesn't |expects_pac_bytes|.
-TEST(InitProxyResolverTest, AutodetectFailCustomSuccess2_NoFetch) {
- Rules rules;
- RuleBasedProxyResolver resolver(&rules, false /*expects_pac_bytes*/);
- RuleBasedProxyScriptFetcher fetcher(&rules);
- DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
-
- ProxyConfig config;
- config.set_auto_detect(true);
- config.set_pac_url(GURL("http://custom/proxy.pac"));
-
- rules.AddFailParsingRule(""); // Autodetect.
- Rules::Rule rule = rules.AddSuccessRule("http://custom/proxy.pac");
-
- TestOldCompletionCallback callback;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
- EXPECT_EQ(OK, init.Init(config, base::TimeDelta(), NULL, &callback));
- EXPECT_EQ(rule.url, resolver.script_data()->url());
-}
-
// This is a copy-paste of CustomPacFails1, with the exception that we give it
// a 1 millisecond delay. This means it will now complete asynchronously.
// Moreover, we test the NetLog to make sure it logged the pause.
-TEST(InitProxyResolverTest, CustomPacFails1_WithPositiveDelay) {
+TEST(ProxyScriptDeciderTest, CustomPacFails1_WithPositiveDelay) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -500,13 +381,13 @@
TestOldCompletionCallback callback;
CapturingNetLog log(CapturingNetLog::kUnbounded);
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, &log);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, &log);
EXPECT_EQ(ERR_IO_PENDING,
- init.Init(config, base::TimeDelta::FromMilliseconds(1),
- NULL, &callback));
+ decider.Start(config, base::TimeDelta::FromMilliseconds(1),
+ true, &callback));
EXPECT_EQ(kFailedDownloading, callback.WaitForResult());
- EXPECT_EQ(NULL, resolver.script_data());
+ EXPECT_EQ(NULL, decider.script_data());
// Check the NetLog was filled correctly.
CapturingNetLog::EntryList entries;
@@ -514,25 +395,24 @@
EXPECT_EQ(6u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 0, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 0, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 1, NetLog::TYPE_INIT_PROXY_RESOLVER_WAIT));
+ entries, 1, NetLog::TYPE_PROXY_SCRIPT_DECIDER_WAIT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 2, NetLog::TYPE_INIT_PROXY_RESOLVER_WAIT));
+ entries, 2, NetLog::TYPE_PROXY_SCRIPT_DECIDER_WAIT));
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 3, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 3, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 4, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 4, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 5, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 5, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
}
// This is a copy-paste of CustomPacFails1, with the exception that we give it
// a -5 second delay instead of a 0 ms delay. This change should have no effect
// so the rest of the test is unchanged.
-TEST(InitProxyResolverTest, CustomPacFails1_WithNegativeDelay) {
+TEST(ProxyScriptDeciderTest, CustomPacFails1_WithNegativeDelay) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
DoNothingDhcpProxyScriptFetcher dhcp_fetcher;
@@ -543,11 +423,11 @@
TestOldCompletionCallback callback;
CapturingNetLog log(CapturingNetLog::kUnbounded);
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, &log);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, &log);
EXPECT_EQ(kFailedDownloading,
- init.Init(config, base::TimeDelta::FromSeconds(-5),
- NULL, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta::FromSeconds(-5),
+ true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
// Check the NetLog was filled correctly.
CapturingNetLog::EntryList entries;
@@ -555,13 +435,13 @@
EXPECT_EQ(4u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 0, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 0, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
EXPECT_TRUE(LogContainsBeginEvent(
- entries, 1, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 1, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 2, NetLog::TYPE_INIT_PROXY_RESOLVER_FETCH_PAC_SCRIPT));
+ entries, 2, NetLog::TYPE_PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT));
EXPECT_TRUE(LogContainsEndEvent(
- entries, 3, NetLog::TYPE_INIT_PROXY_RESOLVER));
+ entries, 3, NetLog::TYPE_PROXY_SCRIPT_DECIDER));
}
class SynchronousSuccessDhcpFetcher : public DhcpProxyScriptFetcher {
@@ -593,17 +473,16 @@
DISALLOW_COPY_AND_ASSIGN(SynchronousSuccessDhcpFetcher);
};
-// All of the tests above that use InitProxyResolver have tested
+// All of the tests above that use ProxyScriptDecider have tested
// failure to fetch a PAC file via DHCP configuration, so we now test
// success at downloading and parsing, and then success at downloading,
// failure at parsing.
-TEST(InitProxyResolverTest, AutodetectDhcpSuccess) {
+TEST(ProxyScriptDeciderTest, AutodetectDhcpSuccess) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
SynchronousSuccessDhcpFetcher dhcp_fetcher(
- WideToUTF16(L"http://bingo/!valid-script"));
+ WideToUTF16(L"http://bingo/!FindProxyForURL"));
ProxyConfig config;
config.set_auto_detect(true);
@@ -612,20 +491,18 @@
rules.AddFailDownloadRule("http://wpad/wpad.dat");
TestOldCompletionCallback callback;
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
- EXPECT_EQ(OK, init.Init(
- config, base::TimeDelta(), &effective_config, &callback));
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
+ EXPECT_EQ(OK, decider.Start(
+ config, base::TimeDelta(), true, &callback));
EXPECT_EQ(dhcp_fetcher.expected_text(),
- resolver.script_data()->utf16());
+ decider.script_data()->utf16());
- EXPECT_TRUE(effective_config.has_pac_url());
- EXPECT_EQ(GURL("http://dhcppac/"), effective_config.pac_url());
+ EXPECT_TRUE(decider.effective_config().has_pac_url());
+ EXPECT_EQ(GURL("http://dhcppac/"), decider.effective_config().pac_url());
}
-TEST(InitProxyResolverTest, AutodetectDhcpFailParse) {
+TEST(ProxyScriptDeciderTest, AutodetectDhcpFailParse) {
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
SynchronousSuccessDhcpFetcher dhcp_fetcher(
WideToUTF16(L"http://bingo/!invalid-script"));
@@ -637,15 +514,14 @@
rules.AddFailDownloadRule("http://wpad/wpad.dat");
TestOldCompletionCallback callback;
- ProxyConfig effective_config;
- InitProxyResolver init(&resolver, &fetcher, &dhcp_fetcher, NULL);
+ ProxyScriptDecider decider(&fetcher, &dhcp_fetcher, NULL);
// Since there is fallback to DNS-based WPAD, the final error will be that
// it failed downloading, not that it failed parsing.
EXPECT_EQ(kFailedDownloading,
- init.Init(config, base::TimeDelta(), &effective_config, &callback));
- EXPECT_EQ(NULL, resolver.script_data());
+ decider.Start(config, base::TimeDelta(), true, &callback));
+ EXPECT_EQ(NULL, decider.script_data());
- EXPECT_FALSE(effective_config.has_pac_url());
+ EXPECT_FALSE(decider.effective_config().has_pac_url());
}
class AsyncFailDhcpFetcher
@@ -681,13 +557,12 @@
OldCompletionCallback* callback_;
};
-TEST(InitProxyResolverTest, DhcpCancelledByDestructor) {
+TEST(ProxyScriptDeciderTest, DhcpCancelledByDestructor) {
// This regression test would crash before
// http://codereview.chromium.org/7044058/
// Thus, we don't care much about actual results (hence no EXPECT or ASSERT
// macros below), just that it doesn't crash.
Rules rules;
- RuleBasedProxyResolver resolver(&rules, true /*expects_pac_bytes*/);
RuleBasedProxyScriptFetcher fetcher(&rules);
scoped_refptr<AsyncFailDhcpFetcher> dhcp_fetcher(new AsyncFailDhcpFetcher());
@@ -698,15 +573,15 @@
TestOldCompletionCallback callback;
- // Scope so InitProxyResolver gets destroyed early.
+ // Scope so ProxyScriptDecider gets destroyed early.
{
- InitProxyResolver init(&resolver, &fetcher, dhcp_fetcher.get(), NULL);
- init.Init(config, base::TimeDelta(), NULL, &callback);
+ ProxyScriptDecider decider(&fetcher, dhcp_fetcher.get(), NULL);
+ decider.Start(config, base::TimeDelta(), true, &callback);
}
// Run the message loop to let the DHCP fetch complete and post the results
// back. Before the fix linked to above, this would try to invoke on
- // the callback object provided by InitProxyResolver after it was
+ // the callback object provided by ProxyScriptDecider after it was
// no longer valid.
MessageLoop::current()->RunAllPending();
}
« no previous file with comments | « net/proxy/proxy_script_decider.cc ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698