]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/stress-server.sh
Removed counting of test processes; don't check running processes by default.
[ngircd-alex.git] / src / testsuite / stress-server.sh
1 #!/bin/sh
2 #
3 # ngIRCd Test Suite
4 # Copyright (c)2002-2004 by Alexander Barton (alex@barton.de)
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 # Please read the file COPYING, README and AUTHORS for more information.
11 #
12 # $Id: stress-server.sh,v 1.13 2004/09/04 18:20:16 alex Exp $
13 #
14
15 # detect source directory
16 [ -z "$srcdir" ] && srcdir=`dirname $0`
17
18 # parse command line
19 [ "$1" -gt 0 ] 2> /dev/null && CLIENTS="$1" || CLIENTS=5
20 [ "$2" -gt 0 ] 2> /dev/null && MAX="$2" || MAX=-1
21
22 # get our name
23 name=`basename $0`
24
25 # create directories
26 mkdir -p logs tests
27
28 # test for required external tools
29 type expect > /dev/null 2>&1
30 if [ $? -ne 0 ]; then
31   echo "      ${name}: \"expect\" not found.";  exit 77
32 fi
33 type telnet > /dev/null 2>&1
34 if [ $? -ne 0 ]; then
35   echo "      ${name}: \"telnet\" not found.";  exit 77
36 fi
37
38 # hello world! :-)
39 echo "      stressing server with $CLIENTS clients (be patient!):"
40
41 # create scripts for expect(1)
42 no=0
43 while [ ${no} -lt $CLIENTS ]; do
44   cat ${srcdir}/stress-A.e > tests/${no}.e
45   echo "send \"nick test${no}\\r\"" >> tests/${no}.e
46   cat ${srcdir}/stress-B.e >> tests/${no}.e
47   no=`expr ${no} + 1`
48 done
49
50 no=0
51 while [ ${no} -lt $CLIENTS ]; do
52   expect tests/${no}.e > logs/stress-${no}.log 2> /dev/null &
53
54   no=`expr ${no} + 1`
55   echo "      started client $no/$CLIENTS."
56
57   [ $MAX -gt 0 ] && $srcdir/wait-tests.sh $MAX
58 done
59
60 echo -n "      waiting for clients to complete: ."
61 touch logs/check-idle.log
62 while true; do
63   expect ${srcdir}/check-idle.e >> logs/check-idle.log; res=$?
64   echo "====================" >> logs/check-idle.log
65   [ $res -ne 99 ] && break
66
67   # there are still clients connected. Wait ...
68   sleep 3
69   echo -n "."
70 done
71
72 [ $res -eq 0 ] && echo " done." || echo " ERROR!"
73
74 exit $res
75
76 # -eof-