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

Side by Side Diff: chrome/test/data/policy/policy_test_cases.json

Issue 2239963002: Add enterprise policy to allow locally issued SHA-1 certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
1 { 1 {
2 "-- Template --": { 2 "-- Template --": {
3 "intro": "Top-level entries map a policy name to its test parameters, descri bed below. The name of the top level entry should be of the form <policy name>[. suffix]. The optional suffix is used for defining multiple test cases for a sing le policy.", 3 "intro": "Top-level entries map a policy name to its test parameters, descri bed below. The name of the top level entry should be of the form <policy name>[. suffix]. The optional suffix is used for defining multiple test cases for a sing le policy.",
4 4
5 "os": ["List of operating systems that support this policy. Valid values:", "win", "linux", "mac", "chromeos", "Defaults to empty if not specified."], 5 "os": ["List of operating systems that support this policy. Valid values:", "win", "linux", "mac", "chromeos", "Defaults to empty if not specified."],
6 "official_only": "Whether this policy exists in official builds only. Defaul ts to |false| if not specified.", 6 "official_only": "Whether this policy exists in official builds only. Defaul ts to |false| if not specified.",
7 "can_be_recommended": "Whether a recommended value may be set for the policy . Defaults to |false| if not specified.", 7 "can_be_recommended": "Whether a recommended value may be set for the policy . Defaults to |false| if not specified.",
8 "test_policy": "A policy dictionary that should make the preferences affecte d by this policy become policy-controlled. Usually just sets the current policy. Defaults to an empty dictionary if not specified.", 8 "test_policy": "A policy dictionary that should make the preferences affecte d by this policy become policy-controlled. Usually just sets the current policy. Defaults to an empty dictionary if not specified.",
9 "note": "If the policy affects any preferences, the following array should b e specified with one entry per such preference.", 9 "note": "If the policy affects any preferences, the following array should b e specified with one entry per such preference.",
10 "pref_mappings": [ 10 "pref_mappings": [
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 "RequireOnlineRevocationChecksForLocalAnchors": { 579 "RequireOnlineRevocationChecksForLocalAnchors": {
580 "os": ["win", "linux", "chromeos"], 580 "os": ["win", "linux", "chromeos"],
581 "test_policy": { "RequireOnlineRevocationChecksForLocalAnchors": true }, 581 "test_policy": { "RequireOnlineRevocationChecksForLocalAnchors": true },
582 "pref_mappings": [ 582 "pref_mappings": [
583 { "pref": "ssl.rev_checking.required_for_local_anchors", 583 { "pref": "ssl.rev_checking.required_for_local_anchors",
584 "local_state": true 584 "local_state": true
585 } 585 }
586 ] 586 ]
587 }, 587 },
588 588
589 "EnableSha1ForLocalAnchors": {
590 "os": ["win", "linux", "mac", "chromeos", "android"],
591 "test_policy": { "EnableSha1ForLocalAnchors": true },
592 "pref_mappings": [
593 { "pref": "ssl.sha1_enabled_for_local_anchors",
594 "local_state": true
595 }
596 ]
597 },
598
589 "AuthSchemes": { 599 "AuthSchemes": {
590 "os": ["win", "linux", "mac", "chromeos", "android"], 600 "os": ["win", "linux", "mac", "chromeos", "android"],
591 "test_policy": { "AuthSchemes": "AuthSchemes" }, 601 "test_policy": { "AuthSchemes": "AuthSchemes" },
592 "pref_mappings": [ 602 "pref_mappings": [
593 { "pref": "auth.schemes", 603 { "pref": "auth.schemes",
594 "local_state": true 604 "local_state": true
595 } 605 }
596 ] 606 ]
597 }, 607 },
598 608
(...skipping 2249 matching lines...) Expand 10 before | Expand all | Expand 10 after
2848 2858
2849 "AdditionalLaunchParameters": { 2859 "AdditionalLaunchParameters": {
2850 }, 2860 },
2851 2861
2852 "SuppressChromeFrameTurndownPrompt": { 2862 "SuppressChromeFrameTurndownPrompt": {
2853 }, 2863 },
2854 2864
2855 "SkipMetadataCheck": { 2865 "SkipMetadataCheck": {
2856 } 2866 }
2857 } 2867 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698