Use YAZ GFS PID file instead of zebrasrv.pid
[idzebra-moved-to-github.git] / test / gils / test1.sh
index 95e2aee..666284f 100755 (executable)
@@ -1,52 +1,51 @@
-echo "testing without stored keys (zebra1.cfg)"
+#!/bin/sh
+# $Id: test1.sh,v 1.11 2005-01-02 23:21:31 adam Exp $
 
-echo  "initializing..."
-mkdir -p reg
-rm -f records/esdd000[12].grs # these should not be here, will be created later
-rm -f idx.log srv.log
-../../index/zebraidx -l idx.log -c zebra1.cfg init || exit 1
+pp=${srcdir:-"."}
 
-echo "updating..."
-../../index/zebraidx -l idx.log -c zebra1.cfg update records  || exit 1
+LOG=test1.log
 
-echo "killing old server (if any)..."
-test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`
-rm -f zebrasrv.pid
-rm -f srv.log
+rm -f $LOG
+echo  "initializing..." >>$LOG
+test -d reg || mkdir reg
+rm -f $pp/records/esdd000[12].grs # these should not be here, will be created later
+../../index/zebraidx -l $LOG -c $pp/zebra1.cfg init || exit 1
 
-echo "starting server..."
-../../index/zebrasrv -S -c zebra1.cfg -l srv.log tcp:@:9901 &
+echo "updating..." >>$LOG
+../../index/zebraidx -l $LOG -c $pp/zebra1.cfg update $pp/records  || exit 1
+
+echo "starting server..." >>$LOG
+../../index/zebrasrv -D -p z.pid -S -c $pp/zebra1.cfg -l $LOG tcp:@:9901
 sleep 1
 
-echo "cheking it runs..."
-test -f zebrasrv.pid || exit 1
+echo "checking it runs..." >>$LOG
+test -f z.pid || sleep 5 || test -f z.pid || exit 1
 
-echo "search 1..."
-../testclient localhost:9901 utah > log || exit 1
-grep "^Result count: 17$" log || exit 1
+echo "search 1..." >>$LOG
+../api/testclient localhost:9901 utah > log || exit 1
+grep "^Result count: 17$" log >/dev/null || exit 1
 
-echo "search 2..."
-../testclient localhost:9901 "@or utah the" > log || exit 1
-grep "^Result count: 40$" log || exit 1
+echo "search 2..." >>$LOG
+../api/testclient localhost:9901 "@or utah the" > log || exit 1
+grep "^Result count: 40$" log >/dev/null || exit 1
 
-echo "search 3..."
-../testclient localhost:9901 "@attr 1=4 the" > log || exit 1
-grep "^Result count: 1$" log || exit 1
+echo "search 3..." >>$LOG
+../api/testclient localhost:9901 "@attr 1=4 the" > log || exit 1
+grep "^Result count: 1$" log >/dev/null || exit 1
 
-echo "search 4..."
-../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
-grep "^Result count: 9$" log || exit 1
+echo "search 4..." >>$LOG
+../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
+grep "^Result count: 9$" log >/dev/null || exit 1
 
-echo "reindexing..."
-../../index/zebraidx -l idx.log -c  zebra1.cfg update records || exit 1
+echo "reindexing..." >>$LOG
+../../index/zebraidx -l $LOG -c $pp/zebra1.cfg update $pp/records || exit 1
 
-echo "search 5..."
-../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
-grep "^Result count: 18$" log || exit 1
+echo "search 5..." >>$LOG
+../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1
+grep "^Result count: 18$" log >/dev/null || exit 1
 
-echo "stopping server..."
-test -f zebrasrv.pid || exit 1
-kill -9 `cat zebrasrv.pid` || exit 1
-rm -f zebrasrv.pid
+echo "stopping server..." >>$LOG
+test -f z.pid || exit 1
+kill `cat z.pid` || exit 1
+rm -f z.pid
 
-echo "ok"