blob: 3fbe202636535ae86d6517fd8887e8a6f2303c41 [file] [log] [blame]
Helen Zhangc9ce0142016-06-23 13:55:18 -07001# 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
5from autotest_lib.server import utils
6
7AUTHOR = "Chrome OS Team"
8NAME = "platform_ExternalUsbPeripherals.detect.login_unplug_suspend_plug_resume"
Helen Zhangbf48c092016-07-19 10:36:20 -07009PURPOSE = "Servo based USB peripherals detection test"
Helen Zhangc9ce0142016-06-23 13:55:18 -070010CRITERIA = "This test will fail if any of the actions or checks fail."
11TIME = "SHORT"
12TEST_CATEGORY = "Functional"
13TEST_CLASS = "platform"
14TEST_TYPE = "server"
15ATTRIBUTES = "suite:usb_detect"
16DEPENDENCIES = "servo, usb_detect"
17
18DOC = """
19This test uses servo to connect/disconnect servo USB hub before and
20after events like reboot, login, suspend, resume etc.
21
22The test fails if
23- device is pingable when suspended
24- wrong action passed through action_sequence flag
25- USB detected peripherals are different than expected
26- there is no servo board attached
27- USB peripherals checks(usb_checks below) on command line fail
28Other detection checks can be added for each peripheral
29
30Set of four USB peripherals plugged
31- USB headset
32- USB HD Webcam - should be Logitech HD Pro Webcam C920
33- USB stick with four partitions named ExFAT Ext4 FAT NTFS
34- USB mouse
35- USB 3G modem
36- USB SD card reader(one microSD card plugged)
37- USB connected phone(optional)
38"""
39
40args_dict = utils.args_to_dict(args)
41servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
42
43def run(machine):
44 host = hosts.create_host(machine, servo_args=servo_args)
45
46 repeat = int(args_dict.get("repeat", 1))
47
48 default_actions = str("login,unplug,suspend,plug,resume")
49
50 action_sequence = str(args_dict.get("action_sequence", default_actions))
51
Sridhar Sonti9125c362017-01-12 09:47:58 -080052 usb_list = ["\"Kingston Technology Company Inc.\"",
Helen Zhangc9ce0142016-06-23 13:55:18 -070053 "\"Alcor Micro Corp.\"",
Prasanthi Gangishetty671f8b52018-01-30 15:51:53 -080054 "\"USB PnP Sound Device: USB Audio|C-Media Electronics, Inc.* Audio\"",
Helen Zhangc9ce0142016-06-23 13:55:18 -070055 ]
56 usb_checks = {
57 # USB Audio Output devices
58 str("cras_test_client --dump_server_info | "
59 "awk \"/Output Devices:/,/Output Nodes:/\" | grep -E ") :
Prasanthi Gangishettyd04d0eb2018-01-24 15:30:05 -080060 ["\"USB PnP Sound Device: USB Audio|C-Media USB Headphone Set: USB Audio\"" ],
Helen Zhangc9ce0142016-06-23 13:55:18 -070061 # USB Audio Input devices
62 str("loggedin:cras_test_client --dump_server_info | "
63 "awk \"/Input Devices:/,/Input Nodes:/\" | grep -E ") :
64 ["\"TeckNet: USB Audio|USB 2.0 PC Camera\"",
Prasanthi Gangishettyd04d0eb2018-01-24 15:30:05 -080065 "\"USB PnP Sound Device: USB Audio|C-Media USB Headphone Set: USB Audio\""],
Helen Zhangc9ce0142016-06-23 13:55:18 -070066 # USB stick four partitions volumes
67 "loggedin:ls -l /media/removable/ | grep -i " :
Sridhar Sonti3e2e18c2018-06-20 15:40:53 -070068 ["ExFAT", "Ext4", "FAT", "NTFS"],
Prasanthi Gangishettyaa807e22018-03-30 11:35:57 -070069 # Skipping camera checks
Helen Zhangc9ce0142016-06-23 13:55:18 -070070 # USB Web camera
71 "cat /sys/class/video4linux/video*/name | grep -E " :
72 ["\"TeckNet|USB 2.0 PC Camera\""],
Prasanthi Gangishettyaa807e22018-03-30 11:35:57 -070073 #"eval /usr/local/autotest/tests/camera_V4L2/media_v4l2_test --device=/dev/video$"
74 #"(ls /dev/video* | tail -n1 | cut -b11) | grep -E " :
75 # ["\"TestResolutions pass\""],
Helen Zhangc9ce0142016-06-23 13:55:18 -070076 }
77
78 job.run_test("platform_ExternalUsbPeripherals", host=host,
79 disable_sysinfo=True, client_autotest="desktopui_SimpleLogin",
80 action_sequence=action_sequence, repeat=repeat,
Helen Zhangbf48c092016-07-19 10:36:20 -070081 usb_list=usb_list, usb_checks=usb_checks,
82 tag="detect.login_unplug_suspend_plug_resume")
Helen Zhangc9ce0142016-06-23 13:55:18 -070083
84parallel_simple(run, machines)