Gen-ust-events: use options instead of arguments
[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/../../..
ea3a3cae
CB
21NR_ITER=5
22NR_USEC_WAIT=1000000
23TESTAPP_PATH="$TESTDIR/utils/testapp"
24TESTAPP_NAME="gen-ust-events"
25TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
f4e40ab6
DG
26SESSION_NAME="stream"
27EVENT_NAME="tp:tptest"
28PID_RELAYD=0
29
f02e1e8a
DG
30TRACE_PATH=$(mktemp -d)
31
f8ccb5c8 32NUM_TESTS=16
d346ccad 33
9ac429ef 34source $TESTDIR/utils/utils.sh
f4e40ab6 35
ea3a3cae
CB
36if [ ! -x "$TESTAPP_BIN" ]; then
37 BAIL_OUT "No UST events binary detected."
f4e40ab6
DG
38fi
39
785d2d0d 40function lttng_create_session_uri
f4e40ab6
DG
41{
42 # Create session with default path
785d2d0d 43 $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $SESSION_NAME -U net://localhost >/dev/null 2>&1
d346ccad 44 ok $? "Create session with default path"
f4e40ab6
DG
45}
46
f4e40ab6
DG
47
48# MUST set TESTDIR before calling those functions
49
50function test_ust_before_start ()
51{
5fcaccbc
MD
52 local file_sync_before_last=$(mktemp -u)
53
d346ccad 54 diag "Test UST streaming BEFORE tracing starts"
785d2d0d 55 lttng_create_session_uri
c4926bb5 56 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
f4e40ab6
DG
57
58 # Run 5 times with a 1 second delay
e8526e3f 59 $TESTAPP_BIN -i $NR_ITER -w $NR_USEC_WAIT --sync-before-last-event ${file_sync_before_last} > /dev/null 2>&1 &
c7613334 60
e563bbdb 61 start_lttng_tracing_ok $SESSION_NAME
5fcaccbc
MD
62
63 touch ${file_sync_before_last}
64
f8ccb5c8 65 # Wait for the applications started in background
c7613334 66 wait
d346ccad 67
96340a01 68 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 69 destroy_lttng_session_ok $SESSION_NAME
5fcaccbc 70 rm -f ${file_sync_before_last}
f4e40ab6
DG
71}
72
73function test_ust_after_start ()
74{
5fcaccbc
MD
75 local file_sync_after_first=$(mktemp -u)
76
d346ccad 77 diag "Test UST streaming AFTER tracing starts"
785d2d0d 78 lttng_create_session_uri
c4926bb5 79 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
e563bbdb 80 start_lttng_tracing_ok $SESSION_NAME
f4e40ab6
DG
81
82 # Run 5 times with a 1 second delay
e8526e3f
JR
83 $TESTAPP_BIN -i $NR_ITER -w $NR_USEC_WAIT \
84 --sync-after-first-event ${file_sync_after_first} >/dev/null 2>&1
d346ccad 85
5fcaccbc
MD
86 while [ ! -f "${file_sync_after_first}" ]; do
87 sleep 0.5
88 done
c7613334 89
96340a01 90 stop_lttng_tracing_ok $SESSION_NAME
67b4c664 91 destroy_lttng_session_ok $SESSION_NAME
c7613334
MD
92
93 # Wait for the applications started in background
94 wait
5fcaccbc 95 rm -f ${file_sync_after_first}
f4e40ab6
DG
96}
97
d346ccad
CB
98plan_tests $NUM_TESTS
99
e3bef725
CB
100print_test_banner "$TEST_DESC"
101
fb3268e3 102start_lttng_relayd "-o $TRACE_PATH"
7972aab2 103start_lttng_sessiond
f4e40ab6
DG
104
105tests=( test_ust_before_start test_ust_after_start )
106
107for fct_test in ${tests[@]};
108do
109 SESSION_NAME=$(randstring 16 0)
110 ${fct_test}
111
112 # Validate test
f02e1e8a 113 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
f4e40ab6
DG
114 if [ $? -eq 0 ]; then
115 # Only delete if successful
f02e1e8a 116 rm -rf $TRACE_PATH
f4e40ab6
DG
117 else
118 break
119 fi
120done
121
fb3268e3
CB
122stop_lttng_sessiond
123stop_lttng_relayd
f4e40ab6
DG
124
125exit $out
This page took 0.053839 seconds and 5 git commands to generate.