Commit | Line | Data |
---|---|---|
a1040187 SM |
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 | ||
77a5caaf | 29 | NUM_TESTS=3 |
a1040187 SM |
30 | |
31 | plan_tests $NUM_TESTS | |
32 | ||
d55d79bd | 33 | data_dir="${BT_TESTS_DATADIR}/cli/convert/auto-source-discovery-grouping" |
a1040187 SM |
34 | plugin_dir="${data_dir}" |
35 | trace_dir="${data_dir}/traces" | |
36 | ||
d8f6e7fb MJ |
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 | |
a1040187 | 46 | |
66024189 | 47 | stdout_expected_file="${data_dir}/stdout.expect" |
77a5caaf SM |
48 | stdout_actual_file=$(mktemp -t stdout-actual.XXXXXX) |
49 | stderr_actual_file=$(mktemp -t actual-stderr.XXXXXX) | |
a1040187 | 50 | |
77a5caaf | 51 | bt_cli "$stdout_actual_file" "$stderr_actual_file" \ |
66024189 SM |
52 | convert --plugin-path "${plugin_dir}" "ABCDE" "${trace_dir}" some_other_non_opt \ |
53 | -c sink.text.details --params='with-metadata=false' | |
77a5caaf SM |
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 | grep -q 'No trace was found based on input `some_other_non_opt`' "$stderr_actual_file" | |
62 | ok "$?" "warning is printed" | |
63 | ||
64 | rm -f "$stdout_actual_file" | |
65 | rm -f "$stderr_actual_file" |