# 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 re from collections import defaultdict from autotest_lib.client.common_lib import error from autotest_lib.server.cros.faft.firmware_test import FirmwareTest class firmware_PDProtocol(FirmwareTest): """ Servo based USB PD protocol test. A charger must be connected to the DUT for this test. This test checks that when an appropriate zinger charger is connected that the PD is properly negotiated in dev mode and when booted from a test image through recovery that the PD is not negotiated. Example: PD Successfully negotiated - ectool usbpdpower should output Charger PD PD not negotiated - ectool usbpdpower should not output Charger PD """ version = 1 NEGOTIATED_PATTERN = 'Charger PD' PD_NOT_SUPPORTED_PATTERN = 'INVALID_COMMAND' ECTOOL_CMD_DICT = defaultdict(lambda: 'ectool usbpdpower') def initialize(self, host, cmdline_args): super(firmware_PDProtocol, self).initialize(host, cmdline_args) self.ECTOOL_CMD_DICT['samus'] = 'ectool --dev=1 usbpdpower' self.current_board = self.servo.get_board(); self.check_if_pd_supported() self.assert_test_image_in_usb_disk() self.switcher.setup_mode('dev') self.setup_usbkey(usbkey=True, host=False) self.original_dev_boot_usb = self.faft_client.system.get_dev_boot_usb() logging.info('Original dev_boot_usb value: %s', str(self.original_dev_boot_usb)) def cleanup(self): self.ensure_internal_device_boot() super(firmware_PDProtocol, self).cleanup() def check_if_pd_supported(self): """ Checks if the DUT responds to ectool usbpdpower and skips the test if it isn't supported on the device. """ output = self.run_command(self.ECTOOL_CMD_DICT[self.current_board]) if (not output or self.check_ec_output(output, self.PD_NOT_SUPPORTED_PATTERN)): raise error.TestNAError("PD not supported skipping test.") def ensure_internal_device_boot(self): """Ensure internal device boot; if not, reboot into it. If not, it may be a test failure during step 2 or 3, try to reboot and press Ctrl-D to internal device boot. """ if self.faft_client.system.is_removable_device_boot(): logging.info('Reboot into internal disk...') self.faft_client.system.set_dev_boot_usb(self.original_dev_boot_usb) self.switcher.mode_aware_reboot() self.check_state((self.checkers.dev_boot_usb_checker, False, 'Did not boot from internal disk.')) def boot_to_recovery(self): """Boot device into recovery mode.""" logging.info('Reboot into Recovery...') self.assert_test_image_in_usb_disk() self.switcher.reboot_to_mode(to_mode='rec') self.check_state((self.checkers.crossystem_checker, {'mainfw_type': 'recovery'})) def run_command(self, command): """Runs the specified command and returns the output as a list of strings. @param command: The command to run on the DUT @return A list of strings of the command output """ logging.info('Command to run: %s', command) output = self.faft_client.system.run_shell_command_get_output(command) logging.info('Command output: %s', output) return output def check_ec_output(self, output, pattern): """Checks if any line in the output matches the given pattern. @param output: A list of strings containg the output to search @param pattern: The regex to search the output for @return True upon first match found or False """ logging.info('Checking %s for %s.', output, pattern) for line in output: if bool(re.search(pattern, line)): return True return False def run_once(self): self.ensure_internal_device_boot() output = self.run_command(self.ECTOOL_CMD_DICT[self.current_board]) if not self.check_ec_output(output, self.NEGOTIATED_PATTERN): raise error.TestFail( 'ectool usbpdpower output %s did not match %s', (output, self.NEGOTIATED_PATTERN)) self.boot_to_recovery() output = self.run_command(self.ECTOOL_CMD_DICT[self.current_board]) if self.check_ec_output(output, self.NEGOTIATED_PATTERN): raise error.TestFail( 'ectool usbpdpower output %s matched %s', (output, self.NEGOTIATED_PATTERN))