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_resolver_v8_unittest.cc

Issue 2978001: Display the proxy PAC javascript errors in the NetLog.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc's comment -- rename to PAC_JAVASCRIPT_* Created 10 years, 5 months 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_resolver_v8.cc ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_resolver_v8_unittest.cc
===================================================================
--- net/proxy/proxy_resolver_v8_unittest.cc (revision 52046)
+++ net/proxy/proxy_resolver_v8_unittest.cc (working copy)
@@ -7,8 +7,8 @@
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "googleurl/src/gurl.h"
-#include "net/base/net_log_unittest.h"
#include "net/base/net_errors.h"
+#include "net/base/net_log_unittest.h"
#include "net/proxy/proxy_info.h"
#include "net/proxy/proxy_resolver_js_bindings.h"
#include "net/proxy/proxy_resolver_v8.h"
@@ -458,41 +458,6 @@
ASSERT_EQ(0U, bindings->dns_resolves_ex.size());
}
-// Test that calls to the myIpAddress() and dnsResolve() bindings get
-// logged to the NetLog parameter.
-TEST(ProxyResolverV8Test, NetLog) {
- ProxyResolverV8WithMockBindings resolver;
- int result = resolver.SetPacScriptFromDisk("simple.js");
- EXPECT_EQ(OK, result);
-
- ProxyInfo proxy_info;
- CapturingBoundNetLog log(CapturingNetLog::kUnbounded);
- result = resolver.GetProxyForURL(kQueryUrl, &proxy_info, NULL, NULL,
- log.bound());
-
- EXPECT_EQ(OK, result);
- EXPECT_FALSE(proxy_info.is_direct());
- EXPECT_EQ("c:100", proxy_info.proxy_server().ToURI());
-
- // Note that dnsResolve() was never called directly, but it appears
- // in the NetLog. This is because it gets called indirectly by
- // isInNet() and isResolvable().
-
- EXPECT_EQ(6u, log.entries().size());
- EXPECT_TRUE(LogContainsBeginEvent(
- log.entries(), 0, NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS));
- EXPECT_TRUE(LogContainsEndEvent(
- log.entries(), 1, NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS));
- EXPECT_TRUE(LogContainsBeginEvent(
- log.entries(), 2, NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE));
- EXPECT_TRUE(LogContainsEndEvent(
- log.entries(), 3, NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE));
- EXPECT_TRUE(LogContainsBeginEvent(
- log.entries(), 4, NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE));
- EXPECT_TRUE(LogContainsEndEvent(
- log.entries(), 5, NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE));
-}
-
// Try loading a PAC script that ends with a comment and has no terminal
// newline. This should not cause problems with the PAC utility functions
// that we add to the script's environment.
« no previous file with comments | « net/proxy/proxy_resolver_v8.cc ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698