File: ct_policy_manager_unittest.cc

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (271 lines) | stat: -rw-r--r-- 11,012 bytes parent folder | download
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/certificate_transparency/ct_policy_manager.h"

#include <iterator>

#include "base/run_loop.h"
#include "base/sequenced_task_runner.h"
#include "base/single_thread_task_runner.h"
#include "base/test/test_message_loop.h"
#include "base/values.h"
#include "components/certificate_transparency/pref_names.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace certificate_transparency {

namespace {

template <size_t N>
base::ListValue* ListValueFromStrings(const char* const (&strings)[N]) {
  std::unique_ptr<base::ListValue> result(new base::ListValue);
  for (const auto& str : strings) {
    result->AppendString(str);
  }
  return result.release();
}

class CTPolicyManagerTest : public ::testing::Test {
 public:
  CTPolicyManagerTest() : message_loop_(base::MessageLoop::TYPE_IO) {}

 protected:
  base::TestMessageLoop message_loop_;
  TestingPrefServiceSimple pref_service_;
};

// Treat the preferences as a black box as far as naming, but ensure that
// preferences get registered.
TEST_F(CTPolicyManagerTest, RegistersPrefs) {
  auto registered_prefs = std::distance(pref_service_.registry()->begin(),
                                        pref_service_.registry()->end());
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  auto newly_registered_prefs = std::distance(pref_service_.registry()->begin(),
                                              pref_service_.registry()->end());
  EXPECT_NE(registered_prefs, newly_registered_prefs);
}

TEST_F(CTPolicyManagerTest, DelegateChecksRequired) {
  using CTRequirementLevel =
      net::TransportSecurityState::RequireCTDelegate::CTRequirementLevel;
  // Register preferences and set up initial state
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  CTPolicyManager manager(&pref_service_, message_loop_.task_runner());
  base::RunLoop().RunUntilIdle();

  net::TransportSecurityState::RequireCTDelegate* delegate =
      manager.GetDelegate();
  ASSERT_TRUE(delegate);

  // No preferences should yield the default results.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("google.com"));

  // Now set a preference, pump the message loop, and ensure things are now
  // reflected.
  pref_service_.SetManagedPref(prefs::kCTRequiredHosts,
                               ListValueFromStrings({"google.com"}));
  base::RunLoop().RunUntilIdle();

  // The new preferences should take effect.
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("google.com"));
}

TEST_F(CTPolicyManagerTest, DelegateChecksExcluded) {
  using CTRequirementLevel =
      net::TransportSecurityState::RequireCTDelegate::CTRequirementLevel;
  // Register preferences and set up initial state
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  CTPolicyManager manager(&pref_service_, message_loop_.task_runner());
  base::RunLoop().RunUntilIdle();

  net::TransportSecurityState::RequireCTDelegate* delegate =
      manager.GetDelegate();
  ASSERT_TRUE(delegate);

  // No preferences should yield the default results.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("google.com"));

  // Now set a preference, pump the message loop, and ensure things are now
  // reflected.
  pref_service_.SetManagedPref(prefs::kCTExcludedHosts,
                               ListValueFromStrings({"google.com"}));
  base::RunLoop().RunUntilIdle();

  // The new preferences should take effect.
  EXPECT_EQ(CTRequirementLevel::NOT_REQUIRED,
            delegate->IsCTRequiredForHost("google.com"));
}

TEST_F(CTPolicyManagerTest, IgnoresInvalidEntries) {
  using CTRequirementLevel =
      net::TransportSecurityState::RequireCTDelegate::CTRequirementLevel;
  // Register preferences and set up initial state
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  CTPolicyManager manager(&pref_service_, message_loop_.task_runner());
  base::RunLoop().RunUntilIdle();

  net::TransportSecurityState::RequireCTDelegate* delegate =
      manager.GetDelegate();
  ASSERT_TRUE(delegate);

  // No preferences should yield the default results.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("google.com"));

  // Now setup invalid preferences (that is, that fail to be parsable as
  // URLs).
  pref_service_.SetManagedPref(
      prefs::kCTRequiredHosts,
      ListValueFromStrings({
          "file:///etc/fstab", "file://withahost/etc/fstab",
          "file:///c|/Windows", "*", "https://*", "example.com",
          "https://example.test:invalid_port",
      }));
  base::RunLoop().RunUntilIdle();

  // Wildcards are ignored (both * and https://*).
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("google.com"));
  // File URL hosts are ignored.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("withahost"));

  // While the partially parsed hosts should take effect.
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("example.test"));
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("example.com"));
}

