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/chromeos/extensions/device_local_account_external_polic
y_loader.h" | 5 #include "chrome/browser/chromeos/extensions/device_local_account_external_polic
y_loader.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 kExtensionId, | 171 kExtensionId, |
172 extension_urls::GetWebstoreUpdateUrl().spec().c_str())); | 172 extension_urls::GetWebstoreUpdateUrl().spec().c_str())); |
173 store_.policy_map_.Set(policy::key::kExtensionInstallForcelist, | 173 store_.policy_map_.Set(policy::key::kExtensionInstallForcelist, |
174 policy::POLICY_LEVEL_MANDATORY, | 174 policy::POLICY_LEVEL_MANDATORY, |
175 policy::POLICY_SCOPE_USER, | 175 policy::POLICY_SCOPE_USER, |
176 forcelist.release(), | 176 forcelist.release(), |
177 NULL); | 177 NULL); |
178 store_.NotifyStoreLoaded(); | 178 store_.NotifyStoreLoaded(); |
179 } | 179 } |
180 | 180 |
| 181 #if defined(OS_CHROMEOS) |
| 182 // crbug.com/422884 |
| 183 #define MAYBE_CacheNotStarted DISABLED_CacheNotStarted |
| 184 #else |
| 185 #define MAYBE_CacheNotStarted CacheNotStarted |
| 186 #endif |
| 187 |
181 // Verifies that when the cache is not explicitly started, the loader does not | 188 // Verifies that when the cache is not explicitly started, the loader does not |
182 // serve any extensions, even if the force-install list policy is set or a load | 189 // serve any extensions, even if the force-install list policy is set or a load |
183 // is manually requested. | 190 // is manually requested. |
184 TEST_F(DeviceLocalAccountExternalPolicyLoaderTest, CacheNotStarted) { | 191 TEST_F(DeviceLocalAccountExternalPolicyLoaderTest, MAYBE_CacheNotStarted) { |
185 // Set the force-install list policy. | 192 // Set the force-install list policy. |
186 SetForceInstallListPolicy(); | 193 SetForceInstallListPolicy(); |
187 | 194 |
188 // Manually request a load. | 195 // Manually request a load. |
189 loader_->StartLoading(); | 196 loader_->StartLoading(); |
190 | 197 |
191 EXPECT_FALSE(loader_->IsCacheRunning()); | 198 EXPECT_FALSE(loader_->IsCacheRunning()); |
192 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting()); | 199 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting()); |
193 } | 200 } |
194 | 201 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 loader_->StopCache(shutdown_run_loop.QuitClosure()); | 307 loader_->StopCache(shutdown_run_loop.QuitClosure()); |
301 VerifyAndResetVisitorCallExpectations(); | 308 VerifyAndResetVisitorCallExpectations(); |
302 | 309 |
303 // Spin the loop until the cache shutdown callback is invoked. Verify that at | 310 // Spin the loop until the cache shutdown callback is invoked. Verify that at |
304 // that point, no further file I/O tasks are pending. | 311 // that point, no further file I/O tasks are pending. |
305 shutdown_run_loop.Run(); | 312 shutdown_run_loop.Run(); |
306 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting()); | 313 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting()); |
307 } | 314 } |
308 | 315 |
309 } // namespace chromeos | 316 } // namespace chromeos |
OLD | NEW |