tests: silence "variable/expression in single quote" shellcheck warnings
[babeltrace.git] / tests / cli / convert / test_auto_source_discovery_grouping
1 #!/bin/bash
2 #
3 # Copyright (C) 2019 Simon Marchi <simon.marchi@efficios.com>
4 #
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License, version 2 only, as
7 # published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 # more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # this program; if not, write to the Free Software Foundation, Inc., 51
16 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 # Test the auto source disovery mechanism of the CLI.
19
20 if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then
21 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
22 else
23 UTILSSH="$(dirname "$0")/../../utils/utils.sh"
24 fi
25
26 # shellcheck source=../../utils/utils.sh
27 SH_TAP=1 source "$UTILSSH"
28
29 NUM_TESTS=3
30
31 plan_tests $NUM_TESTS
32
33 data_dir="${BT_TESTS_DATADIR}/auto-source-discovery/grouping"
34 plugin_dir="${data_dir}"
35 trace_dir="${data_dir}/traces"
36
37 if [ "$BT_OS_TYPE" = "mingw" ]; then
38 # Use Windows native paths for comparison because Unix
39 # paths are converted by the shell before they are passed
40 # to the native babeltrace2 binary.
41 trace_dir=$(cygpath -w "$trace_dir")
42 dir_sep='\'
43 else
44 dir_sep='/'
45 fi
46
47 stdout_expected_file="${BT_TESTS_DATADIR}/cli/convert/auto-source-discovery-grouping.expect"
48 stdout_actual_file=$(mktemp -t stdout-actual.XXXXXX)
49 stderr_actual_file=$(mktemp -t actual-stderr.XXXXXX)
50
51 bt_cli "$stdout_actual_file" "$stderr_actual_file" \
52 --plugin-path "${plugin_dir}" convert "ABCDE" "${trace_dir}" some_other_non_opt \
53 -c sink.text.details --params='with-metadata=false'
54 ok "$?" "CLI runs successfully"
55
56 # Check components and their inputs.
57 bt_diff "$stdout_expected_file" "$stdout_actual_file"
58 ok "$?" "expected components are instantiated with expected inputs"
59
60 # Check that expected warning is printed.
61 # shellcheck disable=SC2016
62 grep -q 'No trace was found based on input `some_other_non_opt`' "$stderr_actual_file"
63 ok "$?" "warning is printed"
64
65 rm -f "$stdout_actual_file"
66 rm -f "$stderr_actual_file"
This page took 0.030585 seconds and 4 git commands to generate.