aboutsummaryrefslogtreecommitdiff
path: root/automated/linux/fwts/fwts.sh
blob: 40234031d21ee603931dc935b6b2a2bace7c2dc9 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#!/bin/bash

set -x

# shellcheck disable=SC1091
. ../../lib/sh-test-lib
OUTPUT="$(pwd)/output"
RESULT_FILE="${OUTPUT}/result.txt"
RESULT_LOG="${OUTPUT}/result_log.txt"
TMP_LOG="${OUTPUT}/tmp_log.txt"
TEST_PASS_LOG="${OUTPUT}/test_pass_log.txt"
TEST_FAIL_LOG="${OUTPUT}/test_fail_log.txt"
TEST_SKIP_LOG="${OUTPUT}/test_skip_log.txt"
export RESULT_FILE

TESTS="oops --uefitests"
TEST_PROGRAM=fwts
TEST_PROG_VERSION=
TEST_GIT_URL=https://github.com/ColinIanKing/fwts.git
TEST_DIR="/bin"
SKIP_INSTALL="false"

usage() {
	echo "\
	Usage: [sudo] ./fwts.sh [-t <TESTS>]
				     [-v <TEST_PROG_VERSION>] [-u <TEST_GIT_URL>] [-p <TEST_DIR>]
				     [-s <true|false>]

	<TESTS>:
	Set of tests: 'throughput' benchmarks throughput, while
	'replayed-startup' benchmarks the start-up times of popular
	applications, by replaying their I/O. The replaying saves us
	from meeting all non-trivial dependencies of these applications
	(such as having an X session running). Results are
	indistinguishable w.r.t. to actually starting these applications.
	Default value: \"throughput replayed-startup\"

	<TEST_PROG_VERSION>:
	If this parameter is set, then the ${TEST_PROGRAM} suite is cloned. In
	particular, the version of the suite is set to the commit
	pointed to by the parameter. A simple choice for the value of
	the parameter is, e.g., HEAD. If, instead, the parameter is
	not set, then the suite present in TEST_DIR is used.

	<TEST_GIT_URL>:
	If this parameter is set, then the ${TEST_PROGRAM} suite is cloned
	from the URL in TEST_GIT_URL. Otherwise it is cloned from the
	standard repository for the suite. Note that cloning is done
	only if TEST_PROG_VERSION is not empty

	<TEST_DIR>:
	If this parameter is set, then the ${TEST_PROGRAM} suite is cloned to or
	looked for in TEST_DIR. Otherwise it is cloned to $(pwd)/${TEST_PROGRAM}

	<SKIP_INSTALL>:
	If you already have it installed into the rootfs.
	default: false"
}

while getopts "h:t:p:u:v:s:" opt; do
	case $opt in
		t)
			TESTS="$OPTARG"
			;;
		v)
			TEST_PROG_VERSION="$OPTARG"
			;;
		u)
			if [[ "$OPTARG" != '' ]]; then
				TEST_GIT_URL="$OPTARG"
			fi
			;;
		p)
			if [[ "$OPTARG" != '' ]]; then
				TEST_DIR="$OPTARG"
			fi
			;;
		s)
			SKIP_INSTALL="${OPTARG}"
			;;
		h)
			usage
			exit 0
			;;
		*)
			usage
			exit 1
			;;
	esac
done

install() {
	dist=
	dist_name
	case "${dist}" in
		debian|ubuntu)
			pkgs="git fio sysstat libaio-dev gawk coreutils bc psmisc g++ \
				autoconf automake libglib2.0-dev libtool libpcre3-dev \
				flex bison dkms libfdt-dev libbsd-dev"
			install_deps "${pkgs}" "${SKIP_INSTALL}"
			;;
		fedora|centos)
			pkgs="fio sysstat libaio-devel gawk coreutils bc \
				  psmisc gcc-c++ git-core autoconf automake glib-devel \
				  libtool pcre-devel flex bison dkms libfdt-devel libbsd-devel"
			install_deps "${pkgs}" "${SKIP_INSTALL}"
			;;
		# When build do not have package manager
		# Assume dependencies pre-installed
		*)
			echo "Unsupported distro: ${dist}! Package installation skipped!"
			;;
	esac
}

