• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.audio import cras_configs
7from autotest_lib.client.cros.chameleon import audio_test_utils
8from autotest_lib.client.cros.chameleon import chameleon_audio_ids
9from autotest_lib.server import utils
10
11AUTHOR = "chromeos-chameleon"
12NAME = "audio_AudioAfterReboot.internal_mic"
13PURPOSE = "Remotely controlled internal_mic AFTER REBOOT audio test."
14CRITERIA = "This test will fail if the captured audio does not match original file."
15TIME = "SHORT"
16TEST_CATEGORY = "Functional"
17TEST_CLASS = "audio"
18TEST_TYPE = "server"
19ATTRIBUTES = "suite:chameleon_audio_perbuild"
20DEPENDENCIES = 'chameleon, audio_board, audio_box'
21JOB_RETRIES = 2
22
23DOC = """
24This test remotely tests internal_mic audio function against DUT after reboot.
25"""
26
27args_dict = utils.args_to_dict(args)
28chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
29
30def run(machine):
31    host = hosts.create_host(machine, chameleon_args=chameleon_args)
32    expected_internal_mic_node = cras_configs.get_internal_mic_node(
33            audio_test_utils.get_board_name(host), host.get_platform())
34    job.run_test("audio_AudioAfterReboot", host=host,
35                 golden_data=(audio_test_data.SIMPLE_FREQUENCY_TEST_FILE, 1500),
36                 bind_from=chameleon_audio_ids.ChameleonIds.LINEOUT,
37                 bind_to=chameleon_audio_ids.PeripheralIds.SPEAKER,
38                 recorder=chameleon_audio_ids.CrosIds.INTERNAL_MIC,
39                 audio_nodes=(['INTERNAL_SPEAKER'],
40                              [expected_internal_mic_node]),
41                 is_internal=True, tag = "internal_mic")
42
43parallel_simple(run, machines)
44