2020-08-18 09:15:47 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test "x$SETX" != x; then set -x; fi
|
|
|
|
|
2021-01-29 11:11:01 +08:00
|
|
|
# Figure out which cloud repo to use
|
|
|
|
if test "x$NCZARR_S3_TEST_HOST" = x ; then
|
2021-09-28 08:36:33 +08:00
|
|
|
# export NCZARR_S3_TEST_HOST=stratus.ucar.edu
|
|
|
|
export NCZARR_S3_TEST_HOST=s3.us-east-1.amazonaws.com
|
2021-01-29 11:11:01 +08:00
|
|
|
fi
|
|
|
|
if test "x$NCZARR_S3_TEST_BUCKET" = x ; then
|
2021-09-28 08:36:33 +08:00
|
|
|
# export NCZARR_S3_TEST_BUCKET=unidata-netcdf-zarr-testing
|
|
|
|
export NCZARR_S3_TEST_BUCKET=unidata-zarr-test-data
|
2021-01-29 11:11:01 +08:00
|
|
|
fi
|
|
|
|
export NCZARR_S3_TEST_URL="https://${NCZARR_S3_TEST_HOST}/${NCZARR_S3_TEST_BUCKET}"
|
|
|
|
|
2020-12-17 11:48:02 +08:00
|
|
|
ZMD="${execdir}/zmapio"
|
|
|
|
|
|
|
|
awsdelete() {
|
2021-09-28 08:36:33 +08:00
|
|
|
${execdir}/s3util ${PROFILE} -u "${NCZARR_S3_TEST_URL}" -k "$1" clear
|
|
|
|
# aws s3api delete-object --endpoint-url=https://${NCZARR_S3_TEST_HOST} --bucket=${NCZARR_S3_TEST_BUCKET} --key="netcdf-c/$1"
|
|
|
|
X=
|
2020-12-17 11:48:02 +08:00
|
|
|
}
|
|
|
|
|
2020-08-18 09:15:47 +08:00
|
|
|
# Check settings
|
|
|
|
checksetting() {
|
|
|
|
if test -f ${TOPBUILDDIR}/libnetcdf.settings ; then
|
|
|
|
local PATTERN
|
|
|
|
PATTERN="${1}:[ ]*yes"
|
|
|
|
if grep "$PATTERN" <${TOPBUILDDIR}/libnetcdf.settings ; then
|
|
|
|
HAVE_SETTING=1
|
|
|
|
else
|
|
|
|
unset HAVE_SETTING
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-12-17 11:48:02 +08:00
|
|
|
checkprops() {
|
|
|
|
specflag=
|
|
|
|
headflag=
|
|
|
|
isxfail=
|
|
|
|
# determine if this is an xfailtest
|
|
|
|
for t in ${XFAILTESTS} ; do
|
|
|
|
if test "x${t}" = "x${x}" ; then isxfail=1; fi
|
|
|
|
done
|
|
|
|
for t in ${SPECTESTS} ; do
|
|
|
|
if test "x${t}" = "x${f}" ; then specflag="-s"; fi
|
|
|
|
done
|
|
|
|
for t in ${HEADTESTS} ; do
|
|
|
|
if test "x${t}" = "x${f}" ; then headflag="-h"; fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-08-18 09:15:47 +08:00
|
|
|
extfor() {
|
|
|
|
case "$1" in
|
2021-01-29 11:11:01 +08:00
|
|
|
file) zext="file" ;;
|
|
|
|
zip) zext="zip" ;;
|
2020-08-18 09:15:47 +08:00
|
|
|
s3) zext="s3" ;;
|
|
|
|
*) echo "unknown kind: $1" ; exit 1;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
deletemap() {
|
|
|
|
case "$1" in
|
2021-01-29 11:11:01 +08:00
|
|
|
file) rm -fr $2;;
|
|
|
|
zip) rm -f $2;;
|
2020-12-17 11:48:02 +08:00
|
|
|
s3) S3KEY=`${execdir}/zs3parse -k $2`; awsdelete $S3KEY;;
|
|
|
|
*) echo "unknown kind: $1" ; exit 1;;
|
2020-08-18 09:15:47 +08:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2021-01-29 11:11:01 +08:00
|
|
|
mapstillexists() {
|
|
|
|
mapstillexists=0
|
|
|
|
if "./zmapio $fileurl" ; then
|
2020-12-17 11:48:02 +08:00
|
|
|
echo "delete failed: $1"
|
2021-01-29 11:11:01 +08:00
|
|
|
mapstillexists=1
|
2020-08-18 09:15:47 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
fileargs() {
|
2020-12-17 11:48:02 +08:00
|
|
|
f="$1"
|
2021-02-25 04:46:11 +08:00
|
|
|
frag="$2"
|
|
|
|
if test "x$frag" = x ; then frag="mode=nczarr,$zext" ; fi
|
2020-12-20 12:17:46 +08:00
|
|
|
case "$zext" in
|
|
|
|
s3)
|
2021-01-29 11:11:01 +08:00
|
|
|
S3PATH="${NCZARR_S3_TEST_URL}/netcdf-c"
|
2021-02-25 04:46:11 +08:00
|
|
|
fileurl="${S3PATH}/${f}#${frag}"
|
2020-08-18 09:15:47 +08:00
|
|
|
file=$fileurl
|
|
|
|
S3HOST=`${execdir}/zs3parse -h $S3PATH`
|
|
|
|
S3BUCKET=`${execdir}/zs3parse -b $S3PATH`
|
2020-12-17 11:48:02 +08:00
|
|
|
S3PREFIX=`${execdir}/zs3parse -k $S3PATH`
|
2020-12-20 12:17:46 +08:00
|
|
|
;;
|
|
|
|
*)
|
2020-12-17 11:48:02 +08:00
|
|
|
file="${f}.$zext"
|
2021-02-25 04:46:11 +08:00
|
|
|
fileurl="file://${f}.$zext#${frag}"
|
2020-12-20 12:17:46 +08:00
|
|
|
;;
|
|
|
|
esac
|
2020-08-18 09:15:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dumpmap() {
|
2021-01-29 11:11:01 +08:00
|
|
|
zext=$1
|
|
|
|
zbase=`basename $2 ".$zext"`
|
|
|
|
fileargs $zbase
|
|
|
|
${execdir}/zmapio -t int -x objdump $fileurl > $3
|
2020-08-18 09:15:47 +08:00
|
|
|
}
|
|
|
|
|
2021-08-11 04:15:24 +08:00
|
|
|
# Function to remove selected -s attributes from file;
|
|
|
|
# These attributes might be platform dependent
|
|
|
|
sclean() {
|
|
|
|
cat $1 \
|
|
|
|
| sed -e '/:_IsNetcdf4/d' \
|
|
|
|
| sed -e '/:_Endianness/d' \
|
|
|
|
| sed -e '/_NCProperties/d' \
|
|
|
|
| sed -e '/_SuperblockVersion/d' \
|
|
|
|
| cat > $2
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:02:29 +08:00
|
|
|
# Make sure execdir and srcdir absolute paths are available
|
|
|
|
WD=`pwd`
|
|
|
|
cd $srcdir ; abs_srcdir=`pwd` ; cd $WD
|
|
|
|
cd $execdir ; abs_execdir=`pwd` ; cd $WD
|
|
|
|
|
Upgrade the nczarr code to match Zarr V2
Re: https://github.com/zarr-developers/zarr-python/pull/716
The Zarr version 2 spec has been extended to include the ability
to choose the dimension separator in chunk name keys. The legal
separators has been extended from {'.'} to {'.' '/'}. So now it
is possible to use a key like "0/1/2/0" for chunk names.
This PR implements this for NCZarr. The V2 spec now says that
this separator can be set on a per-variable basis. For now, I
have chosen to allow this be set only globally by adding a key
named "ZARR.DIMENSION_SEPARATOR=<char>" in the
.daprc/.dodsrc/ncrc file. Currently, the only legal separator
characters are '.' (the default) and '/'. On writing, this key
will only be written if its value is different than the default.
This change caused problems because supporting a separator of '/'
is difficult to parse when keys/paths use '/' as the path separator.
A test case was added for this.
Additionally, make nczarr be enabled default by default. This required
some additional changes so that if zip and/or AWS S3 sdk are unavailable,
then they are disabled for NCZarr.
In addition the following unrelated changes were made.
1. Tested that pure-zarr mode could read an nczarr formatted store.
1. The .rc file handling now merges all known .rc files (.ncrc,.daprc, and .dodsrc) in that order and using those in HOME first, then in current directory. For duplicate entries, the later ones override the earlier ones. This change is to remove some of the conflicts inherent in the current .rc file load process. A set of test cases was also added.
1. Re-order tests in configure.ac and CMakeLists.txt so that if libcurl
is not found then the other options that depend upon it properly
are disabled.
1. I decided that xarray support should be enabled by default for pure
zarr. In order to allow disabling, I added a new mode flag "noxarray".
1. Certain test in nczarr_test depend on use of .dodsrc. In order for these
to work when testing in parallel, some inter-test dependencies needed to
be added.
1. Improved authorization testing to use changes in thredds.ucar.edu
2021-04-25 09:48:15 +08:00
|
|
|
# Clear out any existing .rc files
|
|
|
|
WD=`pwd`
|
|
|
|
if test "x$NCAUTH_HOMETEST" != x ; then RCHOME=1; fi
|
|
|
|
|
2021-09-03 07:04:26 +08:00
|
|
|
# Set plugin path
|
|
|
|
|
|
|
|
#cd ../plugins; make clean all >/dev/null; cd ../nczarr_test
|
|
|
|
|
2021-12-24 13:18:56 +08:00
|
|
|
if test "x$FP_USEPLUGINS" = xyes; then
|
2021-09-03 07:04:26 +08:00
|
|
|
# Load the findplugins function
|
|
|
|
. ${builddir}/findplugin.sh
|
|
|
|
echo "findplugin.sh loaded"
|
|
|
|
|
|
|
|
# Locate the plugin path and the library names; argument order is critical
|
Support installation of filters into user-specified location
re: https://github.com/Unidata/netcdf-c/issues/2294
Ed Hartnett suggested that the netcdf library installation process
be extended to install the standard filters into a user specified
location. The user can then set HDF5_PLUGIN_PATH to that location.
This PR provides that capability using:
````
configure option: --with-plugin-dir=<absolute directory path>
cmake option: -DPLUGIN_INSTALL_DIR=<absolute directory path>
````
Currently, the following plugins are always installed, if
available: bzip2, zstd, blosc.
If NCZarr is enabled, then additional plugins are installed:
fletcher32, shuffle, deflate, szip.
Additionally, the necessary codec support is installed
for each of the above filters that is installed.
## Changes:
1. Cleanup handling of built-in bzip2.
2. Add documentation to docs/filters.md
3. Re-factor the NCZarr codec libraries
4. Add a test, although it can only be exercised after
the library is installed, so it cannot be used during
normal testing.
5. Cleanup use of HDF5_PLUGIN_PATH in the filter test cases.
2022-04-30 04:31:55 +08:00
|
|
|
# Find misc in order to determine HDF5_PLUGIN+PATH.
|
2021-09-03 07:04:26 +08:00
|
|
|
# Assume all test filters are in same plugin dir
|
|
|
|
findplugin h5misc
|
|
|
|
|
Support installation of filters into user-specified location
re: https://github.com/Unidata/netcdf-c/issues/2294
Ed Hartnett suggested that the netcdf library installation process
be extended to install the standard filters into a user specified
location. The user can then set HDF5_PLUGIN_PATH to that location.
This PR provides that capability using:
````
configure option: --with-plugin-dir=<absolute directory path>
cmake option: -DPLUGIN_INSTALL_DIR=<absolute directory path>
````
Currently, the following plugins are always installed, if
available: bzip2, zstd, blosc.
If NCZarr is enabled, then additional plugins are installed:
fletcher32, shuffle, deflate, szip.
Additionally, the necessary codec support is installed
for each of the above filters that is installed.
## Changes:
1. Cleanup handling of built-in bzip2.
2. Add documentation to docs/filters.md
3. Re-factor the NCZarr codec libraries
4. Add a test, although it can only be exercised after
the library is installed, so it cannot be used during
normal testing.
5. Cleanup use of HDF5_PLUGIN_PATH in the filter test cases.
2022-04-30 04:31:55 +08:00
|
|
|
echo "final HDF5_PLUGIN_DIR=${HDF5_PLUGIN_DIR}"
|
|
|
|
export HDF5_PLUGIN_PATH="${HDF5_PLUGIN_DIR}"
|
2021-12-24 13:18:56 +08:00
|
|
|
fi # USEPLUGINS
|
2021-09-03 07:04:26 +08:00
|
|
|
|
Upgrade the nczarr code to match Zarr V2
Re: https://github.com/zarr-developers/zarr-python/pull/716
The Zarr version 2 spec has been extended to include the ability
to choose the dimension separator in chunk name keys. The legal
separators has been extended from {'.'} to {'.' '/'}. So now it
is possible to use a key like "0/1/2/0" for chunk names.
This PR implements this for NCZarr. The V2 spec now says that
this separator can be set on a per-variable basis. For now, I
have chosen to allow this be set only globally by adding a key
named "ZARR.DIMENSION_SEPARATOR=<char>" in the
.daprc/.dodsrc/ncrc file. Currently, the only legal separator
characters are '.' (the default) and '/'. On writing, this key
will only be written if its value is different than the default.
This change caused problems because supporting a separator of '/'
is difficult to parse when keys/paths use '/' as the path separator.
A test case was added for this.
Additionally, make nczarr be enabled default by default. This required
some additional changes so that if zip and/or AWS S3 sdk are unavailable,
then they are disabled for NCZarr.
In addition the following unrelated changes were made.
1. Tested that pure-zarr mode could read an nczarr formatted store.
1. The .rc file handling now merges all known .rc files (.ncrc,.daprc, and .dodsrc) in that order and using those in HOME first, then in current directory. For duplicate entries, the later ones override the earlier ones. This change is to remove some of the conflicts inherent in the current .rc file load process. A set of test cases was also added.
1. Re-order tests in configure.ac and CMakeLists.txt so that if libcurl
is not found then the other options that depend upon it properly
are disabled.
1. I decided that xarray support should be enabled by default for pure
zarr. In order to allow disabling, I added a new mode flag "noxarray".
1. Certain test in nczarr_test depend on use of .dodsrc. In order for these
to work when testing in parallel, some inter-test dependencies needed to
be added.
1. Improved authorization testing to use changes in thredds.ucar.edu
2021-04-25 09:48:15 +08:00
|
|
|
resetrc() {
|
|
|
|
if test "x$RCHOME" = x1 ; then
|
|
|
|
rm -f ${HOME}/.dodsrc ${HOME}/.daprc ${HOME}/.ncrc
|
|
|
|
fi
|
|
|
|
rm -f ${WD}/.dodsrc ${WD}/.daprc ${WD}/.ncrc
|
|
|
|
unset NCRCENV_IGNORE
|
|
|
|
unset NCRCENV_RC
|
|
|
|
unset DAPRCFILE
|
|
|
|
}
|
|
|
|
|
|
|
|
resetrc
|