File: chrome_mojo_proxy_resolver_win_browsertest.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (188 lines) | stat: -rw-r--r-- 6,544 bytes parent folder | download | duplicates (11)
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
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/net/chrome_mojo_proxy_resolver_win.h"

#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/time/time.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/browser/service_process_host.h"
#include "content/public/test/browser_test.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "net/proxy_resolution/proxy_list.h"
#include "net/proxy_resolution/win/winhttp_status.h"
#include "services/proxy_resolver_win/public/mojom/proxy_resolver_win.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace {

constexpr char kTestUrl[] = "https://example.test/";

class ProxyResolverProcessObserver
    : public content::ServiceProcessHost::Observer {
 public:
  ProxyResolverProcessObserver() {
    content::ServiceProcessHost::AddObserver(this);
  }

  ProxyResolverProcessObserver(const ProxyResolverProcessObserver&) = delete;
  ProxyResolverProcessObserver& operator=(const ProxyResolverProcessObserver&) =
      delete;

  ~ProxyResolverProcessObserver() override {
    content::ServiceProcessHost::RemoveObserver(this);
  }

  bool is_service_running() const { return is_service_running_; }

  void WaitForLaunch() { launch_loop_.Run(); }
  void WaitForDeath() { death_loop_.Run(); }

 private:
  // content::ServiceProcessHost::Observer:
  void OnServiceProcessLaunched(
      const content::ServiceProcessInfo& info) override {
    if (!info.IsService<
            proxy_resolver_win::mojom::WindowsSystemProxyResolver>()) {
      return;
    }

    EXPECT_FALSE(is_service_running_);
    is_service_running_ = true;
    launch_loop_.Quit();
  }

  void OnServiceProcessTerminatedNormally(
      const content::ServiceProcessInfo& info) override {
    if (!info.IsService<
            proxy_resolver_win::mojom::WindowsSystemProxyResolver>()) {
      return;
    }

    EXPECT_TRUE(is_service_running_);
    is_service_running_ = false;
    death_loop_.Quit();
  }

 private:
  bool is_service_running_ = false;
  base::RunLoop launch_loop_;
  base::RunLoop death_loop_;
};

using ChromeMojoProxyResolverWinBrowserTest = InProcessBrowserTest;

// Ensures the proxy resolver service is started correctly and stopped when no
// resolvers are open.
IN_PROC_BROWSER_TEST_F(ChromeMojoProxyResolverWinBrowserTest,
                       ServiceLifecycle) {
  // Set up the ProxyResolverFactory.
  mojo::Remote<proxy_resolver_win::mojom::WindowsSystemProxyResolver>
      proxy_resolver_win(
          ChromeMojoProxyResolverWin::CreateWithSelfOwnedReceiverForTesting(
              base::TimeDelta()));

  ProxyResolverProcessObserver observer;

  // Attempt to resolve a proxy. This should create and start the service.
  base::RunLoop proxy_resolution_1;
  proxy_resolver_win->GetProxyForUrl(
      GURL(kTestUrl),
      base::BindLambdaForTesting(
          [&](const net::ProxyList& proxy_list,
              net::WinHttpStatus winhttp_status,
              int windows_error) { proxy_resolution_1.Quit(); }));
  observer.WaitForLaunch();

  // Resolve another proxy. No new service should be created (the listener will
  // assert if that's the case).
  base::RunLoop proxy_resolution_2;
  proxy_resolver_win->GetProxyForUrl(
      GURL(kTestUrl),
      base::BindLambdaForTesting(
          [&](const net::ProxyList& proxy_list,
              net::WinHttpStatus winhttp_status,
              int windows_error) { proxy_resolution_2.Quit(); }));
  EXPECT_TRUE(observer.is_service_running());

  // Wait for proxy resolution to complete. Once that's done, the service should
  // go away.
  proxy_resolution_1.Run();
  proxy_resolution_2.Run();
  observer.WaitForDeath();
}

// Same as above, but destroys the WindowsSystemProxyResolver, which should have
// no impact on service lifetime.
IN_PROC_BROWSER_TEST_F(ChromeMojoProxyResolverWinBrowserTest, DestroyResolver) {
  mojo::Remote<proxy_resolver_win::mojom::WindowsSystemProxyResolver>
      proxy_resolver_win(
          ChromeMojoProxyResolverWin::CreateWithSelfOwnedReceiverForTesting(
              base::TimeDelta()));

  ProxyResolverProcessObserver observer;

  // Attempt to resolve a proxy. This should create and start the service.
  proxy_resolver_win->GetProxyForUrl(
      GURL(kTestUrl),
      base::BindLambdaForTesting([&](const net::ProxyList& proxy_list,
                                     net::WinHttpStatus winhttp_status,
                                     int windows_error) {
        ADD_FAILURE() << "The GetProxyForURL callback should be dropped";
      }));
  observer.WaitForLaunch();

  // Destroy the resolver. The callback will never hit and the service should
  // eventually go away.
  proxy_resolver_win.reset();
  EXPECT_TRUE(observer.is_service_running());
  observer.WaitForDeath();
}

// Make sure the service can be started again after it's been stopped.
IN_PROC_BROWSER_TEST_F(ChromeMojoProxyResolverWinBrowserTest,
                       DestroyAndCreateService) {
  mojo::Remote<proxy_resolver_win::mojom::WindowsSystemProxyResolver>
      proxy_resolver_win(
          ChromeMojoProxyResolverWin::CreateWithSelfOwnedReceiverForTesting(
              base::TimeDelta()));

  ProxyResolverProcessObserver observer;

  // Attempt to resolve a proxy. This should create and start the service.
  base::RunLoop proxy_resolution_1;
  proxy_resolver_win->GetProxyForUrl(
      GURL(kTestUrl),
      base::BindLambdaForTesting(
          [&](const net::ProxyList& proxy_list,
              net::WinHttpStatus winhttp_status,
              int windows_error) { proxy_resolution_1.Quit(); }));
  observer.WaitForLaunch();

  // Wait for proxy resolution to complete. Once that's done, the service should
  // go away.
  proxy_resolution_1.Run();
  observer.WaitForDeath();

  ProxyResolverProcessObserver observer2;
  // Attempt to resolve another proxy. This should recreate and start the
  // service.
  base::RunLoop proxy_resolution_2;
  proxy_resolver_win->GetProxyForUrl(
      GURL(kTestUrl),
      base::BindLambdaForTesting(
          [&](const net::ProxyList& proxy_list,
              net::WinHttpStatus winhttp_status,
              int windows_error) { proxy_resolution_2.Quit(); }));
  observer2.WaitForLaunch();

  // Wait for proxy resolution to complete again. Once that's done, the service
  // should go away.
  proxy_resolution_2.Run();
  observer2.WaitForDeath();
}

}  // namespace