1 // Copyright (c) 2012 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.
12 #include "base/basictypes.h"
13 #include "base/files/file_path.h"
14 #include "base/files/file_util.h"
15 #include "base/json/json_reader.h"
16 #include "base/logging.h"
17 #include "base/memory/scoped_ptr.h"
18 #include "base/memory/scoped_vector.h"
19 #include "base/memory/weak_ptr.h"
20 #include "base/prefs/pref_service.h"
21 #include "base/run_loop.h"
22 #include "base/stl_util.h"
23 #include "base/strings/string_util.h"
24 #include "base/strings/utf_string_conversions.h"
25 #include "base/values.h"
26 #include "chrome/browser/browser_process.h"
27 #include "chrome/browser/profiles/profile.h"
28 #include "chrome/browser/search_engines/template_url_service_factory.h"
29 #include "chrome/browser/ui/browser.h"
30 #include "chrome/browser/ui/tabs/tab_strip_model.h"
31 #include "chrome/test/base/in_process_browser_test.h"
32 #include "chrome/test/base/ui_test_utils.h"
33 #include "components/policy/core/browser/browser_policy_connector.h"
34 #include "components/policy/core/common/external_data_fetcher.h"
35 #include "components/policy/core/common/external_data_manager.h"
36 #include "components/policy/core/common/mock_configuration_policy_provider.h"
37 #include "components/policy/core/common/policy_details.h"
38 #include "components/policy/core/common/policy_map.h"
39 #include "components/policy/core/common/schema.h"
40 #include "content/public/browser/web_contents.h"
41 #include "content/public/test/browser_test_utils.h"
42 #include "policy/policy_constants.h"
43 #include "testing/gmock/include/gmock/gmock.h"
44 #include "testing/gtest/include/gtest/gtest.h"
47 using testing::Return
;
54 const char kMainSettingsPage
[] = "chrome://settings-frame";
56 const char kCrosSettingsPrefix
[] = "cros.";
58 std::string
GetPolicyName(const std::string
& policy_name_decorated
) {
59 const size_t offset
= policy_name_decorated
.find('.');
60 if (offset
!= std::string::npos
)
61 return policy_name_decorated
.substr(0, offset
);
62 return policy_name_decorated
;
65 // Contains the details of a single test case verifying that the controlled
66 // setting indicators for a pref affected by a policy work correctly. This is
67 // part of the data loaded from chrome/test/data/policy/policy_test_cases.json.
68 class IndicatorTestCase
{
70 IndicatorTestCase(const base::DictionaryValue
& policy
,
71 const std::string
& value
,
73 : policy_(policy
.DeepCopy()), value_(value
), readonly_(readonly
) {}
74 ~IndicatorTestCase() {}
76 const base::DictionaryValue
& policy() const { return *policy_
; }
78 const std::string
& value() const { return value_
; }
80 bool readonly() const { return readonly_
; }
83 scoped_ptr
<base::DictionaryValue
> policy_
;
87 DISALLOW_COPY_AND_ASSIGN(IndicatorTestCase
);
90 // Contains the testing details for a single pref affected by a policy. This is
91 // part of the data loaded from chrome/test/data/policy/policy_test_cases.json.
94 PrefMapping(const std::string
& pref
,
96 bool check_for_mandatory
,
97 bool check_for_recommended
,
98 const std::string
& indicator_test_setup_js
,
99 const std::string
& indicator_selector
)
101 is_local_state_(is_local_state
),
102 check_for_mandatory_(check_for_mandatory
),
103 check_for_recommended_(check_for_recommended
),
104 indicator_test_setup_js_(indicator_test_setup_js
),
105 indicator_selector_(indicator_selector
) {}
108 const std::string
& pref() const { return pref_
; }
110 bool is_local_state() const { return is_local_state_
; }
112 bool check_for_mandatory() const { return check_for_mandatory_
; }
114 bool check_for_recommended() const { return check_for_recommended_
; }
116 const std::string
& indicator_test_setup_js() const {
117 return indicator_test_setup_js_
;
120 const std::string
& indicator_selector() const {
121 return indicator_selector_
;
124 const ScopedVector
<IndicatorTestCase
>& indicator_test_cases() const {
125 return indicator_test_cases_
;
127 void AddIndicatorTestCase(IndicatorTestCase
* test_case
) {
128 indicator_test_cases_
.push_back(test_case
);
132 const std::string pref_
;
133 const bool is_local_state_
;
134 const bool check_for_mandatory_
;
135 const bool check_for_recommended_
;
136 const std::string indicator_test_setup_js_
;
137 const std::string indicator_selector_
;
138 ScopedVector
<IndicatorTestCase
> indicator_test_cases_
;
140 DISALLOW_COPY_AND_ASSIGN(PrefMapping
);
143 // Contains the testing details for a single policy. This is part of the data
144 // loaded from chrome/test/data/policy/policy_test_cases.json.
145 class PolicyTestCase
{
147 PolicyTestCase(const std::string
& name
,
148 bool is_official_only
,
149 bool can_be_recommended
,
150 const std::string
& indicator_selector
)
152 is_official_only_(is_official_only
),
153 can_be_recommended_(can_be_recommended
),
154 indicator_selector_(indicator_selector
) {}
157 const std::string
& name() const { return name_
; }
159 bool is_official_only() const { return is_official_only_
; }
161 bool can_be_recommended() const { return can_be_recommended_
; }
163 bool IsOsSupported() const {
165 const std::string
os("win");
166 #elif defined(OS_MACOSX)
167 const std::string
os("mac");
168 #elif defined(OS_CHROMEOS)
169 const std::string
os("chromeos");
170 #elif defined(OS_LINUX)
171 const std::string
os("linux");
173 #error "Unknown platform"
175 return std::find(supported_os_
.begin(), supported_os_
.end(), os
) !=
178 void AddSupportedOs(const std::string
& os
) { supported_os_
.push_back(os
); }
180 bool IsSupported() const {
181 #if !defined(GOOGLE_CHROME_BUILD)
182 if (is_official_only())
185 return IsOsSupported();
188 const base::DictionaryValue
& test_policy() const { return test_policy_
; }
189 void SetTestPolicy(const base::DictionaryValue
& policy
) {
190 test_policy_
.Clear();
191 test_policy_
.MergeDictionary(&policy
);
194 const ScopedVector
<PrefMapping
>& pref_mappings() const {
195 return pref_mappings_
;
197 void AddPrefMapping(PrefMapping
* pref_mapping
) {
198 pref_mappings_
.push_back(pref_mapping
);
201 const std::string
& indicator_selector() const { return indicator_selector_
; }
205 bool is_official_only_
;
206 bool can_be_recommended_
;
207 std::vector
<std::string
> supported_os_
;
208 base::DictionaryValue test_policy_
;
209 ScopedVector
<PrefMapping
> pref_mappings_
;
210 std::string indicator_selector_
;
212 DISALLOW_COPY_AND_ASSIGN(PolicyTestCase
);
215 // Parses all policy test cases and makes then available in a map.
216 class PolicyTestCases
{
218 typedef std::vector
<PolicyTestCase
*> PolicyTestCaseVector
;
219 typedef std::map
<std::string
, PolicyTestCaseVector
> PolicyTestCaseMap
;
220 typedef PolicyTestCaseMap::const_iterator iterator
;
223 base::FilePath path
= ui_test_utils::GetTestFilePath(
224 base::FilePath(FILE_PATH_LITERAL("policy")),
225 base::FilePath(FILE_PATH_LITERAL("policy_test_cases.json")));
227 if (!base::ReadFileToString(path
, &json
)) {
232 std::string error_string
;
233 base::DictionaryValue
* dict
= NULL
;
234 scoped_ptr
<base::Value
> value
= base::JSONReader::ReadAndReturnError(
235 json
, base::JSON_PARSE_RFC
, &error_code
, &error_string
);
236 if (!value
.get() || !value
->GetAsDictionary(&dict
)) {
237 ADD_FAILURE() << "Error parsing policy_test_cases.json: " << error_string
;
240 Schema chrome_schema
= Schema::Wrap(GetChromeSchemaData());
241 if (!chrome_schema
.valid()) {
245 for (base::DictionaryValue::Iterator
it(*dict
); !it
.IsAtEnd();
247 const std::string policy_name
= GetPolicyName(it
.key());
248 if (!chrome_schema
.GetKnownProperty(policy_name
).valid())
250 PolicyTestCase
* policy_test_case
= GetPolicyTestCase(dict
, it
.key());
251 if (policy_test_case
)
252 policy_test_cases_
[policy_name
].push_back(policy_test_case
);
257 for (iterator policy
= policy_test_cases_
.begin();
258 policy
!= policy_test_cases_
.end();
260 for (PolicyTestCaseVector::const_iterator test_case
=
261 policy
->second
.begin();
262 test_case
!= policy
->second
.end();
269 const PolicyTestCaseVector
* Get(const std::string
& name
) const {
270 const iterator it
= policy_test_cases_
.find(name
);
271 return it
== end() ? NULL
: &it
->second
;
274 const PolicyTestCaseMap
& map() const { return policy_test_cases_
; }
275 iterator
begin() const { return policy_test_cases_
.begin(); }
276 iterator
end() const { return policy_test_cases_
.end(); }
279 PolicyTestCase
* GetPolicyTestCase(const base::DictionaryValue
* tests
,
280 const std::string
& name
) {
281 const base::DictionaryValue
* policy_test_dict
= NULL
;
282 if (!tests
->GetDictionaryWithoutPathExpansion(name
, &policy_test_dict
))
284 bool is_official_only
= false;
285 policy_test_dict
->GetBoolean("official_only", &is_official_only
);
286 bool can_be_recommended
= false;
287 policy_test_dict
->GetBoolean("can_be_recommended", &can_be_recommended
);
288 std::string indicator_selector
;
289 policy_test_dict
->GetString("indicator_selector", &indicator_selector
);
290 PolicyTestCase
* policy_test_case
= new PolicyTestCase(name
,
294 const base::ListValue
* os_list
= NULL
;
295 if (policy_test_dict
->GetList("os", &os_list
)) {
296 for (size_t i
= 0; i
< os_list
->GetSize(); ++i
) {
298 if (os_list
->GetString(i
, &os
))
299 policy_test_case
->AddSupportedOs(os
);
302 const base::DictionaryValue
* policy
= NULL
;
303 if (policy_test_dict
->GetDictionary("test_policy", &policy
))
304 policy_test_case
->SetTestPolicy(*policy
);
305 const base::ListValue
* pref_mappings
= NULL
;
306 if (policy_test_dict
->GetList("pref_mappings", &pref_mappings
)) {
307 for (size_t i
= 0; i
< pref_mappings
->GetSize(); ++i
) {
308 const base::DictionaryValue
* pref_mapping_dict
= NULL
;
310 if (!pref_mappings
->GetDictionary(i
, &pref_mapping_dict
) ||
311 !pref_mapping_dict
->GetString("pref", &pref
)) {
312 ADD_FAILURE() << "Malformed pref_mappings entry in "
313 << "policy_test_cases.json.";
316 bool is_local_state
= false;
317 pref_mapping_dict
->GetBoolean("local_state", &is_local_state
);
318 bool check_for_mandatory
= true;
319 pref_mapping_dict
->GetBoolean("check_for_mandatory",
320 &check_for_mandatory
);
321 bool check_for_recommended
= true;
322 pref_mapping_dict
->GetBoolean("check_for_recommended",
323 &check_for_recommended
);
324 std::string indicator_test_setup_js
;
325 pref_mapping_dict
->GetString("indicator_test_setup_js",
326 &indicator_test_setup_js
);
327 std::string indicator_selector
;
328 pref_mapping_dict
->GetString("indicator_selector", &indicator_selector
);
329 PrefMapping
* pref_mapping
= new PrefMapping(pref
,
332 check_for_recommended
,
333 indicator_test_setup_js
,
335 const base::ListValue
* indicator_tests
= NULL
;
336 if (pref_mapping_dict
->GetList("indicator_tests", &indicator_tests
)) {
337 for (size_t i
= 0; i
< indicator_tests
->GetSize(); ++i
) {
338 const base::DictionaryValue
* indicator_test_dict
= NULL
;
339 const base::DictionaryValue
* policy
= NULL
;
340 if (!indicator_tests
->GetDictionary(i
, &indicator_test_dict
) ||
341 !indicator_test_dict
->GetDictionary("policy", &policy
)) {
342 ADD_FAILURE() << "Malformed indicator_tests entry in "
343 << "policy_test_cases.json.";
347 indicator_test_dict
->GetString("value", &value
);
348 bool readonly
= false;
349 indicator_test_dict
->GetBoolean("readonly", &readonly
);
350 pref_mapping
->AddIndicatorTestCase(
351 new IndicatorTestCase(*policy
, value
, readonly
));
354 policy_test_case
->AddPrefMapping(pref_mapping
);
357 return policy_test_case
;
360 PolicyTestCaseMap policy_test_cases_
;
362 DISALLOW_COPY_AND_ASSIGN(PolicyTestCases
);
365 // Returns a pseudo-random integer distributed in [0, range).
366 int GetRandomNumber(int range
) {
367 return rand() % range
;
370 // Splits all known policies into subsets of the given |chunk_size|. The
371 // policies are shuffled so that there is no correlation between their initial
372 // alphabetic ordering and the assignment to chunks. This ensures that the
373 // expected number of policies with long-running test cases is equal for each
374 // subset. The shuffle algorithm uses a fixed seed, ensuring that no randomness
375 // is introduced into the testing process.
376 std::vector
<std::vector
<std::string
> > SplitPoliciesIntoChunks(int chunk_size
) {
377 Schema chrome_schema
= Schema::Wrap(GetChromeSchemaData());
378 if (!chrome_schema
.valid())
381 std::vector
<std::string
> policies
;
382 for (Schema::Iterator it
= chrome_schema
.GetPropertiesIterator();
383 !it
.IsAtEnd(); it
.Advance()) {
384 policies
.push_back(it
.key());
387 // Use a fixed random seed to obtain a reproducible shuffle.
389 std::random_shuffle(policies
.begin(), policies
.end(), GetRandomNumber
);
391 std::vector
<std::vector
<std::string
> > chunks
;
392 std::vector
<std::string
>::const_iterator it
= policies
.begin();
393 const std::vector
<std::string
>::const_iterator end
= policies
.end();
394 for ( ; end
- it
>= chunk_size
; it
+= chunk_size
)
395 chunks
.push_back(std::vector
<std::string
>(it
, it
+ chunk_size
));
397 chunks
.push_back(std::vector
<std::string
>(it
, end
));
401 void VerifyControlledSettingIndicators(Browser
* browser
,
402 const std::string
& selector
,
403 const std::string
& value
,
404 const std::string
& controlled_by
,
406 std::stringstream javascript
;
407 javascript
<< "var nodes = document.querySelectorAll("
408 << " 'span.controlled-setting-indicator"
409 << selector
.c_str() << "');"
410 << "var indicators = [];"
411 << "for (var i = 0; i < nodes.length; i++) {"
412 << " var node = nodes[i];"
413 << " var indicator = {};"
414 << " indicator.value = node.value || '';"
415 << " indicator.controlledBy = node.controlledBy || '';"
416 << " indicator.readOnly = node.readOnly || false;"
417 << " indicator.visible ="
418 << " window.getComputedStyle(node).display != 'none';"
419 << " indicators.push(indicator)"
421 << "domAutomationController.send(JSON.stringify(indicators));";
422 content::WebContents
* contents
=
423 browser
->tab_strip_model()->GetActiveWebContents();
425 // Retrieve the state of all controlled setting indicators matching the
426 // |selector| as JSON.
427 ASSERT_TRUE(content::ExecuteScriptAndExtractString(contents
, javascript
.str(),
429 scoped_ptr
<base::Value
> value_ptr
= base::JSONReader::Read(json
);
430 const base::ListValue
* indicators
= NULL
;
431 ASSERT_TRUE(value_ptr
.get());
432 ASSERT_TRUE(value_ptr
->GetAsList(&indicators
));
433 // Verify that controlled setting indicators representing |value| are visible
434 // and have the correct state while those not representing |value| are
436 if (!controlled_by
.empty()) {
437 EXPECT_GT(indicators
->GetSize(), 0u)
438 << "Expected to find at least one controlled setting indicator.";
440 bool have_visible_indicators
= false;
441 for (base::ListValue::const_iterator indicator
= indicators
->begin();
442 indicator
!= indicators
->end(); ++indicator
) {
443 const base::DictionaryValue
* properties
= NULL
;
444 ASSERT_TRUE((*indicator
)->GetAsDictionary(&properties
));
445 std::string indicator_value
;
446 std::string indicator_controlled_by
;
447 bool indicator_readonly
;
448 bool indicator_visible
;
449 EXPECT_TRUE(properties
->GetString("value", &indicator_value
));
450 EXPECT_TRUE(properties
->GetString("controlledBy",
451 &indicator_controlled_by
));
452 EXPECT_TRUE(properties
->GetBoolean("readOnly", &indicator_readonly
));
453 EXPECT_TRUE(properties
->GetBoolean("visible", &indicator_visible
));
454 if (!controlled_by
.empty() && (indicator_value
== value
)) {
455 EXPECT_EQ(controlled_by
, indicator_controlled_by
);
456 EXPECT_EQ(readonly
, indicator_readonly
);
457 EXPECT_TRUE(indicator_visible
);
458 have_visible_indicators
= true;
460 EXPECT_FALSE(indicator_visible
);
463 if (!controlled_by
.empty()) {
464 EXPECT_TRUE(have_visible_indicators
)
465 << "Expected to find at least one visible controlled setting "
472 typedef InProcessBrowserTest PolicyPrefsTestCoverageTest
;
474 IN_PROC_BROWSER_TEST_F(PolicyPrefsTestCoverageTest
, AllPoliciesHaveATestCase
) {
475 // Verifies that all known policies have a test case in the JSON file.
476 // This test fails when a policy is added to
477 // components/policy/resources/policy_templates.json but a test case is not
478 // added to chrome/test/data/policy/policy_test_cases.json.
479 Schema chrome_schema
= Schema::Wrap(GetChromeSchemaData());
480 ASSERT_TRUE(chrome_schema
.valid());
482 PolicyTestCases policy_test_cases
;
483 for (Schema::Iterator it
= chrome_schema
.GetPropertiesIterator();
484 !it
.IsAtEnd(); it
.Advance()) {
485 EXPECT_TRUE(ContainsKey(policy_test_cases
.map(), it
.key()))
486 << "Missing policy test case for: " << it
.key();
490 // Base class for tests that change policy.
491 class PolicyPrefsTest
: public InProcessBrowserTest
{
493 void SetUpInProcessBrowserTestFixture() override
{
494 EXPECT_CALL(provider_
, IsInitializationComplete(_
))
495 .WillRepeatedly(Return(true));
496 BrowserPolicyConnector::SetPolicyProviderForTesting(&provider_
);
499 void SetUpOnMainThread() override
{
500 ui_test_utils::WaitForTemplateURLServiceToLoad(
501 TemplateURLServiceFactory::GetForProfile(browser()->profile()));
504 void TearDownOnMainThread() override
{ ClearProviderPolicy(); }
506 void ClearProviderPolicy() {
507 provider_
.UpdateChromePolicy(PolicyMap());
508 base::RunLoop().RunUntilIdle();
511 void SetProviderPolicy(const base::DictionaryValue
& policies
,
513 PolicyMap policy_map
;
514 for (base::DictionaryValue::Iterator
it(policies
);
515 !it
.IsAtEnd(); it
.Advance()) {
516 const PolicyDetails
* policy_details
= GetChromePolicyDetails(it
.key());
517 ASSERT_TRUE(policy_details
);
522 it
.value().DeepCopy(),
523 policy_details
->max_external_data_size
?
524 new ExternalDataFetcher(base::WeakPtr
<ExternalDataManager
>(),
528 provider_
.UpdateChromePolicy(policy_map
);
529 base::RunLoop().RunUntilIdle();
532 MockConfigurationPolicyProvider provider_
;
535 // Verifies that policies make their corresponding preferences become managed,
536 // and that the user can't override that setting.
537 IN_PROC_BROWSER_TEST_F(PolicyPrefsTest
, PolicyToPrefsMapping
) {
538 PrefService
* local_state
= g_browser_process
->local_state();
539 PrefService
* user_prefs
= browser()->profile()->GetPrefs();
541 const PolicyTestCases test_cases
;
542 for (PolicyTestCases::iterator policy
= test_cases
.begin();
543 policy
!= test_cases
.end();
545 for (PolicyTestCases::PolicyTestCaseVector::const_iterator test_case
=
546 policy
->second
.begin();
547 test_case
!= policy
->second
.end();
549 const ScopedVector
<PrefMapping
>& pref_mappings
=
550 (*test_case
)->pref_mappings();
551 if (!(*test_case
)->IsSupported() || pref_mappings
.empty())
554 LOG(INFO
) << "Testing policy: " << policy
->first
;
556 for (ScopedVector
<PrefMapping
>::const_iterator pref_mapping
=
557 pref_mappings
.begin();
558 pref_mapping
!= pref_mappings
.end();
560 // Skip Chrome OS preferences that use a different backend and cannot be
561 // retrieved through the prefs mechanism.
562 if (base::StartsWith((*pref_mapping
)->pref(), kCrosSettingsPrefix
,
563 base::CompareCase::SENSITIVE
))
566 // Skip preferences that should not be checked when the policy is set to
567 // a mandatory value.
568 if (!(*pref_mapping
)->check_for_mandatory())
572 (*pref_mapping
)->is_local_state() ? local_state
: user_prefs
;
573 // The preference must have been registered.
574 const PrefService::Preference
* pref
=
575 prefs
->FindPreference((*pref_mapping
)->pref().c_str());
578 // Verify that setting the policy overrides the pref.
579 ClearProviderPolicy();
580 prefs
->ClearPref((*pref_mapping
)->pref().c_str());
581 EXPECT_TRUE(pref
->IsDefaultValue());
582 EXPECT_TRUE(pref
->IsUserModifiable());
583 EXPECT_FALSE(pref
->IsUserControlled());
584 EXPECT_FALSE(pref
->IsManaged());
586 SetProviderPolicy((*test_case
)->test_policy(), POLICY_LEVEL_MANDATORY
);
587 EXPECT_FALSE(pref
->IsDefaultValue());
588 EXPECT_FALSE(pref
->IsUserModifiable());
589 EXPECT_FALSE(pref
->IsUserControlled());
590 EXPECT_TRUE(pref
->IsManaged());
596 class PolicyPrefIndicatorTest
597 : public PolicyPrefsTest
,
598 public testing::WithParamInterface
<std::vector
<std::string
> > {
601 // Verifies that controlled setting indicators correctly show whether a pref's
602 // value is recommended or enforced by a corresponding policy.
603 IN_PROC_BROWSER_TEST_P(PolicyPrefIndicatorTest
, CheckPolicyIndicators
) {
604 const PolicyTestCases test_cases
;
605 PrefService
* local_state
= g_browser_process
->local_state();
606 PrefService
* user_prefs
= browser()->profile()->GetPrefs();
608 ui_test_utils::NavigateToURL(browser(), GURL(kMainSettingsPage
));
610 for (std::vector
<std::string
>::const_iterator policy
= GetParam().begin();
611 policy
!= GetParam().end();
613 const std::vector
<PolicyTestCase
*>* policy_test_cases
=
614 test_cases
.Get(*policy
);
615 ASSERT_TRUE(policy_test_cases
) << "PolicyTestCase not found for "
617 for (std::vector
<PolicyTestCase
*>::const_iterator test_case
=
618 policy_test_cases
->begin();
619 test_case
!= policy_test_cases
->end();
621 PolicyTestCase
* policy_test_case
= *test_case
;
622 if (!policy_test_case
->IsSupported())
624 const ScopedVector
<PrefMapping
>& pref_mappings
=
625 policy_test_case
->pref_mappings();
626 if (policy_test_case
->indicator_selector().empty()) {
627 bool has_pref_indicator_tests
= false;
628 for (ScopedVector
<PrefMapping
>::const_iterator pref_mapping
=
629 pref_mappings
.begin();
630 pref_mapping
!= pref_mappings
.end();
632 if (!(*pref_mapping
)->indicator_test_cases().empty()) {
633 has_pref_indicator_tests
= true;
637 if (!has_pref_indicator_tests
)
641 LOG(INFO
) << "Testing policy: " << *policy
;
643 if (!policy_test_case
->indicator_selector().empty()) {
644 // Check that no controlled setting indicator is visible when no value
646 ClearProviderPolicy();
647 VerifyControlledSettingIndicators(
649 policy_test_case
->indicator_selector(),
653 // Check that the appropriate controlled setting indicator is shown when
654 // a value is enforced by policy.
655 SetProviderPolicy(policy_test_case
->test_policy(),
656 POLICY_LEVEL_MANDATORY
);
657 VerifyControlledSettingIndicators(
659 policy_test_case
->indicator_selector(),
663 // Check that no controlled setting indicator is visible when previously
664 // enforced value is removed.
665 ClearProviderPolicy();
666 VerifyControlledSettingIndicators(
668 policy_test_case
->indicator_selector(),
674 for (ScopedVector
<PrefMapping
>::const_iterator
675 pref_mapping
= pref_mappings
.begin();
676 pref_mapping
!= pref_mappings
.end();
678 const ScopedVector
<IndicatorTestCase
>& indicator_test_cases
=
679 (*pref_mapping
)->indicator_test_cases();
680 if (indicator_test_cases
.empty())
683 if (!(*pref_mapping
)->indicator_test_setup_js().empty()) {
684 ASSERT_TRUE(content::ExecuteScript(
685 browser()->tab_strip_model()->GetActiveWebContents(),
686 (*pref_mapping
)->indicator_test_setup_js()));
689 std::string indicator_selector
= (*pref_mapping
)->indicator_selector();
690 if (indicator_selector
.empty())
691 indicator_selector
= "[pref=\"" + (*pref_mapping
)->pref() + "\"]";
692 for (ScopedVector
<IndicatorTestCase
>::const_iterator
693 indicator_test_case
= indicator_test_cases
.begin();
694 indicator_test_case
!= indicator_test_cases
.end();
695 ++indicator_test_case
) {
696 // Check that no controlled setting indicator is visible when no value
698 ClearProviderPolicy();
699 VerifyControlledSettingIndicators(browser(),
705 if ((*pref_mapping
)->check_for_mandatory()) {
706 // Check that the appropriate controlled setting indicator is shown
707 // when a value is enforced by policy.
708 SetProviderPolicy((*indicator_test_case
)->policy(),
709 POLICY_LEVEL_MANDATORY
);
711 VerifyControlledSettingIndicators(
714 (*indicator_test_case
)->value(),
716 (*indicator_test_case
)->readonly());
719 if (!policy_test_case
->can_be_recommended() ||
720 !(*pref_mapping
)->check_for_recommended()) {
725 (*pref_mapping
)->is_local_state() ? local_state
: user_prefs
;
726 // The preference must have been registered.
727 const PrefService::Preference
* pref
=
728 prefs
->FindPreference((*pref_mapping
)->pref().c_str());
731 // Check that the appropriate controlled setting indicator is shown
732 // when a value is recommended by policy and the user has not
733 // overridden the recommendation.
734 SetProviderPolicy((*indicator_test_case
)->policy(),
735 POLICY_LEVEL_RECOMMENDED
);
736 VerifyControlledSettingIndicators(browser(),
738 (*indicator_test_case
)->value(),
740 (*indicator_test_case
)->readonly());
741 // Check that the appropriate controlled setting indicator is shown
742 // when a value is recommended by policy and the user has overridden
743 // the recommendation.
744 prefs
->Set((*pref_mapping
)->pref().c_str(), *pref
->GetValue());
745 VerifyControlledSettingIndicators(browser(),
747 (*indicator_test_case
)->value(),
749 (*indicator_test_case
)->readonly());
750 prefs
->ClearPref((*pref_mapping
)->pref().c_str());
757 INSTANTIATE_TEST_CASE_P(PolicyPrefIndicatorTestInstance
,
758 PolicyPrefIndicatorTest
,
759 testing::ValuesIn(SplitPoliciesIntoChunks(10)));
761 } // namespace policy