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