Reduce output for tests
[idzebra-moved-to-github.git] / test / gils / stop03.sh
1 #!/bin/sh
2 # $Id: stop03.sh,v 1.6 2003-09-24 11:45:44 adam Exp $
3 # test start and stop of the threaded server (-T)
4
5 LOG=stop03.log
6
7 rm -f $LOG
8 echo "initializing" >>$LOG
9 mkdir -p reg
10 ../../index/zebraidx -l $LOG -c zebra1.cfg init || exit 1
11
12 #create a base to test on
13 ../../index/zebraidx -l $LOG -c zebra1.cfg update records  || exit 1
14
15 #kill old server (if any)
16 test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`
17
18 echo "Starting server with -T (threaded)..." >>$LOG
19 (
20   ../../index/zebrasrv -T -c zebra1.cfg -l $LOG tcp:@:9901 2>out ||
21     echo "server failed with $?" > $LOG
22 )&
23 sleep 1
24
25 if grep 'not available' out >/dev/null; then
26     test -f zebrasrv.pid && rm zebrasrv.pid
27     exit 0
28 fi
29 echo "  checking that it runs... " >>$LOG
30 test -f zebrasrv.pid || exit 1
31 PID=`cat zebrasrv.pid`
32 ps -p $PID | grep $PID >/dev/null || exit 1
33
34 echo "  connecting to it..." >>$LOG
35 ../api/testclient localhost:9901 utah >>$LOG || exit 1
36 sleep 1
37
38 echo "  checking that it still runs..." >>$LOG
39 ps -p $PID >/dev/null || exit 1
40
41 echo "  connecting again, with a delay..." >>$LOG
42 ../api/testclient localhost:9901 utah 5 >>$LOG &
43 sleep 1 # let the client connect 
44
45 echo "  killing it..." >>$LOG
46 kill $PID
47 sleep 1
48
49 echo "  checking that it is dead" >>$LOG
50 ps -p $PID | grep $PID >/dev/null && exit 1
51
52 # clean up
53 rm -rf reg zebrasrv.pid