blob: 09ae87ecd4462b25f1a96f81d3717d58d6b78330 [file] [log] [blame]
# Copyright (c) 2012 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.server.cros.faftsequence import FAFTSequence
class firmware_SoftwareSync(FAFTSequence):
"""
Servo based EC software sync test.
"""
version = 1
def setup(self, dev_mode=False):
super(firmware_SoftwareSync, self).setup()
self.backup_firmware()
self.setup_dev_mode(dev_mode)
self.setup_usbkey(usbkey=False)
self.setup_rw_boot()
def cleanup(self):
self.restore_firmware()
super(firmware_SoftwareSync, self).cleanup()
def record_hash_and_corrupt(self):
self._ec_hash = self.faft_client.ec.get_firmware_sha()
logging.info("Stored EC hash: %s", self._ec_hash)
self.faft_client.ec.corrupt_body('rw')
def software_sync_checker(self):
ec_hash = self.faft_client.ec.get_firmware_sha()
logging.info("Current EC hash: %s", self._ec_hash)
if self._ec_hash != ec_hash:
return False
return self.checkers.ec_act_copy_checker('RW')
def run_once(self):
self.register_faft_sequence((
{ # Step 1, Corrupt EC firmware RW body
'state_checker': (self.checkers.ec_act_copy_checker, 'RW'),
'userspace_action': self.record_hash_and_corrupt,
'reboot_action': self.sync_and_ec_reboot,
},
{ # Step 2, expect EC in RW and RW is restored
'state_checker': self.software_sync_checker,
},
))
self.run_faft_sequence()