blob: 00c755128c02fb0252cb1d011614a492cdbf4b14 [file] [log] [blame]
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
from autotest_lib.server.cros.bluetooth import bluetooth_test
AUTHOR = 'chromeos-bluetooth'
NAME = 'bluetooth_AdapterSASanity.sa_valid_alias_test'
PURPOSE = 'Check whether the chromebook is using a Google Bluetooth ID.'
CRITERIA = """
This test will fail if the Bluetooth ID does not match the expected format.
"""
ATTRIBUTES = 'suite:bvt-perbuild, suite:bluetooth, suite:bluetooth_standalone'
TIME = 'SHORT'
TEST_CATEGORY = 'Functional'
TEST_CLASS = 'bluetooth'
TEST_TYPE = 'server'
DEPENDENCIES = 'bluetooth'
DOC = """
Checks the Bluetooth Alias of the system. If the alias is not like
'Chromebook_1234' (or Chromebox, etc.), the test will fail.
"""
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('bluetooth_AdapterSASanity', host=host,
num_iterations=1, test_name=NAME.split('.')[1])
parallel_simple(run, machines)