X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftest_http.sh;h=5d177c702fa8500333684808407d9d8789301e53;hb=8cc486015ba87bc3daf483d18d31d163c3670a21;hp=b99971f7d3056099cffcb0f117984330428f3b1e;hpb=512fb20566662ab58b3dcd9ab1ba12df101238d5;p=pazpar2-moved-to-github.git diff --git a/test/test_http.sh b/test/test_http.sh index b99971f..5d177c7 100755 --- a/test/test_http.sh +++ b/test/test_http.sh @@ -1,93 +1,11 @@ #!/bin/sh -# $Id: test_http.sh,v 1.1 2007-05-15 15:50:48 adam Exp $ # -# Regression test using pazpar2 against yaz-ztest -# Reads Pazpar2 URLs from test_http_urls -# Outputs to test_http_.log -# Matches against results in test_htttp_.res -# - +TEST=`basename $0 .sh` # srcdir might be set by make srcdir=${srcdir:-"."} -# Find a suitable yaz-ztest -yt="" -for d in /usr/bin /usr/local/bin ../../yaz/ztest; do - yt=${d}/yaz-ztest - if test -x ${yt}; then - break - fi -done -if test -z "${yt}"; then - echo "No yaz-ztest found. Skipping" - exit 0 -fi - -# Fire up yaz-ztest (should match port in test_http.xml) -$yt -l test_http_ztest.log tcp:@:9764 & -YTPID=$! - -# Fire yp pazpar2 -../src/pazpar2 -f ${srcdir}/test_http.cfg -t ${srcdir}/test_http.xml >test_http_pp2.log 2>&1 & -PP2PID=$! - -# Give both programs room to start properly.. -sleep 1 - -# Set to success by default.. Will be set to non-zero in case of failure -code=0 - -if ps -p $PP2PID >/dev/null 2>&1; then - : -else - code=1 - PP2PID="" - echo "pazpar2 failed to start" -fi - -if ps -p $YTPID >/dev/null 2>&1; then - : -else - code=1 - YTPID="" - echo "yaz-ztest failed to start" -fi -# We can start test for real - -testno=1 -for f in `cat ${srcdir}/test_http_urls`; do - OUT1=${srcdir}/test_http_${testno}.res - OUT2=${srcdir}/test_http_${testno}.log - DIFF=${srcdir}/test_http_${testno}.dif - if test -f $OUT1; then - rm -f $OUT2 - wget -q -O $OUT2 $f - if diff $OUT1 $OUT2 >$DIFF; then - echo "Test $testno: OK" - else - echo "Test $testno: Failed. See $OUT1, $OUT2 and $DIFF" - code=1 - fi - else - echo "Test $testno: Making for the first time" - wget -q -O $OUT1 $f - code=1 - fi - testno=`expr $testno + 1` -done - -sleep 1 -# Kill programs -if test -n "$YTPID"; then - kill $YTPID -fi - -if test -n "$PP2PID"; then - kill $PP2PID -fi - -exit $code +exec ${srcdir}/run_pazpar2.sh $TEST # Local Variables: # mode:shell-script