Fix zebraidx init's. Use SIGTERM instead of SIGKILL for scripts
[idzebra-moved-to-github.git] / test / gils / test2.sh
1 echo "Testing with storekeys (zebra2.cfg)"
2 echo "init..."
3 rm -f idx.log log
4 rm -f records/esdd000[12].grs # these should not be here, will be created later
5 ../../index/zebraidx -l idx.log -c zebra2.cfg init || exit 1
6
7 echo "update 1..."
8 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
9
10 echo "update 2..."
11 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
12
13 echo "killing old server (if any)..."
14 test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`
15 rm -f zebrasrv.pid
16 rm -f srv.log
17
18 echo "starting server..."
19 ../../index/zebrasrv -S -c zebra2.cfg -l srv.log tcp:@:9901 &
20 sleep 1
21 test -f zebrasrv.pid || exit 1
22
23 echo "search 1..."
24 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
25 grep "^Result count: 9$" log || exit 1
26
27 echo "update 3..."
28 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
29
30 echo "search 2..."
31 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
32 grep "^Result count: 9$" log || exit 1
33
34 echo "making test records..."
35 cp records/esdd0006.grs records/esdd0001.grs
36
37 echo "indexing them..."
38 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
39
40 echo "search 3..."
41 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
42 grep "^Result count: 10$" log || exit 1
43 touch records/esdd0001.grs
44
45 echo "indexing again..."
46 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
47
48 echo "search 4..."
49 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
50 grep "^Result count: 10$" log || exit 1
51
52 echo "making another test record..."
53 mv records/esdd0001.grs records/esdd0002.grs
54
55 echo "indexing it too..."
56 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
57
58 echo "search 5..."
59 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
60 grep "^Result count: 10$" log || exit 1
61
62 sleep 1
63 echo "modifying a test record..."
64 sed 's/UTAH/XYZ/g' <records/esdd0002.grs >records/esdd0002x.grs
65 mv records/esdd0002x.grs records/esdd0002.grs
66
67 echo "indexing it..."
68 ../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1
69 sleep 1
70
71 echo "search 6..."
72 ../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
73 grep "^Result count: 9$" log || exit 1
74
75 echo "search 7..."
76 ../testclient localhost:9901 "@attr 1=4 xyz" > log || exit 1
77 grep "^Result count: 1$" log || exit 1
78
79 echo "stopping server..."
80 test -f zebrasrv.pid || exit 1
81 kill `cat zebrasrv.pid` || exit 1
82 rm -f idx.log log
83 rm -f records/esdd000[12].grs 
84 rm -f zebrasrv.pid
85 rm -f srv.log
86
87 echo ok