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

Side by Side Diff: chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc

Issue 1019283004: Switch to direct use of OwnerSettingsServiceChromeOS::Set() in tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h"
6
7 #include "base/logging.h"
8 #include "base/values.h"
9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/chromeos/ownership/fake_owner_settings_service.h"
11 #include "chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h"
12 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
13 #include "chrome/browser/chromeos/settings/cros_settings.h"
14 #include "chrome/browser/chromeos/settings/device_settings_cache.h"
15 #include "chrome/browser/chromeos/settings/device_settings_service.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "components/ownership/mock_owner_key_util.h"
18 #include "policy/proto/device_management_backend.pb.h"
19 #include "testing/gtest/include/gtest/gtest.h"
20
21 namespace chromeos {
22
23 ScopedCrosSettingsTestHelper::ScopedCrosSettingsTestHelper() {
24 Initialize(true);
25 }
26
27 ScopedCrosSettingsTestHelper::ScopedCrosSettingsTestHelper(
28 bool create_settings_service) {
29 Initialize(create_settings_service);
30 }
31
32 ScopedCrosSettingsTestHelper::~ScopedCrosSettingsTestHelper() {
33 RestoreProvider();
34 }
35
36 scoped_ptr<FakeOwnerSettingsService>
37 ScopedCrosSettingsTestHelper::CreateOwnerSettingsService(Profile* profile) {
38 return make_scoped_ptr(new FakeOwnerSettingsService(
39 profile, new ownership::MockOwnerKeyUtil(), &stub_settings_provider_));
40 }
41
42 void ScopedCrosSettingsTestHelper::ReplaceProvider(const std::string& path) {
43 CHECK(!real_settings_provider_);
44 // Swap out the DeviceSettingsProvider with our settings provider so we can
45 // set values for the specified path.
46 CrosSettings* const cros_settings = CrosSettings::Get();
47 real_settings_provider_ = cros_settings->GetProvider(path);
48 EXPECT_TRUE(real_settings_provider_);
49 EXPECT_TRUE(cros_settings->RemoveSettingsProvider(real_settings_provider_));
50 cros_settings->AddSettingsProvider(&stub_settings_provider_);
51 }
52
53 void ScopedCrosSettingsTestHelper::RestoreProvider() {
54 if (real_settings_provider_) {
55 // Restore the real DeviceSettingsProvider.
56 CrosSettings* const cros_settings = CrosSettings::Get();
57 EXPECT_TRUE(
58 cros_settings->RemoveSettingsProvider(&stub_settings_provider_));
59 cros_settings->AddSettingsProvider(real_settings_provider_);
60 real_settings_provider_ = nullptr;
61 }
62 }
63
64 void ScopedCrosSettingsTestHelper::SetTrustedStatus(
65 CrosSettingsProvider::TrustedStatus status) {
66 stub_settings_provider_.SetTrustedStatus(status);
67 }
68
69 void ScopedCrosSettingsTestHelper::SetCurrentUserIsOwner(bool owner) {
70 stub_settings_provider_.SetCurrentUserIsOwner(owner);
71 }
72
73 void ScopedCrosSettingsTestHelper::Set(const std::string& path,
74 const base::Value& in_value) {
75 stub_settings_provider_.Set(path, in_value);
76 }
77
78 void ScopedCrosSettingsTestHelper::SetBoolean(const std::string& path,
79 bool in_value) {
80 Set(path, base::FundamentalValue(in_value));
81 }
82
83 void ScopedCrosSettingsTestHelper::SetInteger(const std::string& path,
84 int in_value) {
85 Set(path, base::FundamentalValue(in_value));
86 }
87
88 void ScopedCrosSettingsTestHelper::SetDouble(const std::string& path,
89 double in_value) {
90 Set(path, base::FundamentalValue(in_value));
91 }
92
93 void ScopedCrosSettingsTestHelper::SetString(const std::string& path,
94 const std::string& in_value) {
95 Set(path, base::StringValue(in_value));
96 }
97
98 void ScopedCrosSettingsTestHelper::StoreCachedDeviceSetting(
99 const std::string& path) {
100 const base::Value* const value = stub_settings_provider_.Get(path);
101 if (value) {
102 enterprise_management::PolicyData data;
103 enterprise_management::ChromeDeviceSettingsProto settings;
104 if (device_settings_cache::Retrieve(&data,
105 g_browser_process->local_state())) {
106 CHECK(settings.ParseFromString(data.policy_value()));
107 }
108 OwnerSettingsServiceChromeOS::UpdateDeviceSettings(path, *value, settings);
109 CHECK(settings.SerializeToString(data.mutable_policy_value()));
110 CHECK(device_settings_cache::Store(data, g_browser_process->local_state()));
111 }
112 }
113
114 void ScopedCrosSettingsTestHelper::CopyStoredValue(const std::string& path) {
115 CrosSettingsProvider* provider = real_settings_provider_
116 ? real_settings_provider_
117 : CrosSettings::Get()->GetProvider(path);
118 const base::Value* const value = provider->Get(path);
119 if (value) {
120 stub_settings_provider_.Set(path, *value);
121 }
122 }
123
124 void ScopedCrosSettingsTestHelper::Initialize(bool create_settings_service) {
125 if (create_settings_service) {
126 CHECK(!DeviceSettingsService::IsInitialized());
127 test_device_settings_service_.reset(new ScopedTestDeviceSettingsService());
128 test_cros_settings_.reset(new ScopedTestCrosSettings());
129 }
130 }
131
132 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698