OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 "base/message_loop.h" |
| 6 #include "chrome/browser/policy/asynchronous_policy_provider.h" |
| 7 #include "chrome/browser/policy/asynchronous_policy_test_base.h" |
| 8 #include "chrome/browser/policy/configuration_policy_pref_store.h" |
| 9 #include "chrome/browser/policy/mock_configuration_policy_store.h" |
| 10 #include "chrome/common/policy_constants.h" |
| 11 #include "testing/gmock/include/gmock/gmock.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 |
| 14 using ::testing::_; |
| 15 using ::testing::InSequence; |
| 16 using ::testing::Return; |
| 17 |
| 18 namespace policy { |
| 19 |
| 20 class AsynchronousPolicyProviderTest : public AsynchronousPolicyTestBase { |
| 21 public: |
| 22 AsynchronousPolicyProviderTest() {} |
| 23 virtual ~AsynchronousPolicyProviderTest() {} |
| 24 |
| 25 private: |
| 26 DISALLOW_COPY_AND_ASSIGN(AsynchronousPolicyProviderTest); |
| 27 }; |
| 28 |
| 29 ACTION(DestroyPolicyChangeObserver) { |
| 30 delete arg0; |
| 31 } |
| 32 |
| 33 ACTION(RefreshAndDestroyPolicyChangeObserver) { |
| 34 arg0->OnPolicyChange(); |
| 35 delete arg0; |
| 36 } |
| 37 |
| 38 ACTION_P(ReturnDictionaryAndQuitMessageLoop, dict) { |
| 39 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableFunction( |
| 40 &MessageLoopQuitNow)); |
| 41 return dict; |
| 42 } |
| 43 |
| 44 TEST_F(AsynchronousPolicyProviderTest, Provide) { |
| 45 EXPECT_CALL(*delegate_, Init(_)).WillOnce( |
| 46 DestroyPolicyChangeObserver()); |
| 47 InSequence s; |
| 48 DictionaryValue* policies = new DictionaryValue(); |
| 49 policies->SetBoolean(policy::key::kSyncDisabled, true); |
| 50 EXPECT_CALL(*delegate_, Load()).WillOnce(Return(policies)); |
| 51 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1); |
| 52 EXPECT_CALL(*delegate_, Stop()).Times(1); |
| 53 provider_.reset(new AsynchronousPolicyProvider( |
| 54 ConfigurationPolicyPrefStore::GetChromePolicyDefinitionList(), |
| 55 delegate_.release())); |
| 56 provider_->Provide(store_.get()); |
| 57 } |
| 58 |
| 59 TEST_F(AsynchronousPolicyProviderTest, ProvideAfterRefresh) { |
| 60 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillRepeatedly( |
| 61 Return(true)); |
| 62 EXPECT_CALL(*delegate_, Init(_)).WillOnce( |
| 63 RefreshAndDestroyPolicyChangeObserver()); |
| 64 InSequence s; |
| 65 DictionaryValue* original_policies = new DictionaryValue(); |
| 66 original_policies->SetBoolean(policy::key::kSyncDisabled, true); |
| 67 EXPECT_CALL(*delegate_, Load()).WillOnce(Return(original_policies)); |
| 68 DictionaryValue* refresh_policies = new DictionaryValue(); |
| 69 refresh_policies->SetBoolean( |
| 70 policy::key::kJavascriptEnabled, |
| 71 true); |
| 72 EXPECT_CALL(*delegate_, Load()).WillOnce( |
| 73 ReturnDictionaryAndQuitMessageLoop(refresh_policies)); |
| 74 EXPECT_CALL(*store_, Apply(policy::kPolicyJavascriptEnabled, _)).Times(1); |
| 75 EXPECT_CALL(*delegate_, Stop()).Times(1); |
| 76 provider_.reset(new AsynchronousPolicyProvider( |
| 77 ConfigurationPolicyPrefStore::GetChromePolicyDefinitionList(), |
| 78 delegate_.release())); |
| 79 loop_.RunAllPending(); |
| 80 provider_->Provide(store_.get()); |
| 81 } |
| 82 |
| 83 } // namespace policy |
OLD | NEW |