netcdf-c/ncdap_test/tst_ncdap.sh

122 lines
2.4 KiB
Bash
Raw Normal View History

2010-06-03 21:24:43 +08:00
#!/bin/sh
if test "x$SETX" != x ; then set -x ; fi
2010-06-03 21:24:43 +08:00
quiet=0
leakcheck=0
PARAMS="[log]"
#PARAMS="${PARAMS}[fetch=memory]"
#PARAMS="${PARAMS}[show=fetch]"
2010-06-03 21:24:43 +08:00
OCLOGFILE=/dev/null
# Capture arguments
srcdir="$1"
builddir="$2"
mode="$3"
# Locate the testdata and expected directory
testdata3="${srcdir}/testdata3"
expected3="${srcdir}/expected3"
TITLE="DAP to netCDF-3 translation"
EXPECTED="$expected3"
PARAMS="${PARAMS}[cache]"
2010-06-03 21:24:43 +08:00
# get the list of test files
. ${srcdir}/tst_ncdap_shared.sh
case "$mode" in
file*)
TESTURL="$FILEURL"
TESTSET="$FILETESTS"
;;
2013-02-26 12:31:06 +08:00
dds*)
TESTURL="[noprefetch]$FILEURL"
TESTSET="$DDSTESTS"
FLAGS="-h"
;;
2010-06-03 21:24:43 +08:00
remote*)
TESTURL="$REMOTEURL"
TITLE="Remote $TITLE"
TESTSET="$REMOTETESTS"
;;
esac
RESULTSDIR="./results"
#
2010-06-03 21:24:43 +08:00
if test "x$leakcheck" = "x1" ; then
VALGRIND="valgrind -q --error-exitcode=2 --leak-check=full"
fi
rm -fr ${RESULTSDIR}
mkdir "${RESULTSDIR}"
rm -f ./.dodsrc ./.ocrc ./.daprc
2010-06-03 21:24:43 +08:00
passcount=0
xfailcount=0
failcount=0
echo "*** Testing $TITLE "
echo " Base URL: ${TESTURL}"
echo " Client Parameters: ${PARAMS}"
cd ${RESULTSDIR}
2010-07-20 02:06:09 +08:00
2010-06-03 21:24:43 +08:00
for x in ${TESTSET} ; do
url="${PARAMS}${TESTURL}/$x"
2012-07-18 04:13:17 +08:00
if test "x$quiet" = "x0" ; then echo "*** Testing: ${x} ; url=$url" ; fi
2010-06-03 21:24:43 +08:00
# determine if this is an xfailtest
isxfail=0
for t in ${XFAILTESTS} ; do
if test "x${t}" = "x${x}" ; then isxfail=1; fi
done
ok=1
echo command: ${VALGRIND} ${NCDUMP} ${FLAGS} "${url}"
if ${VALGRIND} ${NCDUMP} ${FLAGS} "${url}" | tr -d '\r' > ${x}.dmp ; then ok=$ok; else ok=0; fi
2010-06-03 21:24:43 +08:00
# compare with expected
if diff -w ${EXPECTED}/${x}.dmp ${x}.dmp ; then ok=$ok; else ok=0; fi
2010-06-03 21:24:43 +08:00
if test "$ok" = 1 ; then
status=0 # succeed
elif test "x$isxfail" = "x0" ; then
status=1 # fail
else
status=2 # xfail
fi
case "$status" in
0)
passcount=`expr $passcount + 1`
if test "x$quiet" = "x" ; then echo "*** SUCCEED: ${x}"; fi
;;
1)
failcount=`expr $failcount + 1`
echo "*** FAIL: ${x}"
;;
2)
xfailcount=`expr $xfailcount + 1`
2012-07-18 04:13:17 +08:00
echo "*** XFAIL : ${x}"
2010-06-03 21:24:43 +08:00
;;
esac
done
2010-07-20 02:06:09 +08:00
rm -f ./.dodsrc ./.ocrc ./.daprc
2010-07-20 02:06:09 +08:00
2010-06-03 21:24:43 +08:00
cd ..
echo "pwd=" `pwd`
2010-06-03 21:24:43 +08:00
totalcount=`expr $passcount + $failcount + $xfailcount`
okcount=`expr $passcount + $xfailcount`
echo "*** PASSED: ${okcount}/${totalcount} ; ${xfailcount} expected failures ; ${failcount} unexpected failures"
#failcount=0
if test "$failcount" -gt 0
then
exit 1
else
exit 0
fi