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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
// Copyright (c) 2011 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 "chrome/browser/policy/user_policy_cache.h"
#include <limits>
#include <string>
#include "base/file_util.h"
#include "base/message_loop.h"
#include "base/scoped_temp_dir.h"
#include "base/values.h"
#include "chrome/browser/policy/configuration_policy_provider.h"
#include "chrome/browser/policy/proto/cloud_policy.pb.h"
#include "chrome/browser/policy/proto/device_management_backend.pb.h"
#include "chrome/browser/policy/proto/device_management_local.pb.h"
#include "chrome/browser/policy/proto/old_generic_format.pb.h"
#include "content/browser/browser_thread.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace policy {
// Decodes a CloudPolicySettings object into two maps with mandatory and
// recommended settings, respectively. The implementation is generated code
// in policy/cloud_policy_generated.cc.
void DecodePolicy(const em::CloudPolicySettings& policy,
PolicyMap* mandatory, PolicyMap* recommended);
// The implementations of these methods are in cloud_policy_generated.cc.
Value* DecodeIntegerValue(google::protobuf::int64 value);
ListValue* DecodeStringList(const em::StringList& string_list);
class MockConfigurationPolicyProviderObserver
: public ConfigurationPolicyProvider::Observer {
public:
MockConfigurationPolicyProviderObserver() {}
virtual ~MockConfigurationPolicyProviderObserver() {}
MOCK_METHOD0(OnUpdatePolicy, void());
void OnProviderGoingAway() {}
};
// Tests the device management policy cache.
class UserPolicyCacheTest : public testing::Test {
protected:
UserPolicyCacheTest()
: loop_(MessageLoop::TYPE_UI),
ui_thread_(BrowserThread::UI, &loop_),
file_thread_(BrowserThread::FILE, &loop_) {}
void SetUp() {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
}
void TearDown() {
loop_.RunAllPending();
}
// Creates a (signed) PolicyFetchResponse setting the given |homepage| and
// featuring the given |timestamp| (as issued by the server).
// Mildly hacky special feature: pass an empty string as |homepage| to get
// a completely empty policy.
em::PolicyFetchResponse* CreateHomepagePolicy(
const std::string& homepage,
const base::Time& timestamp,
const em::PolicyOptions::PolicyMode policy_mode) {
em::PolicyData signed_response;
if (homepage != "") {
em::CloudPolicySettings settings;
em::HomepageLocationProto* homepagelocation_proto =
settings.mutable_homepagelocation();
homepagelocation_proto->set_homepagelocation(homepage);
homepagelocation_proto->mutable_policy_options()->set_mode(policy_mode);
EXPECT_TRUE(
settings.SerializeToString(signed_response.mutable_policy_value()));
}
signed_response.set_timestamp(
(timestamp - base::Time::UnixEpoch()).InMilliseconds());
std::string serialized_signed_response;
EXPECT_TRUE(signed_response.SerializeToString(&serialized_signed_response));
em::PolicyFetchResponse* response = new em::PolicyFetchResponse;
response->set_policy_data(serialized_signed_response);
// TODO(jkummerow): Set proper new_public_key and signature (when
// implementing support for signature verification).
response->set_policy_data_signature("TODO");
response->set_new_public_key("TODO");
return response;
}
void WritePolicy(const em::PolicyFetchResponse& policy) {
std::string data;
em::CachedCloudPolicyResponse cached_policy;
cached_policy.mutable_cloud_policy()->CopyFrom(policy);
EXPECT_TRUE(cached_policy.SerializeToString(&data));
int size = static_cast<int>(data.size());
EXPECT_EQ(size, file_util::WriteFile(test_file(), data.c_str(), size));
}
// Takes ownership of |policy_response|.
void SetPolicy(UserPolicyCache* cache,
em::PolicyFetchResponse* policy_response,
bool expect_changed_policy) {
scoped_ptr<em::PolicyFetchResponse> policy(policy_response);
ConfigurationPolicyObserverRegistrar registrar;
registrar.Init(cache->GetManagedPolicyProvider(), &observer);
if (expect_changed_policy)
EXPECT_CALL(observer, OnUpdatePolicy()).Times(1);
else
EXPECT_CALL(observer, OnUpdatePolicy()).Times(0);
cache->SetPolicy(*policy);
testing::Mock::VerifyAndClearExpectations(&observer);
}
FilePath test_file() {
return temp_dir_.path().AppendASCII("UserPolicyCacheTest");
}
const PolicyMap& mandatory_policy(const UserPolicyCache& cache) {
return cache.mandatory_policy_;
}
const PolicyMap& recommended_policy(const UserPolicyCache& cache) {
return cache.recommended_policy_;
}
MessageLoop loop_;
MockConfigurationPolicyProviderObserver observer;
private:
ScopedTempDir temp_dir_;
BrowserThread ui_thread_;
BrowserThread file_thread_;
};
TEST_F(UserPolicyCacheTest, DecodePolicy) {
em::CloudPolicySettings settings;
settings.mutable_homepagelocation()->set_homepagelocation("chromium.org");
settings.mutable_javascriptenabled()->set_javascriptenabled(true);
settings.mutable_javascriptenabled()->mutable_policy_options()->set_mode(
em::PolicyOptions::MANDATORY);
settings.mutable_policyrefreshrate()->set_policyrefreshrate(5);
settings.mutable_policyrefreshrate()->mutable_policy_options()->set_mode(
em::PolicyOptions::RECOMMENDED);
PolicyMap mandatory_policy;
PolicyMap recommended_policy;
DecodePolicy(settings, &mandatory_policy, &recommended_policy);
PolicyMap mandatory;
mandatory.Set(kPolicyHomepageLocation,
Value::CreateStringValue("chromium.org"));
mandatory.Set(kPolicyJavascriptEnabled, Value::CreateBooleanValue(true));
PolicyMap recommended;
recommended.Set(kPolicyPolicyRefreshRate, Value::CreateIntegerValue(5));
EXPECT_TRUE(mandatory.Equals(mandatory_policy));
EXPECT_TRUE(recommended.Equals(recommended_policy));
}
TEST_F(UserPolicyCacheTest, DecodeIntegerValue) {
const int min = std::numeric_limits<int>::min();
const int max = std::numeric_limits<int>::max();
scoped_ptr<Value> value(
DecodeIntegerValue(static_cast<google::protobuf::int64>(42)));
ASSERT_TRUE(value.get());
FundamentalValue expected_42(42);
EXPECT_TRUE(value->Equals(&expected_42));
value.reset(
DecodeIntegerValue(static_cast<google::protobuf::int64>(min - 1LL)));
EXPECT_EQ(NULL, value.get());
value.reset(DecodeIntegerValue(static_cast<google::protobuf::int64>(min)));
ASSERT_TRUE(value.get());
FundamentalValue expected_min(min);
EXPECT_TRUE(value->Equals(&expected_min));
value.reset(
DecodeIntegerValue(static_cast<google::protobuf::int64>(max + 1LL)));
EXPECT_EQ(NULL, value.get());
value.reset(DecodeIntegerValue(static_cast<google::protobuf::int64>(max)));
ASSERT_TRUE(value.get());
FundamentalValue expected_max(max);
EXPECT_TRUE(value->Equals(&expected_max));
}
TEST_F(UserPolicyCacheTest, DecodeStringList) {
em::StringList string_list;
string_list.add_entries("ponies");
string_list.add_entries("more ponies");
scoped_ptr<ListValue> decoded(DecodeStringList(string_list));
ListValue expected;
expected.Append(Value::CreateStringValue("ponies"));
expected.Append(Value::CreateStringValue("more ponies"));
EXPECT_TRUE(decoded->Equals(&expected));
}
TEST_F(UserPolicyCacheTest, Empty) {
UserPolicyCache cache(test_file());
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_TRUE(empty.Equals(recommended_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(UserPolicyCacheTest, LoadNoFile) {
UserPolicyCache cache(test_file());
cache.Load();
loop_.RunAllPending();
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(UserPolicyCacheTest, RejectFuture) {
scoped_ptr<em::PolicyFetchResponse> policy_response(
CreateHomepagePolicy("", base::Time::NowFromSystemTime() +
base::TimeDelta::FromMinutes(5),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy_response);
UserPolicyCache cache(test_file());
cache.Load();
loop_.RunAllPending();
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(UserPolicyCacheTest, LoadWithFile) {
scoped_ptr<em::PolicyFetchResponse> policy_response(
CreateHomepagePolicy("", base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy_response);
UserPolicyCache cache(test_file());
cache.Load();
loop_.RunAllPending();
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_NE(base::Time(), cache.last_policy_refresh_time());
EXPECT_GE(base::Time::Now(), cache.last_policy_refresh_time());
}
TEST_F(UserPolicyCacheTest, LoadWithData) {
scoped_ptr<em::PolicyFetchResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy);
UserPolicyCache cache(test_file());
cache.Load();
loop_.RunAllPending();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
TEST_F(UserPolicyCacheTest, SetPolicy) {
UserPolicyCache cache(test_file());
em::PolicyFetchResponse* policy =
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, policy, true);
em::PolicyFetchResponse* policy2 =
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, policy2, false);
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
PolicyMap empty;
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
EXPECT_TRUE(empty.Equals(recommended_policy(cache)));
policy = CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::RECOMMENDED);
SetPolicy(&cache, policy, true);
EXPECT_TRUE(expected.Equals(recommended_policy(cache)));
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
}
TEST_F(UserPolicyCacheTest, ResetPolicy) {
UserPolicyCache cache(test_file());
em::PolicyFetchResponse* policy =
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, policy, true);
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
em::PolicyFetchResponse* empty_policy =
CreateHomepagePolicy("", base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, empty_policy, true);
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
}
TEST_F(UserPolicyCacheTest, PersistPolicy) {
{
UserPolicyCache cache(test_file());
scoped_ptr<em::PolicyFetchResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
cache.SetPolicy(*policy);
}
loop_.RunAllPending();
EXPECT_TRUE(file_util::PathExists(test_file()));
UserPolicyCache cache(test_file());
cache.Load();
loop_.RunAllPending();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
TEST_F(UserPolicyCacheTest, FreshPolicyOverride) {
scoped_ptr<em::PolicyFetchResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy);
UserPolicyCache cache(test_file());
em::PolicyFetchResponse* updated_policy =
CreateHomepagePolicy("http://www.chromium.org",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, updated_policy, true);
cache.Load();
loop_.RunAllPending();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.chromium.org"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
// Test case for the temporary support for GenericNamedValues in the
// CloudPolicySettings protobuf. Can be removed when this support is no longer
// required.
TEST_F(UserPolicyCacheTest, OldStylePolicy) {
UserPolicyCache cache(test_file());
em::PolicyFetchResponse* policy = new em::PolicyFetchResponse();
em::PolicyData signed_response;
em::LegacyChromeSettingsProto settings;
em::GenericNamedValue* named_value = settings.add_named_value();
named_value->set_name("HomepageLocation");
em::GenericValue* value_container = named_value->mutable_value();
value_container->set_value_type(em::GenericValue::VALUE_TYPE_STRING);
value_container->set_string_value("http://www.example.com");
EXPECT_TRUE(
settings.SerializeToString(signed_response.mutable_policy_value()));
base::TimeDelta timestamp =
base::Time::NowFromSystemTime() - base::Time::UnixEpoch();
signed_response.set_timestamp(timestamp.InMilliseconds());
EXPECT_TRUE(
signed_response.SerializeToString(policy->mutable_policy_data()));
SetPolicy(&cache, policy, true);
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
PolicyMap empty;
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
EXPECT_TRUE(empty.Equals(recommended_policy(cache)));
// If new-style policy comes in, it should override old-style policy.
policy = CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::RECOMMENDED);
SetPolicy(&cache, policy, true);
EXPECT_TRUE(expected.Equals(recommended_policy(cache)));
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
}
} // namespace policy
|