Tests: Cleanup and move gen-ust-events testapp under utils
[lttng-tools.git] / tests / regression / tools / streaming / test_ust
CommitLineData
f4e40ab6
DG
1#!/bin/bash
2#
3# Copyright (C) - 2012 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
c38b5107 17TEST_DESC="Streaming - User space tracing"
f4e40ab6
DG
18
19CURDIR=$(dirname $0)/
9ac429ef 20TESTDIR=$CURDIR/../../..
f4e40ab6
DG
21BIN_NAME="gen-ust-events"
22SESSION_NAME="stream"
23EVENT_NAME="tp:tptest"
24PID_RELAYD=0
25
f02e1e8a
DG
26TRACE_PATH=$(mktemp -d)
27
7972aab2 28NUM_TESTS=18
d346ccad 29
9ac429ef 30source $TESTDIR/utils/utils.sh
f4e40ab6 31
f4e40ab6 32if [ ! -x "$CURDIR/$BIN_NAME" ]; then
d346ccad 33 BAIL_OUT "No UST nevents binary detected."
f4e40ab6
DG
34fi
35
785d2d0d 36function lttng_create_session_uri
f4e40ab6
DG
37{
38 # Create session with default path
785d2d0d 39 $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $SESSION_NAME -U net://localhost >/dev/null 2>&1
d346ccad 40 ok $? "Create session with default path"
f4e40ab6
DG
41}
42
43function wait_apps
44{
f4e40ab6 45 while [ -n "$(pidof $BIN_NAME)" ]; do
f4e40ab6
DG
46 sleep 0.5
47 done
d346ccad 48 pass "Wait for applications to end"
f4e40ab6
DG
49}
50
51# MUST set TESTDIR before calling those functions
52
53function test_ust_before_start ()
54{
d346ccad 55 diag "Test UST streaming BEFORE tracing starts"
785d2d0d 56 lttng_create_session_uri
f4e40ab6
DG
57 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
58
59 # Run 5 times with a 1 second delay
60 ./$CURDIR/$BIN_NAME 5 1000000 >/dev/null 2>&1 &
61
fb3268e3 62 start_lttng_tracing $SESSION_NAME
f4e40ab6
DG
63
64 wait_apps
d346ccad 65
fb3268e3 66 stop_lttng_tracing $SESSION_NAME
f4e40ab6
DG
67 destroy_lttng_session $SESSION_NAME
68}
69
70function test_ust_after_start ()
71{
d346ccad 72 diag "Test UST streaming AFTER tracing starts"
785d2d0d 73 lttng_create_session_uri
f4e40ab6 74 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
fb3268e3 75 start_lttng_tracing $SESSION_NAME
f4e40ab6
DG
76
77 # Run 5 times with a 1 second delay
78 ./$CURDIR/$BIN_NAME 5 1000000 >/dev/null 2>&1 &
79
80 wait_apps
d346ccad 81
fb3268e3 82 stop_lttng_tracing $SESSION_NAME
f4e40ab6
DG
83 destroy_lttng_session $SESSION_NAME
84}
85
d346ccad
CB
86plan_tests $NUM_TESTS
87
e3bef725
CB
88print_test_banner "$TEST_DESC"
89
fb3268e3 90start_lttng_relayd "-o $TRACE_PATH"
7972aab2 91start_lttng_sessiond
f4e40ab6
DG
92
93tests=( test_ust_before_start test_ust_after_start )
94
95for fct_test in ${tests[@]};
96do
97 SESSION_NAME=$(randstring 16 0)
98 ${fct_test}
99
100 # Validate test
f02e1e8a 101 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
f4e40ab6
DG
102 if [ $? -eq 0 ]; then
103 # Only delete if successful
f02e1e8a 104 rm -rf $TRACE_PATH
f4e40ab6
DG
105 else
106 break
107 fi
108done
109
fb3268e3
CB
110stop_lttng_sessiond
111stop_lttng_relayd
f4e40ab6
DG
112
113exit $out
This page took 0.033928 seconds and 5 git commands to generate.