device_settings_test_helper.cc revision 2a99a7e74a7f215066514fe81d2bfa6639d9eddd
1// Copyright (c) 2012 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/device_settings_test_helper.h"
6
7#include "base/message_loop.h"
8#include "base/run_loop.h"
9#include "base/threading/sequenced_worker_pool.h"
10#include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
11#include "chrome/browser/chromeos/settings/device_settings_service.h"
12#include "chrome/browser/chromeos/settings/mock_owner_key_util.h"
13#include "content/public/browser/browser_thread.h"
14
15namespace chromeos {
16
17DeviceSettingsTestHelper::DeviceSettingsTestHelper() {}
18
19DeviceSettingsTestHelper::~DeviceSettingsTestHelper() {}
20
21void DeviceSettingsTestHelper::FlushLoops() {
22  // DeviceSettingsService may trigger operations that hop back and forth
23  // between the message loop and the blocking pool. 2 iterations are currently
24  // sufficient (key loading, signing).
25  for (int i = 0; i < 2; ++i) {
26    MessageLoop::current()->RunUntilIdle();
27    content::BrowserThread::GetBlockingPool()->FlushForTesting();
28  }
29  MessageLoop::current()->RunUntilIdle();
30}
31
32void DeviceSettingsTestHelper::FlushStore() {
33  std::vector<StorePolicyCallback> callbacks;
34  callbacks.swap(device_policy_.store_callbacks_);
35  for (std::vector<StorePolicyCallback>::iterator cb(callbacks.begin());
36       cb != callbacks.end(); ++cb) {
37    cb->Run(device_policy_.store_result_);
38  }
39
40  std::map<std::string, PolicyState>::iterator device_local_account_state;
41  for (device_local_account_state = device_local_account_policy_.begin();
42       device_local_account_state != device_local_account_policy_.end();
43       ++device_local_account_state) {
44    callbacks.swap(device_local_account_state->second.store_callbacks_);
45    for (std::vector<StorePolicyCallback>::iterator cb(callbacks.begin());
46         cb != callbacks.end(); ++cb) {
47      cb->Run(device_local_account_state->second.store_result_);
48    }
49  }
50}
51
52void DeviceSettingsTestHelper::FlushRetrieve() {
53  std::vector<RetrievePolicyCallback> callbacks;
54  callbacks.swap(device_policy_.retrieve_callbacks_);
55  for (std::vector<RetrievePolicyCallback>::iterator cb(callbacks.begin());
56       cb != callbacks.end(); ++cb) {
57    cb->Run(device_policy_.policy_blob_);
58  }
59
60  std::map<std::string, PolicyState>::iterator device_local_account_state;
61  for (device_local_account_state = device_local_account_policy_.begin();
62       device_local_account_state != device_local_account_policy_.end();
63       ++device_local_account_state) {
64    callbacks.swap(device_local_account_state->second.retrieve_callbacks_);
65    for (std::vector<RetrievePolicyCallback>::iterator cb(callbacks.begin());
66         cb != callbacks.end(); ++cb) {
67      cb->Run(device_local_account_state->second.policy_blob_);
68    }
69  }
70}
71
72void DeviceSettingsTestHelper::Flush() {
73  do {
74    FlushLoops();
75    FlushStore();
76    FlushLoops();
77    FlushRetrieve();
78    FlushLoops();
79  } while (HasPendingOperations());
80}
81
82bool DeviceSettingsTestHelper::HasPendingOperations() const {
83  if (device_policy_.HasPendingOperations())
84    return true;
85
86  std::map<std::string, PolicyState>::const_iterator device_local_account_state;
87  for (device_local_account_state = device_local_account_policy_.begin();
88       device_local_account_state != device_local_account_policy_.end();
89       ++device_local_account_state) {
90    if (device_local_account_state->second.HasPendingOperations())
91      return true;
92  }
93
94  return false;
95}
96
97void DeviceSettingsTestHelper::AddObserver(Observer* observer) {}
98
99void DeviceSettingsTestHelper::RemoveObserver(Observer* observer) {}
100
101bool DeviceSettingsTestHelper::HasObserver(Observer* observer) {
102  return false;
103}
104
105void DeviceSettingsTestHelper::EmitLoginPromptReady() {}
106
107void DeviceSettingsTestHelper::EmitLoginPromptVisible() {}
108
109void DeviceSettingsTestHelper::RestartJob(int pid,
110                                          const std::string& command_line) {}
111
112void DeviceSettingsTestHelper::RestartEntd() {}
113
114void DeviceSettingsTestHelper::StartSession(const std::string& user_email) {}
115
116void DeviceSettingsTestHelper::StopSession() {}
117
118void DeviceSettingsTestHelper::StartDeviceWipe() {}
119
120void DeviceSettingsTestHelper::RequestLockScreen() {}
121
122void DeviceSettingsTestHelper::NotifyLockScreenShown() {}
123
124void DeviceSettingsTestHelper::RequestUnlockScreen() {}
125
126void DeviceSettingsTestHelper::NotifyLockScreenDismissed() {}
127
128void DeviceSettingsTestHelper::RetrieveDevicePolicy(
129    const RetrievePolicyCallback& callback) {
130  device_policy_.retrieve_callbacks_.push_back(callback);
131}
132
133void DeviceSettingsTestHelper::RetrieveUserPolicy(
134    const RetrievePolicyCallback& callback) {
135}
136
137void DeviceSettingsTestHelper::RetrieveDeviceLocalAccountPolicy(
138    const std::string& account_id,
139    const RetrievePolicyCallback& callback) {
140  device_local_account_policy_[account_id].retrieve_callbacks_.push_back(
141      callback);
142}
143
144void DeviceSettingsTestHelper::StoreDevicePolicy(
145    const std::string& policy_blob,
146    const StorePolicyCallback& callback) {
147  device_policy_.policy_blob_ = policy_blob;
148  device_policy_.store_callbacks_.push_back(callback);
149}
150
151void DeviceSettingsTestHelper::StoreUserPolicy(
152    const std::string& policy_blob,
153    const StorePolicyCallback& callback) {
154}
155
156void DeviceSettingsTestHelper::StoreDeviceLocalAccountPolicy(
157    const std::string& account_id,
158    const std::string& policy_blob,
159    const StorePolicyCallback& callback) {
160  device_local_account_policy_[account_id].policy_blob_ = policy_blob;
161  device_local_account_policy_[account_id].store_callbacks_.push_back(callback);
162}
163
164DeviceSettingsTestHelper::PolicyState::PolicyState()
165    : store_result_(true) {}
166
167DeviceSettingsTestHelper::PolicyState::~PolicyState() {}
168
169ScopedDeviceSettingsTestHelper::ScopedDeviceSettingsTestHelper() {
170  DeviceSettingsService::Get()->Initialize(this, new MockOwnerKeyUtil());
171  DeviceSettingsService::Get()->Load();
172  Flush();
173}
174
175ScopedDeviceSettingsTestHelper::~ScopedDeviceSettingsTestHelper() {
176  Flush();
177  DeviceSettingsService::Get()->Shutdown();
178}
179
180DeviceSettingsTestBase::DeviceSettingsTestBase()
181    : loop_(MessageLoop::TYPE_UI),
182      ui_thread_(content::BrowserThread::UI, &loop_),
183      file_thread_(content::BrowserThread::FILE, &loop_),
184      owner_key_util_(new MockOwnerKeyUtil()) {}
185
186DeviceSettingsTestBase::~DeviceSettingsTestBase() {
187  base::RunLoop().RunUntilIdle();
188}
189
190void DeviceSettingsTestBase::SetUp() {
191  device_policy_.payload().mutable_metrics_enabled()->set_metrics_enabled(
192      false);
193  owner_key_util_->SetPublicKeyFromPrivateKey(device_policy_.signing_key());
194  device_policy_.Build();
195  device_settings_test_helper_.set_policy_blob(device_policy_.GetBlob());
196  device_settings_service_.Initialize(&device_settings_test_helper_,
197                                      owner_key_util_);
198}
199
200void DeviceSettingsTestBase::TearDown() {
201  FlushDeviceSettings();
202  device_settings_service_.Shutdown();
203}
204
205void DeviceSettingsTestBase::FlushDeviceSettings() {
206  device_settings_test_helper_.Flush();
207}
208
209void DeviceSettingsTestBase::ReloadDeviceSettings() {
210  device_settings_service_.OwnerKeySet(true);
211  FlushDeviceSettings();
212}
213
214}  // namespace chromeos
215