blob: 6d4afa3606c1c67bcdbb7ee86916f5e601ab2c58 [file] [log] [blame]
# Copyright (c) 2013 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
from autotest_lib.client.bin import test, utils
from autotest_lib.client.common_lib import error
from autotest_lib.client.common_lib.cros import chrome, session_manager
import gobject
from dbus.mainloop.glib import DBusGMainLoop
class desktopui_ScreenLocker(test.test):
"""This is a client side test that exercises the screenlocker."""
version = 1
_SCREEN_IS_LOCKED_TIMEOUT = 15
def initialize(self):
super(desktopui_ScreenLocker, self).initialize()
DBusGMainLoop(set_as_default=True)
@property
def screen_locked(self):
"""True if the screen is locked."""
return self._chrome.login_status['isScreenLocked']
@property
def screenlocker_visible(self):
"""True if the screenlocker screen is visible."""
oobe = self._chrome.browser.oobe
return (oobe and
oobe.EvaluateJavaScript(
"(typeof Oobe == 'function') && "
"(typeof Oobe.authenticateForTesting == 'function') && "
"($('account-picker') != null)"))
@property
def error_bubble_visible(self):
"""True if the error bubble for bad password is visible."""
return self._chrome.browser.oobe.EvaluateJavaScript(
"cr.ui.login.DisplayManager.errorMessageWasShownForTesting_;")
def attempt_unlock(self, password=''):
"""Attempt to unlock a locked screen. The correct password is the empty
string.
@param password: password to use to attempt the unlock.
"""
self._chrome.browser.oobe.ExecuteJavaScript(
"Oobe.authenticateForTesting('%s', '%s');"
% (self._chrome.username, password))
def lock_screen(self):
"""Lock the screen."""
logging.debug('lock_screen')
if self.screen_locked:
raise error.TestFail('Screen already locked')
signal_listener = session_manager.ScreenIsLockedSignalListener(
gobject.MainLoop())
ext = self._chrome.autotest_ext
ext.EvaluateJavaScript('chrome.autotestPrivate.lockScreen();')
signal_listener.wait_for_signals(desc='Screen is locked.',
timeout=self._SCREEN_IS_LOCKED_TIMEOUT)
utils.poll_for_condition(lambda: self.screenlocker_visible,
exception=error.TestFail('Screenlock screen not visible'))
if not self.screen_locked:
raise error.TestFail('Screen not locked')
def attempt_unlock_bad_password(self):
"""Attempt unlock with a bad password."""
logging.debug('attempt_unlock_bad_password')
if self.error_bubble_visible:
raise error.TestFail('Error bubble prematurely visible')
self.attempt_unlock('bad')
utils.poll_for_condition(lambda: self.error_bubble_visible,
exception=error.TestFail('Bad password bubble did not show'))
if not self.screen_locked:
raise error.TestFail('Screen unlocked with bad password')
def unlock_screen(self):
"""Unlock the screen with the right password."""
logging.debug('unlock_screen')
self.attempt_unlock()
utils.poll_for_condition(
lambda: not self._chrome.browser.oobe_exists,
exception=error.TestFail('Failed to unlock screen'))
if self.screen_locked:
raise error.TestFail('Screen should be unlocked')
def run_once(self):
"""
This test locks the screen, tries to unlock with a bad password,
then unlocks with the right password.
"""
with chrome.Chrome(autotest_ext=True) as self._chrome:
self.lock_screen()
self.attempt_unlock_bad_password()
self.unlock_screen()