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

Side by Side Diff: chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc

Issue 1304843004: Add source column to chrome://policy showing the origins of policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another test. Created 5 years, 3 months 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
« no previous file with comments | « build/ios/grit_whitelist.txt ('k') | chrome/browser/chromeos/login/saml/saml_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 void DeviceLocalAccountExternalPolicyLoaderTest::SetForceInstallListPolicy() { 177 void DeviceLocalAccountExternalPolicyLoaderTest::SetForceInstallListPolicy() {
178 scoped_ptr<base::ListValue> forcelist(new base::ListValue); 178 scoped_ptr<base::ListValue> forcelist(new base::ListValue);
179 forcelist->AppendString("invalid"); 179 forcelist->AppendString("invalid");
180 forcelist->AppendString(base::StringPrintf( 180 forcelist->AppendString(base::StringPrintf(
181 "%s;%s", 181 "%s;%s",
182 kExtensionId, 182 kExtensionId,
183 extension_urls::GetWebstoreUpdateUrl().spec().c_str())); 183 extension_urls::GetWebstoreUpdateUrl().spec().c_str()));
184 store_.policy_map_.Set(policy::key::kExtensionInstallForcelist, 184 store_.policy_map_.Set(policy::key::kExtensionInstallForcelist,
185 policy::POLICY_LEVEL_MANDATORY, 185 policy::POLICY_LEVEL_MANDATORY,
186 policy::POLICY_SCOPE_USER, 186 policy::POLICY_SCOPE_USER,
187 policy::POLICY_SOURCE_CLOUD,
187 forcelist.release(), 188 forcelist.release(),
188 NULL); 189 NULL);
189 store_.NotifyStoreLoaded(); 190 store_.NotifyStoreLoaded();
190 } 191 }
191 192
192 // Verifies that when the cache is not explicitly started, the loader does not 193 // Verifies that when the cache is not explicitly started, the loader does not
193 // serve any extensions, even if the force-install list policy is set or a load 194 // serve any extensions, even if the force-install list policy is set or a load
194 // is manually requested. 195 // is manually requested.
195 TEST_F(DeviceLocalAccountExternalPolicyLoaderTest, CacheNotStarted) { 196 TEST_F(DeviceLocalAccountExternalPolicyLoaderTest, CacheNotStarted) {
196 // Set the force-install list policy. 197 // Set the force-install list policy.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 loader_->StopCache(shutdown_run_loop.QuitClosure()); 313 loader_->StopCache(shutdown_run_loop.QuitClosure());
313 VerifyAndResetVisitorCallExpectations(); 314 VerifyAndResetVisitorCallExpectations();
314 315
315 // Spin the loop until the cache shutdown callback is invoked. Verify that at 316 // Spin the loop until the cache shutdown callback is invoked. Verify that at
316 // that point, no further file I/O tasks are pending. 317 // that point, no further file I/O tasks are pending.
317 shutdown_run_loop.Run(); 318 shutdown_run_loop.Run();
318 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting()); 319 EXPECT_TRUE(base::MessageLoop::current()->IsIdleForTesting());
319 } 320 }
320 321
321 } // namespace chromeos 322 } // namespace chromeos
OLDNEW
« no previous file with comments | « build/ios/grit_whitelist.txt ('k') | chrome/browser/chromeos/login/saml/saml_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698