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

Side by Side Diff: components/sync_driver/sync_policy_handler_unittest.cc

Issue 1304843004: Add source column to chrome://policy showing the origins of policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another test. Created 5 years, 3 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "base/prefs/pref_value_map.h" 5 #include "base/prefs/pref_value_map.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "components/policy/core/common/policy_map.h" 7 #include "components/policy/core/common/policy_map.h"
8 #include "components/policy/core/common/policy_types.h"
8 #include "components/sync_driver/pref_names.h" 9 #include "components/sync_driver/pref_names.h"
9 #include "components/sync_driver/sync_policy_handler.h" 10 #include "components/sync_driver/sync_policy_handler.h"
10 #include "policy/policy_constants.h" 11 #include "policy/policy_constants.h"
11 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
12 13
13 namespace sync_driver { 14 namespace sync_driver {
14 15
15 // Test cases for the Sync policy setting. 16 // Test cases for the Sync policy setting.
16 class SyncPolicyHandlerTest : public testing::Test {}; 17 class SyncPolicyHandlerTest : public testing::Test {};
17 18
18 TEST_F(SyncPolicyHandlerTest, Default) { 19 TEST_F(SyncPolicyHandlerTest, Default) {
19 policy::PolicyMap policy; 20 policy::PolicyMap policy;
20 SyncPolicyHandler handler; 21 SyncPolicyHandler handler;
21 PrefValueMap prefs; 22 PrefValueMap prefs;
22 handler.ApplyPolicySettings(policy, &prefs); 23 handler.ApplyPolicySettings(policy, &prefs);
23 EXPECT_FALSE(prefs.GetValue(sync_driver::prefs::kSyncManaged, NULL)); 24 EXPECT_FALSE(prefs.GetValue(sync_driver::prefs::kSyncManaged, NULL));
24 } 25 }
25 26
26 TEST_F(SyncPolicyHandlerTest, Enabled) { 27 TEST_F(SyncPolicyHandlerTest, Enabled) {
27 policy::PolicyMap policy; 28 policy::PolicyMap policy;
28 policy.Set(policy::key::kSyncDisabled, 29 policy.Set(policy::key::kSyncDisabled,
29 policy::POLICY_LEVEL_MANDATORY, 30 policy::POLICY_LEVEL_MANDATORY,
30 policy::POLICY_SCOPE_USER, 31 policy::POLICY_SCOPE_USER,
32 policy::POLICY_SOURCE_CLOUD,
31 new base::FundamentalValue(false), 33 new base::FundamentalValue(false),
32 NULL); 34 NULL);
33 SyncPolicyHandler handler; 35 SyncPolicyHandler handler;
34 PrefValueMap prefs; 36 PrefValueMap prefs;
35 handler.ApplyPolicySettings(policy, &prefs); 37 handler.ApplyPolicySettings(policy, &prefs);
36 38
37 // Enabling Sync should not set the pref. 39 // Enabling Sync should not set the pref.
38 EXPECT_FALSE(prefs.GetValue(sync_driver::prefs::kSyncManaged, NULL)); 40 EXPECT_FALSE(prefs.GetValue(sync_driver::prefs::kSyncManaged, NULL));
39 } 41 }
40 42
41 TEST_F(SyncPolicyHandlerTest, Disabled) { 43 TEST_F(SyncPolicyHandlerTest, Disabled) {
42 policy::PolicyMap policy; 44 policy::PolicyMap policy;
43 policy.Set(policy::key::kSyncDisabled, 45 policy.Set(policy::key::kSyncDisabled,
44 policy::POLICY_LEVEL_MANDATORY, 46 policy::POLICY_LEVEL_MANDATORY,
45 policy::POLICY_SCOPE_USER, 47 policy::POLICY_SCOPE_USER,
48 policy::POLICY_SOURCE_CLOUD,
46 new base::FundamentalValue(true), 49 new base::FundamentalValue(true),
47 NULL); 50 NULL);
48 SyncPolicyHandler handler; 51 SyncPolicyHandler handler;
49 PrefValueMap prefs; 52 PrefValueMap prefs;
50 handler.ApplyPolicySettings(policy, &prefs); 53 handler.ApplyPolicySettings(policy, &prefs);
51 54
52 // Sync should be flagged as managed. 55 // Sync should be flagged as managed.
53 const base::Value* value = NULL; 56 const base::Value* value = NULL;
54 EXPECT_TRUE(prefs.GetValue(sync_driver::prefs::kSyncManaged, &value)); 57 EXPECT_TRUE(prefs.GetValue(sync_driver::prefs::kSyncManaged, &value));
55 ASSERT_TRUE(value); 58 ASSERT_TRUE(value);
56 bool sync_managed = false; 59 bool sync_managed = false;
57 bool result = value->GetAsBoolean(&sync_managed); 60 bool result = value->GetAsBoolean(&sync_managed);
58 ASSERT_TRUE(result); 61 ASSERT_TRUE(result);
59 EXPECT_TRUE(sync_managed); 62 EXPECT_TRUE(sync_managed);
60 } 63 }
61 64
62 } // namespace sync_driver 65 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/search_engines/default_search_policy_handler_unittest.cc ('k') | remoting/host/policy_watcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698