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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
|
// 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/cloud_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/browser_thread.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"
// TODO(jkummerow): remove this import when removing old DMPC test cases.
#include "chrome/browser/policy/proto/device_management_constants.h"
#include "chrome/browser/policy/proto/device_management_local.pb.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 CloudPolicyCacheTest : public testing::Test {
protected:
CloudPolicyCacheTest()
: 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) CloudPolicyResponse 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::CloudPolicyResponse* CreateHomepagePolicy(
const std::string& homepage,
const base::Time& timestamp,
const em::PolicyOptions::PolicyMode policy_mode) {
em::SignedCloudPolicyResponse signed_response;
if (homepage != "") {
em::CloudPolicySettings* settings = signed_response.mutable_settings();
em::HomepageLocationProto* homepagelocation_proto =
settings->mutable_homepagelocation();
homepagelocation_proto->set_homepagelocation(homepage);
homepagelocation_proto->mutable_policy_options()->set_mode(policy_mode);
}
signed_response.set_timestamp(timestamp.ToTimeT());
std::string serialized_signed_response;
EXPECT_TRUE(signed_response.SerializeToString(&serialized_signed_response));
em::CloudPolicyResponse* response = new em::CloudPolicyResponse;
response->set_signed_response(serialized_signed_response);
// TODO(jkummerow): Set proper certificate_chain and signature (when
// implementing support for signature verification).
response->set_signature("TODO");
response->add_certificate_chain("TODO");
return response;
}
void WritePolicy(const em::CloudPolicyResponse& 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(CloudPolicyCache* cache,
em::CloudPolicyResponse* policy_response,
bool expect_changed_policy) {
scoped_ptr<em::CloudPolicyResponse> 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("CloudPolicyCacheTest");
}
const PolicyMap& mandatory_policy(const CloudPolicyCache& cache) {
return cache.mandatory_policy_;
}
const PolicyMap& recommended_policy(const CloudPolicyCache& cache) {
return cache.recommended_policy_;
}
MessageLoop loop_;
MockConfigurationPolicyProviderObserver observer;
private:
ScopedTempDir temp_dir_;
BrowserThread ui_thread_;
BrowserThread file_thread_;
};
TEST_F(CloudPolicyCacheTest, 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(CloudPolicyCacheTest, 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(CloudPolicyCacheTest, 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(CloudPolicyCacheTest, Empty) {
CloudPolicyCache 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(CloudPolicyCacheTest, LoadNoFile) {
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(CloudPolicyCacheTest, RejectFuture) {
scoped_ptr<em::CloudPolicyResponse> policy_response(
CreateHomepagePolicy("", base::Time::NowFromSystemTime() +
base::TimeDelta::FromMinutes(5),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy_response);
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
PolicyMap empty;
EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(CloudPolicyCacheTest, LoadWithFile) {
scoped_ptr<em::CloudPolicyResponse> policy_response(
CreateHomepagePolicy("", base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy_response);
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
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(CloudPolicyCacheTest, LoadWithData) {
scoped_ptr<em::CloudPolicyResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy);
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
TEST_F(CloudPolicyCacheTest, SetPolicy) {
CloudPolicyCache cache(test_file());
em::CloudPolicyResponse* policy =
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, policy, true);
em::CloudPolicyResponse* 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(CloudPolicyCacheTest, ResetPolicy) {
CloudPolicyCache cache(test_file());
em::CloudPolicyResponse* 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::CloudPolicyResponse* 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(CloudPolicyCacheTest, PersistPolicy) {
{
CloudPolicyCache cache(test_file());
scoped_ptr<em::CloudPolicyResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
cache.SetPolicy(*policy);
}
loop_.RunAllPending();
EXPECT_TRUE(file_util::PathExists(test_file()));
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
TEST_F(CloudPolicyCacheTest, FreshPolicyOverride) {
scoped_ptr<em::CloudPolicyResponse> policy(
CreateHomepagePolicy("http://www.example.com",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY));
WritePolicy(*policy);
CloudPolicyCache cache(test_file());
em::CloudPolicyResponse* updated_policy =
CreateHomepagePolicy("http://www.chromium.org",
base::Time::NowFromSystemTime(),
em::PolicyOptions::MANDATORY);
SetPolicy(&cache, updated_policy, true);
cache.LoadFromFile();
PolicyMap expected;
expected.Set(kPolicyHomepageLocation,
Value::CreateStringValue("http://www.chromium.org"));
EXPECT_TRUE(expected.Equals(mandatory_policy(cache)));
}
} // namespace policy
// ==================================================================
// Everything below this line can go when we phase out support for
// the old (trusted testing/pilot program) policy format.
// This is a (slightly updated) copy of the old
// device_management_policy_cache_unittest.cc. The new CloudPolicyCache
// supports the old DMPC's interface for now (until it is phased out), so for
// this transitional period, we keep these old test cases but apply them to the
// new implementation (CPC).
namespace policy {
// Wraps base functionaly for the test cases.
class DeviceManagementPolicyCacheTestBase : public testing::Test {
protected:
// Add a string policy setting to a policy response message.
void AddStringPolicy(em::DevicePolicyResponse* policy,
const std::string& name,
const std::string& value) {
em::DevicePolicySetting* setting = policy->add_setting();
setting->set_policy_key(kChromeDevicePolicySettingKey);
em::GenericSetting* policy_value = setting->mutable_policy_value();
em::GenericNamedValue* named_value = policy_value->add_named_value();
named_value->set_name(name);
em::GenericValue* value_container = named_value->mutable_value();
value_container->set_value_type(em::GenericValue::VALUE_TYPE_STRING);
value_container->set_string_value(value);
}
};
// Tests the device management policy cache.
class DeviceManagementPolicyCacheTest
: public DeviceManagementPolicyCacheTestBase {
protected:
DeviceManagementPolicyCacheTest()
: 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();
}
void WritePolicy(const em::DevicePolicyResponse& policy,
const base::Time& timestamp) {
std::string data;
em::CachedCloudPolicyResponse cached_policy;
cached_policy.mutable_device_policy()->CopyFrom(policy);
cached_policy.set_timestamp(timestamp.ToTimeT());
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));
}
FilePath test_file() {
return temp_dir_.path().AppendASCII("DeviceManagementPolicyCacheTest");
}
const DictionaryValue* device_policy(const CloudPolicyCache& cache) {
return cache.device_policy_.get();
}
MessageLoop loop_;
private:
ScopedTempDir temp_dir_;
BrowserThread ui_thread_;
BrowserThread file_thread_;
};
TEST_F(DeviceManagementPolicyCacheTest, Empty) {
CloudPolicyCache cache(test_file());
DictionaryValue empty;
EXPECT_TRUE(empty.Equals(device_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(DeviceManagementPolicyCacheTest, LoadNoFile) {
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
DictionaryValue empty;
EXPECT_TRUE(empty.Equals(device_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(DeviceManagementPolicyCacheTest, RejectFuture) {
em::DevicePolicyResponse policy_response;
WritePolicy(policy_response, base::Time::NowFromSystemTime() +
base::TimeDelta::FromMinutes(5));
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
DictionaryValue empty;
EXPECT_TRUE(empty.Equals(device_policy(cache)));
EXPECT_EQ(base::Time(), cache.last_policy_refresh_time());
}
TEST_F(DeviceManagementPolicyCacheTest, LoadWithFile) {
em::DevicePolicyResponse policy_response;
WritePolicy(policy_response, base::Time::NowFromSystemTime());
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
DictionaryValue empty;
EXPECT_TRUE(empty.Equals(device_policy(cache)));
EXPECT_NE(base::Time(), cache.last_policy_refresh_time());
EXPECT_GE(base::Time::Now(), cache.last_policy_refresh_time());
}
TEST_F(DeviceManagementPolicyCacheTest, LoadWithData) {
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
WritePolicy(policy, base::Time::NowFromSystemTime());
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(device_policy(cache)));
}
TEST_F(DeviceManagementPolicyCacheTest, SetDevicePolicy) {
CloudPolicyCache cache(test_file());
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
cache.SetDevicePolicy(policy);
em::DevicePolicyResponse policy2;
AddStringPolicy(&policy2, "HomepageLocation", "http://www.example.com");
cache.SetDevicePolicy(policy2); // Does not notify observers.
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(device_policy(cache)));
}
TEST_F(DeviceManagementPolicyCacheTest, ResetPolicy) {
CloudPolicyCache cache(test_file());
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
cache.SetDevicePolicy(policy);
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(device_policy(cache)));
cache.SetDevicePolicy(em::DevicePolicyResponse());
DictionaryValue empty;
EXPECT_TRUE(empty.Equals(device_policy(cache)));
}
TEST_F(DeviceManagementPolicyCacheTest, PersistPolicy) {
{
CloudPolicyCache cache(test_file());
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
cache.SetDevicePolicy(policy);
}
loop_.RunAllPending();
EXPECT_TRUE(file_util::PathExists(test_file()));
CloudPolicyCache cache(test_file());
cache.LoadFromFile();
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(device_policy(cache)));
}
TEST_F(DeviceManagementPolicyCacheTest, FreshPolicyOverride) {
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
WritePolicy(policy, base::Time::NowFromSystemTime());
CloudPolicyCache cache(test_file());
em::DevicePolicyResponse updated_policy;
AddStringPolicy(&updated_policy, "HomepageLocation",
"http://www.chromium.org");
cache.SetDevicePolicy(updated_policy);
cache.LoadFromFile();
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.chromium.org"));
EXPECT_TRUE(expected.Equals(device_policy(cache)));
}
// Tests proper decoding of policy values.
class DeviceManagementPolicyCacheDecodeTest
: public DeviceManagementPolicyCacheTestBase {
protected:
void DecodeAndCheck(Value* expected_value_ptr) {
scoped_ptr<Value> expected_value(expected_value_ptr);
scoped_ptr<Value> decoded_value(
CloudPolicyCache::DecodeValue(value_));
if (expected_value_ptr) {
ASSERT_TRUE(decoded_value.get());
EXPECT_TRUE(decoded_value->Equals(expected_value.get()));
} else {
ASSERT_FALSE(decoded_value.get());
}
}
DictionaryValue* DecodeDevicePolicy(const em::DevicePolicyResponse policy) {
return CloudPolicyCache::DecodeDevicePolicy(policy);
}
em::GenericValue value_;
};
TEST_F(DeviceManagementPolicyCacheDecodeTest, Bool) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_BOOL);
value_.set_bool_value(true);
DecodeAndCheck(Value::CreateBooleanValue(true));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, Int64) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_INT64);
value_.set_int64_value(42);
DecodeAndCheck(Value::CreateIntegerValue(42));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, Int64Overflow) {
const int min = std::numeric_limits<int>::min();
const int max = std::numeric_limits<int>::max();
value_.set_value_type(em::GenericValue::VALUE_TYPE_INT64);
value_.set_int64_value(min - 1LL);
DecodeAndCheck(NULL);
value_.set_int64_value(max + 1LL);
DecodeAndCheck(NULL);
value_.set_int64_value(min);
DecodeAndCheck(Value::CreateIntegerValue(min));
value_.set_int64_value(max);
DecodeAndCheck(Value::CreateIntegerValue(max));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, String) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_STRING);
value_.set_string_value("ponies!");
DecodeAndCheck(Value::CreateStringValue("ponies!"));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, Double) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_DOUBLE);
value_.set_double_value(0.42L);
DecodeAndCheck(Value::CreateDoubleValue(0.42L));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, Bytes) {
std::string data("binary ponies.");
value_.set_value_type(em::GenericValue::VALUE_TYPE_BYTES);
value_.set_bytes_value(data);
DecodeAndCheck(
BinaryValue::CreateWithCopiedBuffer(data.c_str(), data.size()));
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, BoolArray) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_BOOL_ARRAY);
value_.add_bool_array(false);
value_.add_bool_array(true);
ListValue* list = new ListValue;
list->Append(Value::CreateBooleanValue(false));
list->Append(Value::CreateBooleanValue(true));
DecodeAndCheck(list);
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, Int64Array) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_INT64_ARRAY);
value_.add_int64_array(42);
value_.add_int64_array(17);
ListValue* list = new ListValue;
list->Append(Value::CreateIntegerValue(42));
list->Append(Value::CreateIntegerValue(17));
DecodeAndCheck(list);
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, StringArray) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_STRING_ARRAY);
value_.add_string_array("ponies");
value_.add_string_array("more ponies");
ListValue* list = new ListValue;
list->Append(Value::CreateStringValue("ponies"));
list->Append(Value::CreateStringValue("more ponies"));
DecodeAndCheck(list);
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, DoubleArray) {
value_.set_value_type(em::GenericValue::VALUE_TYPE_DOUBLE_ARRAY);
value_.add_double_array(0.42L);
value_.add_double_array(0.17L);
ListValue* list = new ListValue;
list->Append(Value::CreateDoubleValue(0.42L));
list->Append(Value::CreateDoubleValue(0.17L));
DecodeAndCheck(list);
}
TEST_F(DeviceManagementPolicyCacheDecodeTest, DecodePolicy) {
em::DevicePolicyResponse policy;
AddStringPolicy(&policy, "HomepageLocation", "http://www.example.com");
scoped_ptr<Value> decoded(DecodeDevicePolicy(policy));
DictionaryValue expected;
expected.Set("HomepageLocation",
Value::CreateStringValue("http://www.example.com"));
EXPECT_TRUE(expected.Equals(decoded.get()));
}
} // namespace policy
|