blob: 86bd69d46ec8de71714b8a67402315b0c5cb8b48 [file] [log] [blame]
# Copyright (c) 2011 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.
from autotest_lib.server.cros.faftsequence import FAFTSequence
class firmware_UserRequestRecovery(FAFTSequence):
"""
Servo based user request recovery boot test.
This test requires a USB disk plugged-in, which contains a Chrome OS test
image (built by "build_image --test"). On runtime, this test first requests
a recovery mode on next boot by setting the crossystem recovery_request
flag. It then triggers recovery mode by unplugging and plugging in the USB
disk and checks success of it.
"""
version = 1
def ensure_normal_boot(self):
"""Ensure normal mode boot this time.
If not, it may be a test failure during step 2, try to recover to
normal mode by simply rebooting the machine.
"""
if not self.crossystem_checker(
{'mainfw_type': ('normal', 'developer')}):
self.run_faft_step({})
def setup(self, dev_mode=False):
super(firmware_UserRequestRecovery, self).setup()
self.assert_test_image_in_usb_disk()
self.servo.set('usb_mux_sel1', 'dut_sees_usbkey')
self.setup_dev_mode(dev_mode)
def cleanup(self):
self.ensure_normal_boot()
super(firmware_UserRequestRecovery, self).cleanup()
def run_once(self, host=None, dev_mode=False):
self.register_faft_sequence((
{ # Step 1, request recovery boot
'state_checker': (self.crossystem_checker, {
'mainfw_type': 'developer' if dev_mode else 'normal',
'recoverysw_boot': '0',
}),
'userspace_action': self.faft_client.request_recovery_boot,
'firmware_action': None if dev_mode else
self.wait_fw_screen_and_plug_usb,
'install_deps_after_boot': True,
},
{ # Step 2, expected recovery boot
'state_checker': (self.crossystem_checker, {
'mainfw_type': 'recovery',
'recovery_reason' : self.RECOVERY_REASON['US_TEST'],
'recoverysw_boot': '0',
}),
},
{ # Step 3, expected normal boot
'state_checker': (self.crossystem_checker, {
'mainfw_type': 'developer' if dev_mode else 'normal',
'recoverysw_boot': '0',
}),
},
))
self.run_faft_sequence()