Fix zebraidx init's. Use SIGTERM instead of SIGKILL for scripts
[idzebra-moved-to-github.git] / test / gils / test1.sh
1 echo "testing without stored keys (zebra1.cfg)"
2
3 echo "See if servers are running...."
4 ps ax|grep zebrasrv
5 sleep 1
6
7 echo  "initializing..."
8 mkdir -p reg
9 rm -f records/esdd000[12].grs # these should not be here, will be created later
10 rm -f idx.log srv.log
11 ../../index/zebraidx -l idx.log -c zebra1.cfg init || exit 1
12
13 echo "updating..."
14 ../../index/zebraidx -l idx.log -c zebra1.cfg update records  || exit 1
15
16 echo "killing old server (if any)..."
17 test -f zebrasrv.pid && kill `cat zebrasrv.pid`
18 rm -f zebrasrv.pid
19 rm -f srv.log
20
21 echo "starting server..."
22 ../../index/zebrasrv -S -c zebra1.cfg -l srv.log tcp:@:9901 &
23 sleep 1
24
25 echo "checking it runs..."
26 test -f zebrasrv.pid || exit 1
27
28 echo "search 1..."
29 ../testclient localhost:9901 utah > log || exit 1
30 grep "^Result count: 17$" log || exit 1
31
32 echo "search 2..."
33 ../testclient localhost:9901 "@or utah the" > log || exit 1
34 grep "^Result count: 40$" log || exit 1
35
36 echo "search 3..."
37 ../testclient localhost:9901 "@attr 1=4 the" > log || exit 1
38 grep "^Result count: 1$" log || exit 1
39
40 echo "search 4..."
41 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
42 grep "^Result count: 9$" log || exit 1
43
44 echo "reindexing..."
45 ../../index/zebraidx -l idx.log -c  zebra1.cfg update records || exit 1
46
47 echo "search 5..."
48 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
49 grep "^Result count: 18$" log || exit 1
50
51 echo "stopping server..."
52 test -f zebrasrv.pid || exit 1
53 kill `cat zebrasrv.pid` || exit 1
54 rm -f zebrasrv.pid
55
56 echo "ok"