# Parse fwts test results
parse_fwts_test_results() {
	grep -a -E "PASSED" "${RESULT_LOG}" | tee -a "${TEST_PASS_LOG}"
	sed -i -e 's/(//g' "${TEST_PASS_LOG}"
	sed -i -e 's/)//g' "${TEST_PASS_LOG}"
	sed -i -e 's/://g' "${TEST_PASS_LOG}"
	sed -i -e 's/,//g' "${TEST_PASS_LOG}"
	sed -i -e 's/\\//g' "${TEST_PASS_LOG}"
	sed -i -e 's/\//-/g' "${TEST_PASS_LOG}"
	awk '{for (i=2; i<NF; i++) printf $i "-"; print $i " " $1}' "${TEST_PASS_LOG}" 2>&1 | tee -a "${RESULT_FILE}"
	sed -i -e 's/PASSED/pass/g' "${RESULT_FILE}"

	grep -a -E "Failed" "${RESULT_LOG}" | tee -a "${TEST_FAIL_LOG}"
	sed -i -e 's/\[[0-9]*m//g' "${TEST_FAIL_LOG}"
	sed -i -e 's/(//g' "${TEST_FAIL_LOG}"
	sed -i -e 's/)//g' "${TEST_FAIL_LOG}"
	sed -i -e 's/://g' "${TEST_FAIL_LOG}"
	sed -i -e 's/,//g' "${TEST_FAIL_LOG}"
	sed -i -e 's/\\//g' "${TEST_FAIL_LOG}"
	sed -i -e 's/\//-/g' "${TEST_FAIL_LOG}"
	awk '{for (i=2; i<NF; i++) printf $i "-"; print $i " " $1}' "${TEST_FAIL_LOG}" 2>&1 | tee -a "${RESULT_FILE}"
	sed -i -e 's/Failed/fail/g' "${RESULT_FILE}"

	grep -a -E "SKIPPED" "${RESULT_LOG}" | tee -a "${TEST_SKIP_LOG}"
	sed -i -e 's/\[[0-9]*m//g' "${TEST_SKIP_LOG}"
	sed -i -e 's/(//g' "${TEST_SKIP_LOG}"
	sed -i -e 's/)//g' "${TEST_SKIP_LOG}"
	sed -i -e 's/://g' "${TEST_SKIP_LOG}"
	sed -i -e 's/,//g' "${TEST_SKIP_LOG}"
	sed -i -e 's/\\//g' "${TEST_SKIP_LOG}"
	sed -i -e 's/\//-/g' "${TEST_SKIP_LOG}"
	awk '{for (i=2; i<NF; i++) printf $i "-"; print $i " " $1}' "${TEST_SKIP_LOG}" 2>&1 | tee -a "${RESULT_FILE}"
	sed -i -e 's/SKIPPED/skip/g' "${RESULT_FILE}"

	# Clean up
	rm -rf "${TMP_LOG}" "${RESULT_LOG}" "${TEST_PASS_LOG}" "${TEST_FAIL_LOG}" "${TEST_SKIP_LOG}"
}

build_install_tests() {
	pushd "${TEST_DIR}" || exit 1
	autoreconf -ivf
	./configure --prefix=/
	make -j"$(nproc)" all
	make install
	popd || exit 1
}

run_test() {

	# Double quote to prevent globbing and word splitting.
	# In this case we don't want to add extra quote since that can make the
	# string get splitted.
	# shellcheck disable=SC2086
	fwts ${TESTS} - 2>&1 | tee -a "${RESULT_LOG}"
	parse_fwts_test_results
}

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

# Install and run test

if [ "${SKIP_INSTALL}" = "true" ] || [ "${SKIP_INSTALL}" = "True" ]; then
	info_msg "${TEST_PROGRAM} installation skipped altogether"
else
	install
fi

if ! (which fwts); then
	get_test_program "${TEST_GIT_URL}" "${TEST_DIR}" "${TEST_PROG_VERSION}" "${TEST_PROGRAM}"
	build_install_tests
fi
run_test "${TESTS}"