xref: /aosp_15_r20/external/autotest/server/site_tests/audio_AudioBasicAssistant/control.dsp (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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.client.common_lib import utils
6
7AUTHOR = "chromeos-chameleon"
8NAME = "audio_AudioBasicAssistant.dsp"
9PURPOSE = "Remotely controlled assistant test with chameleon."
10CRITERIA = """This test will fail if the assistant can't open a tab requested by
11voice command."""
12TIME = "SHORT"
13TEST_CATEGORY = "Functional"
14TEST_CLASS = "audio"
15TEST_TYPE = "server"
16#ATTRIBUTES = "suite:chameleon_audio_unstable"
17DEPENDENCIES = "audio_box, hotwording"
18PY_VERSION = 3
19
20DOC = """
21A basic assistant voice command test with hotword dsp.
22We need a DUT with hotwording function, chameleon with speaker and a quiet space
23to run the test (audio_box).
24"""
25
26args_dict = utils.args_to_dict(args)
27chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
28
29def run(machine):
30    job.run_test('audio_AudioBasicAssistant',
31            host=hosts.create_host(machine, chameleon_args=chameleon_args),
32            enable_dsp_hotword=True)
33
34parallel_simple(run, machines)
35