X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fgils%2Ftest1.sh;h=5ee2b2309685faf0ae3103c6030f3f6b4165210f;hb=2147978ec217214e2fea9ca2d0a5b089fe0977f4;hp=e1eb5ab43032847f55e1a7ee895c1bcbb04d4eac;hpb=403ae06f9dbf8180008ccc8128f642203d41ae50;p=idzebra-moved-to-github.git diff --git a/test/gils/test1.sh b/test/gils/test1.sh index e1eb5ab..5ee2b23 100755 --- a/test/gils/test1.sh +++ b/test/gils/test1.sh @@ -1,54 +1,51 @@ #!/bin/sh -# $Id: test1.sh,v 1.6 2003-05-21 14:39:22 adam Exp $ -echo "testing without stored keys (zebra1.cfg)" +# $Id: test1.sh,v 1.7 2003-05-24 22:34:48 adam Exp $ -sleep 1 +LOG=test1.log -echo "initializing..." +rm -f $LOG +echo "initializing..." >>$LOG 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 +../../index/zebraidx -l $LOG -c zebra1.cfg init || exit 1 -echo "updating..." -../../index/zebraidx -l idx.log -c zebra1.cfg update records || exit 1 +echo "updating..." >>$LOG +../../index/zebraidx -l $LOG -c zebra1.cfg update records || exit 1 -echo "killing old server (if any)..." +echo "killing old server (if any)..." >>$LOG test -f zebrasrv.pid && kill `cat zebrasrv.pid` -rm -f zebrasrv.pid -rm -f srv.log -echo "starting server..." -../../index/zebrasrv -S -c zebra1.cfg -l srv.log tcp:@:9901 & +echo "starting server..." >>$LOG +../../index/zebrasrv -S -c zebra1.cfg -l $LOG tcp:@:9901 & sleep 1 -echo "checking it runs..." +echo "checking it runs..." >>$LOG test -f zebrasrv.pid || exit 1 -echo "search 1..." +echo "search 1..." >>$LOG ../api/testclient localhost:9901 utah > log || exit 1 -grep "^Result count: 17$" log || exit 1 +grep "^Result count: 17$" log >/dev/null || exit 1 -echo "search 2..." +echo "search 2..." >>$LOG ../api/testclient localhost:9901 "@or utah the" > log || exit 1 -grep "^Result count: 40$" log || exit 1 +grep "^Result count: 40$" log >/dev/null || exit 1 -echo "search 3..." +echo "search 3..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 the" > log || exit 1 -grep "^Result count: 1$" log || exit 1 +grep "^Result count: 1$" log >/dev/null || exit 1 -echo "search 4..." +echo "search 4..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 9$" 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 zebra1.cfg update records || exit 1 -echo "search 5..." +echo "search 5..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 18$" log || exit 1 +grep "^Result count: 18$" log >/dev/null || exit 1 -echo "stopping server..." +echo "stopping server..." >>$LOG test -f zebrasrv.pid || exit 1 kill `cat zebrasrv.pid` || exit 1 rm -f zebrasrv.pid