Test the trimmer component
[babeltrace.git] / tests / cli / test_trimmer.in
CommitLineData
e5a54f3f
JD
1#!/bin/bash
2#
3# Copyright (C) - 2017 Julien Desfossez <jdesfossez@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
18BABELTRACE_BIN=@abs_top_builddir@/cli/babeltrace
19
20TRACE_PATH=@abs_top_srcdir@/tests/ctf-traces/succeed/wk-heartbeat-u/
21
22source @abs_top_srcdir@/tests/utils/tap/tap.sh
23
24NUM_TESTS=10
25
26plan_tests $NUM_TESTS
27
28tmp_out=$(mktemp)
29
30$BABELTRACE_BIN --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \
31 ${TRACE_PATH} >/dev/null 2>&1
32ok $? "Read the trace with the trimmer enabled"
33
34$BABELTRACE_BIN --clock-gmt --begin 17:48:17.587029529 ${TRACE_PATH} \
35 2>/dev/null >${tmp_out}
36ok $? "Running with --begin"
37cnt=$(cat ${tmp_out} | wc -l)
38test $cnt == 18
39ok $? "Expected number of events after trimming begin and end"
40
41$BABELTRACE_BIN --clock-gmt --end 17:48:17.588680018 ${TRACE_PATH} \
42 2>/dev/null >${tmp_out}
43ok $? "Running with --end"
44cnt=$(cat ${tmp_out} | wc -l)
45test $cnt == 9
46ok $? "Expected number of events after trimming end"
47
48$BABELTRACE_BIN --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \
49 ${TRACE_PATH} 2>/dev/null >${tmp_out}
50ok $? "Running with --begin and --end"
51cnt=$(cat ${tmp_out} | wc -l)
52test $cnt == 7
53ok $? "Expected number of events after trimming begin and end"
54
55$BABELTRACE_BIN --clock-gmt --begin 18:48:17.587029529 ${TRACE_PATH} \
56 2>/dev/null >${tmp_out}
57ok $? "Running with --begin out of range"
58cnt=$(cat ${tmp_out} | wc -l)
59test $cnt == 0
60ok $? "No event output when begin is after the end of the trace"
61
62$BABELTRACE_BIN --clock-gmt --end 16:48:17.588680018 ${TRACE_PATH} \
63 2>/dev/null >${tmp_out}
64cnt=$(cat ${tmp_out} | wc -l)
65test $cnt == 0
66ok $? "No event output when end is before the beginning of the trace"
67
68rm ${tmp_out}
This page took 0.025131 seconds and 4 git commands to generate.