blob: 33bdbcbf06ae897f94200afb446f9a85e06a29b6 [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_AudioQualityAfterSuspend.internal_speaker.m4a"
METADATA = {
"contacts": ["chromeos-audio-sw@google.com"],
"bug_component": "b:875558",
"criteria": "This test will fail if the captured audio does not match original file.",
"doc" : "This test remotely speaker audio function against DUT after suspend."
}
TEST_TYPE = "server"
#ATTRIBUTES = "suite:audio_advanced"
DEPENDENCIES = "audio_box, chameleon_state:WORKING"
JOB_RETRIES = 1
args_dict = utils.args_to_dict(args)
chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
test_file = ('http://commondatastorage.googleapis.com/chromiumos-test-assets-'
'public/audio_test/chameleon/Speaker/test_512_16.m4a')
def run(machine):
host = hosts.create_host(machine, chameleon_args=chameleon_args)
job.run_test("audio_AudioQualityAfterSuspend", host=host,
audio_test_data=audio_test_data.MEDIA_SPEAKER_TEST_FILE,
lowpass_freq=1000,
test_playback_file=test_file,
recorder=chameleon_audio_ids.ChameleonIds.MIC,
source=chameleon_audio_ids.CrosIds.SPEAKER,
audio_nodes=(['INTERNAL_SPEAKER'], ['INTERNAL_MIC']),
tag = "internal_speaker")
parallel_simple(run, machines)