tests: improve debuggability of `cli/test-trace-copy.sh`
[babeltrace.git] / tests / cli / test-trace-copy.sh
CommitLineData
5177c351
JD
1#!/bin/bash
2#
0235b0db 3# SPDX-License-Identifier: GPL-2.0-only
5177c351 4#
0235b0db 5# Copyright (C) 2017 Julien Desfossez <jdesfossez@efficios.com>
5177c351 6#
5177c351 7
644e0364
MJ
8SH_TAP=1
9
75e396f6 10if [ -n "${BT_TESTS_SRCDIR:-}" ]; then
644e0364
MJ
11 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
12else
13 UTILSSH="$(dirname "$0")/../utils/utils.sh"
14fi
15
16# shellcheck source=../utils/utils.sh
17source "$UTILSSH"
5177c351 18
95a4b348 19clean_tmp() {
bfa3d907 20 rm -rf "${out_path}" "${text_output1}" "${text_output2_intermediary}" "${text_output2}" "${stderr_file}"
95a4b348
MJ
21}
22
6b66b7a9 23SUCCESS_TRACES=("${BT_CTF_TRACES_PATH}/succeed/"*)
5177c351 24
524e73a1
FD
25# -4 because there are two empty traces that we skip
26NUM_TESTS=$((${#SUCCESS_TRACES[@]} * 3 - 4))
5177c351
JD
27
28plan_tests $NUM_TESTS
29
03f007c8
MJ
30for path in "${SUCCESS_TRACES[@]}"; do
31 out_path="$(mktemp -d)"
32 text_output1="$(mktemp)"
1f8a8691 33 text_output2_intermediary="$(mktemp)"
03f007c8 34 text_output2="$(mktemp)"
bfa3d907 35 stderr_file="$(mktemp)"
03f007c8 36 trace="$(basename "${path}")"
95a4b348 37 sort_cmd="cat" # by default do not sort the trace
03f007c8 38
1f8a8691 39 bt_cli "${text_output1}" "/dev/null" --no-delta "${path}"
03f007c8
MJ
40 ret=$?
41 cnt="$(wc -l < "${text_output1}")"
644e0364 42 if test "$ret" == 0 && test "${cnt// /}" == 0; then
95a4b348
MJ
43 pass "Empty trace ${trace}, nothing to copy"
44 clean_tmp
c22ffa09
JD
45 continue
46 fi
5177c351 47
95a4b348
MJ
48 # If the trace has a timestamp (starts with [), check if there are
49 # duplicate timestamps in the output.
50 # If there are, we have to sort the text output to make sure it is
51 # always the same.
407d3b10 52 head -1 "${text_output1}" | bt_grep "^\[" >/dev/null
95a4b348 53 if test $? = 0; then
4656d91f 54 # shellcheck disable=SC2016
644e0364 55 uniq_ts_cnt="$("${BT_TESTS_AWK_BIN}" '{ print $1 }' < "${text_output1}" | sort | uniq | wc -l)"
95a4b348
MJ
56 # Extract only the timestamp columns and compare the number of
57 # unique lines with the total number of lines to see if there
58 # are duplicate timestamps.
644e0364 59 if test "${cnt// /}" != "${uniq_ts_cnt// /}"; then
95a4b348
MJ
60 diag "Trace with non unique timestamps, sorting the output"
61 sort_cmd="sort"
62 tmp="$(mktemp)"
63 sort "${text_output1}" > "$tmp"
64 rm "${text_output1}"
65 text_output1="$tmp"
66 fi
67 fi
68
bfa3d907
SM
69 bt_cli "/dev/null" "${stderr_file}" "${path}" --component sink.ctf.fs "--params=path=\"${out_path}\""
70 if ! ok $? "Copy trace ${trace} with ctf-fs sink"; then
71 diag "stderr:"
72 diag_file "${stderr_file}"
73 fi
74
75 bt_cli "/dev/null" "${stderr_file}" "${out_path}"
76 if ! ok $? "Read the new trace in ${out_path}"; then
77 diag "stderr:"
78 diag_file "${stderr_file}"
79 fi
5177c351 80
bfa3d907
SM
81 if ! bt_cli "${text_output2_intermediary}" "${stderr_file}" --no-delta "${out_path}"; then
82 diag "stderr:"
83 diag_file "${stderr_file}"
84 fi
5177c351 85
1f8a8691 86 $sort_cmd "${text_output2_intermediary}" > "${text_output2}"
bfa3d907 87 bt_diff "${text_output1}" "${text_output2}"
c22ffa09 88 ok $? "Exact same content between the two traces"
5177c351 89
95a4b348 90 clean_tmp
5177c351 91done
This page took 0.073155 seconds and 4 git commands to generate.