1# Copyright 2015 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.cros.audio import audio_test_data 6from autotest_lib.client.cros.chameleon import chameleon_audio_ids 7from autotest_lib.server import utils 8 9AUTHOR = "chromeos-chameleon" 10NAME = "audio_AudioQualityAfterSuspend.headphone.mp3" 11PURPOSE = "Remotely controlled headphone AFTER SUSPEND Chrome audio test." 12CRITERIA = ("This test will fail if the captured audio does not " 13 "match original file.") 14TIME = "SHORT" 15TEST_CATEGORY = "Functional" 16TEST_CLASS = "audio" 17TEST_TYPE = "server" 18SUITE = "chameleon_audio_nightly, chameleon_audio" 19ATTRIBUTES = "suite:chameleon_audio_nightly, suite:chameleon_audio" 20DEPENDENCIES = "chameleon, audio_board" 21JOB_RETRIES = 2 22 23DOC = """ 24This test remotely tests headphone audio function against DUT after suspend. 25""" 26 27args_dict = utils.args_to_dict(args) 28chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict) 29test_file = ('http://commondatastorage.googleapis.com/chromiumos-test-assets-' 30 'public/audio_test/chameleon/Headphone/test_256_16.mp3') 31 32def run(machine): 33 host = hosts.create_host(machine, chameleon_args=chameleon_args) 34 job.run_test("audio_AudioQualityAfterSuspend", host=host, 35 audio_test_data=audio_test_data.MEDIA_HEADPHONE_TEST_FILE, 36 lowpass_freq=4000, 37 test_playback_file=test_file, 38 bind_from=chameleon_audio_ids.CrosIds.HEADPHONE, 39 bind_to=chameleon_audio_ids.ChameleonIds.LINEIN, 40 audio_nodes=(['HEADPHONE'],[ 'MIC']), tag="headphone") 41 42parallel_simple(run, machines) 43