1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
#!/bin/sh
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
. ../test_common.sh
. "$srcdir/test_nczarr.sh"
set -e
# Test those map implementations where
# it is possible to look at the actual storage.
# in some cases. Note that we
# cannot easily look inside S3 storage
# except using the aws-cli, if available
# Common
CMD="${execdir}/ut_map${ext}"
testmapcreate() {
echo ""; echo "*** Test zmap create -k $1"
extfor "$1"
tag="map"
output="tmp_$tag.$zext"
deletemap $1 $output
# Create the test file
$CMD -k$1 -x create -o $output
cdl="ut_${tag}_create_${zext}.cdl"
ref="ref_ut_${tag}_create.cdl"
dumpmap $zext $output ./$cdl
diff -wb ${srcdir}/$ref ./$cdl
# delete the test file
$CMD -k$1 -x delete -f $output
rm -f $cdl
if test -f $output; then
echo "delete did not delete $output"
exit 1
fi
# re-create the test file
$CMD -k$1 -x create -o $output
}
testmapmeta() {
echo ""; echo "*** Test zmap read/write meta -k $1"
extfor "$1"
tag="map"
file="tmp_$tag.$zext"
$CMD -k$1 -x writemeta -f $file
cdl="ut_${tag}_writemeta_${zext}.cdl"
ref="ref_ut_${tag}_writemeta.cdl"
dumpmap $zext $file ./$cdl
diff -wb ${srcdir}/$ref ./$cdl
$CMD -k$1 -x writemeta2 -o ./$file
cdl="ut_${tag}_writemeta2_${zext}.cdl"
ref="ref_ut_${tag}_writemeta2.cdl"
dumpmap $zext $file ./$cdl
diff -wb ${srcdir}/$ref ./$cdl
output="ut_${tag}_readmeta_$zext.txt"
outref="ref_ut_${tag}_readmeta.txt"
$CMD -k$1 -x readmeta -f $file > ./$output
diff -wb ${srcdir}/$outref ./$output
output="ut_${tag}_readmeta2_$zext.txt"
outref="ref_ut_${tag}_readmeta2.txt"
$CMD -k$1 -x readmeta2 -f $file > ./$output
diff -wb ${srcdir}/$outref ./$output
}
testmapdata() {
echo ""; echo "*** Test zmap read/write data -k $1"
extfor "$1"
tag="map"
file="tmp_$tag.$zext"
$CMD -k$1 -x "writedata" -f $file
cdl="ut_${tag}_writedata_${zext}.cdl"
ref="ref_ut_${tag}_writedata.cdl"
dumpmap $zext $file ./$cdl
diff -wb ${srcdir}/$ref ./$cdl
# readata is verification only
$CMD -k$1 -x readdata -f $file
}
testmapsearch() {
echo ""; echo "*** Test zmap search -k $1"
extfor "$1"
tag="map"
file="tmp_$tag.$zext"
txt=ut_${tag}_search_$zext.txt
ref=ref_ut_${tag}_search.txt
rm -f $txt
$CMD -k$1 -x "search" -f $file > $txt
diff -wb ${srcdir}/$ref ./$txt
}
echo ""
echo "*** Map Unit Testing"
echo ""; echo "*** Test zmap_file"
testmapcreate file; testmapmeta file; testmapdata file; testmapsearch file
if test "x$FEATURE_NCZARR_ZIP" = xyes ; then
echo ""; echo "*** Test zmap_zip"
testmapcreate zip; testmapmeta zip; testmapdata zip; testmapsearch zip
fi
exit 0
|