Tests: use babeltrace2 for all tests
[lttng-tools.git] / tests / regression / tools / tracefile-limits / test_tracefile_count
CommitLineData
d946d662
CB
1#!/bin/bash
2#
9d16b343 3# Copyright (C) 2013 Christian Babeux <christian.babeux@efficios.com>
1f3d1fcc 4# Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
d946d662 5#
9d16b343 6# SPDX-License-Identifier: LGPL-2.1-only
d946d662
CB
7
8TEST_DESC="Tracefile count limits"
9
1f3d1fcc 10CURDIR=$(dirname "$0")/
d946d662
CB
11TESTDIR=$CURDIR/../../..
12
13TESTAPP_PATH="$TESTDIR/utils/testapp"
14TESTAPP_NAME="gen-ust-events"
15TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
16
17STATS_BIN="$TESTDIR/utils/babelstats.pl"
d7ee608c 18NUM_TESTS=74
d40d4ff6 19
1f3d1fcc 20NUM_CPUS=$(nproc)
3b0246b4 21PAGE_SIZE=$(getconf PAGE_SIZE)
1f3d1fcc 22TRACEFILE_SIZE=$PAGE_SIZE
d946d662 23
1f3d1fcc 24source "$TESTDIR"/utils/utils.sh
d946d662
CB
25
26if [ ! -x "$TESTAPP_BIN" ]; then
27 BAIL_OUT "No UST events binary detected."
28fi
29
d946d662
CB
30function enable_lttng_channel_count_limit ()
31{
32 sess_name="$1"
33 channel_name="$2"
34 tracefile_count_limit="$3"
35
1f3d1fcc
JG
36 test_name="Enable channel \`$channel_name\` "
37 test_name+="for session \`$sess_name\`: "
d946d662
CB
38 test_name+="$tracefile_count_limit tracefiles"
39
1f3d1fcc
JG
40 "$TESTDIR"/../src/bin/lttng/"$LTTNG_BIN" enable-channel \
41 -u "$channel_name" -s "$sess_name" \
42 --subbuf-size "$PAGE_SIZE" \
43 --tracefile-size "$TRACEFILE_SIZE" \
44 --tracefile-count "$tracefile_count_limit" >/dev/null 2>&1
d946d662
CB
45
46 ok $? "$test_name"
47}
48
1f3d1fcc 49function validate_min_max ()
d946d662
CB
50{
51 stats="$1"
52 field="$2"
53 expected_min="$3"
54 expected_max="$4"
55
56 echo $stats | grep -q -E "$field $expected_min $expected_max"
57 return $?
58}
59
1f3d1fcc 60function get_total_stream_file_size ()
d946d662 61{
1f3d1fcc
JG
62 local trace_path="$1"
63 local stream_name_pattern="$2"
64 local size
65
66 size=$(find "$trace_path" -type f -regex "$stream_name_pattern" -exec du -b -c {} + | tail -n1 | cut -f 1)
67 echo "$size"
d946d662
CB
68}
69
1f3d1fcc 70function get_stream_file_count ()
d946d662 71{
1f3d1fcc
JG
72 local trace_path="$1"
73 local stream_name_pattern="$2"
74 local count
d946d662 75
1f3d1fcc
JG
76 count=$(find "$trace_path" -type f -regex "$stream_name_pattern" | wc -l)
77 echo "$count"
78}
d946d662 79
1f3d1fcc
JG
80function test_tracefile_count_limit ()
81{
82 local count_limit="$1"
83
84 local channel_name="channel"
85 local cpuno=$((RANDOM % NUM_CPUS))
86 local event_name="tp:tptest"
87 local expected_size=$((count_limit * TRACEFILE_SIZE))
88 local num_iter=100000
89 local previous_stream_size=-1
90 local session_name
91 local stream_pattern=".*${channel_name}_${cpuno}_[0-9]*"
92 local stream_size=0
33e55711 93 local trace_path=$(mktemp --tmpdir -d "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
d946d662 94
1f3d1fcc 95 session_name=$(randstring 16 0)
d946d662 96
1f3d1fcc 97 diag "Test tracefile count limit : CPU $cpuno, $count_limit tracefiles, expecting a maximum of $expected_size bytes per CPU"
d946d662 98
1f3d1fcc 99 create_lttng_session_ok "$session_name" "$trace_path"
d946d662 100
1f3d1fcc
JG
101 enable_lttng_channel_count_limit \
102 "$session_name" "$channel_name" "$count_limit"
103
104 enable_ust_lttng_event_ok \
105 "$session_name" "$event_name" "$channel_name"
106
107 # Run the test app until the total stream size stops changing the
108 # expected size is exceeded (error).
109 #
110 # The `$stream_size` will not stabilize until the trace file count
111 # limit is reached. This is guaranteed by the use of start/produce/stop
112 # cycles forcing the consumption of buffers, preventing unwanted stall
113 # in stream size.
114 while [ "$stream_size" -ne "$previous_stream_size" ]; do
115 start_lttng_tracing_notap "$session_name"
116 taskset -c "$cpuno" "$TESTAPP_BIN" -i "$num_iter" >/dev/null 2>&1
117 stop_lttng_tracing_notap "$session_name"
118
119 previous_stream_size="$stream_size"
120 stream_size=$(get_total_stream_file_size "$trace_path" "$stream_pattern")
121 diag "Completed an iteration: previous size = $previous_stream_size bytes, new size = $stream_size bytes"
122
123 if [ "$stream_size" -gt "$expected_size" ]; then
124 diag "Total size for CPU $cpuno exceeds expected size: stream size = $stream_size bytes, expected size = $expected_size"
125 break
126 fi
127 done
d946d662 128
1f3d1fcc 129 destroy_lttng_session_ok "$session_name"
d946d662 130
1f3d1fcc
JG
131 [ "$expected_size" -eq "$stream_size" ]
132 ok $? "Total stream size of CPU $cpuno is $expected_size"
d946d662 133
1f3d1fcc
JG
134 [ "$(get_stream_file_count "$trace_path" "$stream_pattern")" -eq "$count_limit" ]
135 ok $? "Stream meets the trace file limit of $count_limit"
d946d662 136
c125de8f 137 stats=`"$BABELTRACE_BIN" $trace_path | $STATS_BIN --tracepoint $event_name`
d946d662
CB
138
139 validate_min_max "$stats" "intfield" "[0-9]+" "$expected_max"
140 ok $? "Trace validation - intfield"
141
142 validate_min_max "$stats" "netintfield" "[0-9]+" "$expected_max"
143 ok $? "Trace validation - netintfield"
144
145 validate_min_max "$stats" "longfield" "[0-9]+" "$expected_max"
146 ok $? "Trace validation - longfield"
147
1f3d1fcc 148 rm -rf "$trace_path"
d946d662
CB
149}
150
d40d4ff6
CB
151LIMITS=("1" "2" "4" "8" "10" "16" "32" "64")
152
1f3d1fcc 153plan_tests $NUM_TESTS
d946d662
CB
154
155print_test_banner "$TEST_DESC"
156
c125de8f
FD
157bail_out_if_no_babeltrace
158
d946d662
CB
159start_lttng_sessiond
160
1f3d1fcc 161for limit in "${LIMITS[@]}";
d946d662 162do
1f3d1fcc 163 test_tracefile_count_limit "$limit"
d946d662
CB
164done
165
166stop_lttng_sessiond
This page took 0.047591 seconds and 4 git commands to generate.