Fix test: add custom output redirector to utils.sh
[lttng-tools.git] / tests / utils / utils.sh
... / ...
CommitLineData
1#!/src/bin/bash
2#
3# Copyright (C) - 2012 David Goulet <dgoulet@efficios.com>
4#
5# This library is free software; you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License as published by the Free
7# Software Foundation; version 2.1 of the License.
8#
9# This library is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12# details.
13#
14# You should have received a copy of the GNU Lesser General Public License
15# along with this library; if not, write to the Free Software Foundation, Inc.,
16# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18SESSIOND_BIN="lttng-sessiond"
19CONSUMERD_BIN="lttng-consumerd"
20RELAYD_BIN="lttng-relayd"
21LTTNG_BIN="lttng"
22BABELTRACE_BIN="babeltrace"
23OUTPUT_DEST=/dev/null 2>&1
24
25# Minimal kernel version supported for session daemon tests
26KERNEL_MAJOR_VERSION=2
27KERNEL_MINOR_VERSION=6
28KERNEL_PATCHLEVEL_VERSION=27
29
30source $TESTDIR/utils/tap/tap.sh
31
32function print_ok ()
33{
34 # Check if we are a terminal
35 if [ -t 1 ]; then
36 echo -e "\e[1;32mOK\e[0m"
37 else
38 echo -e "OK"
39 fi
40}
41
42function print_fail ()
43{
44 # Check if we are a terminal
45 if [ -t 1 ]; then
46 echo -e "\e[1;31mFAIL\e[0m"
47 else
48 echo -e "FAIL"
49 fi
50}
51
52function print_test_banner ()
53{
54 desc="$1"
55 diag "$desc"
56}
57
58function validate_kernel_version ()
59{
60 kern_version=($(uname -r | awk -F. '{ printf("%d.%d.%d\n",$1,$2,$3); }' | tr '.' '\n'))
61 if [ ${kern_version[0]} -gt $KERNEL_MAJOR_VERSION ]; then
62 return 0
63 fi
64 if [ ${kern_version[1]} -gt $KERNEL_MINOR_VERSION ]; then
65 return 0
66 fi
67 if [ ${kern_version[2]} -ge $KERNEL_PATCHLEVEL_VERSION ]; then
68 return 0
69 fi
70 return 1
71}
72
73# Generate a random string
74# $1 = number of characters; defaults to 16
75# $2 = include special characters; 1 = yes, 0 = no; defaults to yes
76function randstring()
77{
78 [ "$2" == "0" ] && CHAR="[:alnum:]" || CHAR="[:graph:]"
79 cat /dev/urandom | tr -cd "$CHAR" | head -c ${1:-16}
80 echo
81}
82
83function lttng_enable_kernel_event
84{
85 sess_name=$1
86 event_name=$2
87 channel_name=$3
88
89 if [ -z $event_name ]; then
90 # Enable all event if no event name specified
91 event_name="-a"
92 fi
93
94 if [ -z $channel_name ]; then
95 # default channel if none specified
96 chan=""
97 else
98 chan="-c $channel_name"
99 fi
100
101 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" $chan -s $sess_name -k >$OUTPUT_DEST
102 ok $? "Enable kernel event $event_name for session $sess_name"
103}
104
105function start_lttng_relayd
106{
107 local opt=$1
108
109 DIR=$(readlink -f $TESTDIR)
110
111 if [ -z $(pidof lt-$RELAYD_BIN) ]; then
112 $DIR/../src/bin/lttng-relayd/$RELAYD_BIN -b $opt >$OUTPUT_DEST
113 #$DIR/../src/bin/lttng-relayd/$RELAYD_BIN $opt -vvv >>/tmp/relayd.log 2>&1 &
114 if [ $? -eq 1 ]; then
115 fail "Start lttng-relayd (opt: $opt)"
116 return 1
117 else
118 pass "Start lttng-relayd (opt: $opt)"
119 fi
120 else
121 pass "Start lttng-relayd (opt: $opt)"
122 fi
123}
124
125function stop_lttng_relayd_nocheck
126{
127 PID_RELAYD=`pidof lt-$RELAYD_BIN`
128
129 diag "Killing lttng-relayd (pid: $PID_RELAYD)"
130 kill $PID_RELAYD >$OUTPUT_DEST
131 retval=$?
132
133 if [ $retval -eq 1 ]; then
134 out=1
135 while [ -n "$out" ]; do
136 out=$(pidof lt-$RELAYD_BIN)
137 sleep 0.5
138 done
139 fi
140 return $retval
141}
142
143function stop_lttng_relayd
144{
145 stop_lttng_relayd_nocheck
146
147 if [ $? -eq 1 ]; then
148 fail "Killed lttng-relayd (pid: $PID_RELAYD)"
149 return 1
150 else
151 pass "Killed lttng-relayd (pid: $PID_RELAYD)"
152 return 0
153 fi
154}
155
156function start_lttng_sessiond()
157{
158 if [ -n $TEST_NO_SESSIOND ] && [ "$TEST_NO_SESSIOND" == "1" ]; then
159 # Env variable requested no session daemon
160 return
161 fi
162
163 validate_kernel_version
164 if [ $? -ne 0 ]; then
165 fail "Start session daemon"
166 BAIL_OUT "*** Kernel too old for session daemon tests ***"
167 fi
168
169 DIR=$(readlink -f $TESTDIR)
170 : ${LTTNG_SESSION_CONFIG_XSD_PATH=${DIR}/../src/common/config/}
171 export LTTNG_SESSION_CONFIG_XSD_PATH
172
173 if [ -z $(pidof lt-$SESSIOND_BIN) ]; then
174 $DIR/../src/bin/lttng-sessiond/$SESSIOND_BIN --background --consumerd32-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd" --consumerd64-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd"
175 #$DIR/../src/bin/lttng-sessiond/$SESSIOND_BIN --consumerd32-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd" --consumerd64-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd" --verbose-consumer >>/tmp/sessiond.log 2>&1 &
176 status=$?
177 ok $status "Start session daemon"
178 fi
179}
180
181function stop_lttng_sessiond ()
182{
183 if [ -n $TEST_NO_SESSIOND ] && [ "$TEST_NO_SESSIOND" == "1" ]; then
184 # Env variable requested no session daemon
185 return
186 fi
187
188 PID_SESSIOND=`pidof lt-$SESSIOND_BIN`
189
190 kill $PID_SESSIOND >$OUTPUT_DEST
191
192 if [ $? -eq 1 ]; then
193 fail "Kill sessions daemon"
194 return 1
195 else
196 out=1
197 while [ -n "$out" ]; do
198 out=$(pidof lt-$SESSIOND_BIN)
199 sleep 0.5
200 done
201 out=1
202 while [ -n "$out" ]; do
203 out=$(pidof $CONSUMERD_BIN)
204 sleep 0.5
205 done
206 pass "Kill session daemon"
207 fi
208}
209
210function list_lttng_with_opts ()
211{
212 opts=$1
213 $TESTDIR/../src/bin/lttng/$LTTNG_BIN $opts >$OUTPUT_DEST
214 ok $? "Lttng-tool list command with option $opts"
215}
216
217function create_lttng_session_no_output ()
218{
219 sess_name=$1
220
221 $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $sess_name --no-output >$OUTPUT_DEST
222 ok $? "Create session $sess_name in no-output mode"
223}
224
225function create_lttng_session ()
226{
227 sess_name=$1
228 trace_path=$2
229 expected_to_fail=$3
230
231 $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $sess_name -o $trace_path > $OUTPUT_DEST
232 ret=$?
233 if [[ $expected_to_fail && $ret ]]; then
234 ok 0 "Expected fail on session creation $sess_name in $trace_path"
235 else
236 ok $ret "Create session $sess_name in $trace_path"
237 fi
238}
239
240function enable_ust_lttng_channel()
241{
242 sess_name=$1
243 channel_name=$2
244
245 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-channel -u $channel_name -s $sess_name >$OUTPUT_DEST
246 ok $? "Enable channel $channel_name for session $sess_name"
247}
248
249function disable_ust_lttng_channel()
250{
251 sess_name=$1
252 channel_name=$2
253
254 $TESTDIR/../src/bin/lttng/$LTTNG_BIN disable-channel -u $channel_name -s $sess_name >$OUTPUT_DEST
255 ok $? "Disable channel $channel_name for session $sess_name"
256}
257
258function enable_lttng_mmap_overwrite_kernel_channel()
259{
260 sess_name=$1
261 channel_name=$2
262
263 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-channel -s $sess_name $channel_name -k --output mmap --overwrite >$OUTPUT_DEST
264 ok $? "Enable channel $channel_name for session $sess_name"
265}
266
267function enable_lttng_mmap_overwrite_ust_channel()
268{
269 sess_name=$1
270 channel_name=$2
271
272 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-channel -s $sess_name $channel_name -u --output mmap --overwrite >$OUTPUT_DEST
273 ok $? "Enable channel $channel_name for session $sess_name"
274}
275
276function enable_ust_lttng_event ()
277{
278 sess_name=$1
279 event_name="$2"
280 channel_name=$3
281
282 if [ -z $channel_name ]; then
283 # default channel if none specified
284 chan=""
285 else
286 chan="-c $channel_name"
287 fi
288
289 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" $chan -s $sess_name -u >$OUTPUT_DEST
290 ok $? "Enable event $event_name for session $sess_name"
291}
292
293function enable_jul_lttng_event()
294{
295 sess_name=$1
296 event_name="$2"
297 channel_name=$3
298
299 if [ -z $channel_name ]; then
300 # default channel if none specified
301 chan=""
302 else
303 chan="-c $channel_name"
304 fi
305
306 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" $chan -s $sess_name -j >$OUTPUT_DEST
307 ok $? "Enable JUL event $event_name for session $sess_name"
308}
309
310function enable_jul_lttng_event_loglevel()
311{
312 sess_name=$1
313 event_name="$2"
314 loglevel=$3
315 channel_name=$4
316
317 if [ -z $channel_name ]; then
318 # default channel if none specified
319 chan=""
320 else
321 chan="-c $channel_name"
322 fi
323
324 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event --loglevel $loglevel "$event_name" $chan -s $sess_name -j >$OUTPUT_DEST
325 ok $? "Enable JUL event $event_name for session $sess_name with loglevel $loglevel"
326}
327
328function enable_ust_lttng_event_filter()
329{
330 sess_name="$1"
331 event_name="$2"
332 filter="$3"
333
334 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" -s $sess_name -u --filter "$filter" >$OUTPUT_DEST
335 ok $? "Enable event $event_name with filtering for session $sess_name"
336}
337
338function enable_ust_lttng_event_loglevel()
339{
340 sess_name="$1"
341 event_name="$2"
342 loglevel="$3"
343
344 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" -s $sess_name -u --loglevel $loglevel >$OUTPUT_DEST
345 ok $? "Enable event $event_name with loglevel $loglevel"
346}
347
348function enable_ust_lttng_event_loglevel_only()
349{
350 sess_name="$1"
351 event_name="$2"
352 loglevel="$3"
353
354 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" -s $sess_name -u --loglevel-only $loglevel >$OUTPUT_DEST
355 ok $? "Enable event $event_name with loglevel-only $loglevel"
356}
357
358function disable_ust_lttng_event ()
359{
360 sess_name="$1"
361 event_name="$2"
362
363 $TESTDIR/../src/bin/lttng/$LTTNG_BIN disable-event "$event_name" -s $sess_name -u >$OUTPUT_DEST
364 ok $? "Disable event $event_name for session $sess_name"
365}
366
367function disable_jul_lttng_event ()
368{
369 local sess_name="$1"
370 local event_name="$2"
371
372 $TESTDIR/../src/bin/lttng/$LTTNG_BIN disable-event "$event_name" -s $sess_name -j >/dev/null 2>&1
373 ok $? "Disable JUL event $event_name for session $sess_name"
374}
375
376function start_lttng_tracing ()
377{
378 sess_name=$1
379
380 $TESTDIR/../src/bin/lttng/$LTTNG_BIN start $sess_name >$OUTPUT_DEST
381 ok $? "Start tracing for session $sess_name"
382}
383
384function stop_lttng_tracing ()
385{
386 sess_name=$1
387
388 $TESTDIR/../src/bin/lttng/$LTTNG_BIN stop $sess_name >$OUTPUT_DEST
389 ok $? "Stop lttng tracing for session $sess_name"
390}
391
392function destroy_lttng_session ()
393{
394 sess_name=$1
395
396 $TESTDIR/../src/bin/lttng/$LTTNG_BIN destroy $sess_name >$OUTPUT_DEST
397 ok $? "Destroy lttng session $sess_name"
398}
399
400function destroy_lttng_sessions ()
401{
402 $TESTDIR/../src/bin/lttng/$LTTNG_BIN destroy --all >$OUTPUT_DEST
403 ok $? "Destroy all lttng sessions"
404}
405
406function lttng_snapshot_add_output ()
407{
408 sess_name=$1
409 trace_path=$2
410
411 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot add-output -s $sess_name file://$trace_path >$OUTPUT_DEST
412 ok $? "Added snapshot output file://$trace_path"
413}
414
415function lttng_snapshot_del_output ()
416{
417 local sess_name=$1
418 local id=$2
419
420 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot del-output -s $sess_name $id >$OUTPUT_DEST
421 ok $? "Deleted snapshot output id $id"
422}
423
424function lttng_snapshot_record ()
425{
426 sess_name=$1
427 trace_path=$2
428
429 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot record -s $sess_name >$OUTPUT_DEST
430 ok $? "Snapshot recorded"
431}
432
433function lttng_save()
434{
435 local sess_name=$1
436 local opts=$2
437
438 $TESTDIR/../src/bin/lttng/$LTTNG_BIN save $sess_name $opts >$OUTPUT_DEST
439 ok $? "Session successfully saved"
440}
441
442function lttng_load()
443{
444 local opts=$1
445
446 $TESTDIR/../src/bin/lttng/$LTTNG_BIN load $opts >$OUTPUT_DEST
447 ok $? "Load command successful"
448}
449
450function trace_matches ()
451{
452 event_name=$1
453 nr_iter=$2
454 trace_path=$3
455
456 which $BABELTRACE_BIN >/dev/null
457 skip $? -ne 0 "Babeltrace binary not found. Skipping trace matches"
458
459 count=$($BABELTRACE_BIN $trace_path | grep $event_name | wc -l)
460
461 if [ "$count" -ne "$nr_iter" ]; then
462 fail "Trace match"
463 diag "$count events found in trace"
464 else
465 pass "Trace match"
466 fi
467}
468
469function validate_trace
470{
471 event_name=$1
472 trace_path=$2
473
474 which $BABELTRACE_BIN >/dev/null
475 if [ $? -ne 0 ]; then
476 skip 0 "Babeltrace binary not found. Skipping trace validation"
477 fi
478
479 OLDIFS=$IFS
480 IFS=","
481 for i in $event_name; do
482 traced=$($BABELTRACE_BIN $trace_path 2>/dev/null | grep $i | wc -l)
483 if [ "$traced" -ne 0 ]; then
484 pass "Validate trace for event $i, $traced events"
485 else
486 fail "Validate trace for event $i"
487 diag "Found $traced occurences of $i"
488 fi
489 done
490 ret=$?
491 IFS=$OLDIFS
492 return $ret
493}
This page took 0.024138 seconds and 4 git commands to generate.