Use empty event name on disable -a for ust and agent domain
[lttng-tools.git] / tests / regression / ust / python-logging / test_python_logging.in
CommitLineData
0e115563
DG
1#!/bin/bash
2#
dd238d2a 3# Copyright (C) - 2015 Philippe Proulx <pproulx@efficios.com>
0e115563
DG
4# Copyright (C) - 2014 David Goulet <dgoulet@efficios.com>
5#
6# This program is free software; you can redistribute it and/or modify it under
7# the terms of the GNU General Public License, version 2 only, as published by
8# the Free Software Foundation.
9#
10# This program is distributed in the hope that it will be useful, but WITHOUT
11# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13# details.
14#
15# You should have received a copy of the GNU General Public License along with
16# this program; if not, write to the Free Software Foundation, Inc., 51
17# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
dd238d2a 19TEST_DESC="Python support"
0e115563
DG
20
21CURDIR=$(dirname $0)/
22TESTDIR=$CURDIR/../../..
23NR_ITER=5
9586c198 24NR_SEC_WAIT=0
dd238d2a 25TESTAPP_NAME="test"
0e115563
DG
26TESTAPP_BIN="$TESTAPP_NAME.py"
27TESTAPP_PATH="$CURDIR"
28SESSION_NAME="python-test"
29EVENT_NAME="python-ev-test1"
30EVENT_NAME2="python-ev-test2"
31OUTPUT_DEST="/dev/null"
32
9586c198
JR
33python_versions=(@PYTHON2_AGENT@ @PYTHON3_AGENT@)
34run_test=@RUN_PYTHON_AGENT_TEST@
35
36if [[ -z "$run_test" ]]; then
37 NUM_TESTS=1
38else
39 NUM_TESTS=$(((154 * ${#python_versions[@]})+2))
40fi
0e115563
DG
41
42source $TESTDIR/utils/utils.sh
43
44function run_app
45{
dd238d2a
PP
46 local python=$1
47 local debug_tp=$2
48 local fire_second_tp=$3
0e115563 49
dd238d2a 50 $python $TESTAPP_PATH/$TESTAPP_BIN $NR_ITER $NR_SEC_WAIT $debug_tp $fire_second_tp
0e115563
DG
51}
52
53function run_app_background
54{
55 run_app $@ &
56}
57
58function enable_python_loglevel_only()
59{
60 sess_name=$1
61 event_name="$2"
62 loglevel=$3
63 channel_name=$4
64
65 if [ -z $channel_name ]; then
66 # default channel if none specified
67 chan=""
68 else
69 chan="-c $channel_name"
70 fi
71
72 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event --loglevel-only $loglevel "$event_name" $chan -s $sess_name -p >$OUTPUT_DEST
73 ok $? "Enable Python event $event_name for session $sess_name with loglevel-only $loglevel"
74}
75
76function enable_python_filter()
77{
78 local sess_name="$1"
79 local event_name="$2"
80 local filter="$3"
81
9586c198 82 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event "$event_name" -s $sess_name -p --filter "$filter" >$OUTPUT_DEST
0e115563
DG
83 ok $? "Enable event $event_name with filter $filter for session $sess_name"
84}
85
86function enable_python_filter_loglevel_only()
87{
88 local sess_name="$1"
89 local event_name="$2"
90 local filter="$3"
91 local loglevel="$4"
92
93 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-event --loglevel-only $loglevel "$event_name" -s $sess_name -p --filter "$filter" >$OUTPUT_DEST
94 ok $? "Enable event $event_name with filter \"$filter\" and loglevel-only $loglevel for session $sess_name"
95}
96
97# MUST set TESTDIR before calling those functions
98
99function test_python_before_start ()
100{
101 diag "Test Python application BEFORE tracing starts"
bf6ae429 102 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563
DG
103 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
104
105 # Run 5 times with a 1 second delay
dd238d2a 106 run_app_background $1
0e115563 107
e563bbdb 108 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
109
110 # Wait for the applications started in background
0fc2834c 111 wait
0e115563 112
96340a01 113 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 114 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
115
116 # Validate test. Expecting all events.
117 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH
118 if [ $? -ne 0 ]; then
119 return $?
120 fi
121}
122
123function test_python_after_start ()
124{
125 diag "Test Python application AFTER tracing starts"
126
bf6ae429 127 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563 128 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
e563bbdb 129 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
130
131 # Run 5 times with a 1 second delay
dd238d2a 132 run_app $1
0e115563 133
96340a01 134 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 135 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
136
137 # Validate test. Expecting all events.
138 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH
139 if [ $? -ne 0 ]; then
140 return $?
141 fi
142}
143
144function test_python_loglevel ()
145{
146 diag "Test Python application with loglevel"
147
bf6ae429 148 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563 149 enable_python_lttng_event_loglevel $SESSION_NAME $EVENT_NAME "INFO"
e563bbdb 150 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
151
152 # Run 5 times with a 1 second delay
dd238d2a 153 run_app $1
0e115563 154
96340a01 155 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 156 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
157
158 # Validate test. Expecting all events.
159 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH
160 if [ $? -ne 0 ]; then
161 return $?
162 fi
163
164 diag "Test Python applications with lower loglevel"
165
bf6ae429 166 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563 167 enable_python_lttng_event_loglevel $SESSION_NAME $EVENT_NAME "CRITICAL"
e563bbdb 168 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
169
170 # Run 5 times with a 1 second delay
dd238d2a 171 run_app $1
0e115563 172
96340a01 173 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 174 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
175
176 # Validate test. Expecting 0 events.
177 trace_match_only $EVENT_NAME 0 $TRACE_PATH
178 if [ $? -ne 0 ]; then
179 return $?
180 fi
181
182 diag "Test Python applications with higher loglevel"
183
bf6ae429 184 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563 185 enable_python_lttng_event_loglevel $SESSION_NAME $EVENT_NAME "DEBUG"
e563bbdb 186 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
187
188 # Run 5 times with a 1 second delay
dd238d2a 189 run_app $1
0e115563 190
96340a01 191 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 192 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
193
194 # Validate test. Expecting all events.
195 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH
196 return $?
197}
198
199function test_python_loglevel_multiple ()
200{
201 diag "Test Python application with multiple loglevel"
202
bf6ae429 203 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563
DG
204 enable_python_lttng_event_loglevel $SESSION_NAME $EVENT_NAME "INFO"
205 enable_python_lttng_event_loglevel $SESSION_NAME $EVENT_NAME "DEBUG"
e563bbdb 206 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
207
208 # Run 5 times with a 1 second delay and fire two TP.
dd238d2a 209 run_app $1 1
0e115563 210
96340a01 211 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 212 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
213
214 # Validate test. Expecting all events times two.
215 trace_match_only $EVENT_NAME $(($NR_ITER * 2)) $TRACE_PATH
216 if [ $? -ne 0 ]; then
217 return $?
218 fi
219
bf6ae429 220 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
0e115563
DG
221 enable_python_lttng_event_loglevel $SESSION_NAME '*' "INFO"
222 enable_python_lttng_event_loglevel $SESSION_NAME '*' "DEBUG"
e563bbdb 223 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
224
225 # Run 5 times with a 1 second delay and fire two TP.
dd238d2a 226 run_app $1 1
0e115563 227
96340a01 228 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 229 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
230
231 # Validate test. Expecting all events times two.
232 trace_match_only $EVENT_NAME $(($NR_ITER * 2)) $TRACE_PATH
233 if [ $? -ne 0 ]; then
234 return $?
235 fi
236}
237
238function test_python_multi_session_loglevel()
239{
240 diag "Test Python with multiple session"
241
bf6ae429 242 create_lttng_session_ok $SESSION_NAME-1 $TRACE_PATH/$SESSION_NAME-1
0e115563 243 enable_python_loglevel_only $SESSION_NAME-1 '*' "INFO"
e563bbdb 244 start_lttng_tracing_ok $SESSION_NAME-1
0e115563 245
bf6ae429 246 create_lttng_session_ok $SESSION_NAME-2 $TRACE_PATH/$SESSION_NAME-2
0e115563 247 enable_python_loglevel_only $SESSION_NAME-2 '*' "DEBUG"
e563bbdb 248 start_lttng_tracing_ok $SESSION_NAME-2
0e115563
DG
249
250 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 251 run_app $1 1 1
0e115563 252
96340a01
JR
253 stop_lttng_tracing_ok $SESSION_NAME-1
254 stop_lttng_tracing_ok $SESSION_NAME-2
67b4c664
JR
255 destroy_lttng_session_ok $SESSION_NAME-1
256 destroy_lttng_session_ok $SESSION_NAME-2
0e115563
DG
257
258 # Expecting NR_ITER events being the main event and the second tp one.
259 trace_matches $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME-1
260 if [ $? -ne 0 ]; then
261 return $?
262 fi
263 trace_matches $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME-1
264 if [ $? -ne 0 ]; then
265 return $?
266 fi
267
268 # Expectin NR_ITER events being the debug TP.
269 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME-2
270 if [ $? -ne 0 ]; then
271 return $?
272 fi
273}
274
275function test_python_multi_session_disable()
276{
277 diag "Test Python with multiple session with disabled event"
278
bf6ae429 279 create_lttng_session_ok $SESSION_NAME-1 $TRACE_PATH/$SESSION_NAME-1
0e115563
DG
280 enable_python_lttng_event $SESSION_NAME-1 $EVENT_NAME
281 enable_python_lttng_event $SESSION_NAME-1 $EVENT_NAME2
282 disable_python_lttng_event $SESSION_NAME-1 $EVENT_NAME
e563bbdb 283 start_lttng_tracing_ok $SESSION_NAME-1
0e115563 284
bf6ae429 285 create_lttng_session_ok $SESSION_NAME-2 $TRACE_PATH/$SESSION_NAME-2
0e115563 286 enable_python_lttng_event $SESSION_NAME-2 $EVENT_NAME2
e563bbdb 287 start_lttng_tracing_ok $SESSION_NAME-2
0e115563
DG
288
289 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 290 run_app $1 0 1
0e115563 291
96340a01
JR
292 stop_lttng_tracing_ok $SESSION_NAME-1
293 stop_lttng_tracing_ok $SESSION_NAME-2
67b4c664
JR
294 destroy_lttng_session_ok $SESSION_NAME-1
295 destroy_lttng_session_ok $SESSION_NAME-2
0e115563
DG
296
297 # Validate test. Expecting one event of the second TP.
298 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME-1
299 if [ $? -ne 0 ]; then
300 return $?
301 fi
302
303 # Validate test. Expecting one event of the second TP.
304 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME-2
305 if [ $? -ne 0 ]; then
306 return $?
307 fi
308}
309
310function test_python_multi_session_disable_wildcard()
311{
312 diag "Test Python with multiple session with disabled wildcard event"
313
bf6ae429 314 create_lttng_session_ok $SESSION_NAME-1 $TRACE_PATH/$SESSION_NAME-1
0e115563
DG
315 enable_python_lttng_event $SESSION_NAME-1 '*'
316
bf6ae429 317 create_lttng_session_ok $SESSION_NAME-2 $TRACE_PATH/$SESSION_NAME-2
0e115563
DG
318 enable_python_lttng_event $SESSION_NAME-2 '*'
319
320 disable_python_lttng_event $SESSION_NAME-1 '*'
321
e563bbdb
JR
322 start_lttng_tracing_ok $SESSION_NAME-1
323 start_lttng_tracing_ok $SESSION_NAME-2
0e115563 324
dd238d2a 325 run_app $1
0e115563 326
96340a01
JR
327 stop_lttng_tracing_ok $SESSION_NAME-1
328 stop_lttng_tracing_ok $SESSION_NAME-2
67b4c664
JR
329 destroy_lttng_session_ok $SESSION_NAME-1
330 destroy_lttng_session_ok $SESSION_NAME-2
0e115563
DG
331
332 # Validate test. Expecting NO event of the first TP.
333 trace_match_only $EVENT_NAME 0 $TRACE_PATH/$SESSION_NAME-1
334 if [ $? -ne 0 ]; then
335 return $?
336 fi
337
338 # Validate test. Expecting all events of the first TP.
339 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME-2
340 if [ $? -ne 0 ]; then
341 return $?
342 fi
343}
344
345function test_python_disable_all()
346{
347 diag "Test Python with multiple session with disabled all event"
348
bf6ae429 349 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563
DG
350 enable_python_lttng_event $SESSION_NAME '*'
351 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
352 enable_python_lttng_event $SESSION_NAME $EVENT_NAME2
353
b3639870 354 disable_python_lttng_event $SESSION_NAME -a
0e115563 355
e563bbdb 356 start_lttng_tracing_ok $SESSION_NAME
0e115563 357
dd238d2a 358 run_app $1 0 1
0e115563 359
96340a01 360 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 361 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
362
363 # Validate test. Expecting NO event of the first TP and second TP.
364 trace_match_only $EVENT_NAME 0 $TRACE_PATH/$SESSION_NAME
365 trace_match_only $EVENT_NAME2 0 $TRACE_PATH/$SESSION_NAME
366 if [ $? -ne 0 ]; then
367 return $?
368 fi
369}
370
371function test_python_multi_session()
372{
373 diag "Test Python with multiple session"
374
bf6ae429 375 create_lttng_session_ok $SESSION_NAME-1 $TRACE_PATH/$SESSION_NAME-1
0e115563 376 enable_python_lttng_event $SESSION_NAME-1 $EVENT_NAME
e563bbdb 377 start_lttng_tracing_ok $SESSION_NAME-1
0e115563 378
bf6ae429 379 create_lttng_session_ok $SESSION_NAME-2 $TRACE_PATH/$SESSION_NAME-2
0e115563 380 enable_python_lttng_event $SESSION_NAME-2 $EVENT_NAME2
e563bbdb 381 start_lttng_tracing_ok $SESSION_NAME-2
0e115563
DG
382
383 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 384 run_app $1 0 1
0e115563 385
96340a01
JR
386 stop_lttng_tracing_ok $SESSION_NAME-1
387 stop_lttng_tracing_ok $SESSION_NAME-2
67b4c664
JR
388 destroy_lttng_session_ok $SESSION_NAME-1
389 destroy_lttng_session_ok $SESSION_NAME-2
0e115563
DG
390
391 # Validate test. Expecting all events of first TP
392 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME-1
393 if [ $? -ne 0 ]; then
394 return $?
395 fi
396
397 # Validate test. Expecting one event of the second TP.
398 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME-2
399 if [ $? -ne 0 ]; then
400 return $?
401 fi
402}
403
404function test_python_destroy_session()
405{
406 diag "Test Python two session with destroy"
407
bf6ae429 408 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/first-sess
0e115563 409 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
e563bbdb 410 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
411
412 # Run 5 times with a 1 second delay
dd238d2a 413 run_app_background $1 0 1
0e115563 414
0fc2834c
MD
415 # Wait for the applications started in background
416 wait
0e115563 417
96340a01 418 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 419 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
420
421 # Validate test. Expecting at least one event num 1
422 validate_trace $EVENT_NAME $TRACE_PATH/first-sess
423 if [ $? -ne 0 ]; then
424 return $?
425 fi
426
bf6ae429 427 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/second-sess
0e115563 428 enable_python_lttng_event $SESSION_NAME $EVENT_NAME2
e563bbdb 429 start_lttng_tracing_ok $SESSION_NAME
0e115563 430
0fc2834c 431 # Run 5 times with a 1 second delay
dd238d2a 432 run_app_background $1 0 1
0fc2834c 433
0e115563 434 # Wait for the applications started in background
0fc2834c 435 wait
0e115563 436
96340a01 437 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 438 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
439
440 # Validate test. Expecting only one event num 2
441 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/second-sess
442 if [ $? -ne 0 ]; then
443 return $?
444 fi
445}
446
447function test_python_filtering()
448{
449 diag "Test Python filtering"
450
bf6ae429 451 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563 452 # Enable all event with a filter.
dd238d2a 453 enable_python_filter $SESSION_NAME '*' 'msg == "python-ev-test2 fired [INFO]"'
e563bbdb 454 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
455
456 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 457 run_app $1 0 1
0e115563 458
96340a01 459 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 460 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
461
462 # Validate test. Expecting one event of the second TP only.
463 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME
464 if [ $? -ne 0 ]; then
465 return $?
466 fi
467
bf6ae429 468 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563
DG
469 # Enable first Logger but filter msg payload for the INFO one while
470 # triggering the debug and second TP.
9586c198 471 enable_python_filter $SESSION_NAME $EVENT_NAME 'msg == "python-ev-test1 fired [INFO]"'
e563bbdb 472 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
473
474 # Run 5 times with a 1 second delay, fire debug and second TP.
dd238d2a 475 run_app $1 1 1
0e115563 476
96340a01 477 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 478 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
479
480 # Validate test. Expecting NR_ITER event of the main INFO tp.
481 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME
482 if [ $? -ne 0 ]; then
483 return $?
484 fi
485}
486
487function test_python_disable()
488{
489 diag "Test Python disable event"
490
bf6ae429 491 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563
DG
492 # Enable all event with a filter.
493 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
494 enable_python_lttng_event $SESSION_NAME $EVENT_NAME2
495 disable_python_lttng_event $SESSION_NAME $EVENT_NAME
e563bbdb 496 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
497
498 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 499 run_app $1 0 1
0e115563 500
96340a01 501 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 502 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
503
504 # Validate test. Expecting one event of the second TP only.
505 trace_match_only $EVENT_NAME2 1 $TRACE_PATH/$SESSION_NAME
506 if [ $? -ne 0 ]; then
507 return $?
508 fi
509}
510
511function test_python_disable_enable()
512{
513 diag "Test Python disable event followed by an enable"
514
bf6ae429 515 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563
DG
516 # Enable all event with a filter.
517 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
518 disable_python_lttng_event $SESSION_NAME $EVENT_NAME
519 enable_python_lttng_event $SESSION_NAME $EVENT_NAME
e563bbdb 520 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
521
522 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 523 run_app $1 0 1
0e115563 524
96340a01 525 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 526 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
527
528 # Validate test. Expecting NR_ITER event of the main INFO tp.
529 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH/$SESSION_NAME
530 if [ $? -ne 0 ]; then
531 return $?
532 fi
533}
534
535function test_python_filter_loglevel()
536{
537 local BOGUS_EVENT_NAME="not_a_real_event"
538 local FILTER="int_loglevel > 30 || int_loglevel < 30"
539 local ALL_EVENTS="."
540
541 diag "Test Python a filter with a loglevel"
542
bf6ae429 543 create_lttng_session_ok $SESSION_NAME $TRACE_PATH/$SESSION_NAME
0e115563
DG
544 # Enable an event with a filter and the loglevel-only option.
545 enable_python_filter_loglevel_only $SESSION_NAME $BOGUS_EVENT_NAME "$FILTER" "INFO"
546 disable_python_lttng_event $SESSION_NAME $BOGUS_EVENT_NAME
547 enable_python_filter_loglevel_only $SESSION_NAME $BOGUS_EVENT_NAME "$FILTER" "INFO"
e563bbdb 548 start_lttng_tracing_ok $SESSION_NAME
0e115563
DG
549
550 # Run 5 times with a 1 second delay and fire second TP.
dd238d2a 551 run_app $1 0 1
0e115563 552
96340a01 553 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 554 destroy_lttng_session_ok $SESSION_NAME
0e115563
DG
555
556 # Validate test. Expecting no events.
557 trace_match_only $ALL_EVENTS 0 $TRACE_PATH/$SESSION_NAME
558 if [ $? -ne 0 ]; then
559 return $?
560 fi
561}
562
563plan_tests $NUM_TESTS
564
565print_test_banner "$TEST_DESC"
566
9586c198
JR
567if [[ ${#python_versions[@]} -eq 0 || "x$run_test" != "xyes" ]]; then
568 skip_agent=0
0e115563 569else
9586c198 570 skip_agent=1
0e115563
DG
571fi
572
9586c198 573skip $skip_agent "Python agent test skipped." $NUM_TESTS ||
0e115563
DG
574{
575 start_lttng_sessiond
576
577 tests=(
578 test_python_multi_session_disable_wildcard
579 test_python_multi_session_disable
580 test_python_disable
581 test_python_disable_enable
582 test_python_disable_all
583 test_python_filtering
584 test_python_multi_session_loglevel
585 test_python_destroy_session
586 test_python_loglevel
587 test_python_loglevel_multiple
588 test_python_before_start
589 test_python_after_start
590 test_python_multi_session
591 test_python_filter_loglevel
592 )
593
9586c198
JR
594
595 for python_version in ${python_versions[*]};
0e115563 596 do
dd238d2a
PP
597 for fct_test in ${tests[@]};
598 do
599 TRACE_PATH=$(mktemp -d)
600
601 diag "(Python $python_version)"
9586c198 602 ${fct_test} $python_version
dd238d2a
PP
603 if [ $? -ne 0 ]; then
604 break;
605 fi
606 rm -rf $TRACE_PATH
607 done
0e115563 608 done
0e115563
DG
609 stop_lttng_sessiond
610}
This page took 0.052031 seconds and 4 git commands to generate.