1# Copyright 2019 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 5from autotest_lib.server import utils 6 7AUTHOR = "mruthven" 8NAME = "firmware_Cr50Open.ccd_open_unrestricted" 9PURPOSE = "Verify cr50 open" 10ATTRIBUTES = "suite:faft_cr50_prepvt" 11TIME = "SHORT" 12TEST_TYPE = "server" 13DEPENDENCIES = "servo_state:WORKING" 14PY_VERSION = 3 15 16DOC = """ 17Verify the console can be opened by pressing the power button after the device 18has been put into dev mode. Make sure cr50 can't be opened when the device isn't 19in dev mode. 20 21This test must be run with servo instead of CCD, because we need to be able to 22fake power button presses. 23 24This test is applicable when ccd open is unrestricted. 25TODO(crbug.com/1014572) Drop separate control files for ccd open state. 26""" 27 28if 'args_dict' not in locals(): 29 args_dict = {} 30 31args_dict.update(utils.args_to_dict(args)) 32servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 33 34def run(machine): 35 host = hosts.create_host(machine, servo_args=servo_args) 36 iterations = int(args_dict.get("iterations", 1)) 37 ccd_open_restricted = args_dict.get("ccd_open_restricted", "false").lower() 38 ccd_open_restricted = ccd_open_restricted != "false" 39 40 job.run_test("firmware_Cr50Open", host=host, cmdline_args=args, 41 ccd_open_restricted=ccd_open_restricted, 42 full_args=args_dict, iterations=iterations) 43 44parallel_simple(run, machines)