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 5 from autotest_lib.client.cros.audio import audio_test_data 6 from autotest_lib.client.cros.chameleon import chameleon_audio_ids 7 from autotest_lib.server import utils 8 9 AUTHOR = "chromeos-chameleon" 10 NAME = "audio_AudioQualityAfterSuspend.internal_speaker.m4a" 11 PURPOSE = ("Remotely controlled internal_speaker AFTER SUSPEND " 12 "Chrome audio test.") 13 CRITERIA = ("This test will fail if the captured audio does not " 14 "match original file.") 15 TIME = "SHORT" 16 TEST_CATEGORY = "Functional" 17 TEST_CLASS = "audio" 18 TEST_TYPE = "server" 19 ATTRIBUTES = "suite:chameleon_audio_nightly, suite:chameleon_audio" 20 DEPENDENCIES = "chameleon, audio_board, audio_box" 21 JOB_RETRIES = 2 22 23 DOC = """ 24 This test remotely tests internal_speaker audio function against DUT after suspend. 25 """ 26 27 args_dict = utils.args_to_dict(args) 28 chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict) 29 test_file = ('http://commondatastorage.googleapis.com/chromiumos-test-assets-' 30 'public/audio_test/chameleon/Speaker/test_512_16.m4a') 31 32 def 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_SPEAKER_TEST_FILE, 36 lowpass_freq=1000, 37 test_playback_file=test_file, 38 recorder=chameleon_audio_ids.ChameleonIds.MIC, 39 source=chameleon_audio_ids.CrosIds.SPEAKER, 40 audio_nodes=(['INTERNAL_SPEAKER'], ['INTERNAL_MIC']), 41 tag = "internal_speaker") 42 43 parallel_simple(run, machines) 44