2017-03-09 08:01:10 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test "x$srcdir" = "x"; then srcdir=`dirname $0`; fi
|
|
|
|
export srcdir;
|
|
|
|
|
2021-01-15 12:39:08 +08:00
|
|
|
. ../test_common.sh
|
2017-03-09 08:01:10 +08:00
|
|
|
|
2020-05-31 07:36:25 +08:00
|
|
|
. ${srcdir}/d4test_common.sh
|
|
|
|
|
|
|
|
set -e
|
2022-11-16 11:29:21 +08:00
|
|
|
|
2020-05-31 07:36:25 +08:00
|
|
|
echo "test_hyrax.sh:"
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
F="\
|
2023-01-19 10:47:29 +08:00
|
|
|
AIRS/AIRH3STM.003/2002.12.01/AIRS.2002.12.01.L3.RetStd_H031.v4.0.21.0.G06101132853.hdf?/TotalCounts_A \
|
|
|
|
RSS/amsre/bmaps_v05/y2006/m01/amsre_20060131v5.dat?/time_a[0:2][0:5] \
|
2022-11-14 04:15:11 +08:00
|
|
|
nc4_test_files/nc4_nc_classic_no_comp.nc \
|
2021-01-15 12:39:08 +08:00
|
|
|
nc4_test_files/nc4_nc_classic_comp.nc \
|
2022-11-14 04:15:11 +08:00
|
|
|
nc4_test_files/nc4_unsigned_types.nc \
|
2021-01-15 12:39:08 +08:00
|
|
|
nc4_test_files/nc4_unsigned_types_comp.nc \
|
2022-11-14 04:15:11 +08:00
|
|
|
nc4_test_files/nc4_strings.nc \
|
2021-01-15 12:39:08 +08:00
|
|
|
nc4_test_files/nc4_strings_comp.nc \
|
|
|
|
nc4_test_files/ref_tst_compounds.nc \
|
2017-03-09 08:01:10 +08:00
|
|
|
"
|
|
|
|
|
|
|
|
failure() {
|
|
|
|
echo "*** Fail: $1"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2018-06-27 03:58:45 +08:00
|
|
|
setresultdir results_test_hyrax
|
2021-05-15 01:33:03 +08:00
|
|
|
TESTSERVER=`${execdir}/findtestserver4 dap4 opendap test.opendap.org`
|
|
|
|
if test "x$TESTSERVER" = x ; then
|
|
|
|
echo "***XFAIL: Cannot find test.opendap.org testserver; test skipped"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2023-01-19 10:47:29 +08:00
|
|
|
makehyraxurl() {
|
|
|
|
if test "x$QUERY" != x ; then QUERY="&dap4.ce=$QUERY"; fi
|
|
|
|
QUERY="?dap4.checksum=true${QUERY}"
|
|
|
|
URL="${TESTSERVER}/${PREFIX}/${FILE}${QUERY}"
|
|
|
|
URL="$URL#dap4&hyrax"
|
|
|
|
URL="$URL&log&show=fetch"
|
|
|
|
}
|
2021-06-02 04:11:39 +08:00
|
|
|
|
2023-01-19 10:47:29 +08:00
|
|
|
hyraxsplit() {
|
|
|
|
P="$1"
|
|
|
|
QUERY=`echo $P | cut -d? -f2`
|
|
|
|
if test "x$QUERY" = "x$P" ; then QUERY="" ; fi
|
|
|
|
P=`echo $P | cut -d? -f1`
|
|
|
|
FILE=`basename $P`
|
|
|
|
PREFIX=`dirname $P`
|
|
|
|
}
|
2021-06-02 04:11:39 +08:00
|
|
|
|
2023-01-19 10:47:29 +08:00
|
|
|
if test "x${RESET}" = x1 ; then rm -fr ${BASELINEHY}/*.hyrax ; fi
|
|
|
|
for f in $F ; do
|
|
|
|
hyraxsplit $f
|
|
|
|
makehyraxurl
|
|
|
|
echo "testing: $URL"
|
|
|
|
if ! ${NCDUMP} ${DUMPFLAGS} "${URL}" > ./results_test_hyrax/${FILE}.hyrax; then
|
|
|
|
failure "${URL}"
|
|
|
|
fi
|
|
|
|
if test "x${TEST}" = x1 ; then
|
|
|
|
if ! diff -wBb ${BASELINEHY}/${FILE}.hyrax ./results_test_hyrax/${FILE}.hyrax ; then
|
|
|
|
failure "diff ${FILE}.hyrax"
|
2017-03-09 08:01:10 +08:00
|
|
|
fi
|
2023-01-19 10:47:29 +08:00
|
|
|
elif test "x${RESET}" = x1 ; then
|
|
|
|
echo "${FILE}:"
|
|
|
|
cp ./results_test_hyrax/${FILE}.hyrax ${BASELINEHY}/${FILE}.hyrax
|
|
|
|
fi
|
2017-03-09 08:01:10 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "*** Pass"
|
|
|
|
exit 0
|
2017-04-04 11:39:44 +08:00
|
|
|
|