blob: c2e62f062725b05ec3fc583e7de9d83484ada429 [file] [log] [blame]
# Copyright 2014 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
NAME = "display_LidCloseOpen.mirrored_unplugged_combined"
METADATA = {
"contacts": ["chromeos-gfx-display@google.com"],
"bug_component": "b:188154",
"criteria": "Fails if the checks mentioned below fail."
}
TEST_TYPE = "server"
DEPENDENCIES = 'chameleon, servo_state:WORKING'
'''
This test remotely emulates external display lid close/open scenario.
This test will fail if DUT doesn't
- go to docked mode
- return to the original mode
- suspend after unplug in docked mode
- resume after open
- pass image test
'''
args_dict = utils.args_to_dict(args)
chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
# Plugged status (before_close, after_close, before_open)
plug_status=[(True, False, False),
(True, False, True),
(False, True, True),
(False, True, False)]
def run(machine):
host = hosts.create_host(machine, chameleon_args=chameleon_args,
servo_args=servo_args)
job.run_test("display_LidCloseOpen", host=host, plug_status=plug_status,
test_mirrored=True, tag="mirrored_unplugged_combined")
parallel_simple(run, machines)