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

Side by Side Diff: net/proxy/proxy_service_mojo_unittest.cc

Issue 1076083002: Shut down proxy resolver utility processes when no longer needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@proxy-service-with-factory-restart
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « net/proxy/proxy_service_mojo.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/proxy/proxy_service_mojo.h" 5 #include "net/proxy/proxy_service_mojo.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/callback_helpers.h"
9 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
10 #include "net/base/load_flags.h" 11 #include "net/base/load_flags.h"
11 #include "net/base/test_completion_callback.h" 12 #include "net/base/test_completion_callback.h"
12 #include "net/dns/mock_host_resolver.h" 13 #include "net/dns/mock_host_resolver.h"
13 #include "net/log/net_log.h" 14 #include "net/log/net_log.h"
14 #include "net/proxy/dhcp_proxy_script_fetcher.h" 15 #include "net/proxy/dhcp_proxy_script_fetcher.h"
16 #include "net/proxy/in_process_mojo_proxy_resolver_factory.h"
15 #include "net/proxy/mock_proxy_script_fetcher.h" 17 #include "net/proxy/mock_proxy_script_fetcher.h"
18 #include "net/proxy/mojo_proxy_resolver_factory.h"
16 #include "net/proxy/proxy_config_service_fixed.h" 19 #include "net/proxy/proxy_config_service_fixed.h"
17 #include "net/proxy/proxy_service.h" 20 #include "net/proxy/proxy_service.h"
18 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
19 #include "url/gurl.h" 22 #include "url/gurl.h"
20 23
21 namespace net { 24 namespace net {
22 25
23 namespace { 26 namespace {
24 27
25 const char kPacUrl[] = "http://example.com/proxy.pac"; 28 const char kPacUrl[] = "http://example.com/proxy.pac";
26 const char kSimplePacScript[] = 29 const char kSimplePacScript[] =
27 "function FindProxyForURL(url, host) {\n" 30 "function FindProxyForURL(url, host) {\n"
28 " return 'PROXY foo:1234';\n" 31 " return 'PROXY foo:1234';\n"
29 "}"; 32 "}";
30 const char kDnsResolvePacScript[] = 33 const char kDnsResolvePacScript[] =
31 "function FindProxyForURL(url, host) {\n" 34 "function FindProxyForURL(url, host) {\n"
32 " if (dnsResolveEx('example.com') != '1.2.3.4')\n" 35 " if (dnsResolveEx('example.com') != '1.2.3.4')\n"
33 " return 'DIRECT';\n" 36 " return 'DIRECT';\n"
34 " return 'QUIC bar:4321';\n" 37 " return 'QUIC bar:4321';\n"
35 "}"; 38 "}";
36 39
37 } // namespace 40 } // namespace
38 41
39 class ProxyServiceMojoTest : public testing::Test { 42 class ProxyServiceMojoTest : public testing::Test,
43 public MojoProxyResolverFactory {
40 protected: 44 protected:
41 void SetUp() override { 45 void SetUp() override {
42 mock_host_resolver_.rules()->AddRule("example.com", "1.2.3.4"); 46 mock_host_resolver_.rules()->AddRule("example.com", "1.2.3.4");
43 47
44 fetcher_ = new MockProxyScriptFetcher; 48 fetcher_ = new MockProxyScriptFetcher;
45 proxy_service_.reset(CreateProxyServiceUsingMojoInProcess( 49 proxy_service_.reset(CreateProxyServiceUsingMojoFactory(
46 new ProxyConfigServiceFixed( 50 this, new ProxyConfigServiceFixed(
47 ProxyConfig::CreateFromCustomPacURL(GURL(kPacUrl))), 51 ProxyConfig::CreateFromCustomPacURL(GURL(kPacUrl))),
48 fetcher_, new DoNothingDhcpProxyScriptFetcher(), &mock_host_resolver_, 52 fetcher_, new DoNothingDhcpProxyScriptFetcher(), &mock_host_resolver_,
49 nullptr /* NetLog* */, nullptr /* NetworkDelegate* */)); 53 nullptr /* NetLog* */, nullptr /* NetworkDelegate* */));
50 } 54 }
51 55
56 scoped_ptr<base::ScopedClosureRunner> CreateResolver(
57 const mojo::String& pac_script,
58 mojo::InterfaceRequest<interfaces::ProxyResolver> req,
59 interfaces::HostResolverPtr host_resolver,
60 interfaces::ProxyResolverFactoryRequestClientPtr client) override {
61 InProcessMojoProxyResolverFactory::GetInstance()->CreateResolver(
62 pac_script, req.Pass(), host_resolver.Pass(), client.Pass());
63 return make_scoped_ptr(
64 new base::ScopedClosureRunner(on_delete_closure_.closure()));
65 }
66
52 MockHostResolver mock_host_resolver_; 67 MockHostResolver mock_host_resolver_;
53 MockProxyScriptFetcher* fetcher_; // Owned by |proxy_service_|. 68 MockProxyScriptFetcher* fetcher_; // Owned by |proxy_service_|.
54 scoped_ptr<ProxyService> proxy_service_; 69 scoped_ptr<ProxyService> proxy_service_;
70 TestClosure on_delete_closure_;
55 }; 71 };
56 72
57 TEST_F(ProxyServiceMojoTest, Basic) { 73 TEST_F(ProxyServiceMojoTest, Basic) {
58 ProxyInfo info; 74 ProxyInfo info;
59 TestCompletionCallback callback; 75 TestCompletionCallback callback;
60 EXPECT_EQ(ERR_IO_PENDING, 76 EXPECT_EQ(ERR_IO_PENDING,
61 proxy_service_->ResolveProxy(GURL("http://foo"), LOAD_NORMAL, &info, 77 proxy_service_->ResolveProxy(GURL("http://foo"), LOAD_NORMAL, &info,
62 callback.callback(), nullptr, nullptr, 78 callback.callback(), nullptr, nullptr,
63 BoundNetLog())); 79 BoundNetLog()));
64 80
65 // Proxy script fetcher should have a fetch triggered by the first 81 // Proxy script fetcher should have a fetch triggered by the first
66 // |ResolveProxy()| request. 82 // |ResolveProxy()| request.
67 EXPECT_TRUE(fetcher_->has_pending_request()); 83 EXPECT_TRUE(fetcher_->has_pending_request());
68 EXPECT_EQ(GURL(kPacUrl), fetcher_->pending_request_url()); 84 EXPECT_EQ(GURL(kPacUrl), fetcher_->pending_request_url());
69 fetcher_->NotifyFetchCompletion(OK, kSimplePacScript); 85 fetcher_->NotifyFetchCompletion(OK, kSimplePacScript);
70 86
71 EXPECT_EQ(OK, callback.WaitForResult()); 87 EXPECT_EQ(OK, callback.WaitForResult());
72 EXPECT_EQ("PROXY foo:1234", info.ToPacString()); 88 EXPECT_EQ("PROXY foo:1234", info.ToPacString());
73 EXPECT_EQ(0u, mock_host_resolver_.num_resolve()); 89 EXPECT_EQ(0u, mock_host_resolver_.num_resolve());
90 proxy_service_.reset();
91 on_delete_closure_.WaitForResult();
74 } 92 }
75 93
76 TEST_F(ProxyServiceMojoTest, DnsResolution) { 94 TEST_F(ProxyServiceMojoTest, DnsResolution) {
77 ProxyInfo info; 95 ProxyInfo info;
78 TestCompletionCallback callback; 96 TestCompletionCallback callback;
79 EXPECT_EQ(ERR_IO_PENDING, 97 EXPECT_EQ(ERR_IO_PENDING,
80 proxy_service_->ResolveProxy(GURL("http://foo"), LOAD_NORMAL, &info, 98 proxy_service_->ResolveProxy(GURL("http://foo"), LOAD_NORMAL, &info,
81 callback.callback(), nullptr, nullptr, 99 callback.callback(), nullptr, nullptr,
82 BoundNetLog())); 100 BoundNetLog()));
83 101
84 // Proxy script fetcher should have a fetch triggered by the first 102 // Proxy script fetcher should have a fetch triggered by the first
85 // |ResolveProxy()| request. 103 // |ResolveProxy()| request.
86 EXPECT_TRUE(fetcher_->has_pending_request()); 104 EXPECT_TRUE(fetcher_->has_pending_request());
87 EXPECT_EQ(GURL(kPacUrl), fetcher_->pending_request_url()); 105 EXPECT_EQ(GURL(kPacUrl), fetcher_->pending_request_url());
88 fetcher_->NotifyFetchCompletion(OK, kDnsResolvePacScript); 106 fetcher_->NotifyFetchCompletion(OK, kDnsResolvePacScript);
89 107
90 EXPECT_EQ(OK, callback.WaitForResult()); 108 EXPECT_EQ(OK, callback.WaitForResult());
91 EXPECT_EQ("QUIC bar:4321", info.ToPacString()); 109 EXPECT_EQ("QUIC bar:4321", info.ToPacString());
92 EXPECT_EQ(1u, mock_host_resolver_.num_resolve()); 110 EXPECT_EQ(1u, mock_host_resolver_.num_resolve());
111 proxy_service_.reset();
112 on_delete_closure_.WaitForResult();
93 } 113 }
94 114
95 } // namespace net 115 } // namespace net
OLDNEW
« no previous file with comments | « net/proxy/proxy_service_mojo.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698