1 # Copyright 2016 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.server import utils 6 7 AUTHOR = 'chromeos-chameleon' 8 NAME = 'bluetooth_AdapterHIDReports.mouse' 9 PURPOSE = ('Test bluetooth adapter receiving reports from ' 10 'bluetooth HID devices.') 11 CRITERIA = 'Adapter should receive HID events correctly.' 12 ATTRIBUTES = 'suite:bluetooth, suite:bluetooth_chameleon, suite:bluetooth_chameleon_sanity' 13 TIME = 'SHORT' # This test takes about 3 minutes 14 TEST_CATEGORY = 'Functional' 15 TEST_CLASS = 'bluetooth' 16 TEST_TYPE = 'server' 17 DEPENDENCIES = 'bluetooth, chameleon:bt_hid' 18 19 DOC = """ 20 Verify that the bluetooth adapter of the DUT could receive HID reports 21 sent from a connected bluetooth device correctly. 22 23 Specifically, the following subtests are executed in this autotest. 24 - test_reset_on_adapter 25 - test_pairable 26 - test_discover_device 27 - test_pairing 28 - test_connection_by_adapter 29 - test_mouse_left_click 30 - test_mouse_right_click 31 - test_mouse_move_in_x 32 - test_mouse_move_in_y 33 - test_mouse_move_in_xy 34 - test_mouse_scroll_down 35 - test_mouse_scroll_up 36 - test_mouse_click_and_drag 37 - test_disconnection_by_adapter 38 - test_remove_pairing 39 """ 40 41 args_dict = utils.args_to_dict(args) 42 chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict) 43 44 def run(machine): 45 host = hosts.create_host(machine, chameleon_args=chameleon_args) 46 job.run_test('bluetooth_AdapterHIDReports', host=host, device_type='MOUSE', 47 num_iterations=1, min_pass_count=1) 48 49 parallel_simple(run, machines) 50