3 # Copyright (C) - 2013 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
17 TEST_DESC
="Streaming - Snapshot UST tracing"
20 TESTDIR
=$CURDIR/..
/..
/..
21 EVENT_NAME
="tp:tptest"
25 BIN_NAME
="gen-nevents"
26 TESTAPP_PATH
="$TESTDIR/utils/testapp"
27 TESTAPP_NAME
="gen-ust-events"
28 TESTAPP_BIN
="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
33 TRACE_PATH
=$
(mktemp
-d)
37 source $TESTDIR/utils
/utils.sh
39 if [ ! -x "$TESTAPP_BIN" ]; then
40 BAIL_OUT
"No UST events binary detected."
43 function snapshot_add_output
()
50 if [ ! -z $name ]; then
54 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN snapshot add-output
-s $sess_name $extra_opt $trace_path >/dev
/null
2>&1
55 ok $?
"Added snapshot output $trace_path"
58 # Start trace application and return once one event has been hit.
59 function start_test_app
()
61 local tmp_file
=$
(mktemp
-u)
63 # Start application with a temporary file.
64 $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT $tmp_file &
66 APPS_PID
="${APPS_PID} ${!}"
67 ok
$ret "Start application to trace"
69 # Wait for the application file to appear indicating that at least one
70 # tracepoint has been fired.
71 while [ ! -f "$tmp_file" ]; do
74 diag
"Removing test app temporary file $tmp_file"
78 function stop_test_apps
()
80 diag
"Stopping $TESTAPP_NAME"
81 for p
in ${APPS_PID}; do
88 # Test a snapshot using a default name for the output destination.
89 function test_ust_default_name_with_del
()
91 diag
"Test UST snapshot streaming with default name with delete output"
92 create_lttng_session_no_output
$SESSION_NAME
93 enable_lttng_mmap_overwrite_ust_channel
$SESSION_NAME $CHANNEL_NAME
94 enable_ust_lttng_event_ok
$SESSION_NAME $EVENT_NAME $CHANNEL_NAME
95 start_lttng_tracing_ok
$SESSION_NAME
99 snapshot_add_output
$SESSION_NAME "net://localhost"
100 lttng_snapshot_record
$SESSION_NAME
103 echo $TRACE_PATH/$HOSTNAME/snapshot-1
104 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/snapshot-1
*
105 if [ $?
-ne 0 ]; then
110 lttng_snapshot_del_output
$SESSION_NAME 1
111 snapshot_add_output
$SESSION_NAME "net://localhost"
112 lttng_snapshot_record
$SESSION_NAME
114 # Validate test with the next ID since a del output was done prior.
115 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/snapshot-2
*
116 if [ $?
-ne 0 ]; then
121 stop_lttng_tracing
$SESSION_NAME
122 destroy_lttng_session
$SESSION_NAME
129 # Test a snapshot using a default name for the output destination.
130 function test_ust_default_name
()
132 diag
"Test UST snapshot streaming with default name"
133 create_lttng_session_no_output
$SESSION_NAME
134 enable_lttng_mmap_overwrite_ust_channel
$SESSION_NAME $CHANNEL_NAME
135 enable_ust_lttng_event_ok
$SESSION_NAME $EVENT_NAME $CHANNEL_NAME
136 start_lttng_tracing_ok
$SESSION_NAME
140 snapshot_add_output
$SESSION_NAME "net://localhost"
141 lttng_snapshot_record
$SESSION_NAME
142 stop_lttng_tracing
$SESSION_NAME
143 destroy_lttng_session
$SESSION_NAME
145 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/snapshot-1
*
153 function test_ust_default_name_custom_uri
()
155 diag
"Test UST snapshot streaming with default name with custom URL"
156 create_lttng_session_no_output
$SESSION_NAME
157 enable_lttng_mmap_overwrite_ust_channel
$SESSION_NAME $CHANNEL_NAME
158 enable_ust_lttng_event_ok
$SESSION_NAME $EVENT_NAME $CHANNEL_NAME
159 start_lttng_tracing_ok
$SESSION_NAME
163 snapshot_add_output
$SESSION_NAME "-C tcp://localhost:5342 -D tcp://localhost:5343"
164 lttng_snapshot_record
$SESSION_NAME
165 stop_lttng_tracing
$SESSION_NAME
166 destroy_lttng_session
$SESSION_NAME
168 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/snapshot-1
*
176 # Test a snapshot using a custom name for the output destination.
177 function test_ust_custom_name
()
180 local name
="asnapshotname"
182 diag
"Test UST snapshot streaming with custom name"
183 create_lttng_session_no_output
$SESSION_NAME
184 enable_lttng_mmap_overwrite_ust_channel
$SESSION_NAME $CHANNEL_NAME
185 enable_ust_lttng_event_ok
$SESSION_NAME $EVENT_NAME $CHANNEL_NAME
186 start_lttng_tracing_ok
$SESSION_NAME
190 snapshot_add_output
$SESSION_NAME "net://localhost" $name
191 lttng_snapshot_record
$SESSION_NAME
192 stop_lttng_tracing
$SESSION_NAME
193 destroy_lttng_session
$SESSION_NAME
195 if ls $TRACE_PATH/$HOSTNAME/$name* &> /dev
/null
; then
196 ok
0 "Custom name snapshot exists"
198 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/$name-*
201 fail
"No custom name snapshot found"
210 plan_tests
$NUM_TESTS
212 print_test_banner
"$TEST_DESC"
214 if [ "$(id -u)" == "0" ]; then
220 start_lttng_relayd
"-o $TRACE_PATH"
223 tests
=( test_ust_default_name_with_del test_ust_default_name test_ust_custom_name test_ust_default_name_custom_uri
)
225 for fct_test
in ${tests[@]};
227 SESSION_NAME
=$
(randstring
16 0)
229 if [ $?
-eq 0 ]; then
230 # Only delete if successful