#!/bin/sh if test "x$srcdir" = x ; then srcdir=`pwd`; fi . ../test_common.sh . "$srcdir/test_nczarr.sh" # This shell script tests support for: # 1. pure zarr read/write # 2. xarray read/write set -e testcase() { zext=$1 echo "*** Test: pure zarr write; format=$zext" fileargs tmp_purezarr "mode=zarr,$zext" deletemap $zext $file ${NCGEN} -4 -b -o "$fileurl" $srcdir/ref_purezarr_base.cdl ${NCDUMP} $fileurl > tmp_purezarr_${zext}.cdl diff -b ${srcdir}/ref_purezarr.cdl tmp_purezarr_${zext}.cdl echo "*** Test: xarray zarr write; format=$zext" fileargs tmp_xarray "mode=xarray,$zext" deletemap $zext $file ${NCGEN} -4 -b -o "$fileurl" $srcdir/ref_purezarr_base.cdl ${NCDUMP} $fileurl > tmp_xarray_${zext}.cdl diff -b ${srcdir}/ref_xarray.cdl tmp_xarray_${zext}.cdl } testcase file if test "x$FEATURE_NCZARR_ZIP" = xyes ; then testcase zip; fi if test "x$FEATURE_S3TESTS" = xyes ; then testcase s3; fi exit 0