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

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

Issue 5562002: Refactor FileBasedPolicyProvider, introduce AsynchronousPolicyProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extra provider in tests Created 10 years 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
(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 "chrome/browser/browser_thread.h"
6 #include "chrome/browser/policy/asynchronous_policy_loader.h"
7 #include "chrome/browser/policy/asynchronous_policy_test_base.h"
8 #include "chrome/browser/policy/mock_configuration_policy_provider.h"
9
10 using ::testing::_;
11 using ::testing::InSequence;
12 using ::testing::Return;
13
14 namespace policy {
15
16 const int kReloadIntervalMinutesForTesting = 1;
17
18 class AsynchronousPolicyLoaderTest : public AsynchronousPolicyTestBase {
19 public:
20 AsynchronousPolicyLoaderTest() {}
21 virtual ~AsynchronousPolicyLoaderTest() {}
22
23 virtual void SetUp() {
24 AsynchronousPolicyTestBase::SetUp();
25 mock_provider_ = new MockConfigurationPolicyProvider();
26 provider_.reset(mock_provider_);
27 }
28
29 protected:
30 MockConfigurationPolicyProvider* mock_provider_; // weak
31
32 private:
33 DISALLOW_COPY_AND_ASSIGN(AsynchronousPolicyLoaderTest);
34 };
35
36 ACTION_P(CreateTestDictionary, quit) {
37 if (quit) {
38 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableFunction(
39 &MessageLoopQuitNow));
40 }
41 return new DictionaryValue();
42 }
43
44 ACTION_P2(CreateSequencedTestDictionary, number, quit) {
45 DictionaryValue* test_dictionary = new DictionaryValue();
46 test_dictionary->SetInteger("id", ++(*number));
47 if (quit) {
48 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableFunction(
49 &MessageLoopQuitNow));
50 }
51 return test_dictionary;
52 }
53
54 ACTION(RescheduleImmediatePolicyReload) {
55 *arg1 = base::TimeDelta();
56 return false;
57 }
58
59 TEST_F(AsynchronousPolicyLoaderTest, InitialLoad) {
60 DictionaryValue* template_dict(new DictionaryValue());
61 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillRepeatedly(
62 Return(true));
63 EXPECT_CALL(*delegate_, Load()).WillOnce(Return(template_dict));
64 scoped_refptr<AsynchronousPolicyLoader> loader =
65 new AsynchronousPolicyLoader(mock_provider_->AsWeakPtr(),
66 delegate_.release(),
67 kReloadIntervalMinutesForTesting);
68 loader->Init();
69 scoped_ptr<DictionaryValue> loaded_dict(loader->GetPolicy());
70 EXPECT_TRUE(loaded_dict->Equals(template_dict));
71 }
72
73 // Verify that the fallback policy requests are made.
74 TEST_F(AsynchronousPolicyLoaderTest, InitialLoadWithFallback) {
75 int dictionary_number = 0;
76 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillRepeatedly(
77 Return(true));
78 InSequence s;
79 EXPECT_CALL(*delegate_, Load()).WillOnce(
80 CreateSequencedTestDictionary(&dictionary_number, false));
81 EXPECT_CALL(*delegate_, Load()).WillOnce(
82 CreateSequencedTestDictionary(&dictionary_number, true));
83 scoped_refptr<AsynchronousPolicyLoader> loader =
84 new AsynchronousPolicyLoader(mock_provider_->AsWeakPtr(),
85 delegate_.release(),
86 0);
87 loader->Init();
88 loop_.RunAllPending();
89
90 scoped_ptr<DictionaryValue> loaded_dict(loader->GetPolicy());
91 int loaded_number;
92 EXPECT_TRUE(loaded_dict->GetInteger("id", &loaded_number));
93 EXPECT_EQ(dictionary_number, loaded_number);
94
95 DontRunAllPendingDuringTearDown();
96 }
97
98 // Ensure that calling stop on the loader stops subsequent reloads from
99 // happening.
100 TEST_F(AsynchronousPolicyLoaderTest, Stop) {
101 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillRepeatedly(
102 Return(true));
103 ON_CALL(*delegate_, Load()).WillByDefault(CreateTestDictionary(false));
104 EXPECT_CALL(*delegate_, Load()).Times(1);
105 scoped_refptr<AsynchronousPolicyLoader> loader =
106 new AsynchronousPolicyLoader(mock_provider_->AsWeakPtr(),
107 delegate_.release(),
108 0);
109 loader->Init();
110 loader->Stop();
111 }
112
113 // Verifies that if it's not safe to reload a policy, subsequent
114 // attempts will be made.
115 TEST_F(AsynchronousPolicyLoaderTest, UnsafeForPolicyReload) {
116 InSequence s;
117 EXPECT_CALL(*delegate_, Load()).WillOnce(CreateTestDictionary(false));
118 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillOnce(
119 RescheduleImmediatePolicyReload());
120 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillOnce(
121 Return(true));
122 // Successful reload, but determined unsafe after the load,
123 // should trigger another reload.
124 EXPECT_CALL(*delegate_, Load()).WillOnce(CreateTestDictionary(false));
125 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillOnce(
126 RescheduleImmediatePolicyReload());
127 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillOnce(
128 Return(true));
129 // Successful reload.
130 EXPECT_CALL(*delegate_, Load()).WillOnce(CreateTestDictionary(true));
131 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillOnce(
132 Return(true));
133 scoped_refptr<AsynchronousPolicyLoader> loader =
134 new AsynchronousPolicyLoader(mock_provider_->AsWeakPtr(),
135 delegate_.release(),
136 0);
137 loader->Init();
138 }
139
140 // Verifies that the provider is notified upon policy reload, but only
141 // if the policy changed.
142 TEST_F(AsynchronousPolicyLoaderTest, ProviderNotificationOnPolicyChange) {
143 EXPECT_CALL(*delegate_, IsSafeToReloadPolicy(_, _)).WillRepeatedly(
144 Return(true));
145 InSequence s;
146 int dictionary_number_1 = 0;
147 int dictionary_number_2 = 0;
148 EXPECT_CALL(*delegate_, Load()).WillOnce(
149 CreateSequencedTestDictionary(&dictionary_number_1, false));
150 EXPECT_CALL(*delegate_, Load()).WillOnce(
151 CreateSequencedTestDictionary(&dictionary_number_2, false));
152 EXPECT_CALL(*mock_provider_, NotifyStoreOfPolicyChange()).Times(0);
153 EXPECT_CALL(*delegate_, Load()).WillOnce(
154 CreateSequencedTestDictionary(&dictionary_number_2, false));
155 EXPECT_CALL(*mock_provider_, NotifyStoreOfPolicyChange()).Times(1);
156 EXPECT_CALL(*delegate_, Load()).WillOnce(
157 CreateSequencedTestDictionary(&dictionary_number_1, true));
158 scoped_refptr<AsynchronousPolicyLoader> loader =
159 new AsynchronousPolicyLoader(mock_provider_->AsWeakPtr(),
160 delegate_.release(),
161 0);
162 loader->Init();
163
164 loop_.RunAllPending();
165 DontRunAllPendingDuringTearDown();
166 }
167
168 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698