blob: 4aad56d47e7a5178c2102835ddfb0cd7bd6950c6 [file] [log] [blame]
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import logging
import utils
from autotest_lib.client.common_lib import error
from autotest_lib.client.cros.enterprise import enterprise_policy_base
class policy_NotificationsAllowedForUrls(
enterprise_policy_base.EnterprisePolicyTest):
"""Test NotificationsAllowedForUrls policy effect on CrOS behavior.
This test verifies the behavior of Chrome OS with a set of valid values
for the NotificationsAllowedForUrls user policy, when
DefaultNotificationSetting=2 (i.e., do not allow notifications, except on
sites listed in NotificationsAllowedForUrls). These valid values are
covered by 3 test cases: SiteAllowed_Show, SiteNotAllowed_Block,
NotSet_Block.
When the policy value is None (as in case NotSet_Block), then notifications
are blocked on every site. When the value is set to one or more URLs (as
in SiteAllowed_Show and SiteNotAllowed_Block), notifications are blocked
on every site except for those sites whose domain matches any of the
listed URLs.
A related test, policy_NotificationsBlockedForUrls, has
DefaultNotificationsSetting=1 i.e., allow display of notifications by
default, except on sites in domains listed in NotificationsBlockedForUrls).
"""
version = 1
def initialize(self, **kwargs):
"""Initialize this test."""
self._initialize_test_constants()
super(policy_NotificationsAllowedForUrls, self).initialize(**kwargs)
self.start_webserver()
def _initialize_test_constants(self):
"""Initialize test-specific constants, some from class constants."""
self.POLICY_NAME = 'NotificationsAllowedForUrls'
self.TEST_FILE = 'notification_test_page.html'
self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
self.INCLUDES_ALLOWED_URL = ['http://www.bing.com', self.WEB_HOST,
'https://www.yahoo.com']
self.EXCLUDES_ALLOWED_URL = ['http://www.bing.com',
'https://www.irs.gov/',
'https://www.yahoo.com']
self.TEST_CASES = {
'SiteAllowed_Show': self.INCLUDES_ALLOWED_URL,
'SiteNotAllowed_Block': self.EXCLUDES_ALLOWED_URL,
'NotSet_Block': None
}
self.STARTUP_URLS = ['chrome://policy', 'chrome://settings']
self.SUPPORTING_POLICIES = {
'DefaultNotificationsSetting': 2,
'BookmarkBarEnabled': True,
'EditBookmarksEnabled': True,
'RestoreOnStartupURLs': self.STARTUP_URLS,
'RestoreOnStartup': 4
}
def _wait_for_page_ready(self, tab):
"""Wait for JavaScript on page in |tab| to set the pageReady flag.
@param tab: browser tab with page to load.
"""
utils.poll_for_condition(
lambda: tab.EvaluateJavaScript('pageReady'),
exception=error.TestError('Test page is not ready.'))
def _are_notifications_allowed(self, tab):
"""Check if Notifications are allowed.
@param: chrome tab which has test page loaded.
@returns True if Notifications are allowed, else returns False.
"""
notification_permission = tab.EvaluateJavaScript(
'Notification.permission')
if notification_permission not in ['granted', 'denied', 'default']:
raise error.TestFail('Unable to capture Notification Setting.')
return notification_permission == 'granted'
def _test_notifications_allowed_for_urls(self, policy_value):
"""Verify CrOS enforces the NotificationsAllowedForUrls policy.
When NotificationsAllowedForUrls is undefined, notifications shall be
blocked on all pages. When NotificationsAllowedForUrls contains one or
more URLs, notifications shall be allowed only on the pages whose
domain matches any of the listed URLs.
@param policy_value: policy value for this case.
"""
tab = self.navigate_to_url(self.TEST_URL)
self._wait_for_page_ready(tab)
notifications_allowed = self._are_notifications_allowed(tab)
logging.info('Notifications are allowed: %r', notifications_allowed)
# String |WEB_HOST| will be found in string |policy_value| for
# cases that expect the Notifications to be displayed.
if policy_value is not None and self.WEB_HOST in policy_value:
if not notifications_allowed:
raise error.TestFail('Notifications should be shown.')
else:
if notifications_allowed:
raise error.TestFail('Notifications should be blocked.')
tab.Close()
def run_once(self, case):
"""Setup and run the test configured for the specified test case.
@param case: Name of the test case to run.
"""
case_value = self.TEST_CASES[case]
self.SUPPORTING_POLICIES[self.POLICY_NAME] = case_value
self.setup_case(user_policies=self.SUPPORTING_POLICIES)
self._test_notifications_allowed_for_urls(case_value)