HomeSort by relevance Sort by last modified time
    Searched refs:policy_value (Results 1 - 25 of 33) sorted by null

1 2

  /external/autotest/client/site_tests/policy_AutoFillEnabled/
policy_AutoFillEnabled.py 54 def _test_autofill_enabled(self, policy_value):
58 @param policy_value: policy value for this case.
62 if policy_value == True or policy_value == None:
  /external/autotest/client/site_tests/policy_RestoreOnStartupURLs/
policy_RestoreOnStartupURLs.py 41 def _test_startup_urls(self, policy_value):
48 @param policy_value: policy value expected.
65 # Compare open tabs with expected tabs by |policy_value|.
66 if tab_urls != policy_value:
68 (tab_urls, policy_value))
74 Set the expected |policy_value| string and |policies_dict| data based
  /external/autotest/client/site_tests/policy_BlockThirdPartyCookies/
policy_BlockThirdPartyCookies.py 32 def _test_block_3rd_party_cookies(self, policy_value):
41 @param policy_value: policy value for this case.
54 if policy_value == True and not setting_is_checked:
57 if policy_value == False and setting_is_checked:
62 if policy_value == None:
  /external/autotest/client/site_tests/policy_SearchSuggestEnabled/
policy_SearchSuggestEnabled.py 42 def _test_search_suggest_enabled(self, policy_value):
46 @param policy_value: policy value expected.
58 if policy_value == True and not setting_is_checked:
60 if policy_value == False and setting_is_checked:
64 if policy_value == None:
  /external/autotest/client/site_tests/policy_SpellCheckServiceEnabled/
policy_SpellCheckServiceEnabled.py 43 def _test_spelling_suggestions_enabled(self, policy_value):
47 @param policy_value: policy value expected.
59 if policy_value == True and not setting_is_checked:
61 if policy_value == False and setting_is_checked:
65 if policy_value == None:
  /external/autotest/client/site_tests/policy_ForceGoogleSafeSearch/
policy_ForceGoogleSafeSearch.py 39 def _test_force_safe_search(self, policy_value):
47 @param policy_value: policy value for this case.
52 if policy_value == True:
  /external/autotest/client/site_tests/policy_JavaScriptAllowedForUrls/
policy_JavaScriptAllowedForUrls.py 89 def _test_javascript_allowed_for_urls(self, policy_value):
100 @param policy_value: policy value for this case.
112 if policy_value is not None and (self.WEB_HOST in policy_value or
113 self.TEST_URL in policy_value):
114 # If |WEB_HOST| is in |policy_value|, then JavaScript execution
  /external/autotest/client/site_tests/policy_JavaScriptBlockedForUrls/
policy_JavaScriptBlockedForUrls.py 92 def _test_javascript_blocked_for_urls(self, policy_value):
103 @param policy_value: policy value for this case.
116 if policy_value is not None and (self.WEB_HOST in policy_value or
117 self.TEST_URL in policy_value):
118 # If |WEB_HOST| is in |policy_value|, then JavaScript execution
  /external/autotest/client/site_tests/policy_CookiesAllowedForUrls/
policy_CookiesAllowedForUrls.py 71 def _test_cookies_allowed_for_urls(self, policy_value):
79 @param policy_value: policy value for this case.
85 if policy_value and self.WEB_HOST in policy_value:
96 Set the expected |policy_value| and |policies_dict| data defined for
  /external/autotest/client/site_tests/policy_CookiesBlockedForUrls/
policy_CookiesBlockedForUrls.py 72 def _test_cookies_blocked_for_urls(self, policy_value):
80 @param policy_value: policy value expected.
87 if policy_value and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_EditBookmarksEnabled/
policy_EditBookmarksEnabled.py 74 def _test_edit_bookmarks_enabled(self, policy_value):
87 @param policy_value: policy value for this case.
90 if policy_value == True or policy_value == None:
  /external/autotest/client/site_tests/policy_ChromeOsLockOnIdleSuspend/
