summaryrefslogtreecommitdiff
path: root/automated/linux/hci-smoke/hci-smoke-test.sh
blob: 454d4fa52cef81460c7c5599aa610e1321b9bec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/sh
#
# HCI smoke tests
#
# Copyright (C) 2017, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Author: Nicolas Dechesne <nicolas.dechesne@linaro.org>
#

# shellcheck disable=SC1091
. ../../lib/sh-test-lib
OUTPUT="$(pwd)/output"
RESULT_FILE="${OUTPUT}/result.txt"
export RESULT_FILE
DEVICE="hci0"
BOOT="enabled"

usage() {
    echo "Usage: $0 [-b <enabled|disabled>] [-d <device>]" 1>&2
    exit 1
}

while getopts "d:b:" o; do
  case "$o" in
    d) DEVICE="${OPTARG}" ;;
    b) BOOT="${OPTARG}" ;;
    *) usage ;;
  esac
done

# sanity test hciconfig config
test_hciconfig() {
    info_msg "Running hciconfig test..."
    hciconfig "${DEVICE}"
    exit_on_fail "hciconfig"
}

# test HCI device is $BOOT at boot
test_hciconfig_boot() {
    info_msg "Running hciconfig_boot test..."

    # rely on distro policy for AutoEnable
    if [ "${BOOT}" = "auto" ]; then
        # get rid of spaces and comments
        sed 's/\s\+//g;/^#/d' /etc/bluetooth/main.conf | grep "^AutoEnable=true"
        if [ "$?" -eq 0 ]; then
            BOOT="enabled"
        else
            BOOT="disabled"
        fi
    fi

    if [ "${BOOT}" = "enabled" ]; then
        hciconfig "${DEVICE}" | grep "UP RUNNING"
    else
        hciconfig "${DEVICE}" | grep "DOWN"
    fi
    check_return "hciconfig-boot-${BOOT}"
}

# test HCI device is up
test_hciconfig_up() {
    info_msg "Running hciconfig-up test..."
    hciconfig "${DEVICE}" up
    sleep 1
    hciconfig "${DEVICE}" | grep "UP RUNNING"
    check_return "hciconfig-up"
}

test_hciconfig_down() {
    info_msg "Running hciconfig-down test..."
    hciconfig "${DEVICE}" down
    sleep 1
    hciconfig "${DEVICE}" | grep DOWN
    check_return "hciconfig-down"
}

# Test run.
! check_root && error_msg "This script must be run as root"
create_out_dir "${OUTPUT}"

info_msg "About to run HCI smoke test..."
info_msg "Output directory: ${OUTPUT}"

# ensure that device is available at boot
test_hciconfig
test_hciconfig_boot
test_hciconfig_down
test_hciconfig_up