X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=test%2Fgils%2Ftest3.sh;h=7350901008d10907eb8ac06b8151c17e8699a795;hp=e8bfbb0f596cfd7d50cbd467cd3a76d8e708d6f4;hb=6ba9698e88c0283e40fa5980a1a6b551fff2d597;hpb=51f51d3de3b24507ec02ffb8d0af62b57d25f8fb diff --git a/test/gils/test3.sh b/test/gils/test3.sh index e8bfbb0..7350901 100755 --- a/test/gils/test3.sh +++ b/test/gils/test3.sh @@ -1,125 +1,130 @@ #!/bin/sh -# $Id: test3.sh,v 1.4 2004-06-15 09:43:30 adam Exp $ +# $Id: test3.sh,v 1.9 2006-05-19 13:49:36 adam Exp $ # Testing searches with lots of @and operators # in order to test the fast-forward operation of rsets -pp=${srcdir:-"."} +srcdir=${srcdir:-"."} + +if [ "$srcdir" != "." ] + then + echo "Jumping over test" + exit 0 +fi LOG=test3.log DBG="-v 1647" rm -f $LOG -echo "killing old server (if any)..." >>$LOG -test -f zebrasrv.pid && kill `cat zebrasrv.pid` -rm -f zebrasrv.pid + +# these should not be here, will be created later +$srcdir/cleanrecords.sh echo "initializing..." >>$LOG mkdir -p reg -../../index/zebraidx -l $LOG -c $pp/zebra1.cfg init || exit 1 +../../index/zebraidx -l $LOG -c $srcdir/zebra1.cfg init || exit 1 echo "updating..." >>$LOG -../../index/zebraidx -l $LOG -c $pp/zebra1.cfg update $pp/records || exit 1 +../../index/zebraidx -l $LOG -c $srcdir/zebra1.cfg update $srcdir/records || exit 1 echo "starting server..." >>$LOG -../../index/zebrasrv -S -c $pp/zebra1.cfg $DBG -l $LOG tcp:@:9901 & -sleep 1 +../../index/zebrasrv -D -p z.pid -S -c $srcdir/zebra1.cfg $DBG -l $LOG unix:socket echo "checking it runs..." >>$LOG -test -f zebrasrv.pid || exit 1 +test -f z.pid || exit 1 echo "search A1..." >>$LOG -../api/testclient -c 17 localhost:9901 utah > log || exit 1 +../api/testclient -c 17 unix:socket utah > log || exit 1 echo "search A2..." >>$LOG -../api/testclient -c 30 localhost:9901 the > log || exit 1 +../api/testclient -c 31 unix:socket the > log || exit 1 echo "search A3..." >>$LOG -../api/testclient -c 4 localhost:9901 deposits > log || exit 1 +../api/testclient -c 4 unix:socket deposits > log || exit 1 echo "search B1..." >>$LOG -../api/testclient -c 7 localhost:9901 "@and utah the" > log || exit 1 +../api/testclient -c 7 unix:socket "@and utah the" > log || exit 1 echo "search B2..." >>$LOG -../api/testclient -c 7 localhost:9901 "@and the utah" > log || exit 1 +../api/testclient -c 7 unix:socket "@and the utah" > log || exit 1 echo "search C1..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and the utah epicenter" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and the utah epicenter" > log || exit 1 echo "search C2..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and the epicenter utah" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and the epicenter utah" > log || exit 1 echo "search C3..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and utah the epicenter" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and utah the epicenter" > log || exit 1 echo "search C4..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and utah epicenter the" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and utah epicenter the" > log || exit 1 echo "search C5..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and epicenter the utah" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and epicenter the utah" > log || exit 1 echo "search C6..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @and epicenter utah the" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @and epicenter utah the" > log || exit 1 echo "search D1..." >>$LOG -../api/testclient -c 29 localhost:9901 "@and the of " > log || exit 1 +../api/testclient -c 30 unix:socket "@and the of " > log || exit 1 echo "search D2..." >>$LOG -../api/testclient -c 29 localhost:9901 "@and of the" > log || exit 1 +../api/testclient -c 30 unix:socket "@and of the" > log || exit 1 echo "search D3..." >>$LOG -../api/testclient -c 29 localhost:9901 "@and @and the of of" > log || exit 1 +../api/testclient -c 30 unix:socket "@and @and the of of" > log || exit 1 echo "search D4..." >>$LOG -../api/testclient -c 29 localhost:9901 "@and @and of the the" > log || exit 1 +../api/testclient -c 30 unix:socket "@and @and of the the" > log || exit 1 echo "search D5..." >>$LOG -../api/testclient -c 29 localhost:9901 "@and @and @and the of of the" > log || exit 1 +../api/testclient -c 30 unix:socket "@and @and @and the of of the" > log || exit 1 echo "search D6..." >>$LOG -../api/testclient -c 15 localhost:9901 '@and @and in the data' > log || exit 1 +../api/testclient -c 15 unix:socket '@and @and in the data' > log || exit 1 echo "search D7..." >>$LOG -../api/testclient -c 15 localhost:9901 '@and @and in data the' > log || exit 1 +../api/testclient -c 15 unix:socket '@and @and in data the' > log || exit 1 echo "search D8..." >>$LOG -../api/testclient -c 2 localhost:9901 "@attr 1=4 @and UNPUBLISHED @and REPORTS AND" >log || exit 1 +../api/testclient -c 2 unix:socket "@attr 1=4 @and UNPUBLISHED @and REPORTS AND" >log || exit 1 # This one failed at early fast-forwards echo "search E1..." >>$LOG -../api/testclient -c 40 localhost:9901 "@or the utah" > log || exit 1 +../api/testclient -c 41 unix:socket "@or the utah" > log || exit 1 echo "search E2..." >>$LOG -../api/testclient -c 40 localhost:9901 "@or utah the" > log || exit 1 +../api/testclient -c 41 unix:socket "@or utah the" > log || exit 1 echo "search E3..." >>$LOG -../api/testclient -c 42 localhost:9901 "@or deposits @or the utah" > log || exit 1 +../api/testclient -c 42 unix:socket "@or deposits @or the utah" > log || exit 1 echo "search E4..." >>$LOG -../api/testclient -c 2 localhost:9901 "@and deposits @or the utah" > log || exit 1 +../api/testclient -c 3 unix:socket "@and deposits @or the utah" > log || exit 1 echo "search E5..." >>$LOG -../api/testclient -c 2 localhost:9901 "@and @or the utah deposits" > log || exit 1 +../api/testclient -c 3 unix:socket "@and @or the utah deposits" > log || exit 1 echo "search F1..." >>$LOG -../api/testclient -c 23 localhost:9901 "@not the utah " > log || exit 1 +../api/testclient -c 24 unix:socket "@not the utah " > log || exit 1 echo "search F2..." >>$LOG -../api/testclient -c 10 localhost:9901 "@not utah the " > log || exit 1 +../api/testclient -c 10 unix:socket "@not utah the " > log || exit 1 echo "search F3..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and deposits @not utah the " > log || exit 1 +../api/testclient -c 1 unix:socket "@and deposits @not utah the " > log || exit 1 echo "search F4..." >>$LOG -../api/testclient -c 1 localhost:9901 "@and @not utah the deposits" > log || exit 1 +../api/testclient -c 1 unix:socket "@and @not utah the deposits" > log || exit 1 echo "stopping server..." >>$LOG -test -f zebrasrv.pid || exit 1 -kill `cat zebrasrv.pid` || exit 1 -rm -f zebrasrv.pid +test -f z.pid || exit 1 +kill `cat z.pid` || exit 1 +rm -f z.pid sleep 1 echo "Test successfully completed" >>$LOG