1# Copyright 2018 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 = "chromeos-chameleon" 8NAME = "audio_AudioBasicHotwording.suspend" 9PURPOSE = "Remotely controlled hotwording test with suspend." 10CRITERIA = ("This test will fail if the captured audio after hotword does not" 11 "match the original file.") 12TIME = "SHORT" 13TEST_CATEGORY = "Functional" 14TEST_CLASS = "audio" 15TEST_TYPE = "server" 16# Stop schedule this until it can be passed manually 17# ATTRIBUTES = "suite:audio_advanced" 18DEPENDENCIES = "audio_box, hotwording" 19JOB_RETRIES = 1 20PY_VERSION = 3 21 22DOC = """ 23This test remotely tests hotwording function after the DUT suspend. 24We need a DUT with hotwording function, chameleon with speaker and a quiet space 25to run the test (audio_box). 26""" 27 28args_dict = utils.args_to_dict(args) 29chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict) 30 31def run(machine): 32 host = hosts.create_host(machine, chameleon_args=chameleon_args) 33 job.run_test("audio_AudioBasicHotwording", host=host, suspend=True) 34 35parallel_simple(run, machines) 36