blob: 8a0bd9055495a6f72856b555253a86b4b3c0276b [file] [log] [blame]
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +08001# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Vic Yangb4e3e742012-06-02 13:17:38 +08005import fdpexpect
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +08006import logging
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +08007import os
Vic Yangb4e3e742012-06-02 13:17:38 +08008import pexpect
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +08009import re
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +080010import sys
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +080011import tempfile
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080012import time
13import xmlrpclib
14
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +080015from autotest_lib.client.bin import utils
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080016from autotest_lib.client.common_lib import error
Vic Yangebd6de62012-06-26 14:25:57 +080017from autotest_lib.server.cros.faft_client_attribute import FAFTClientAttribute
Tom Wai-Hong Tam22b77302011-11-03 13:03:48 +080018from autotest_lib.server.cros.servo_test import ServoTest
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +080019from autotest_lib.site_utils import lab_test
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080020
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +080021dirname = os.path.dirname(sys.modules[__name__].__file__)
22autotest_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
23cros_dir = os.path.join(autotest_dir, "..", "..", "..", "..")
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080024
25class FAFTSequence(ServoTest):
26 """
27 The base class of Fully Automated Firmware Test Sequence.
28
29 Many firmware tests require several reboot cycles and verify the resulted
30 system states. To do that, an Autotest test case should detailly handle
31 every action on each step. It makes the test case hard to read and many
32 duplicated code. The base class FAFTSequence is to solve this problem.
33
34 The actions of one reboot cycle is defined in a dict, namely FAFT_STEP.
35 There are four functions in the FAFT_STEP dict:
36 state_checker: a function to check the current is valid or not,
37 returning True if valid, otherwise, False to break the whole
38 test sequence.
39 userspace_action: a function to describe the action ran in userspace.
Tom Wai-Hong Tamf1e34972011-11-02 17:07:04 +080040 reboot_action: a function to do reboot, default: sync_and_hw_reboot.
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080041 firmware_action: a function to describe the action ran after reboot.
42
Tom Wai-Hong Tam7c17ff22011-10-26 09:44:09 +080043 And configurations:
44 install_deps_after_boot: if True, install the Autotest dependency after
45 boot; otherwise, do nothing. It is for the cases of recovery mode
46 test. The test boots a USB/SD image instead of an internal image.
47 The previous installed Autotest dependency on the internal image
48 is lost. So need to install it again.
49
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080050 The default FAFT_STEP checks nothing in state_checker and does nothing in
Tom Wai-Hong Tamf1e34972011-11-02 17:07:04 +080051 userspace_action and firmware_action. Its reboot_action is a hardware
52 reboot. You can change the default FAFT_STEP by calling
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080053 self.register_faft_template(FAFT_STEP).
54
55 A FAFT test case consists of several FAFT_STEP's, namely FAFT_SEQUENCE.
56 FAFT_SEQUENCE is an array of FAFT_STEP's. Any missing fields on FAFT_STEP
57 fall back to default.
58
59 In the run_once(), it should register and run FAFT_SEQUENCE like:
60 def run_once(self):
61 self.register_faft_sequence(FAFT_SEQUENCE)
62 self.run_faft_sequnce()
63
64 Note that in the last step, we only run state_checker. The
65 userspace_action, reboot_action, and firmware_action are not executed.
66
67 Attributes:
68 _faft_template: The default FAFT_STEP of each step. The actions would
69 be over-written if the registered FAFT_SEQUENCE is valid.
70 _faft_sequence: The registered FAFT_SEQUENCE.
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +080071 _customized_ctrl_d_key_command: The customized Ctrl-D key command
72 instead of sending key via servo board.
73 _customized_enter_key_command: The customized Enter key command instead
74 of sending key via servo board.
75 _install_image_path: The path of Chrome OS test image to be installed.
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +080076 _firmware_update: Boolean. True if firmware update needed after
77 installing the image.
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +080078 """
79 version = 1
80
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +080081
82 # Mapping of partition number of kernel and rootfs.
83 KERNEL_MAP = {'a':'2', 'b':'4', '2':'2', '4':'4', '3':'2', '5':'4'}
84 ROOTFS_MAP = {'a':'3', 'b':'5', '2':'3', '4':'5', '3':'3', '5':'5'}
85 OTHER_KERNEL_MAP = {'a':'4', 'b':'2', '2':'4', '4':'2', '3':'4', '5':'2'}
86 OTHER_ROOTFS_MAP = {'a':'5', 'b':'3', '2':'5', '4':'3', '3':'5', '5':'3'}
87
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +080088 # Delay between power-on and firmware screen.
Tom Wai-Hong Tam211ccba2012-01-13 15:35:53 +080089 FIRMWARE_SCREEN_DELAY = 2
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +080090 # Delay between passing firmware screen and text mode warning screen.
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +080091 TEXT_SCREEN_DELAY = 20
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +080092 # Delay of loading the USB kernel.
Tom Wai-Hong Tam07278c22012-02-08 16:53:00 +080093 USB_LOAD_DELAY = 10
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +080094 # Delay between USB plug-out and plug-in.
Tom Wai-Hong Tam9ca742a2011-12-05 15:48:57 +080095 USB_PLUG_DELAY = 10
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +080096 # Delay after running the 'sync' command.
Tom Wai-Hong Tam6a863ba2011-12-08 10:13:28 +080097 SYNC_DELAY = 5
Vic Yang59cac9c2012-05-21 15:28:42 +080098 # Delay for waiting client to return before EC reboot
99 EC_REBOOT_DELAY = 1
100 # Delay between EC reboot and pressing power button
101 POWER_BTN_DELAY = 0.5
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800102
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800103 CHROMEOS_MAGIC = "CHROMEOS"
104 CORRUPTED_MAGIC = "CORRUPTD"
105
Tom Wai-Hong Tamf954d172011-12-08 17:14:15 +0800106 # Recovery reason codes, copied from:
107 # vboot_reference/firmware/lib/vboot_nvstorage.h
108 # vboot_reference/firmware/lib/vboot_struct.h
109 RECOVERY_REASON = {
110 # Recovery not requested
111 'NOT_REQUESTED': '0', # 0x00
112 # Recovery requested from legacy utility
113 'LEGACY': '1', # 0x01
114 # User manually requested recovery via recovery button
115 'RO_MANUAL': '2', # 0x02
116 # RW firmware failed signature check
117 'RO_INVALID_RW': '3', # 0x03
118 # S3 resume failed
119 'RO_S3_RESUME': '4', # 0x04
120 # TPM error in read-only firmware
121 'RO_TPM_ERROR': '5', # 0x05
122 # Shared data error in read-only firmware
123 'RO_SHARED_DATA': '6', # 0x06
124 # Test error from S3Resume()
125 'RO_TEST_S3': '7', # 0x07
126 # Test error from LoadFirmwareSetup()
127 'RO_TEST_LFS': '8', # 0x08
128 # Test error from LoadFirmware()
129 'RO_TEST_LF': '9', # 0x09
130 # RW firmware failed signature check
131 'RW_NOT_DONE': '16', # 0x10
132 'RW_DEV_MISMATCH': '17', # 0x11
133 'RW_REC_MISMATCH': '18', # 0x12
134 'RW_VERIFY_KEYBLOCK': '19', # 0x13
135 'RW_KEY_ROLLBACK': '20', # 0x14
136 'RW_DATA_KEY_PARSE': '21', # 0x15
137 'RW_VERIFY_PREAMBLE': '22', # 0x16
138 'RW_FW_ROLLBACK': '23', # 0x17
139 'RW_HEADER_VALID': '24', # 0x18
140 'RW_GET_FW_BODY': '25', # 0x19
141 'RW_HASH_WRONG_SIZE': '26', # 0x1A
142 'RW_VERIFY_BODY': '27', # 0x1B
143 'RW_VALID': '28', # 0x1C
144 # Read-only normal path requested by firmware preamble, but
145 # unsupported by firmware.
146 'RW_NO_RO_NORMAL': '29', # 0x1D
147 # Firmware boot failure outside of verified boot
148 'RO_FIRMWARE': '32', # 0x20
149 # Recovery mode TPM initialization requires a system reboot.
150 # The system was already in recovery mode for some other reason
151 # when this happened.
152 'RO_TPM_REBOOT': '33', # 0x21
153 # Unspecified/unknown error in read-only firmware
154 'RO_UNSPECIFIED': '63', # 0x3F
155 # User manually requested recovery by pressing a key at developer
156 # warning screen.
157 'RW_DEV_SCREEN': '65', # 0x41
158 # No OS kernel detected
159 'RW_NO_OS': '66', # 0x42
160 # OS kernel failed signature check
161 'RW_INVALID_OS': '67', # 0x43
162 # TPM error in rewritable firmware
163 'RW_TPM_ERROR': '68', # 0x44
164 # RW firmware in dev mode, but dev switch is off.
165 'RW_DEV_MISMATCH': '69', # 0x45
166 # Shared data error in rewritable firmware
167 'RW_SHARED_DATA': '70', # 0x46
168 # Test error from LoadKernel()
169 'RW_TEST_LK': '71', # 0x47
170 # No bootable disk found
171 'RW_NO_DISK': '72', # 0x48
172 # Unspecified/unknown error in rewritable firmware
173 'RW_UNSPECIFIED': '127', # 0x7F
174 # DM-verity error
175 'KE_DM_VERITY': '129', # 0x81
176 # Unspecified/unknown error in kernel
177 'KE_UNSPECIFIED': '191', # 0xBF
178 # Recovery mode test from user-mode
179 'US_TEST': '193', # 0xC1
180 # Unspecified/unknown error in user-mode
181 'US_UNSPECIFIED': '255', # 0xFF
182 }
183
Tom Wai-Hong Tam109f63c2011-12-08 14:58:27 +0800184 _faft_template = {}
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800185 _faft_sequence = ()
186
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800187 _customized_ctrl_d_key_command = None
188 _customized_enter_key_command = None
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800189 _install_image_path = None
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800190 _firmware_update = False
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800191
192
193 def initialize(self, host, cmdline_args, use_pyauto=False, use_faft=False):
194 # Parse arguments from command line
195 args = {}
196 for arg in cmdline_args:
197 match = re.search("^(\w+)=(.+)", arg)
198 if match:
199 args[match.group(1)] = match.group(2)
200
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800201 # Keep the arguments which will be used later.
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800202 if 'ctrl_d_cmd' in args:
203 self._customized_ctrl_d_key_command = args['ctrl_d_cmd']
204 logging.info('Customized Ctrl-D key command: %s' %
205 self._customized_ctrl_d_key_command)
206 if 'enter_cmd' in args:
207 self._customized_enter_key_command = args['enter_cmd']
208 logging.info('Customized Enter key command: %s' %
209 self._customized_enter_key_command)
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800210 if 'image' in args:
211 self._install_image_path = args['image']
212 logging.info('Install Chrome OS test image path: %s' %
213 self._install_image_path)
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800214 if 'firmware_update' in args and args['firmware_update'].lower() \
215 not in ('0', 'false', 'no'):
216 if self._install_image_path:
217 self._firmware_update = True
218 logging.info('Also update firmware after installing.')
219 else:
220 logging.warning('Firmware update will not not performed '
221 'since no image is specified.')
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800222
223 super(FAFTSequence, self).initialize(host, cmdline_args, use_pyauto,
224 use_faft)
Vic Yangebd6de62012-06-26 14:25:57 +0800225 if use_faft:
226 self.client_attr = FAFTClientAttribute(
227 self.faft_client.get_platform_name())
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800228
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800229
230 def setup(self):
231 """Autotest setup function."""
232 super(FAFTSequence, self).setup()
233 if not self._remote_infos['faft']['used']:
234 raise error.TestError('The use_faft flag should be enabled.')
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800235
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800236 self.register_faft_template({
237 'state_checker': (None),
238 'userspace_action': (None),
Tom Wai-Hong Tamf1e34972011-11-02 17:07:04 +0800239 'reboot_action': (self.sync_and_hw_reboot),
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800240 'firmware_action': (None)
241 })
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800242 if self._install_image_path:
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800243 self.install_test_image(self._install_image_path,
244 self._firmware_update)
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800245
246
247 def cleanup(self):
248 """Autotest cleanup function."""
249 self._faft_sequence = ()
Tom Wai-Hong Tam109f63c2011-12-08 14:58:27 +0800250 self._faft_template = {}
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800251 super(FAFTSequence, self).cleanup()
252
253
Tom Wai-Hong Tam91f49822011-12-28 15:44:15 +0800254 def assert_test_image_in_usb_disk(self, usb_dev=None):
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +0800255 """Assert an USB disk plugged-in on servo and a test image inside.
256
Tom Wai-Hong Tam91f49822011-12-28 15:44:15 +0800257 Args:
258 usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
259 If None, it is detected automatically.
260
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +0800261 Raises:
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800262 error.TestError: if USB disk not detected or not a test image.
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +0800263 """
Tom Wai-Hong Tam91f49822011-12-28 15:44:15 +0800264 if usb_dev:
265 assert self.servo.get('usb_mux_sel1') == 'servo_sees_usbkey'
266 else:
267 self.servo.set('usb_mux_sel1', 'servo_sees_usbkey')
268 usb_dev = self.servo.probe_host_usb_dev()
269 if not usb_dev:
270 raise error.TestError(
271 'An USB disk should be plugged in the servo board.')
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +0800272
273 tmp_dir = tempfile.mkdtemp()
Tom Wai-Hong Tamb0e80852011-12-07 16:15:06 +0800274 utils.system('sudo mount -r -t ext2 %s3 %s' % (usb_dev, tmp_dir))
Tom Wai-Hong Tame77459e2011-11-03 17:19:46 +0800275 code = utils.system(
276 'grep -qE "(Test Build|testimage-channel)" %s/etc/lsb-release' %
277 tmp_dir, ignore_status=True)
Tom Wai-Hong Tam76c75072011-10-25 18:00:12 +0800278 utils.system('sudo umount %s' % tmp_dir)
279 os.removedirs(tmp_dir)
280 if code != 0:
281 raise error.TestError(
282 'The image in the USB disk should be a test image.')
283
284
Simran Basi741b5d42012-05-18 11:27:15 -0700285 def install_test_image(self, image_path=None, firmware_update=False):
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800286 """Install the test image specied by the path onto the USB and DUT disk.
287
288 The method first copies the image to USB disk and reboots into it via
289 recovery mode. Then runs 'chromeos-install' to install it to DUT disk.
290
291 Args:
292 image_path: Path on the host to the test image.
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800293 firmware_update: Also update the firmware after installing.
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800294 """
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800295 install_cmd = 'chromeos-install --yes'
296 if firmware_update:
297 install_cmd += ' && chromeos-firmwareupdate --mode recovery'
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800298 build_ver, build_hash = lab_test.VerifyImageAndGetId(cros_dir,
299 image_path)
300 logging.info('Processing build: %s %s' % (build_ver, build_hash))
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800301
302 # Reuse the install_recovery_image method by using a test image.
303 # Don't wait for completion but run chromeos-install to install it.
Simran Basi741b5d42012-05-18 11:27:15 -0700304 self.servo.install_recovery_image(image_path)
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800305 self.wait_for_client(install_deps=True)
306 self.run_faft_step({
307 'userspace_action': (self.faft_client.run_shell_command,
Tom Wai-Hong Tam1a3ff742012-01-11 16:36:46 +0800308 install_cmd)
Tom Wai-Hong Tam40fd9472012-01-09 17:11:02 +0800309 })
310
311
Vic Yangb4e3e742012-06-02 13:17:38 +0800312 def _open_uart_pty(self):
313 """Open UART pty and spawn pexpect object.
314
315 Returns:
316 Tuple (fd, child): fd is the file descriptor of opened UART pty, and
317 child is a fdpexpect object tied to it.
318 """
319 fd = os.open(self.servo.get("uart1_pty"), os.O_RDWR | os.O_NONBLOCK)
320 child = fdpexpect.fdspawn(fd)
321 return (fd, child)
322
323
324 def _flush_uart_pty(self, child):
325 """Flush UART output to prevent previous pending message interferring.
326
327 Args:
328 child: The fdpexpect object tied to UART pty.
329 """
330 child.sendline("")
331 while True:
332 try:
333 child.expect(".", timeout=0.01)
334 except pexpect.TIMEOUT:
335 break
336
337
338 def _uart_send(self, child, line):
339 """Flush and send command through UART.
340
341 Args:
342 child: The pexpect object tied to UART pty.
343 line: String to send through UART.
344
345 Raises:
346 error.TestFail: Raised when writing to UART fails.
347 """
348 logging.info("Sending UART command: %s" % line)
349 self._flush_uart_pty(child)
350 if child.sendline(line) != len(line) + 1:
351 raise error.TestFail("Failed to send UART command.")
352
353
354 def send_uart_command(self, command):
355 """Send command through UART.
356
357 This function open UART pty when called, and then command is sent
358 through UART.
359
360 Args:
361 command: The command string to send.
362
363 Raises:
364 error.TestFail: Raised when writing to UART fails.
365 """
366 (fd, child) = self._open_uart_pty()
367 try:
368 self._uart_send(child, command)
369 finally:
370 os.close(fd)
371
372
373 def send_uart_command_get_output(self, command, regex_list, timeout=1):
374 """Send command through UART and wait for response.
375
376 This function waits for response message matching regular expressions.
377
378 Args:
379 command: The command sent.
380 regex_list: List of regular expressions used to match response message.
381 Note, list must be ordered.
382
383 Returns:
384 List of match objects of response message.
385
386 Raises:
387 error.TestFail: If timed out waiting for EC response.
388 """
389 if not isinstance(regex_list, list):
390 regex_list = [regex_list]
391 result_list = []
392 (fd, child) = self._open_uart_pty()
393 try:
394 self._uart_send(child, command)
395 for regex in regex_list:
396 child.expect(regex, timeout=timeout)
397 result_list.append(child.match)
398 except pexpect.TIMEOUT:
399 raise error.TestFail("Timeout waiting for UART response.")
400 finally:
401 os.close(fd)
402 return result_list
403
404
Vic Yang4d72cb62012-07-24 11:51:09 +0800405 def check_ec_capability(self, required_cap=[]):
406 """Check if current platform has required EC capabilities.
407
408 Args:
409 required_cap: A list containing required EC capabilities. Pass in
410 None to only check for presence of Chrome EC.
411
412 Returns:
413 True if requirements are met. Otherwise, False.
414 """
415 if not self.client_attr.chrome_ec:
416 logging.warn('Requires Chrome EC to run this test.')
417 return False
418
419 for cap in required_cap:
420 if cap not in self.client_attr.ec_capability:
421 logging.warn('Requires EC capability "%s" to run this test.' %
422 cap)
423 return False
424
425 return True
426
427
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800428 def _parse_crossystem_output(self, lines):
429 """Parse the crossystem output into a dict.
430
431 Args:
432 lines: The list of crossystem output strings.
433
434 Returns:
435 A dict which contains the crossystem keys/values.
436
437 Raises:
438 error.TestError: If wrong format in crossystem output.
439
440 >>> seq = FAFTSequence()
441 >>> seq._parse_crossystem_output([ \
442 "arch = x86 # Platform architecture", \
443 "cros_debug = 1 # OS should allow debug", \
444 ])
445 {'cros_debug': '1', 'arch': 'x86'}
446 >>> seq._parse_crossystem_output([ \
447 "arch=x86", \
448 ])
449 Traceback (most recent call last):
450 ...
451 TestError: Failed to parse crossystem output: arch=x86
452 >>> seq._parse_crossystem_output([ \
453 "arch = x86 # Platform architecture", \
454 "arch = arm # Platform architecture", \
455 ])
456 Traceback (most recent call last):
457 ...
458 TestError: Duplicated crossystem key: arch
459 """
460 pattern = "^([^ =]*) *= *(.*[^ ]) *# [^#]*$"
461 parsed_list = {}
462 for line in lines:
463 matched = re.match(pattern, line.strip())
464 if not matched:
465 raise error.TestError("Failed to parse crossystem output: %s"
466 % line)
467 (name, value) = (matched.group(1), matched.group(2))
468 if name in parsed_list:
469 raise error.TestError("Duplicated crossystem key: %s" % name)
470 parsed_list[name] = value
471 return parsed_list
472
473
474 def crossystem_checker(self, expected_dict):
475 """Check the crossystem values matched.
476
477 Given an expect_dict which describes the expected crossystem values,
478 this function check the current crossystem values are matched or not.
479
480 Args:
481 expected_dict: A dict which contains the expected values.
482
483 Returns:
484 True if the crossystem value matched; otherwise, False.
485 """
486 lines = self.faft_client.run_shell_command_get_output('crossystem')
487 got_dict = self._parse_crossystem_output(lines)
488 for key in expected_dict:
489 if key not in got_dict:
490 logging.info('Expected key "%s" not in crossystem result' % key)
491 return False
492 if isinstance(expected_dict[key], str):
493 if got_dict[key] != expected_dict[key]:
494 logging.info("Expected '%s' value '%s' but got '%s'" %
495 (key, expected_dict[key], got_dict[key]))
496 return False
497 elif isinstance(expected_dict[key], tuple):
498 # Expected value is a tuple of possible actual values.
499 if got_dict[key] not in expected_dict[key]:
500 logging.info("Expected '%s' values %s but got '%s'" %
501 (key, str(expected_dict[key]), got_dict[key]))
502 return False
503 else:
504 logging.info("The expected_dict is neither a str nor a dict.")
505 return False
506 return True
507
508
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800509 def root_part_checker(self, expected_part):
510 """Check the partition number of the root device matched.
511
512 Args:
513 expected_part: A string containing the number of the expected root
514 partition.
515
516 Returns:
517 True if the currect root partition number matched; otherwise, False.
518 """
Tom Wai-Hong Tam6a863ba2011-12-08 10:13:28 +0800519 part = self.faft_client.get_root_part()[-1]
520 if self.ROOTFS_MAP[expected_part] != part:
521 logging.info("Expected root part %s but got %s" %
522 (self.ROOTFS_MAP[expected_part], part))
523 return False
524 return True
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800525
526
Vic Yang59cac9c2012-05-21 15:28:42 +0800527 def ec_act_copy_checker(self, expected_copy):
528 """Check the EC running firmware copy matches.
529
530 Args:
531 expected_copy: A string containing 'RO', 'A', or 'B' indicating
532 the expected copy of EC running firmware.
533
534 Returns:
535 True if the current EC running copy matches; otherwise, False.
536 """
537 lines = self.faft_client.run_shell_command_get_output('ectool version')
538 pattern = re.compile("Firmware copy: (.*)")
539 for line in lines:
540 matched = pattern.match(line)
541 if matched and matched.group(1) == expected_copy:
542 return True
543 return False
544
545
Tom Wai-Hong Tam07278c22012-02-08 16:53:00 +0800546 def check_root_part_on_non_recovery(self, part):
547 """Check the partition number of root device and on normal/dev boot.
548
549 Returns:
550 True if the root device matched and on normal/dev boot;
551 otherwise, False.
552 """
553 return self.root_part_checker(part) and \
554 self.crossystem_checker({
555 'mainfw_type': ('normal', 'developer'),
556 'recoverysw_boot': '0',
557 })
558
559
Tom Wai-Hong Tamf2103be2011-11-10 07:26:56 +0800560 def _join_part(self, dev, part):
561 """Return a concatenated string of device and partition number.
562
563 Args:
564 dev: A string of device, e.g.'/dev/sda'.
565 part: A string of partition number, e.g.'3'.
566
567 Returns:
568 A concatenated string of device and partition number, e.g.'/dev/sda3'.
569
570 >>> seq = FAFTSequence()
571 >>> seq._join_part('/dev/sda', '3')
572 '/dev/sda3'
573 >>> seq._join_part('/dev/mmcblk0', '2')
574 '/dev/mmcblk0p2'
575 """
576 if 'mmcblk' in dev:
577 return dev + 'p' + part
578 else:
579 return dev + part
580
581
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800582 def copy_kernel_and_rootfs(self, from_part, to_part):
583 """Copy kernel and rootfs from from_part to to_part.
584
585 Args:
586 from_part: A string of partition number to be copied from.
Tom Wai-Hong Tamf2103be2011-11-10 07:26:56 +0800587 to_part: A string of partition number to be copied to.
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800588 """
589 root_dev = self.faft_client.get_root_dev()
Tom Wai-Hong Tamf2103be2011-11-10 07:26:56 +0800590 logging.info('Copying kernel from %s to %s. Please wait...' %
591 (from_part, to_part))
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800592 self.faft_client.run_shell_command('dd if=%s of=%s bs=4M' %
Tom Wai-Hong Tamf2103be2011-11-10 07:26:56 +0800593 (self._join_part(root_dev, self.KERNEL_MAP[from_part]),
594 self._join_part(root_dev, self.KERNEL_MAP[to_part])))
595 logging.info('Copying rootfs from %s to %s. Please wait...' %
596 (from_part, to_part))
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800597 self.faft_client.run_shell_command('dd if=%s of=%s bs=4M' %
Tom Wai-Hong Tamf2103be2011-11-10 07:26:56 +0800598 (self._join_part(root_dev, self.ROOTFS_MAP[from_part]),
599 self._join_part(root_dev, self.ROOTFS_MAP[to_part])))
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800600
601
602 def ensure_kernel_boot(self, part):
603 """Ensure the request kernel boot.
604
605 If not, it duplicates the current kernel to the requested kernel
606 and sets the requested higher priority to ensure it boot.
607
608 Args:
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800609 part: A string of kernel partition number or 'a'/'b'.
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800610 """
611 if not self.root_part_checker(part):
612 self.copy_kernel_and_rootfs(from_part=self.OTHER_KERNEL_MAP[part],
613 to_part=part)
Tom Wai-Hong Tamc7ecfca2011-12-06 11:12:31 +0800614 self.run_faft_step({
615 'userspace_action': (self.reset_and_prioritize_kernel, part),
616 })
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800617
618
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800619 def send_ctrl_d_to_dut(self):
620 """Send Ctrl-D key to DUT."""
621 if self._customized_ctrl_d_key_command:
622 logging.info('running the customized Ctrl-D key command')
623 os.system(self._customized_ctrl_d_key_command)
624 else:
625 self.servo.ctrl_d()
626
627
628 def send_enter_to_dut(self):
629 """Send Enter key to DUT."""
630 if self._customized_enter_key_command:
631 logging.info('running the customized Enter key command')
632 os.system(self._customized_enter_key_command)
633 else:
634 self.servo.enter_key()
635
636
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800637 def wait_fw_screen_and_ctrl_d(self):
638 """Wait for firmware warning screen and press Ctrl-D."""
639 time.sleep(self.FIRMWARE_SCREEN_DELAY)
Tom Wai-Hong Tam1db43832011-12-09 10:50:56 +0800640 self.send_ctrl_d_to_dut()
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800641
642
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800643 def wait_fw_screen_and_trigger_recovery(self, need_dev_transition=False):
644 """Wait for firmware warning screen and trigger recovery boot."""
645 time.sleep(self.FIRMWARE_SCREEN_DELAY)
646 self.send_enter_to_dut()
647
648 # For Alex/ZGB, there is a dev warning screen in text mode.
649 # Skip it by pressing Ctrl-D.
650 if need_dev_transition:
651 time.sleep(self.TEXT_SCREEN_DELAY)
652 self.send_ctrl_d_to_dut()
653
654
Tom Wai-Hong Tam5d2f4702011-12-06 10:42:31 +0800655 def wait_fw_screen_and_plug_usb(self):
656 """Wait for firmware warning screen and then unplug and plug the USB."""
Tom Wai-Hong Tama79574c2012-02-07 09:29:03 +0800657 time.sleep(self.USB_LOAD_DELAY)
Tom Wai-Hong Tam5d2f4702011-12-06 10:42:31 +0800658 self.servo.set('usb_mux_sel1', 'servo_sees_usbkey')
659 time.sleep(self.USB_PLUG_DELAY)
660 self.servo.set('usb_mux_sel1', 'dut_sees_usbkey')
661
662
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800663 def wait_fw_screen_and_press_power(self):
664 """Wait for firmware warning screen and press power button."""
665 time.sleep(self.FIRMWARE_SCREEN_DELAY)
Tom Wai-Hong Tam610262a2012-01-12 14:16:53 +0800666 self.servo.power_short_press()
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800667
668
669 def wait_fw_screen_and_close_lid(self):
670 """Wait for firmware warning screen and close lid."""
671 time.sleep(self.FIRMWARE_SCREEN_DELAY)
672 self.servo.lid_close()
673
674
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800675 def setup_tried_fwb(self, tried_fwb):
676 """Setup for fw B tried state.
677
678 It makes sure the system in the requested fw B tried state. If not, it
679 tries to do so.
680
681 Args:
682 tried_fwb: True if requested in tried_fwb=1; False if tried_fwb=0.
683 """
684 if tried_fwb:
685 if not self.crossystem_checker({'tried_fwb': '1'}):
686 logging.info(
687 'Firmware is not booted with tried_fwb. Reboot into it.')
688 self.run_faft_step({
689 'userspace_action': self.faft_client.set_try_fw_b,
690 })
691 else:
692 if not self.crossystem_checker({'tried_fwb': '0'}):
693 logging.info(
694 'Firmware is booted with tried_fwb. Reboot to clear.')
695 self.run_faft_step({})
696
697
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800698 def enable_dev_mode_and_fw(self):
699 """Enable developer mode and use developer firmware."""
700 self.servo.enable_development_mode()
701 self.faft_client.run_shell_command(
702 'chromeos-firmwareupdate --mode todev && reboot')
703
704
705 def enable_normal_mode_and_fw(self):
706 """Enable normal mode and use normal firmware."""
707 self.servo.disable_development_mode()
708 self.faft_client.run_shell_command(
709 'chromeos-firmwareupdate --mode tonormal && reboot')
710
711
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800712 def setup_dev_mode(self, dev_mode):
713 """Setup for development mode.
714
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800715 It makes sure the system in the requested normal/dev mode. If not, it
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800716 tries to do so.
717
718 Args:
719 dev_mode: True if requested in dev mode; False if normal mode.
720 """
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800721 # Change the default firmware_action for dev mode passing the fw screen.
722 self.register_faft_template({
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800723 'firmware_action': (self.wait_fw_screen_and_ctrl_d if dev_mode
724 else None),
725 })
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800726 if dev_mode:
727 if not self.crossystem_checker({'devsw_cur': '1'}):
728 logging.info('Dev switch is not on. Now switch it on.')
729 self.servo.enable_development_mode()
730 if not self.crossystem_checker({'devsw_boot': '1',
731 'mainfw_type': 'developer'}):
732 logging.info('System is not in dev mode. Reboot into it.')
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800733 self.run_faft_step({
734 'userspace_action': (self.faft_client.run_shell_command,
Tom Wai-Hong Tamc7ecfca2011-12-06 11:12:31 +0800735 'chromeos-firmwareupdate --mode todev && reboot'),
736 'reboot_action': None,
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800737 })
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800738 else:
739 if not self.crossystem_checker({'devsw_cur': '0'}):
740 logging.info('Dev switch is not off. Now switch it off.')
741 self.servo.disable_development_mode()
742 if not self.crossystem_checker({'devsw_boot': '0',
743 'mainfw_type': 'normal'}):
744 logging.info('System is not in normal mode. Reboot into it.')
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800745 self.run_faft_step({
746 'userspace_action': (self.faft_client.run_shell_command,
Tom Wai-Hong Tamc7ecfca2011-12-06 11:12:31 +0800747 'chromeos-firmwareupdate --mode tonormal && reboot'),
748 'reboot_action': None,
Tom Wai-Hong Tamfd590c92011-11-25 11:50:57 +0800749 })
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800750
751
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800752 def setup_kernel(self, part):
753 """Setup for kernel test.
754
755 It makes sure both kernel A and B bootable and the current boot is
756 the requested kernel part.
757
758 Args:
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800759 part: A string of kernel partition number or 'a'/'b'.
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800760 """
761 self.ensure_kernel_boot(part)
762 self.copy_kernel_and_rootfs(from_part=part,
763 to_part=self.OTHER_KERNEL_MAP[part])
764 self.reset_and_prioritize_kernel(part)
765
766
767 def reset_and_prioritize_kernel(self, part):
768 """Make the requested partition highest priority.
769
770 This function also reset kerenl A and B to bootable.
771
772 Args:
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800773 part: A string of partition number to be prioritized.
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800774 """
775 root_dev = self.faft_client.get_root_dev()
776 # Reset kernel A and B to bootable.
777 self.faft_client.run_shell_command('cgpt add -i%s -P1 -S1 -T0 %s' %
778 (self.KERNEL_MAP['a'], root_dev))
779 self.faft_client.run_shell_command('cgpt add -i%s -P1 -S1 -T0 %s' %
780 (self.KERNEL_MAP['b'], root_dev))
781 # Set kernel part highest priority.
782 self.faft_client.run_shell_command('cgpt prioritize -i%s %s' %
783 (self.KERNEL_MAP[part], root_dev))
Tom Wai-Hong Tam6a863ba2011-12-08 10:13:28 +0800784 # Safer to sync and wait until the cgpt status written to the disk.
785 self.faft_client.run_shell_command('sync')
786 time.sleep(self.SYNC_DELAY)
Tom Wai-Hong Tamcfda61f2011-11-02 17:41:01 +0800787
788
Tom Wai-Hong Tamf1e34972011-11-02 17:07:04 +0800789 def sync_and_hw_reboot(self):
790 """Request the client sync and do a warm reboot.
791
792 This is the default reboot action on FAFT.
793 """
794 self.faft_client.run_shell_command('sync')
Tom Wai-Hong Tam6a863ba2011-12-08 10:13:28 +0800795 time.sleep(self.SYNC_DELAY)
Tom Wai-Hong Tamf1e34972011-11-02 17:07:04 +0800796 self.servo.warm_reset()
797
798
Vic Yang59cac9c2012-05-21 15:28:42 +0800799 def sync_and_ec_reboot(self):
800 """Request the client sync and do a EC triggered reboot."""
801 self.faft_client.run_shell_command('sync')
802 time.sleep(self.SYNC_DELAY)
803 self.faft_client.run_shell_command('(sleep %d; ectool reboot_ec)&' %
804 self.EC_REBOOT_DELAY)
805 time.sleep(self.EC_REBOOT_DELAY + self.POWER_BTN_DELAY)
806 self.servo.power_normal_press()
807
808
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800809 def _modify_usb_kernel(self, usb_dev, from_magic, to_magic):
810 """Modify the kernel header magic in USB stick.
811
812 The kernel header magic is the first 8-byte of kernel partition.
813 We modify it to make it fail on kernel verification check.
814
815 Args:
816 usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
817 from_magic: A string of magic which we change it from.
818 to_magic: A string of magic which we change it to.
819
820 Raises:
821 error.TestError: if failed to change magic.
822 """
823 assert len(from_magic) == 8
824 assert len(to_magic) == 8
Tom Wai-Hong Tama1d9a0f2011-12-23 09:13:33 +0800825 # USB image only contains one kernel.
826 kernel_part = self._join_part(usb_dev, self.KERNEL_MAP['a'])
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800827 read_cmd = "sudo dd if=%s bs=8 count=1 2>/dev/null" % kernel_part
828 current_magic = utils.system_output(read_cmd)
829 if current_magic == to_magic:
830 logging.info("The kernel magic is already %s." % current_magic)
831 return
832 if current_magic != from_magic:
833 raise error.TestError("Invalid kernel image on USB: wrong magic.")
834
835 logging.info('Modify the kernel magic in USB, from %s to %s.' %
836 (from_magic, to_magic))
837 write_cmd = ("echo -n '%s' | sudo dd of=%s oflag=sync conv=notrunc "
838 " 2>/dev/null" % (to_magic, kernel_part))
839 utils.system(write_cmd)
840
841 if utils.system_output(read_cmd) != to_magic:
842 raise error.TestError("Failed to write new magic.")
843
844
845 def corrupt_usb_kernel(self, usb_dev):
846 """Corrupt USB kernel by modifying its magic from CHROMEOS to CORRUPTD.
847
848 Args:
849 usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
850 """
851 self._modify_usb_kernel(usb_dev, self.CHROMEOS_MAGIC,
852 self.CORRUPTED_MAGIC)
853
854
855 def restore_usb_kernel(self, usb_dev):
856 """Restore USB kernel by modifying its magic from CORRUPTD to CHROMEOS.
857
858 Args:
859 usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
860 """
861 self._modify_usb_kernel(usb_dev, self.CORRUPTED_MAGIC,
862 self.CHROMEOS_MAGIC)
863
864
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800865 def _call_action(self, action_tuple):
866 """Call the action function with/without arguments.
867
868 Args:
869 action_tuple: A function, or a tuple which consisted of a function
870 and its arguments (if any).
871
872 Returns:
873 The result value of the action function.
874 """
875 if isinstance(action_tuple, tuple):
876 action = action_tuple[0]
877 args = action_tuple[1:]
878 if callable(action):
879 logging.info('calling %s with parameter %s' % (
Tom Wai-Hong Tame8f291a2011-12-08 22:03:53 +0800880 str(action), str(action_tuple[1])))
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800881 return action(*args)
882 else:
883 logging.info('action is not callable!')
884 else:
885 action = action_tuple
886 if action is not None:
887 if callable(action):
Tom Wai-Hong Tame8f291a2011-12-08 22:03:53 +0800888 logging.info('calling %s' % str(action))
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800889 return action()
890 else:
891 logging.info('action is not callable!')
892
893 return None
894
895
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800896 def run_shutdown_process(self, shutdown_action, pre_power_action=None,
897 post_power_action=None):
898 """Run shutdown_action(), which makes DUT shutdown, and power it on.
899
900 Args:
901 shutdown_action: a function which makes DUT shutdown, like pressing
902 power key.
903 pre_power_action: a function which is called before next power on.
904 post_power_action: a function which is called after next power on.
905
906 Raises:
907 error.TestFail: if the shutdown_action() failed to turn DUT off.
908 """
909 self._call_action(shutdown_action)
910 logging.info('Wait to ensure DUT shut down...')
911 try:
912 self.wait_for_client()
913 raise error.TestFail(
914 'Should shut the device down after calling %s.' %
915 str(shutdown_action))
916 except AssertionError:
917 logging.info(
918 'DUT is surely shutdown. We are going to power it on again...')
919
920 if pre_power_action:
921 self._call_action(pre_power_action)
Tom Wai-Hong Tam610262a2012-01-12 14:16:53 +0800922 self.servo.power_short_press()
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800923 if post_power_action:
924 self._call_action(post_power_action)
925
926
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800927 def register_faft_template(self, template):
928 """Register FAFT template, the default FAFT_STEP of each step.
929
Tom Wai-Hong Tam109f63c2011-12-08 14:58:27 +0800930 Any missing field falls back to the original faft_template.
931
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800932 Args:
933 template: A FAFT_STEP dict.
934 """
Tom Wai-Hong Tam109f63c2011-12-08 14:58:27 +0800935 self._faft_template.update(template)
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800936
937
938 def register_faft_sequence(self, sequence):
939 """Register FAFT sequence.
940
941 Args:
942 sequence: A FAFT_SEQUENCE array which consisted of FAFT_STEP dicts.
943 """
944 self._faft_sequence = sequence
945
946
Tom Wai-Hong Tam2c50dff2011-11-11 07:01:01 +0800947 def run_faft_step(self, step, no_reboot=False):
948 """Run a single FAFT step.
949
950 Any missing field falls back to faft_template. An empty step means
951 running the default faft_template.
952
953 Args:
954 step: A FAFT_STEP dict.
955 no_reboot: True to prevent running reboot_action and firmware_action.
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800956
957 Raises:
Tom Wai-Hong Tama9c1a502011-11-10 06:39:26 +0800958 error.TestFail: An error when the test failed.
Tom Wai-Hong Tamd8445dc2011-12-15 09:00:04 +0800959 error.TestError: An error when the given step is not valid.
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800960 """
Tom Wai-Hong Tamd8445dc2011-12-15 09:00:04 +0800961 FAFT_STEP_KEYS = ('state_checker', 'userspace_action', 'reboot_action',
962 'firmware_action', 'install_deps_after_boot')
963
Tom Wai-Hong Tam2c50dff2011-11-11 07:01:01 +0800964 test = {}
965 test.update(self._faft_template)
966 test.update(step)
967
Tom Wai-Hong Tamd8445dc2011-12-15 09:00:04 +0800968 for key in test:
969 if key not in FAFT_STEP_KEYS:
Tom Wai-Hong Tam78709592011-12-19 11:16:50 +0800970 raise error.TestError('Invalid key in FAFT step: %s', key)
Tom Wai-Hong Tamd8445dc2011-12-15 09:00:04 +0800971
Tom Wai-Hong Tam2c50dff2011-11-11 07:01:01 +0800972 if test['state_checker']:
973 if not self._call_action(test['state_checker']):
974 raise error.TestFail('State checker failed!')
975
976 self._call_action(test['userspace_action'])
977
978 # Don't run reboot_action and firmware_action if no_reboot is True.
979 if not no_reboot:
980 self._call_action(test['reboot_action'])
981 self.wait_for_client_offline()
982 self._call_action(test['firmware_action'])
983
984 if 'install_deps_after_boot' in test:
985 self.wait_for_client(
986 install_deps=test['install_deps_after_boot'])
987 else:
988 self.wait_for_client()
989
990
991 def run_faft_sequence(self):
992 """Run FAFT sequence which was previously registered."""
Tom Wai-Hong Tama70f0fe2011-09-02 18:28:47 +0800993 sequence = self._faft_sequence
Tom Wai-Hong Tame8f291a2011-12-08 22:03:53 +0800994 index = 1
Tom Wai-Hong Tam2c50dff2011-11-11 07:01:01 +0800995 for step in sequence:
Tom Wai-Hong Tame8f291a2011-12-08 22:03:53 +0800996 logging.info('======== Running FAFT sequence step %d ========' %
997 index)
Tom Wai-Hong Tam2c50dff2011-11-11 07:01:01 +0800998 # Don't reboot in the last step.
999 self.run_faft_step(step, no_reboot=(step is sequence[-1]))
Tom Wai-Hong Tame8f291a2011-12-08 22:03:53 +08001000 index += 1