blob: 6d887140612bfc4befb3ad24447f051ad6c1b8d5 [file] [log] [blame]
# Copyright 2015 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.client.cros.audio import audio_test_data
from autotest_lib.client.cros.chameleon import chameleon_audio_ids
from autotest_lib.server import utils
NAME = "audio_AudioNodeSwitch"
METADATA = {
"contacts": ["chromeos-audio-sw@google.com"],
"bug_component": "b:875558",
"criteria": "This test will fail if the audio node is not as expected.",
"doc" : "Tests selection of audio nodes"
}
TEST_TYPE = "server"
ATTRIBUTES = "suite:audio_advanced"
DEPENDENCIES = "audio_box, test_audio_jack_usb_hdmi, chameleon_state:WORKING"
PY_VERSION = 3
DOC = """
This test remotely tests audio nodes selection.
"""
args_dict = utils.args_to_dict(args)
chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
def run(machine):
host = hosts.create_host(machine, chameleon_args=chameleon_args)
job.run_test("audio_AudioNodeSwitch", host=host, jack_node=True, tag='JACK')
job.run_test("audio_AudioNodeSwitch", host=host, hdmi_node=True, tag='HDMI')
job.run_test("audio_AudioNodeSwitch", host=host, usb_node=True, tag='USB')
parallel_simple(run, machines)