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 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 $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
()
231 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$sess_name -o $trace_path > $OUTPUT_DEST
233 if [[ $expected_to_fail && $ret ]]; then
234 ok
0 "Expected fail on session creation $sess_name in $trace_path"
236 ok
$ret "Create session $sess_name in $trace_path"
240 function enable_ust_lttng_channel
()
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"
249 function disable_ust_lttng_channel
()
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"
258 function enable_lttng_mmap_overwrite_kernel_channel
()
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"
267 function enable_lttng_mmap_overwrite_ust_channel
()
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"
276 function enable_ust_lttng_event
()
282 if [ -z $channel_name ]; then
283 # default channel if none specified
286 chan
="-c $channel_name"
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"
293 function enable_jul_lttng_event
()
299 if [ -z $channel_name ]; then
300 # default channel if none specified
303 chan
="-c $channel_name"
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"
310 function enable_jul_lttng_event_loglevel
()
317 if [ -z $channel_name ]; then
318 # default channel if none specified
321 chan
="-c $channel_name"
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"
328 function enable_ust_lttng_event_filter
()
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"
338 function enable_ust_lttng_event_loglevel
()
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"
348 function enable_ust_lttng_event_loglevel_only
()
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"
358 function disable_ust_lttng_event
()
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"
367 function disable_jul_lttng_event
()
370 local event_name
="$2"
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"
376 function start_lttng_tracing
()
380 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN start
$sess_name >$OUTPUT_DEST
381 ok $?
"Start tracing for session $sess_name"
384 function stop_lttng_tracing
()
388 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN stop
$sess_name >$OUTPUT_DEST
389 ok $?
"Stop lttng tracing for session $sess_name"
392 function destroy_lttng_session
()
396 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN destroy
$sess_name >$OUTPUT_DEST
397 ok $?
"Destroy lttng session $sess_name"
400 function destroy_lttng_sessions
()
402 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN destroy
--all >$OUTPUT_DEST
403 ok $?
"Destroy all lttng sessions"
406 function lttng_snapshot_add_output
()
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"
415 function lttng_snapshot_del_output
()
420 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot del-output
-s $sess_name $id >$OUTPUT_DEST
421 ok $?
"Deleted snapshot output id $id"
424 function lttng_snapshot_record
()
429 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot record
-s $sess_name >$OUTPUT_DEST
430 ok $?
"Snapshot recorded"
433 function lttng_save
()
438 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN save
$sess_name $opts >$OUTPUT_DEST
439 ok $?
"Session successfully saved"
442 function lttng_load
()
446 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN load
$opts >$OUTPUT_DEST
447 ok $?
"Load command successful"
450 function trace_matches
()
456 which $BABELTRACE_BIN >/dev
/null
457 skip $?
-ne 0 "Babeltrace binary not found. Skipping trace matches"
459 count
=$
($BABELTRACE_BIN $trace_path |
grep $event_name |
wc -l)
461 if [ "$count" -ne "$nr_iter" ]; then
463 diag
"$count events found in trace"
469 function validate_trace
474 which $BABELTRACE_BIN >/dev
/null
475 if [ $?
-ne 0 ]; then
476 skip
0 "Babeltrace binary not found. Skipping trace validation"
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"
486 fail
"Validate trace for event $i"
487 diag
"Found $traced occurences of $i"