policy_ChromeOsLockOnIdleSuspend.py 94 def _test_require_password_to_wake(self, policy_value):
103 @param policy_value: policy value for this case.
115 if policy_value == True and not setting_is_checked:
118 if policy_value == False and setting_is_checked:
123 if policy_value == None:
134 if policy_value == True:
  /external/autotest/client/site_tests/policy_CookiesSessionOnlyForUrls/
policy_CookiesSessionOnlyForUrls.py 119 def _test_cookies_allowed_for_urls(self, policy_value):
129 @param policy_value: policy value expected.
136 if policy_value and self.WEB_HOST in policy_value:
144 if policy_value and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_ImagesAllowedForUrls/
policy_ImagesAllowedForUrls.py 85 def _test_images_allowed_for_urls(self, policy_value):
93 @param policy_value: policy value for this case.
100 # String |WEB_HOST| shall be found in string |policy_value| for test
103 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_ImagesBlockedForUrls/
policy_ImagesBlockedForUrls.py 84 def _test_images_blocked_for_urls(self, policy_value):
92 @param policy_value: policy value for this case.
98 # String |WEB_HOST| shall be found in string |policy_value| for test
101 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_ManagedBookmarks/
policy_ManagedBookmarks.py 50 def _test_managed_bookmarks(self, policy_value):
57 @param policy_value: policy value for this case.
60 managed_bookmarks_are_shown = self._are_bookmarks_shown(policy_value)
61 if policy_value is None:
  /external/autotest/client/site_tests/policy_NotificationsAllowedForUrls/
policy_NotificationsAllowedForUrls.py 89 def _test_notifications_allowed_for_urls(self, policy_value):
97 @param policy_value: policy value for this case.
105 # String |WEB_HOST| will be found in string |policy_value| for
107 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_NotificationsBlockedForUrls/
policy_NotificationsBlockedForUrls.py 93 def _test_notifications_blocked_for_urls(self, policy_value):
101 @param policy_value: policy value for this case.
109 # String |WEB_HOST| will be found in string |policy_value| for
111 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_PopupsAllowedForUrls/
policy_PopupsAllowedForUrls.py 69 def _test_popups_allowed_for_urls(self, policy_value):
77 @param policy_value: policy value expected.
83 # String |WEB_HOST| will be found in string |policy_value| for
86 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_PopupsBlockedForUrls/
policy_PopupsBlockedForUrls.py 70 def _test_popups_blocked_for_urls(self, policy_value):
78 @param policy_value: policy value expected.
84 # String |WEB_HOST| will be found in string |policy_value| for
87 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_URLWhitelist/
policy_URLWhitelist.py 105 def _test_url_whitelist(self, policy_value):
113 @param policy_value: policy value expected.
120 if policy_value:
121 if url in policy_value and url_is_blocked:
125 elif url not in policy_value and not url_is_blocked:
  /external/autotest/client/site_tests/policy_ForceYouTubeSafetyMode/
policy_ForceYouTubeSafetyMode.py 45 def _test_force_youtube_safety(self, policy_value):
48 @param policy_value: policy value for this case.
52 if policy_value == True:
  /external/autotest/client/site_tests/policy_PluginsAllowedForUrls/
policy_PluginsAllowedForUrls.py 113 def _test_plugins_allowed_for_urls(self, policy_value):
121 @param policy_value: policy value expected.
137 # String |WEB_HOST| will be found in string |policy_value| for
139 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_PluginsBlockedForUrls/
policy_PluginsBlockedForUrls.py 113 def _test_plugins_blocked_for_urls(self, policy_value):
121 @param policy_value: policy value expected.
137 # String |WEB_HOST| will be found in string |policy_value| for
139 if policy_value is not None and self.WEB_HOST in policy_value:
  /external/autotest/client/site_tests/policy_URLBlacklist/
policy_URLBlacklist.py 105 def _test_url_blacklist(self, policy_value):
113 @param policy_value: policy value expected.
120 if policy_value:
121 if url in policy_value and not url_is_blocked:

Completed in 247 milliseconds

1 2