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

Side by Side Diff: chrome/browser/policy/device_cloud_policy_manager_chromeos_unittest.cc

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double registration in Chrome Frame test. Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 "chrome/browser/policy/device_cloud_policy_manager_chromeos.h" 5 #include "chrome/browser/policy/device_cloud_policy_manager_chromeos.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "chrome/browser/chromeos/cros/cryptohome_library.h" 11 #include "chrome/browser/chromeos/cros/cryptohome_library.h"
12 #include "chrome/browser/chromeos/settings/device_settings_test_helper.h" 12 #include "chrome/browser/chromeos/settings/device_settings_test_helper.h"
13 #include "chrome/browser/policy/cloud_policy_client.h" 13 #include "chrome/browser/policy/cloud_policy_client.h"
14 #include "chrome/browser/policy/device_cloud_policy_store_chromeos.h" 14 #include "chrome/browser/policy/device_cloud_policy_store_chromeos.h"
15 #include "chrome/browser/policy/enterprise_install_attributes.h" 15 #include "chrome/browser/policy/enterprise_install_attributes.h"
16 #include "chrome/browser/policy/mock_device_management_service.h" 16 #include "chrome/browser/policy/mock_device_management_service.h"
17 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h" 17 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h"
18 #include "chrome/browser/policy/proto/device_management_backend.pb.h" 18 #include "chrome/browser/policy/proto/device_management_backend.pb.h"
19 #include "chrome/browser/prefs/browser_prefs.h" 19 #include "chrome/browser/prefs/browser_prefs.h"
20 #include "chrome/browser/prefs/pref_registry_simple.h"
20 #include "chrome/test/base/testing_pref_service.h" 21 #include "chrome/test/base/testing_pref_service.h"
21 #include "policy/policy_constants.h" 22 #include "policy/policy_constants.h"
22 #include "testing/gmock/include/gmock/gmock.h" 23 #include "testing/gmock/include/gmock/gmock.h"
23 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
24 25
25 using testing::AnyNumber; 26 using testing::AnyNumber;
26 using testing::AtMost; 27 using testing::AtMost;
27 using testing::DoAll; 28 using testing::DoAll;
28 using testing::Mock; 29 using testing::Mock;
29 using testing::SaveArg; 30 using testing::SaveArg;
30 using testing::_; 31 using testing::_;
31 32
32 namespace em = enterprise_management; 33 namespace em = enterprise_management;
33 34
34 namespace policy { 35 namespace policy {
35 namespace { 36 namespace {
36 37
37 class DeviceCloudPolicyManagerChromeOSTest 38 class DeviceCloudPolicyManagerChromeOSTest
38 : public chromeos::DeviceSettingsTestBase { 39 : public chromeos::DeviceSettingsTestBase {
39 protected: 40 protected:
40 DeviceCloudPolicyManagerChromeOSTest() 41 DeviceCloudPolicyManagerChromeOSTest()
41 : cryptohome_library_(chromeos::CryptohomeLibrary::GetImpl(true)), 42 : cryptohome_library_(chromeos::CryptohomeLibrary::GetImpl(true)),
42 install_attributes_(cryptohome_library_.get()), 43 install_attributes_(cryptohome_library_.get()),
43 store_(new DeviceCloudPolicyStoreChromeOS(&device_settings_service_, 44 store_(new DeviceCloudPolicyStoreChromeOS(&device_settings_service_,
44 &install_attributes_)), 45 &install_attributes_)),
45 manager_(make_scoped_ptr(store_), &install_attributes_) {} 46 manager_(make_scoped_ptr(store_), &install_attributes_) {}
46 47
47 virtual void SetUp() OVERRIDE { 48 virtual void SetUp() OVERRIDE {
48 DeviceSettingsTestBase::SetUp(); 49 DeviceSettingsTestBase::SetUp();
49 chrome::RegisterLocalState(&local_state_); 50 chrome::RegisterLocalState(local_state_.registry(), &local_state_);
50 manager_.Init(); 51 manager_.Init();
51 } 52 }
52 53
53 virtual void TearDown() OVERRIDE { 54 virtual void TearDown() OVERRIDE {
54 manager_.Shutdown(); 55 manager_.Shutdown();
55 DeviceSettingsTestBase::TearDown(); 56 DeviceSettingsTestBase::TearDown();
56 } 57 }
57 58
58 scoped_ptr<chromeos::CryptohomeLibrary> cryptohome_library_; 59 scoped_ptr<chromeos::CryptohomeLibrary> cryptohome_library_;
59 EnterpriseInstallAttributes install_attributes_; 60 EnterpriseInstallAttributes install_attributes_;
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 TEST_F(DeviceCloudPolicyManagerChromeOSEnrollmentTest, LoadError) { 335 TEST_F(DeviceCloudPolicyManagerChromeOSEnrollmentTest, LoadError) {
335 loaded_blob_.clear(); 336 loaded_blob_.clear();
336 RunTest(); 337 RunTest();
337 ExpectFailedEnrollment(EnrollmentStatus::STATUS_STORE_ERROR); 338 ExpectFailedEnrollment(EnrollmentStatus::STATUS_STORE_ERROR);
338 EXPECT_EQ(CloudPolicyStore::STATUS_LOAD_ERROR, 339 EXPECT_EQ(CloudPolicyStore::STATUS_LOAD_ERROR,
339 status_.store_status()); 340 status_.store_status());
340 } 341 }
341 342
342 } // namespace 343 } // namespace
343 } // namespace policy 344 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/cloud_policy_core_unittest.cc ('k') | chrome/browser/policy/device_status_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698