Tests: consolidate session creation with a uri parameter in utils.sh
[lttng-tools.git] / tests / stress / test_multi_sessions_per_uid_5app_streaming
CommitLineData
30d86f7d
DG
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. details.
8#
9# You should have received a copy of the GNU Lesser General Public License
10# along with this library; if not, write to the Free Software Foundation, Inc.,
11# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
12
13CURDIR=$(dirname $0)/
14TESTDIR=$CURDIR/..
15LAUNCH_APP="launch_ust_app"
16SESSION_NAME="stress"
17EVENT_NAME="tp:tptest"
18LOG_FILE_SESSIOND="sessiond.log"
19LOG_FILE_RELAYD="relayd.log"
20CHANNEL_NAME="channel0"
21NR_APP=5
22NR_SESSION=5
23NR_LOOP=1000
24COREDUMP_FILE=$(cat /proc/sys/kernel/core_pattern)
25NUM_TESTS=16
7e635e71 26APPS_PID=
30d86f7d
DG
27
28TEST_DESC="Stress test - $NR_SESSION sessions per UID streaming with $NR_APP apps"
29
30source $TESTDIR/utils/utils.sh
31
32# MUST set TESTDIR before calling those functions
33
34function enable_channel_per_uid()
35{
36 local sess_name=$1
37 local channel_name=$2
38
39 $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-channel --buffers-uid -u $channel_name -s $sess_name >/dev/null 2>&1
40 ok $? "Enable channel $channel_name per UID for session $sess_name"
41}
42
30d86f7d
DG
43function check_sessiond()
44{
db7b260c 45 if [ -z "$(pgrep --full lt-lttng-sessiond)" ]; then
30d86f7d
DG
46 local str_date=$(date +%H%M%S-%d%m%Y)
47
48 diag "!!!The session daemon died unexpectedly!!!"
49 mv $LOG_FILE_SESSIOND $LOG_FILE_SESSIOND-$str_date
50 if [ -e $COREDUMP_FILE ]; then
51 mv $COREDUMP_FILE $COREDUMP_FILE-$str_date
52 fi
53 exit 1
54 fi
55}
56
57function check_relayd()
58{
db7b260c 59 if [ -z "$(pgrep --full lt-lttng-relayd)" ]; then
30d86f7d
DG
60 local str_date=$(date +%H%M%S-%d%m%Y)
61
62 diag "!!!The relay daemon died unexpectedly!!!"
63 mv $LOG_FILE_RELAYD $LOG_FILE_RELAYD-$str_date
64 if [ -e $COREDUMP_FILE ]; then
65 mv $COREDUMP_FILE $COREDUMP_FILE-$str_date
66 fi
67 exit 1
68 fi
69}
70
71function start_sessiond()
72{
73 local SESSIOND_BIN="lttng-sessiond"
74
75 validate_kernel_version
76 if [ $? -ne 0 ]; then
77 fail "Start session daemon"
78 BAIL_OUT "*** Kernel too old for session daemon tests ***"
79 fi
80
db7b260c 81 if [ -z $(pgrep --full lt-$SESSIOND_BIN) ]; then
30d86f7d
DG
82 # We have to start it like this so the ulimit -c is used by this
83 # process. Also, we collect any error message printed out.
0fc2834c 84 $TESTDIR/../src/bin/lttng-sessiond/$SESSIOND_BIN --quiet --background --consumerd32-path="$TESTDIR/../src/bin/lttng-consumerd/lttng-consumerd" --consumerd64-path="$TESTDIR/../src/bin/lttng-consumerd/lttng-consumerd" >$LOG_FILE_SESSIOND 2>&1
30d86f7d 85 status=$?
30d86f7d
DG
86 ok $status "Start session daemon"
87 fi
88}
89
90function start_relayd
91{
92 local opt=$1
93 local RELAYD_BIN="lttng-relayd"
94
db7b260c 95 if [ -z $(pgrep --full lt-$RELAYD_BIN) ]; then
30d86f7d
DG
96 $TESTDIR/../src/bin/lttng-relayd/$RELAYD_BIN $opt >$LOG_FILE_RELAYD 2>&1 &
97 ok $? "Start lttng-relayd (opt: \"$opt\")"
98 fi
99}
100
101test_stress()
102{
103 for b in $(seq 1 $NR_LOOP); do
104 for a in $(seq 1 $NR_SESSION); do
f0d43d3d 105 create_lttng_session_uri $SESSION_NAME-$a net://localhost
30d86f7d
DG
106 check_sessiond
107 check_relayd
108 enable_channel_per_uid $SESSION_NAME-$a $CHANNEL_NAME
109 check_sessiond
110 check_relayd
c4926bb5 111 enable_ust_lttng_event_ok $SESSION_NAME-$a $EVENT_NAME
30d86f7d
DG
112 check_sessiond
113 check_relayd
e563bbdb 114 start_lttng_tracing_ok $SESSION_NAME-$a
30d86f7d
DG
115 check_sessiond
116 check_relayd
117 done
118
119 for a in $(seq 1 $NR_SESSION); do
96340a01 120 stop_lttng_tracing_ok $SESSION_NAME-$a
30d86f7d
DG
121 check_sessiond
122 check_relayd
67b4c664 123 destroy_lttng_session_ok $SESSION_NAME-$a
30d86f7d
DG
124 check_sessiond
125 check_relayd
126 done
127 done
128
129 return 0
130}
131
132function cleanup()
133{
134 diag "Cleaning up!"
7e635e71
MD
135 for p in ${APPS_PID}; do
136 kill -s SIGKILL ${p}
137 wait ${p} 2>/dev/null
138 done
139 APPS_PID=
30d86f7d
DG
140 stop_lttng_sessiond
141 stop_lttng_relayd
142}
143
144function sighandler()
145{
146 cleanup
147 rm $LOG_FILE_SESSIOND $LOG_FILE_RELAYD
148 exit 1
149}
150
151trap sighandler SIGINT
7e635e71 152trap sighandler SIGTERM
30d86f7d
DG
153
154# Make sure we collect a coredump if possible.
155ulimit -c unlimited
156
157# MUST set TESTDIR before calling those functions
158plan_tests $NUM_TESTS
159
160print_test_banner "$TEST_DESC"
161
162TRACE_PATH=$(mktemp -d)
163
164start_relayd "-o $TRACE_PATH"
165start_sessiond
166
167diag "Starting applications launcher"
168
169# Start NR_APP applications script that will spawn apps non stop.
170./$TESTDIR/stress/$LAUNCH_APP $NR_APP &
7e635e71 171APPS_PID="${APPS_PID} ${!}"
30d86f7d
DG
172
173test_stress
174out=$?
175if [ $out -ne 0 ]; then
176 cleanup
177 exit $out
178fi
179
180cleanup
181rm -rf $TRACE_PATH
182rm $LOG_FILE_SESSIOND $LOG_FILE_RELAYD
183exit 0
This page took 0.037602 seconds and 4 git commands to generate.