X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Frun_pazpar2.sh;h=ac1521ba39272bb25744ea65024ed356a6bafc5f;hb=abefe43b6a0efc7e3196ba627d9b28de020b3eb9;hp=5a6b3bc958c19d88d9a8df59369e86b7602a92e6;hpb=f15696a4a6275c9b1b9933d4410c25277050f7bd;p=pazpar2-moved-to-github.git diff --git a/test/run_pazpar2.sh b/test/run_pazpar2.sh index 5a6b3bc..ac1521b 100755 --- a/test/run_pazpar2.sh +++ b/test/run_pazpar2.sh @@ -1,109 +1,154 @@ #!/bin/sh -# $Id: run_pazpar2.sh,v 1.1 2007-09-10 08:18:19 adam Exp $ # -# Regression test using pazpar2 against z3950.indexdata.com/marc -# Reads Pazpar2 URLs from test_http_urls -# Outputs to test_http_.log -# Matches against results in test_http_.res -# - +# Regression test using pazpar2 against z3950.indexdata.com/marc or gils +# Reads Pazpar2 URLs from $1 +# Outputs to $1_.log +# Matches against results in $1_.res +# Requires curl # srcdir might be set by make srcdir=${srcdir:-"."} -wget="" -lynx="" -if test -x /usr/bin/wget; then - wget=/usr/bin/wget -fi -if test -x /usr/bin/lynx; then - lynx=/usr/bin/lynx -fi +# terminate pazpar2 if test takes more than this (in seconds) +WAIT=120 -# Fire up pazpar2 -rm -f pazpar2.log +kill_pazpar2() +{ + if test -n "$PP2PID"; then + kill $PP2PID + fi + if test -n "$SLEEP_PID"; then + kill $SLEEP_PID + SLEEP_PID="" + fi +} + +# look for curl in PATH +oIFS=$IFS +IFS=: +curl='' +for p in $PATH; do + if test -x $p/curl; then + curl=$p/curl + break + fi +done +IFS=$oIFS +if test -z $curl; then + echo "curl not found. $PREFIX can not be tested" + exit 1 +fi +GET='$curl --silent --output $OUT2 "$f"' +POST='$curl --silent --header "Content-Type: text/xml" --data-binary "@$postfile" --output $OUT2 "$f"' +if [ -z "$SKIP_PAZPAR2" ] ; then +# Fire up pazpar2 + rm -f pazpar2.log +fi PREFIX=$1 if test "x${PREFIX}" = "x"; then echo Missing prefix for run_pazpar2.sh exit 1 fi + CFG=${PREFIX}.cfg -URLS=${PREFIX}_urls +URLS=${PREFIX}.urls +VALGRINDLOG=${PREFIX}_valgrind.log -if test "$usevalgrind"; then - valgrind --log-file=valgrind ../src/pazpar2 -X -l pazpar2.log -f ${CFG} -t ${srcdir}/test_http.xml >extra_pazpar2.log 2>&1 & +if test -n "$PAZPAR2_USE_VALGRIND"; then + valgrind --num-callers=30 --show-reachable=yes --leak-check=full --log-file=$VALGRINDLOG ../src/pazpar2 -X -l pazpar2.log -f ${CFG} >extra_pazpar2.log 2>&1 & +elif test -n "$SKIP_PAZPAR2"; then + echo "Skipping pazpar2. Must already be running with correct config!!! " else - ../src/pazpar2 -X -l pazpar2.log -f ${srcdir}/${CFG} -t ${srcdir}/test_http.xml >extra_pazpar2.log 2>&1 & + YAZ_LOG=zoom,zoomdetails,debug,log,fatal ../src/pazpar2 -v all -d -X -l pazpar2.log -f ${srcdir}/${CFG} >extra_pazpar2.log 2>&1 & fi - PP2PID=$! -# Give it a chance to start properly.. -sleep 3 +if [ -z "$SKIP_PAZPAR2" ] ; then + if ps -p $PP2PID >/dev/null 2>&1; then + (sleep $WAIT; kill_pazpar2 >/dev/null) & + SLEEP_PID=$! + trap kill_pazpar2 INT + trap kill_pazpar2 HUP + sleep 3 + else + echo "pazpar2 failed to start" + exit 1 + fi +fi # 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 - # We can start test for real - -oIFS="$IFS" -IFS=' -' - testno=1 for f in `cat ${srcdir}/${URLS}`; do if echo $f | grep '^http' >/dev/null; then OUT1=${srcdir}/${PREFIX}_${testno}.res OUT2=${PREFIX}_${testno}.log DIFF=${PREFIX}_${testno}.dif + rm -f $OUT2 $DIFF + if [ -n "$DEBUG" ] ; then + echo "test $testno: $f" + fi + if test -n "${postfile}"; then + eval $POST + else + eval $GET + fi + if test ! -f $OUT2; then + touch $OUT2 + fi if test -f $OUT1; then - rm -f $OUT2 - if test -n "${wget}"; then - ${wget} -q -O $OUT2 $f - elif test -n "${lynx}"; then - ${lynx} -dump $f >$OUT2 - else - break - fi if diff $OUT1 $OUT2 >$DIFF; then : else echo "Test $testno: Failed. See $OUT1, $OUT2 and $DIFF" + echo "URL: $f" code=1 fi else echo "Test $testno: Making for the first time" - ${wget} -q -O $OUT1 $f + mv $OUT2 $OUT1 code=1 fi testno=`expr $testno + 1` - else + postfile= + elif echo $f | grep '^[0-9]' >/dev/null; then + if [ -n "$DEBUG" ] ; then + echo "Sleeping $f" + fi sleep $f - fi - if ps -p $PP2PID >/dev/null 2>&1; then - : else - echo "pazpar2 died" + if test -f $srcdir/$f; then + postfile=$srcdir/$f + else + echo "File $f does not exist" + code=1 + fi + fi + if [ -z "$SKIP_PAZPAR2" ] ; then + if ps -p $PP2PID >/dev/null 2>&1; then + : + else + IFS="$oIFS" + if test -n "$SLEEP_PID"; then + echo "Test $testno: pazpar2 terminated (timeout, probably)" + else + echo "Test $testno: pazpar2 died" + fi + exit 1 + fi fi done -IFS="$oIFS" -sleep 1 # Kill programs -if test -n "$PP2PID"; then - kill $PP2PID +if [ -z "$SKIP_PAZPAR2" ] ; then + kill_pazpar2 + sleep 2 fi exit $code