Cleanup: clock-snapshot.c: logically dead code
[babeltrace.git] / tests / utils / utils.sh
CommitLineData
644e0364
MJ
1#!/bin/bash
2
3# Copyright (c) 2019 Michael Jeanson <mjeanson@efficios.com>
4# Copyright (C) 2019 Philippe Proulx <pproulx@efficios.com>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; under version 2 of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License along
16# with this program; if not, write to the Free Software Foundation, Inc.,
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19# This file is meant to be sourced at the start of shell script-based tests.
20
21
22# Error out when encountering an undefined variable
23set -u
24
9c5dd55a
MJ
25# If "readlink -f" is available, get a resolved absolute path to the
26# tests source dir, otherwise make do with a relative path.
644e0364 27scriptdir="$(dirname "${BASH_SOURCE[0]}")"
9c5dd55a
MJ
28if readlink -f "." >/dev/null 2>&1; then
29 testsdir=$(readlink -f "$scriptdir/..")
30else
31 testsdir="$scriptdir/.."
32fi
644e0364 33
5058d31b
JR
34# The OS on which we are running. See [1] for possible values of 'uname -s'.
35# We do a bit of translation to ease our life down the road for comparison.
36# Export it so that called executables can use it.
37# [1] https://en.wikipedia.org/wiki/Uname#Examples
38if [ "x${BT_OS_TYPE:-}" = "x" ]; then
39 BT_OS_TYPE="$(uname -s)"
40 case "$BT_OS_TYPE" in
41 MINGW*)
42 BT_OS_TYPE="mingw"
43 ;;
44 Darwin)
45 BT_OS_TYPE="darwin"
46 ;;
47 Linux)
48 BT_OS_TYPE="linux"
49 ;;
df9db467
JR
50 CYGWIN*)
51 BT_OS_TYPE="cygwin"
52 ;;
5058d31b
JR
53 *)
54 BT_OS_TYPE="unsupported"
55 ;;
56 esac
57fi
58export BT_OS_TYPE
59
644e0364
MJ
60# Allow overriding the source and build directories
61if [ "x${BT_TESTS_SRCDIR:-}" = "x" ]; then
9c5dd55a 62 BT_TESTS_SRCDIR="$testsdir"
644e0364
MJ
63fi
64export BT_TESTS_SRCDIR
65
66if [ "x${BT_TESTS_BUILDDIR:-}" = "x" ]; then
9c5dd55a 67 BT_TESTS_BUILDDIR="$testsdir"
644e0364
MJ
68fi
69export BT_TESTS_BUILDDIR
70
71# By default, it will not source tap.sh. If you to tap output directly from
72# the test script, define the 'SH_TAP' variable to '1' before sourcing this
73# script.
74if [ "x${SH_TAP:-}" = x1 ]; then
1d970e04 75 # shellcheck source=./tap/tap.sh
644e0364
MJ
76 . "${BT_TESTS_SRCDIR}/utils/tap/tap.sh"
77fi
78
79# Allow overriding the babeltrace2 executables
80if [ "x${BT_TESTS_BT2_BIN:-}" = "x" ]; then
4881a20e 81 BT_TESTS_BT2_BIN="$BT_TESTS_BUILDDIR/../src/cli/babeltrace2"
5058d31b 82 if [ "$BT_OS_TYPE" = "mingw" ]; then
27e2c58d
JR
83 BT_TESTS_BT2_BIN="${BT_TESTS_BT2_BIN}.exe"
84 fi
644e0364
MJ
85fi
86export BT_TESTS_BT2_BIN
87
644e0364
MJ
88# TODO: Remove when bindings/python/bt2/test_plugin.py is fixed
89BT_PLUGINS_PATH="${BT_TESTS_BUILDDIR}/../src/plugins"
90
91# Allow overriding the babeltrace2 plugin path
92if [ "x${BT_TESTS_BABELTRACE_PLUGIN_PATH:-}" = "x" ]; then
93 BT_TESTS_BABELTRACE_PLUGIN_PATH="${BT_PLUGINS_PATH}/ctf:${BT_PLUGINS_PATH}/utils:${BT_PLUGINS_PATH}/text"
94fi
95
b14c7bf1
MJ
96if [ "x${BT_TESTS_PROVIDER_DIR:-}" = "x" ]; then
97 BT_TESTS_PROVIDER_DIR="${BT_TESTS_BUILDDIR}/../src/python-plugin-provider/.libs"
98fi
99
644e0364
MJ
100# Allow overriding the babeltrace2 executables
101if [ "x${BT_TESTS_PYTHONPATH:-}" = "x" ]; then
102 BT_TESTS_PYTHONPATH="${BT_TESTS_BUILDDIR}/../src/bindings/python/bt2/build/build_lib"
103fi
104
105
106### External Tools ###
107if [ "x${BT_TESTS_AWK_BIN:-}" = "x" ]; then
108 BT_TESTS_AWK_BIN="awk"
109fi
110export BT_TESTS_AWK_BIN
111
112if [ "x${BT_TESTS_GREP_BIN:-}" = "x" ]; then
113 BT_TESTS_GREP_BIN="grep"
114fi
115export BT_TESTS_GREP_BIN
116
117if [ "x${BT_TESTS_PYTHON_BIN:-}" = "x" ]; then
118 BT_TESTS_PYTHON_BIN="python3"
119fi
120export BT_TESTS_PYTHON_BIN
121
e23e08c4
MJ
122if [ "x${BT_TESTS_PYTHON_CONFIG_BIN:-}" = "x" ]; then
123 BT_TESTS_PYTHON_CONFIG_BIN="python3-config"
124fi
242ddcb7 125export BT_TESTS_PYTHON_CONFIG_BIN
e23e08c4 126
644e0364
MJ
127if [ "x${BT_TESTS_SED_BIN:-}" = "x" ]; then
128 BT_TESTS_SED_BIN="sed"
129fi
130export BT_TESTS_SED_BIN
131
132
133# Data files path
134BT_TESTS_DATADIR="${BT_TESTS_SRCDIR}/data"
135BT_CTF_TRACES_PATH="${BT_TESTS_DATADIR}/ctf-traces"
644e0364 136
22703f66
SM
137# Run the Babeltrace CLI, redirecting stdout and stderr to specified files.
138#
139# $1: file to redirect stdout to
140# $2: file to redirect stderr to
141# remaining args: arguments to pass to the CLI
142#
143# Return the exit code of the CLI.
144
145bt_cli() {
146 local stdout_file="$1"
147 local stderr_file="$2"
148 shift 2
149 local args=("$@")
150
ea458b95 151 echo "Running: $BT_TESTS_BT2_BIN ${args[*]}" >&2
22703f66
SM
152 run_python_bt2 "$BT_TESTS_BT2_BIN" "${args[@]}" 1>"$stdout_file" 2>"$stderr_file"
153}
644e0364
MJ
154
155### Diff Functions ###
156
a70b6702
SM
157# Check the differences between two files (typically some expected output vs
158# some actual output). If there are differences, print the diff to stderr.
ff89ed28 159#
a70b6702
SM
160# $1: file 1 (expected)
161# $2: file 2 (actual)
ff89ed28 162#
ea458b95 163# Return 0 if there's no difference, and non-zero if there are.
ff89ed28 164#
a70b6702
SM
165# Note that this function modifies the actual output file ($2) _in-place_ to
166# remove any \r character.
167
ff89ed28 168bt_diff() {
a70b6702
SM
169 local expected_file="$1"
170 local actual_file="$2"
ff89ed28 171 local ret=0
ff89ed28
MJ
172
173 # Strip any \r present due to Windows (\n -> \r\n).
174 # "diff --string-trailing-cr" is not used since it is not present on
175 # Solaris.
a70b6702 176 "$BT_TESTS_SED_BIN" -i 's/\r//g' "$actual_file"
ff89ed28 177
ea458b95 178 diff -u "$expected_file" "$actual_file" 1>&2
ff89ed28 179
ea458b95 180 return $?
ff89ed28
MJ
181}
182
58db335e
FD
183# Checks the difference between:
184#
185# 1. What the CLI outputs on its standard output when given the arguments
186# "$@" (excluding the first two arguments).
187# 2. The file with path "$1".
188#
189# And the difference between:
190#
191# 1. What the CLI outputs on its standard error when given the arguments
192# "$@" (excluding the first two arguments).
193# 2. The file with path "$2".
644e0364
MJ
194#
195# Returns 0 if there's no difference, and 1 if there is, also printing
196# said difference to the standard error.
197bt_diff_cli() {
58db335e
FD
198 local expected_stdout_file="$1"
199 local expected_stderr_file="$2"
200 shift 2
53cc240b
MJ
201 local args=("$@")
202
58db335e
FD
203 local temp_stdout_output_file
204 local temp_stderr_output_file
644e0364 205 local ret=0
a70b6702
SM
206 local ret_stdout
207 local ret_stderr
644e0364 208
ff89ed28
MJ
209 temp_stdout_output_file="$(mktemp -t actual_stdout.XXXXXX)"
210 temp_stderr_output_file="$(mktemp -t actual_stderr.XXXXXX)"
644e0364 211
58db335e 212 # Run the CLI to get a detailed file.
22703f66 213 bt_cli "$temp_stdout_output_file" "$temp_stderr_output_file" "${args[@]}"
58db335e 214
a70b6702
SM
215 bt_diff "$expected_stdout_file" "$temp_stdout_output_file" "${args[@]}"
216 ret_stdout=$?
217 bt_diff "$expected_stderr_file" "$temp_stderr_output_file" "${args[@]}"
218 ret_stderr=$?
219
220 if ((ret_stdout != 0 || ret_stderr != 0)); then
221 ret=1
222 fi
58db335e 223
ff89ed28 224 rm -f "$temp_stdout_output_file" "$temp_stderr_output_file"
644e0364 225
ff89ed28
MJ
226 return $ret
227}
228
53cc240b
MJ
229# Checks the difference between the content of the file with path "$1"
230# and the output of the CLI when called on the directory path "$2" with
231# the arguments '-c sink.text.details' and the rest of the arguments to
232# this function.
644e0364
MJ
233#
234# Returns 0 if there's no difference, and 1 if there is, also printing
235# said difference to the standard error.
236bt_diff_details_ctf_single() {
58db335e 237 local expected_stdout_file="$1"
53cc240b
MJ
238 local trace_dir="$2"
239 shift 2
240 local extra_details_args=("$@")
58db335e 241 expected_stderr_file="/dev/null"
644e0364
MJ
242
243 # Compare using the CLI with `sink.text.details`
58db335e 244 bt_diff_cli "$expected_stdout_file" "$expected_stderr_file" "$trace_dir" "-c" "sink.text.details" "${extra_details_args[@]}"
644e0364
MJ
245}
246
247# Calls bt_diff_details_ctf_single(), except that "$1" is the path to a
248# program which generates the CTF trace to compare to. The program "$1"
249# receives the path to a temporary, empty directory where to write the
250# CTF trace as its first argument.
251bt_diff_details_ctf_gen_single() {
252 local ctf_gen_prog_path="$1"
58db335e 253 local expected_stdout_file="$2"
53cc240b
MJ
254 shift 2
255 local extra_details_args=("$@")
644e0364
MJ
256
257 local temp_trace_dir
258 local ret
259
260 temp_trace_dir="$(mktemp -d)"
261
262 # Run the CTF trace generator program to get a CTF trace
263 if ! "$ctf_gen_prog_path" "$temp_trace_dir" 2>/dev/null; then
264 echo "ERROR: \"$ctf_gen_prog_path\" \"$temp_trace_dir\" failed" >&2
265 rm -rf "$temp_trace_dir"
266 return 1
267 fi
268
269 # Compare using the CLI with `sink.text.details`
58db335e 270 bt_diff_details_ctf_single "$expected_stdout_file" "$temp_trace_dir" "${extra_details_args[@]}"
644e0364
MJ
271 ret=$?
272 rm -rf "$temp_trace_dir"
273 return $ret
274}
275
276
277### Functions ###
278
279check_coverage() {
280 coverage run "$@"
281}
282
283# Execute a shell command in the appropriate environment to have access to the
284# bt2 Python bindings.
285run_python_bt2() {
e23e08c4
MJ
286 local env_args
287
288 env_args=(
289 "BABELTRACE_PYTHON_BT2_NO_TRACEBACK=1" \
290 "BABELTRACE_PLUGIN_PATH=${BT_TESTS_BABELTRACE_PLUGIN_PATH}" \
291 "LIBBABELTRACE2_PLUGIN_PROVIDER_DIR=${BT_TESTS_PROVIDER_DIR}" \
f3c9a159 292 "BT_TESTS_DATADIR=${BT_TESTS_DATADIR}" \
e23e08c4
MJ
293 "BT_CTF_TRACES_PATH=${BT_CTF_TRACES_PATH}" \
294 "BT_PLUGINS_PATH=${BT_PLUGINS_PATH}" \
295 "PYTHONPATH=${BT_TESTS_PYTHONPATH}:${BT_TESTS_SRCDIR}/utils/python"
296 )
644e0364 297
0408934a
SM
298 local main_lib_path="${BT_TESTS_BUILDDIR}/../src/lib/.libs"
299
644e0364 300 # Set the library search path so the python interpreter can load libbabeltrace2
df9db467 301 if [ "$BT_OS_TYPE" = "mingw" ] || [ "$BT_OS_TYPE" = "cygwin" ]; then
e23e08c4 302 env_args+=("PATH=${main_lib_path}:${PATH:-}")
5058d31b 303 elif [ "$BT_OS_TYPE" = "darwin" ]; then
e23e08c4 304 env_args+=("DYLD_LIBRARY_PATH=${main_lib_path}:${DYLD_LIBRARY_PATH:-}")
644e0364 305 else
e23e08c4
MJ
306 env_args+=("LD_LIBRARY_PATH=${main_lib_path}:${LD_LIBRARY_PATH:-}")
307 fi
308
309 # On Windows, an embedded Python interpreter needs a way to locate the path
310 # to it's internal modules, set the prefix from python-config to the
311 # PYTHONHOME variable.
312 if [ "$BT_OS_TYPE" = "mingw" ]; then
313 env_args+=("PYTHONHOME=$($BT_TESTS_PYTHON_CONFIG_BIN --prefix)")
644e0364
MJ
314 fi
315
e23e08c4 316 env "${env_args[@]}" "$@"
644e0364
MJ
317}
318
319# Set the environment and run python tests in the directory.
320#
321# $1 : The directory containing the python test scripts
322# $2 : The pattern to match python test script names (optional)
644e0364
MJ
323run_python_bt2_test() {
324 local test_dir="$1"
a818a617 325 local test_pattern="${2:-'*'}" # optional, if none default to "*"
644e0364
MJ
326
327 local ret
328 local test_runner_args=()
329
330 test_runner_args+=("$test_dir")
331 if [ "x${test_pattern}" != "x" ]; then
332 test_runner_args+=("${test_pattern}")
333 fi
334
335 if test "x${BT_TESTS_COVERAGE:-}" = "x1"; then
336 python_exec="check_coverage"
337 else
338 python_exec="${BT_TESTS_PYTHON_BIN}"
339 fi
340
341 run_python_bt2 \
342 "${python_exec}" \
343 "${BT_TESTS_SRCDIR}/utils/python/testrunner.py" \
a818a617
FD
344 --pattern "$test_pattern" \
345 "$test_dir" \
346
644e0364
MJ
347 ret=$?
348
349 if test "x${BT_TESTS_COVERAGE_REPORT:-}" = "x1"; then
350 coverage report -m
351 fi
352
353 if test "x${BT_TESTS_COVERAGE_HTML:-}" = "x1"; then
354 coverage html
355 fi
356
357 return $ret
358}
This page took 0.044297 seconds and 4 git commands to generate.