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
|
// Copyright 2014 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/profile_policy_connector.h"
#include "base/run_loop.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/test/base/testing_browser_process.h"
#include "components/autofill/core/common/autofill_pref_names.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
#include "components/policy/core/common/cloud/cloud_policy_manager.h"
#include "components/policy/core/common/cloud/mock_cloud_policy_store.h"
#include "components/policy/core/common/mock_configuration_policy_provider.h"
#include "components/policy/core/common/policy_bundle.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_service.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/core/common/schema_registry.h"
#include "policy/policy_constants.h"
#include "policy/proto/device_management_backend.pb.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::Return;
using testing::_;
namespace policy {
class ProfilePolicyConnectorTest : public testing::Test {
protected:
ProfilePolicyConnectorTest() {}
~ProfilePolicyConnectorTest() override {}
void SetUp() override {
// This must be set up before the TestingBrowserProcess is created.
BrowserPolicyConnector::SetPolicyProviderForTesting(&mock_provider_);
EXPECT_CALL(mock_provider_, IsInitializationComplete(_))
.WillRepeatedly(Return(true));
cloud_policy_store_.NotifyStoreLoaded();
cloud_policy_manager_.reset(new CloudPolicyManager(
std::string(), std::string(), &cloud_policy_store_, loop_.task_runner(),
loop_.task_runner(), loop_.task_runner()));
}
void TearDown() override {
TestingBrowserProcess::GetGlobal()->ShutdownBrowserPolicyConnector();
cloud_policy_manager_->Shutdown();
}
base::MessageLoop loop_;
SchemaRegistry schema_registry_;
MockConfigurationPolicyProvider mock_provider_;
MockCloudPolicyStore cloud_policy_store_;
scoped_ptr<CloudPolicyManager> cloud_policy_manager_;
};
TEST_F(ProfilePolicyConnectorTest, IsManagedForManagedUsers) {
ProfilePolicyConnector connector;
connector.Init(
#if defined(OS_CHROMEOS)
nullptr,
#endif
&schema_registry_, cloud_policy_manager_.get());
EXPECT_FALSE(connector.IsManaged());
EXPECT_EQ(connector.GetManagementDomain(), "");
cloud_policy_store_.policy_.reset(new enterprise_management::PolicyData());
cloud_policy_store_.policy_->set_username("test@testdomain.com");
cloud_policy_store_.policy_->set_state(
enterprise_management::PolicyData::ACTIVE);
EXPECT_TRUE(connector.IsManaged());
EXPECT_EQ(connector.GetManagementDomain(), "testdomain.com");
// Cleanup.
connector.Shutdown();
}
TEST_F(ProfilePolicyConnectorTest, IsPolicyFromCloudPolicy) {
ProfilePolicyConnector connector;
connector.Init(
#if defined(OS_CHROMEOS)
nullptr,
#endif
&schema_registry_, cloud_policy_manager_.get());
// No policy is set initially.
EXPECT_FALSE(
connector.IsPolicyFromCloudPolicy(autofill::prefs::kAutofillEnabled));
PolicyNamespace chrome_ns(POLICY_DOMAIN_CHROME, std::string());
EXPECT_FALSE(connector.policy_service()->GetPolicies(chrome_ns).GetValue(
key::kAutoFillEnabled));
// Set the policy at the cloud provider.
cloud_policy_store_.policy_map_.Set(key::kAutoFillEnabled,
POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD,
new base::FundamentalValue(false),
nullptr);
cloud_policy_store_.NotifyStoreLoaded();
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(connector.IsPolicyFromCloudPolicy(key::kAutoFillEnabled));
const base::Value* value =
connector.policy_service()->GetPolicies(chrome_ns).GetValue(
key::kAutoFillEnabled);
ASSERT_TRUE(value);
EXPECT_TRUE(base::FundamentalValue(false).Equals(value));
// Now test with a higher-priority provider also setting the policy.
PolicyMap map;
map.Set(key::kAutoFillEnabled,
POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD,
new base::FundamentalValue(true),
nullptr);
mock_provider_.UpdateChromePolicy(map);
EXPECT_FALSE(connector.IsPolicyFromCloudPolicy(key::kAutoFillEnabled));
value = connector.policy_service()->GetPolicies(chrome_ns).GetValue(
key::kAutoFillEnabled);
ASSERT_TRUE(value);
EXPECT_TRUE(base::FundamentalValue(true).Equals(value));
// Cleanup.
connector.Shutdown();
}
} // namespace policy
|