Generate session name and default output on sessiond's end
[lttng-tools.git] / tests / regression / tools / snapshots / test_ust_streaming
... / ...
CommitLineData
1#!/bin/bash
2#
3# Copyright (C) - 2013 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
17TEST_DESC="Streaming - Snapshot UST tracing"
18
19CURDIR=$(dirname $0)/
20TESTDIR=$CURDIR/../../..
21EVENT_NAME="tp:tptest"
22SESSION_NAME=""
23CHANNEL_NAME="chan1"
24BIN_NAME="gen-nevents"
25TESTAPP_PATH="$TESTDIR/utils/testapp"
26TESTAPP_NAME="gen-ust-events"
27TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
28NR_ITER=-1
29NR_USEC_WAIT=100
30APPS_PID=
31
32TRACE_PATH=$(mktemp -d)
33
34NUM_TESTS=75
35
36source $TESTDIR/utils/utils.sh
37
38if [ ! -x "$TESTAPP_BIN" ]; then
39 BAIL_OUT "No UST events binary detected."
40fi
41
42function snapshot_add_output ()
43{
44 local sess_name=$1
45 local trace_path=$2
46 local name=$3
47 local extra_opt=""
48
49 if [ ! -z $name ]; then
50 extra_opt="-n $name"
51 fi
52
53 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot add-output -s $sess_name $extra_opt $trace_path >/dev/null 2>&1
54 ok $? "Added snapshot output $trace_path"
55}
56
57# Start trace application and return once one event has been hit.
58function start_test_app()
59{
60 local tmp_file=$(mktemp -u)
61
62 # Start application with a temporary file.
63 $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT $tmp_file &
64 ret=$?
65 APPS_PID="${APPS_PID} ${!}"
66 ok $ret "Start application to trace"
67
68 # Wait for the application file to appear indicating that at least one
69 # tracepoint has been fired.
70 while [ ! -f "$tmp_file" ]; do
71 sleep 0.5
72 done
73 diag "Removing test app temporary file $tmp_file"
74 rm -f $tmp_file
75}
76
77function stop_test_apps()
78{
79 diag "Stopping $TESTAPP_NAME"
80 for p in ${APPS_PID}; do
81 kill ${p}
82 wait ${p} 2>/dev/null
83 done
84 APPS_PID=
85}
86
87# Test a snapshot using a default name for the output destination.
88function test_ust_default_name_with_del()
89{
90 diag "Test UST snapshot streaming with default name with delete output"
91 create_lttng_session_no_output $SESSION_NAME
92 enable_lttng_mmap_overwrite_ust_channel $SESSION_NAME $CHANNEL_NAME
93 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $CHANNEL_NAME
94 start_lttng_tracing_ok $SESSION_NAME
95
96 start_test_app
97
98 snapshot_add_output $SESSION_NAME "net://localhost"
99 lttng_snapshot_record $SESSION_NAME
100
101 # Validate test
102 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/snapshot-1*
103 if [ $? -ne 0 ]; then
104 stop_test_apps
105 return $?
106 fi
107
108 lttng_snapshot_del_output_ok $SESSION_NAME 1
109 snapshot_add_output $SESSION_NAME "net://localhost"
110 lttng_snapshot_record $SESSION_NAME
111
112 # Validate test with the next ID since a del output was done prior.
113 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/snapshot-2*
114 if [ $? -ne 0 ]; then
115 stop_test_apps
116 return $?
117 fi
118
119 stop_lttng_tracing_ok $SESSION_NAME
120 destroy_lttng_session_ok $SESSION_NAME
121
122 stop_test_apps
123
124 return 0
125}
126
127# Test a snapshot using a default name for the output destination.
128function test_ust_default_name()
129{
130 diag "Test UST snapshot streaming with default name"
131 create_lttng_session_no_output $SESSION_NAME
132 enable_lttng_mmap_overwrite_ust_channel $SESSION_NAME $CHANNEL_NAME
133 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $CHANNEL_NAME
134 start_lttng_tracing_ok $SESSION_NAME
135
136 start_test_app
137
138 snapshot_add_output $SESSION_NAME "net://localhost"
139 lttng_snapshot_record $SESSION_NAME
140 stop_lttng_tracing_ok $SESSION_NAME
141 destroy_lttng_session_ok $SESSION_NAME
142 # Validate test
143 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/snapshot-1*
144 out=$?
145
146 stop_test_apps
147
148 return $out
149}
150
151function test_ust_default_name_custom_uri()
152{
153 diag "Test UST snapshot streaming with default name with custom URL"
154 create_lttng_session_no_output $SESSION_NAME
155 enable_lttng_mmap_overwrite_ust_channel $SESSION_NAME $CHANNEL_NAME
156 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $CHANNEL_NAME
157 start_lttng_tracing_ok $SESSION_NAME
158
159 start_test_app
160
161 snapshot_add_output $SESSION_NAME "-C tcp://localhost:5342 -D tcp://localhost:5343"
162 lttng_snapshot_record $SESSION_NAME
163 stop_lttng_tracing_ok $SESSION_NAME
164 destroy_lttng_session_ok $SESSION_NAME
165 # Validate test
166 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/snapshot-1*
167 out=$?
168
169 stop_test_apps
170
171 return $out
172}
173
174# Test a snapshot using a custom name for the output destination.
175function test_ust_custom_name()
176{
177 local out
178 local name="asnapshotname"
179
180 diag "Test UST snapshot streaming with custom name"
181 create_lttng_session_no_output $SESSION_NAME
182 enable_lttng_mmap_overwrite_ust_channel $SESSION_NAME $CHANNEL_NAME
183 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $CHANNEL_NAME
184 start_lttng_tracing_ok $SESSION_NAME
185
186 start_test_app
187
188 snapshot_add_output $SESSION_NAME "net://localhost" $name
189 lttng_snapshot_record $SESSION_NAME
190 stop_lttng_tracing_ok $SESSION_NAME
191 destroy_lttng_session_ok $SESSION_NAME
192
193 if ls $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/$name* &> /dev/null; then
194 ok 0 "Custom name snapshot exists"
195 # Validate test
196 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/$name-*
197 out=$?
198 else
199 fail "No custom name snapshot found"
200 out=1
201 fi
202
203 stop_test_apps
204
205 return $out
206}
207
208function test_ust_n_snapshot()
209{
210 diag "Test ust snapshot streaming multiple consecutive snapshot"
211 create_lttng_session_no_output $SESSION_NAME
212 enable_lttng_mmap_overwrite_ust_channel $SESSION_NAME $CHANNEL_NAME
213 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $CHANNEL_NAME
214 snapshot_add_output $SESSION_NAME "net://localhost" $name
215 start_test_app
216 for i in {1..5};
217 do
218 start_lttng_tracing_ok $SESSION_NAME
219 lttng_snapshot_record $SESSION_NAME
220 stop_lttng_tracing_ok $SESSION_NAME
221 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*/snapshot-1*
222 if [ $? -ne 0 ]; then
223 return 1
224 fi
225 set -u
226 rm -rf $TRACE_PATH/$HOSTNAME
227 set +u
228 done
229
230 destroy_lttng_session_ok $SESSION_NAME
231 stop_test_apps
232 return 0
233}
234
235plan_tests $NUM_TESTS
236
237print_test_banner "$TEST_DESC"
238
239if [ "$(id -u)" == "0" ]; then
240 isroot=1
241else
242 isroot=0
243fi
244
245start_lttng_relayd "-o $TRACE_PATH"
246start_lttng_sessiond
247
248tests=( test_ust_default_name_with_del
249 test_ust_default_name
250 test_ust_custom_name
251 test_ust_default_name_custom_uri
252 test_ust_n_snapshot
253)
254
255for fct_test in ${tests[@]};
256do
257 SESSION_NAME=$(randstring 16 0)
258 ${fct_test}
259 if [ $? -eq 0 ]; then
260 # Only delete if successful
261 rm -rf $TRACE_PATH
262 else
263 break
264 fi
265done
266
267stop_lttng_sessiond
268stop_lttng_relayd
This page took 0.02466 seconds and 5 git commands to generate.