-
Notifications
You must be signed in to change notification settings - Fork 5
/
lb-test-b2b-failover2.sh
executable file
·195 lines (160 loc) · 5.28 KB
/
lb-test-b2b-failover2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/bin/bash
# From lb-test.sh
#export JSLEE=/opt/mobicents/mobicents-slee-2.8.14.40
#export JBOSS_HOME=$JSLEE/jboss-5.1.0.GA
#export JAVA_OPTS="-Xms1024m -Xmx1024m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode"
#export SIPP=$PWD/sipp
#export LBVERSION=2.0.17
#rm -rf logs
#mkdir logs
export START=1
export SUCCESS=0
echo -e "\nB2BUA Early Dialog Failover Test\n"
echo -e "Start Load Balancer and Cluster\n"
export JAVA_OPTS="-Xms1024m -Xmx1024m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false"
java $JAVA_OPTS -DlogConfigFile=$LBTEST/lb-log4j.xml -jar $LBPATH/sip-balancer-jar-$LBVERSION-jar-with-dependencies.jar -mobicents-balancer-config=$LBTEST/lb-configuration.xml &
export LB_PID="$!"
echo "Load Balancer: $LB_PID"
echo "Wait 10 seconds.."
sleep 10
export JBOSS_HOME=$LB_JBOSS1
$LB_JBOSS1/bin/run.sh -c default -b 127.0.0.1 -Djboss.service.binding.set=ports-01 -Djboss.messaging.ServerPeerID=0 -Dsession.serialization.jboss=false > $LOG/lb-b2bua-early-failover-port-1-jboss.log 2>&1 &
export NODE1_PID="$!"
echo "NODE1: $NODE1_PID"
sleep 10
TIME=0
while :; do
sleep 10
TIME=$((TIME+10))
echo " .. $TIME seconds"
STARTED_IN_1=$(grep -c " Started in " $LOG/lb-b2bua-early-failover-port-1-jboss.log)
if [ "$STARTED_IN_1" -eq 1 ]; then break; fi
if [ $TIME -gt 300 ]; then
export START=0
break
fi
done
if [ "$START" -eq 0 ]; then
echo "There is a problem with starting Load Balancer and Cluster!"
echo "Wait 10 seconds.."
pkill -TERM -P $NODE1_PID
sleep 10
kill $LB_PID
wait $LB_PID 2>/dev/null
exit $SUCCESS
fi
export JBOSS_HOME=$LB_JBOSS2
$LB_JBOSS2/bin/run.sh -c default -b 127.0.0.2 -Djboss.service.binding.set=ports-02 -Djboss.messaging.ServerPeerID=1 -Dsession.serialization.jboss=false > $LOG/lb-b2bua-early-failover-port-2-jboss.log 2>&1 &
export NODE2_PID="$!"
echo "NODE2: $NODE2_PID"
sleep 10
TIME=0
while :; do
sleep 10
TIME=$((TIME+10))
echo " .. $TIME seconds"
STARTED_IN_2=$(grep -c " Started in " $LOG/lb-b2bua-early-failover-port-2-jboss.log)
if [ "$STARTED_IN_2" -eq 1 ]; then
export START=1
break
fi
if [ $TIME -gt 300 ]; then
export START=0
break
fi
done
if [ "$START" -eq 1 ]; then
echo "Load Balancer and Cluster are ready!"
else
echo "There is a problem with starting Load Balancer and Cluster!"
echo "Wait 20 seconds.."
pkill -TERM -P $NODE1_PID
sleep 10
pkill -TERM -P $NODE2_PID
sleep 10
kill $LB_PID
wait $LB_PID 2>/dev/null
exit $SUCCESS
fi
####
#exit 1
echo -e "\nStart B2BUA Early Dialog Failover Test\n"
echo -e " B2BUA Early Dialog Failover Test is Started\n" >> $REPORT
cd $JSLEE/examples/sip-b2bua/sipp
$SIPP -trace_err -nd -sf uas_EARLY_DIALOG.xml -i 127.0.0.1 -p 5090 -r 1 -m 5 -l 5 -bg
#UAS_PID=$!
UAS_PID=$(ps aux | grep '[u]as_EARLY_DIALOG.xml' | awk '{print $2}')
if [ "$UAS_PID" == "" ]; then
exit -1
fi
echo "UAS: $UAS_PID"
sleep 1
$SIPP 127.0.0.1:5060 -nd -trace_err -sf uac_DIALOG.xml -i 127.0.0.1 -p 5050 -r 1 -m 5 -l 5 -bg
#UAC_PID=$!
UAC_PID=$(ps aux | grep '[u]ac_DIALOG.xml' | awk '{print $2}')
if [ "$UAC_PID" == "" ]; then
exit
fi
echo "UAC: $UAC_PID"
#sleep 120s
TIME=0
while :; do
sleep 10
TIME=$((TIME+10))
echo " .. $TIME seconds"
# stop Node1 after 40 seconds
if [ "$TIME" -eq 40 ]
then
echo " .. Stop Node1: pkill -TERM -P $NODE1_PID"
pkill -TERM -P $NODE1_PID
fi
TEST=$(ps aux | grep '[u]as_EARLY_DIALOG.xml' | awk '{print $2}')
if [ "$TEST" != "$UAS_PID" ]; then
export SUCCESS=1
break
fi
done
SIP_B2BUA_EARLY_EXIT=$?
echo -e "B2BUA Early Dialog Failover Test is Finished: $SIP_B2BUA_EARLY_EXIT for $TIME seconds\n"
echo -e " B2BUA Early Dialog Failover Test is Finished: $SIP_B2BUA_EARLY_EXIT for $TIME seconds\n" >> $REPORT
if [ "$SIP_B2BUA_EARLY_EXIT" -ne 0 ]; then export SUCCESS=0; fi
# error handling
UAS_ERRORS=$JSLEE/examples/sip-b2bua/sipp/uas_EARLY_DIALOG_"$UAS_PID"_errors.log
if [ -f $UAS_ERRORS ]; then
NUMOFLINES=$(wc -l < $UAS_ERRORS)
WATCHDOG=$(grep -c "Overload warning: the minor watchdog timer" $UAS_ERRORS)
TEST=$((NUMOFLINES-1-WATCHDOG))
if [ "$TEST" -gt 0 ]
then
export SUCCESS=0
echo "WATCHDOG: $WATCHDOG of NUMOFLINES: $NUMOFLINES"
echo -e "There are errors. See ERRORs in $UAS_ERRORS\n"
echo -e " There are errors. See ERRORs in $UAS_ERRORS\n" >> $REPORT
fi
fi
UAC_ERRORS=$JSLEE/examples/sip-b2bua/sipp/uac_DIALOG_"$UAC_PID"_errors.log
if [ -f $UAC_ERRORS ]; then
NUMOFLINES=$(wc -l < $UAC_ERRORS)
WATCHDOG=$(grep -c "Overload warning: the minor watchdog timer" $UAC_ERRORS)
TEST=$((NUMOFLINES-1-WATCHDOG))
if [ "$TEST" -gt 0 ]
then
export SUCCESS=0
echo "WATCHDOG: $WATCHDOG of NUMOFLINES: $NUMOFLINES"
echo -e "There are errors. See ERRORs in $UAC_ERRORS\n"
echo -e " There are errors. See ERRORs in $UAC_ERRORS\n" >> $REPORT
fi
fi
echo "Stopping Cluster nodes and Load Balancer."
echo "Wait 10 seconds.."
#pkill -TERM -P $NODE1_PID
#echo "Waiting 10 seconds"
#sleep 10
pkill -TERM -P $NODE2_PID
sleep 10
#kill -9 $LB_PID
kill $LB_PID
wait $LB_PID 2>/dev/null
cd $LOG
find . -name 'load-balancer.log*' -exec bash -c 'mv $0 ${0/load-balancer/lb-b2bua-early-failover-loadbalancer}' {} \;
exit $SUCCESS