| OLD | NEW |
| 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 "chrome/browser/policy/configuration_policy_pref_store_test.h" | 5 #include "chrome/browser/policy/configuration_policy_pref_store_test.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" |
| 9 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| 11 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h" |
| 10 #include "components/policy/core/browser/configuration_policy_pref_store.h" | 12 #include "components/policy/core/browser/configuration_policy_pref_store.h" |
| 11 #include "components/policy/core/common/policy_details.h" | 13 #include "components/policy/core/common/policy_details.h" |
| 12 #include "components/policy/core/common/policy_map.h" | 14 #include "components/policy/core/common/policy_map.h" |
| 13 #include "components/policy/core/common/policy_service_impl.h" | 15 #include "components/policy/core/common/policy_service_impl.h" |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 16 #include "testing/gmock/include/gmock/gmock.h" |
| 15 | 17 |
| 16 using testing::Return; | 18 using testing::Return; |
| 17 using testing::_; | 19 using testing::_; |
| 18 | 20 |
| 19 namespace policy { | 21 namespace policy { |
| 20 | 22 |
| 21 ConfigurationPolicyPrefStoreTest::ConfigurationPolicyPrefStoreTest() | 23 ConfigurationPolicyPrefStoreTest::ConfigurationPolicyPrefStoreTest() |
| 22 : handler_list_(GetChromePolicyDetailsCallback()) { | 24 : handler_list_(base::Bind(&PopulatePolicyHandlerParameters), |
| 25 GetChromePolicyDetailsCallback()) { |
| 23 EXPECT_CALL(provider_, IsInitializationComplete(_)) | 26 EXPECT_CALL(provider_, IsInitializationComplete(_)) |
| 24 .WillRepeatedly(Return(false)); | 27 .WillRepeatedly(Return(false)); |
| 25 provider_.Init(); | 28 provider_.Init(); |
| 26 providers_.push_back(&provider_); | 29 providers_.push_back(&provider_); |
| 27 policy_service_.reset(new PolicyServiceImpl(providers_)); | 30 policy_service_.reset(new PolicyServiceImpl(providers_)); |
| 28 store_ = new ConfigurationPolicyPrefStore( | 31 store_ = new ConfigurationPolicyPrefStore( |
| 29 policy_service_.get(), &handler_list_, POLICY_LEVEL_MANDATORY); | 32 policy_service_.get(), &handler_list_, POLICY_LEVEL_MANDATORY); |
| 30 } | 33 } |
| 31 | 34 |
| 32 ConfigurationPolicyPrefStoreTest::~ConfigurationPolicyPrefStoreTest() {} | 35 ConfigurationPolicyPrefStoreTest::~ConfigurationPolicyPrefStoreTest() {} |
| 33 | 36 |
| 34 void ConfigurationPolicyPrefStoreTest::TearDown() { | 37 void ConfigurationPolicyPrefStoreTest::TearDown() { |
| 35 provider_.Shutdown(); | 38 provider_.Shutdown(); |
| 36 } | 39 } |
| 37 | 40 |
| 38 void ConfigurationPolicyPrefStoreTest::UpdateProviderPolicy( | 41 void ConfigurationPolicyPrefStoreTest::UpdateProviderPolicy( |
| 39 const PolicyMap& policy) { | 42 const PolicyMap& policy) { |
| 40 provider_.UpdateChromePolicy(policy); | 43 provider_.UpdateChromePolicy(policy); |
| 41 base::RunLoop loop; | 44 base::RunLoop loop; |
| 42 loop.RunUntilIdle(); | 45 loop.RunUntilIdle(); |
| 43 } | 46 } |
| 44 | 47 |
| 45 } // namespace policy | 48 } // namespace policy |
| OLD | NEW |