3 # Copyright (C) - 2012 David Goulet <dgoulet@efficios.com>
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.
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
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
18 SESSIOND_BIN
="lttng-sessiond"
19 CONSUMERD_BIN
="lttng-consumerd"
20 RELAYD_BIN
="lttng-relayd"
22 BABELTRACE_BIN
="babeltrace"
23 OUTPUT_DEST
=/dev
/null
2>&1
25 # Minimal kernel version supported for session daemon tests
26 KERNEL_MAJOR_VERSION
=2
27 KERNEL_MINOR_VERSION
=6
28 KERNEL_PATCHLEVEL_VERSION
=27
30 source $TESTDIR/utils
/tap
/tap.sh
34 # Check if we are a terminal
36 echo -e "\e[1;32mOK\e[0m"
42 function print_fail
()
44 # Check if we are a terminal
46 echo -e "\e[1;31mFAIL\e[0m"
52 function print_test_banner
()
58 function validate_kernel_version
()
60 local 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
64 if [ ${kern_version[1]} -gt $KERNEL_MINOR_VERSION ]; then
67 if [ ${kern_version[2]} -ge $KERNEL_PATCHLEVEL_VERSION ]; then
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
78 [ "$2" == "0" ] && CHAR
="[:alnum:]" || CHAR
="[:graph:]"
79 cat /dev
/urandom |
tr -cd "$CHAR" |
head -c ${1:-16}
83 function lttng_enable_kernel_event
89 if [ -z $event_name ]; then
90 # Enable all event if no event name specified
94 if [ -z $channel_name ]; then
95 # default channel if none specified
98 chan
="-c $channel_name"
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"
105 function start_lttng_relayd
109 DIR
=$
(readlink
-f $TESTDIR)
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)"
118 pass
"Start lttng-relayd (opt: $opt)"
121 pass
"Start lttng-relayd (opt: $opt)"
125 function stop_lttng_relayd_nocheck
127 PID_RELAYD
=`pidof lt-$RELAYD_BIN`
129 diag
"Killing lttng-relayd (pid: $PID_RELAYD)"
130 kill $PID_RELAYD >$OUTPUT_DEST
133 if [ $retval -eq 1 ]; then
135 while [ -n "$out" ]; do
136 out
=$
(pidof lt-
$RELAYD_BIN)
143 function stop_lttng_relayd
145 stop_lttng_relayd_nocheck
147 if [ $?
-eq 1 ]; then
148 fail
"Killed lttng-relayd (pid: $PID_RELAYD)"
151 pass
"Killed lttng-relayd (pid: $PID_RELAYD)"
156 function start_lttng_sessiond
()
158 if [ -n $TEST_NO_SESSIOND ] && [ "$TEST_NO_SESSIOND" == "1" ]; then
159 # Env variable requested no session daemon
163 validate_kernel_version
164 if [ $?
-ne 0 ]; then
165 fail
"Start session daemon"
166 BAIL_OUT
"*** Kernel too old for session daemon tests ***"
169 DIR
=$
(readlink
-f $TESTDIR)
170 : ${LTTNG_SESSION_CONFIG_XSD_PATH=${DIR}/../src/common/config/}
171 export LTTNG_SESSION_CONFIG_XSD_PATH
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 &
177 ok
$status "Start session daemon"
181 function stop_lttng_sessiond
()
183 if [ -n $TEST_NO_SESSIOND ] && [ "$TEST_NO_SESSIOND" == "1" ]; then
184 # Env variable requested no session daemon
188 PID_SESSIOND
=`pidof lt-$SESSIOND_BIN`
190 kill $PID_SESSIOND >$OUTPUT_DEST
192 if [ $?
-eq 1 ]; then
193 fail
"Kill sessions daemon"
197 while [ -n "$out" ]; do
198 out
=$
(pidof lt-
$SESSIOND_BIN)
202 while [ -n "$out" ]; do
203 out
=$
(pidof
$CONSUMERD_BIN)
206 pass
"Kill session daemon"
210 function list_lttng_with_opts
()
213 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN list
$opts >$OUTPUT_DEST
214 ok $?
"Lttng-tool list command with option $opts"
217 function create_lttng_session_no_output
()
221 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$sess_name --no-output >$OUTPUT_DEST
222 ok $?
"Create session $sess_name in no-output mode"
225 function create_lttng_session
()
229 local expected_to_fail
=$3
231 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$sess_name -o $trace_path > $OUTPUT_DEST
233 if [[ $expected_to_fail ]]; then
235 ok $?
"Expected fail on session creation $sess_name in $trace_path"
237 ok
$ret "Create session $sess_name in $trace_path"
241 function enable_ust_lttng_channel
()
244 local channel_name
=$2
247 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-channel
-u $channel_name -s $sess_name >$OUTPUT_DEST
249 if [[ $expect_fail ]]; then
251 ok $?
"Expected fail on ust channel creation $channel_name in $sess_name"
253 ok
$ret "Enable channel $channel_name for session $sess_name"
257 function disable_ust_lttng_channel
()
260 local channel_name
=$2
262 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN disable-channel
-u $channel_name -s $sess_name >$OUTPUT_DEST
263 ok $?
"Disable channel $channel_name for session $sess_name"
266 function enable_lttng_mmap_overwrite_kernel_channel
()
269 local channel_name
=$2
271 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-channel
-s $sess_name $channel_name -k --output mmap
--overwrite >$OUTPUT_DEST
272 ok $?
"Enable channel $channel_name for session $sess_name"
275 function enable_lttng_mmap_overwrite_ust_channel
()
278 local channel_name
=$2
280 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-channel
-s $sess_name $channel_name -u --output mmap
--overwrite >$OUTPUT_DEST
281 ok $?
"Enable channel $channel_name for session $sess_name"
284 function enable_ust_lttng_event
()
287 local event_name
="$2"
288 local channel_name
=$3
289 local expected_to_fail
=$4
291 if [ -z $channel_name ]; then
292 # default channel if none specified
295 chan
="-c $channel_name"
298 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$event_name" $chan -s $sess_name -u >$OUTPUT_DEST
300 if [[ $expected_to_fail ]]; then
302 ok $?
"Enable ust event $event_name for session $session_name on channel $channel_name failed as expected"
304 ok
$ret "Enable event $event_name for session $sess_name"
308 function enable_jul_lttng_event
()
314 if [ -z $channel_name ]; then
315 # default channel if none specified
318 chan
="-c $channel_name"
321 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$event_name" $chan -s $sess_name -j >$OUTPUT_DEST
322 ok $?
"Enable JUL event $event_name for session $sess_name"
325 function enable_jul_lttng_event_loglevel
()
328 local event_name
="$2"
330 local channel_name
=$4
332 if [ -z $channel_name ]; then
333 # default channel if none specified
336 chan
="-c $channel_name"
339 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
--loglevel $loglevel "$event_name" $chan -s $sess_name -j >$OUTPUT_DEST
340 ok $?
"Enable JUL event $event_name for session $sess_name with loglevel $loglevel"
343 function enable_ust_lttng_event_filter
()
346 local event_name
="$2"
349 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$event_name" -s $sess_name -u --filter "$filter" >$OUTPUT_DEST
350 ok $?
"Enable event $event_name with filtering for session $sess_name"
353 function enable_ust_lttng_event_loglevel
()
356 local event_name
="$2"
359 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$event_name" -s $sess_name -u --loglevel $loglevel >$OUTPUT_DEST
360 ok $?
"Enable event $event_name with loglevel $loglevel"
363 function enable_ust_lttng_event_loglevel_only
()
366 local event_name
="$2"
369 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$event_name" -s $sess_name -u --loglevel-only $loglevel >$OUTPUT_DEST
370 ok $?
"Enable event $event_name with loglevel-only $loglevel"
373 function disable_ust_lttng_event
()
376 local event_name
="$2"
377 local channel_name
="$3"
379 if [ -z $channel_name ]; then
380 # default channel if none specified
383 chan
="-c $channel_name"
386 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN disable-event
"$event_name" -s $sess_name $chan -u >$OUTPUT_DEST
387 ok $?
"Disable event $event_name for session $sess_name"
390 function disable_jul_lttng_event
()
393 local event_name
="$2"
395 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN disable-event
"$event_name" -s $sess_name -j >/dev
/null
2>&1
396 ok $?
"Disable JUL event $event_name for session $sess_name"
399 function start_lttng_tracing
()
402 local expected_to_fail
=$2
404 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN start
$sess_name >$OUTPUT_DEST
406 if [[ $expected_to_fail ]]; then
408 ok $?
"Expected fail on start tracing for session: $sess_name"
410 ok
$ret "Start tracing for session $sess_name"
414 function stop_lttng_tracing
()
417 local expected_to_fail
=$2
419 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN stop
$sess_name >$OUTPUT_DEST
421 if [[ $expected_to_fail ]]; then
423 ok $?
"Expected fail on stop tracing for session: $sess_name"
425 ok
$ret "Stop lttng tracing for session $sess_name"
429 function destroy_lttng_session
()
432 local expected_to_fail
=$2
434 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN destroy
$sess_name >$OUTPUT_DEST
436 if [[ $expected_to_fail ]]; then
438 ok $?
"Expected fail on session deletion $sess_name"
440 ok
$ret "Destroy session $sess_name"
444 function destroy_lttng_sessions
()
446 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN destroy
--all >$OUTPUT_DEST
447 ok $?
"Destroy all lttng sessions"
450 function lttng_snapshot_add_output
()
454 local expected_to_fail
=$3
456 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot add-output
-s $sess_name file://$trace_path >$OUTPUT_DEST
458 if [[ $expected_to_fail ]]; then
460 ok $?
"Failed to add a snapshot output file://$trace_path as expected"
462 ok
$ret "Added snapshot output file://$trace_path"
466 function lttng_snapshot_del_output
()
470 local expected_to_fail
=$3
472 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot del-output
-s $sess_name $id >$OUTPUT_DEST
474 if [[ $expected_to_fail ]]; then
476 ok $?
"Expect fail on deletion of snapshot output id $id"
478 ok
$ret "Deleted snapshot output id $id"
482 function lttng_snapshot_record
()
487 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot record
-s $sess_name >$OUTPUT_DEST
488 ok $?
"Snapshot recorded"
491 function lttng_snapshot_list
()
494 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot list-output
-s $sess_name >$OUTPUT_DEST
495 ok $?
"Snapshot list"
498 function lttng_save
()
503 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN save
$sess_name $opts >$OUTPUT_DEST
504 ok $?
"Session successfully saved"
507 function lttng_load
()
511 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN load
$opts >$OUTPUT_DEST
512 ok $?
"Load command successful"
515 function trace_matches
()
521 which $BABELTRACE_BIN >/dev
/null
522 skip $?
-ne 0 "Babeltrace binary not found. Skipping trace matches"
524 local count
=$
($BABELTRACE_BIN $trace_path |
grep $event_name |
wc -l)
526 if [ "$count" -ne "$nr_iter" ]; then
528 diag
"$count events found in trace"
534 function validate_trace
539 which $BABELTRACE_BIN >/dev
/null
540 if [ $?
-ne 0 ]; then
541 skip
0 "Babeltrace binary not found. Skipping trace validation"
546 for i
in $event_name; do
547 traced
=$
($BABELTRACE_BIN $trace_path 2>/dev
/null |
grep $i |
wc -l)
548 if [ "$traced" -ne 0 ]; then
549 pass
"Validate trace for event $i, $traced events"
551 fail
"Validate trace for event $i"
552 diag
"Found $traced occurences of $i"