// Make sure the various 'undocumented' priorities apply:
//   - non-wildcards beat wildcards
//   - more specific hosts beat less specific hosts
//   - requiring beats excluding
TEST_F(CTPolicyManagerTest, AppliesPriority) {
  using CTRequirementLevel =
      net::TransportSecurityState::RequireCTDelegate::CTRequirementLevel;
  // Register preferences and set up initial state
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  CTPolicyManager manager(&pref_service_, message_loop_.task_runner());
  base::RunLoop().RunUntilIdle();

  net::TransportSecurityState::RequireCTDelegate* delegate =
      manager.GetDelegate();
  ASSERT_TRUE(delegate);

  // No preferences should yield the default results.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("sub.example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("login.accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("sub.accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("login.sub.accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("test.example.com"));

  // Set up policies that exclude it for a domain and all of its subdomains,
  // but then require it for a specific host.
  pref_service_.SetManagedPref(
      prefs::kCTExcludedHosts,
      ListValueFromStrings({"example.com", ".sub.example.com",
                            ".sub.accounts.example.com", "test.example.com"}));
  pref_service_.SetManagedPref(
      prefs::kCTRequiredHosts,
      ListValueFromStrings(
          {"sub.example.com", "accounts.example.com", "test.example.com"}));
  base::RunLoop().RunUntilIdle();

  EXPECT_EQ(CTRequirementLevel::NOT_REQUIRED,
            delegate->IsCTRequiredForHost("example.com"));
  // Non-wildcarding (.sub.example.com) beats wildcarding (sub.example.com).
  EXPECT_EQ(CTRequirementLevel::NOT_REQUIRED,
            delegate->IsCTRequiredForHost("sub.example.com"));
  // More specific hosts (accounts.example.com) beat less specific hosts
  // (example.com + wildcard).
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("accounts.example.com"));
  // More specific hosts (accounts.example.com) beat less specific hosts
  // (example.com).
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("login.accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::NOT_REQUIRED,
            delegate->IsCTRequiredForHost("sub.accounts.example.com"));
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("login.sub.accounts.example.com"));
  // Requiring beats excluding.
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("test.example.com"));
}

// Ensure that the RequireCTDelegate is still valid and usable after Shutdown
// has been called. Preferences should no longer sync, but the old results
// should still be returned.
TEST_F(CTPolicyManagerTest, UsableAfterShutdown) {
  using CTRequirementLevel =
      net::TransportSecurityState::RequireCTDelegate::CTRequirementLevel;
  // Register preferences and set up initial state
  CTPolicyManager::RegisterPrefs(pref_service_.registry());
  CTPolicyManager manager(&pref_service_, message_loop_.task_runner());
  base::RunLoop().RunUntilIdle();

  net::TransportSecurityState::RequireCTDelegate* delegate =
      manager.GetDelegate();
  ASSERT_TRUE(delegate);

  // No preferences should yield the default results.
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("google.com"));

  // Now set a preference, pump the message loop, and ensure things are now
  // reflected.
  pref_service_.SetManagedPref(prefs::kCTRequiredHosts,
                               ListValueFromStrings({"google.com"}));
  base::RunLoop().RunUntilIdle();

  // The new preferences should take effect.
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("google.com"));

  // Shut down the preferences, which should unregister any observers.
  manager.Shutdown();
  base::RunLoop().RunUntilIdle();

  // Update the preferences again, which should do nothing; the
  // RequireCTDelegate should continue to be valid and return the old results.
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("google.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("sub.example.com"));
  pref_service_.SetManagedPref(prefs::kCTRequiredHosts,
                               ListValueFromStrings({"sub.example.com"}));
  base::RunLoop().RunUntilIdle();
  EXPECT_EQ(CTRequirementLevel::REQUIRED,
            delegate->IsCTRequiredForHost("google.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("example.com"));
  EXPECT_EQ(CTRequirementLevel::DEFAULT,
            delegate->IsCTRequiredForHost("sub.example.com"));

  // And it should still be possible to get the delegate, even after calling
  // Shutdown().
  EXPECT_TRUE(manager.GetDelegate());
}

}  // namespace

}  // namespace certificate_transparency