2006-07-20 05:47:33 +08:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2007-02-08 03:56:21 +08:00
|
|
|
# Copyright by The HDF Group.
|
2006-07-20 05:47:33 +08:00
|
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
|
|
# the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
# of the source code distribution tree; Copyright.html can be found at the
|
|
|
|
# root level of an installed copy of the electronic HDF5 document set and
|
|
|
|
# is linked from the top-level documents page. It can also be found at
|
2007-02-08 03:56:21 +08:00
|
|
|
# http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from help@hdfgroup.org.
|
2006-07-20 05:47:33 +08:00
|
|
|
#
|
|
|
|
# Tests for the h5copy tool
|
2006-07-21 03:24:48 +08:00
|
|
|
#
|
2006-09-13 22:46:30 +08:00
|
|
|
# Pedro Vicente Nunes (pvn@hdfgroup.org), Albert Cheng (acheng@hdfgroup.org)
|
2006-07-21 03:24:48 +08:00
|
|
|
# Thursday, July 20, 2006
|
|
|
|
#
|
2006-07-20 05:47:33 +08:00
|
|
|
|
|
|
|
H5COPY=h5copy # The tool name
|
|
|
|
H5COPY_BIN=`pwd`/$H5COPY # The path of the tool binary
|
2007-02-14 06:42:43 +08:00
|
|
|
H5DIFF=h5diff # The h5diff tool name
|
|
|
|
H5DIFF_BIN=`pwd`/../h5diff/$H5DIFF # The path of the h5diff tool binary
|
|
|
|
H5LS=h5ls # The h5ls tool name
|
|
|
|
H5LS_ARGS=-vr # Arguments to the h5ls tool
|
|
|
|
H5LS_BIN=`pwd`/../h5ls/$H5LS # The path of the h5ls tool binary
|
2006-07-20 05:47:33 +08:00
|
|
|
|
|
|
|
nerrors=0
|
2007-02-14 06:42:43 +08:00
|
|
|
verbose=yes
|
|
|
|
|
2007-02-14 07:21:07 +08:00
|
|
|
SRCFILE=h5copytst.h5
|
2007-02-14 22:44:42 +08:00
|
|
|
INDIR=$srcdir/../testfiles
|
|
|
|
OUTDIR=../testfiles
|
2007-02-14 06:42:43 +08:00
|
|
|
CMP='cmp -s'
|
|
|
|
DIFF='diff -c'
|
2006-07-20 05:47:33 +08:00
|
|
|
|
|
|
|
# The build (current) directory might be different than the source directory.
|
|
|
|
if test -z "$srcdir"; then
|
|
|
|
srcdir=.
|
|
|
|
fi
|
2007-02-14 22:44:42 +08:00
|
|
|
test -d $OUTDIR || mkdir $OUTDIR
|
2006-07-20 05:47:33 +08:00
|
|
|
|
|
|
|
# Print a line-line message left justified in a field of 70 characters
|
|
|
|
# beginning with the word "Testing".
|
2006-09-13 22:46:30 +08:00
|
|
|
TESTING()
|
|
|
|
{
|
|
|
|
SPACES=" "
|
|
|
|
echo "Testing $* $SPACES" |cut -c1-70 |tr -d '\012'
|
|
|
|
}
|
|
|
|
|
|
|
|
# Print a line-line message left justified in a field of 70 characters
|
|
|
|
# beginning with the word "Verifying".
|
|
|
|
#
|
|
|
|
VERIFY()
|
|
|
|
{
|
|
|
|
SPACES=" "
|
|
|
|
echo "Verifying h5diff output $* $SPACES" | cut -c1-70 | tr -d '\012'
|
2006-07-20 05:47:33 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 06:42:43 +08:00
|
|
|
# Print a line-line message left justified in a field of 70 characters
|
|
|
|
# beginning with the word "Verifying".
|
|
|
|
#
|
|
|
|
VERIFY_H5LS()
|
|
|
|
{
|
|
|
|
SPACES=" "
|
2007-02-14 21:54:11 +08:00
|
|
|
echo "Verifying h5ls file structure $* $SPACES" | cut -c1-70 | tr -d '\012'
|
2007-02-14 06:42:43 +08:00
|
|
|
}
|
|
|
|
|
2006-07-20 05:47:33 +08:00
|
|
|
# Run a test and print PASS or *FAIL*. If h5copy can complete
|
|
|
|
# with exit status 0, consider it pass. If a test fails then increment
|
|
|
|
# the `nerrors' global variable.
|
2006-09-13 22:59:45 +08:00
|
|
|
# Assumed arguments:
|
|
|
|
# $1 is -i
|
|
|
|
# $2 is input file
|
|
|
|
# $3 is -o
|
|
|
|
# $4 is output file
|
2006-09-13 22:46:30 +08:00
|
|
|
# $* everything else arguments for h5copy.
|
|
|
|
|
|
|
|
TOOLTEST()
|
|
|
|
{
|
|
|
|
runh5diff=yes
|
|
|
|
if [ "$1" = -i ]; then
|
|
|
|
inputfile=$2
|
|
|
|
else
|
|
|
|
runh5diff=no
|
|
|
|
fi
|
|
|
|
if [ "$3" = -o ]; then
|
|
|
|
outputfile=$4
|
|
|
|
else
|
|
|
|
runh5diff=no
|
|
|
|
fi
|
|
|
|
|
2006-08-01 22:31:45 +08:00
|
|
|
TESTING $H5COPY $@
|
|
|
|
(
|
2006-09-13 22:46:30 +08:00
|
|
|
echo "#############################"
|
|
|
|
echo " output for '$H5COPY $@'"
|
|
|
|
echo "#############################"
|
|
|
|
$RUNSERIAL $H5COPY_BIN $@
|
2006-08-01 22:31:45 +08:00
|
|
|
) > output.out
|
|
|
|
RET=$?
|
2007-02-14 06:42:43 +08:00
|
|
|
if [ $RET != 0 ]; then
|
|
|
|
echo "*FAILED*"
|
|
|
|
echo "failed result is:"
|
|
|
|
cat output.out
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
2006-09-13 22:46:30 +08:00
|
|
|
else
|
2007-02-14 06:42:43 +08:00
|
|
|
echo " PASSED"
|
2006-09-13 22:46:30 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $runh5diff != no ]; then
|
|
|
|
H5DIFFTEST $inputfile $outputfile
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Call the h5diff tool
|
|
|
|
#
|
|
|
|
H5DIFFTEST()
|
|
|
|
{
|
|
|
|
VERIFY $@
|
|
|
|
if [ "`uname -s`" = "TFLOPS O/S" ]; then
|
2007-02-14 06:42:43 +08:00
|
|
|
$RUNSERIAL $H5DIFF_BIN $@ -q
|
2006-09-13 22:46:30 +08:00
|
|
|
else
|
2007-02-14 06:42:43 +08:00
|
|
|
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
2006-09-13 22:46:30 +08:00
|
|
|
fi
|
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
|
|
|
echo "*FAILED*"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
2006-08-01 22:31:45 +08:00
|
|
|
else
|
2006-09-13 22:46:30 +08:00
|
|
|
echo " PASSED"
|
2006-08-01 22:31:45 +08:00
|
|
|
fi
|
2006-07-20 05:47:33 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 06:42:43 +08:00
|
|
|
# Call the h5ls tool to verify the correct output data in the destination file
|
|
|
|
#
|
|
|
|
H5LSTEST()
|
|
|
|
{
|
2007-02-14 22:44:42 +08:00
|
|
|
expect="$INDIR/`basename $1 .h5`.ls"
|
|
|
|
actual="$OUTDIR/`basename $1 .h5`.out"
|
2007-02-14 06:42:43 +08:00
|
|
|
|
2007-02-14 21:54:11 +08:00
|
|
|
# Stderr is included in stdout so that the diff can detect
|
|
|
|
# any unexpected output from that stream too.
|
2007-02-14 06:42:43 +08:00
|
|
|
VERIFY_H5LS $@
|
2007-02-14 21:54:11 +08:00
|
|
|
(
|
2007-02-14 06:42:43 +08:00
|
|
|
echo "#############################"
|
|
|
|
echo "Expected output for '$H5LS $@'"
|
|
|
|
echo "#############################"
|
|
|
|
$RUNSERIAL $H5LS_BIN $H5LS_ARGS $@
|
2007-02-14 21:54:11 +08:00
|
|
|
) 2>&1 >$actual
|
2007-02-14 06:42:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
if [ ! -f $expect ]; then
|
|
|
|
# Create the expect file if it doesn't yet exist.
|
|
|
|
echo " CREATED"
|
|
|
|
cp $actual $expect
|
|
|
|
elif $CMP $expect $actual; then
|
|
|
|
echo " PASSED"
|
|
|
|
else
|
|
|
|
echo "*FAILED*"
|
|
|
|
echo " Expected result (*.ls) differs from actual result (*.out)"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
|
|
|
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-02-14 07:45:13 +08:00
|
|
|
# Copy single datasets of various forms from one group to another,
|
|
|
|
# adding object copied to the destination file each time
|
2007-02-14 07:21:07 +08:00
|
|
|
#
|
|
|
|
# Assumed arguments:
|
2007-02-14 07:45:13 +08:00
|
|
|
# $1 is test "variation" (a single letter, normally)
|
2007-02-14 07:21:07 +08:00
|
|
|
# $2 is group within source file
|
|
|
|
# $3 is group within destination file
|
2007-02-14 07:45:13 +08:00
|
|
|
COPYOBJECTS()
|
2007-02-14 07:21:07 +08:00
|
|
|
{
|
2007-02-14 22:44:42 +08:00
|
|
|
TESTFILE="$INDIR/$SRCFILE"
|
|
|
|
FILEOUT="$OUTDIR/`basename $SRCFILE .h5`.$1.out.h5"
|
2007-02-14 07:21:07 +08:00
|
|
|
|
|
|
|
# Remove any output file left over from previous test run
|
|
|
|
rm -f $FILEOUT
|
|
|
|
|
2007-02-14 07:45:13 +08:00
|
|
|
# Test copying various forms of datasets
|
2007-02-14 07:21:07 +08:00
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"simple -d "$3"simple
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"chunk -d "$3"chunk
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"compact -d "$3"compact
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"compound -d "$3"compound
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"compressed -d "$3"compressed
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"named_vl -d "$3"named_vl
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"nested_vl -d "$3"nested_vl
|
|
|
|
|
2007-02-14 07:45:13 +08:00
|
|
|
# Test copying & renaming dataset
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"compound -d "$3"rename
|
|
|
|
|
|
|
|
# Test copying empty & "full" groups
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"grp_empty -d "$3"grp_empty
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"grp_dsets -d "$3"grp_dsets
|
|
|
|
|
|
|
|
# Test copying & renaming group
|
|
|
|
TOOLTEST -i $TESTFILE -o $FILEOUT -v -s "$2"grp_dsets -d "$3"grp_rename
|
|
|
|
|
2007-02-14 07:21:07 +08:00
|
|
|
# Verify that the file created above is correct
|
|
|
|
H5LSTEST $FILEOUT
|
|
|
|
|
|
|
|
# Remove output file created, if the "no cleanup" environment variable is
|
|
|
|
# not defined
|
2007-02-14 22:44:42 +08:00
|
|
|
if test -z "$HDF5_NOCLEANUP"; then
|
2007-02-14 07:21:07 +08:00
|
|
|
rm -f $FILEOUT
|
|
|
|
fi
|
|
|
|
}
|
2006-10-06 03:46:45 +08:00
|
|
|
|
2007-02-14 07:21:07 +08:00
|
|
|
##############################################################################
|
|
|
|
### T H E T E S T S ###
|
|
|
|
##############################################################################
|
2006-09-13 22:46:30 +08:00
|
|
|
|
2007-02-14 22:44:42 +08:00
|
|
|
echo "Copy objects from root group of source file to root of destination file"
|
|
|
|
echo "(with implicit root group paths)"
|
2007-02-14 07:45:13 +08:00
|
|
|
COPYOBJECTS a "" ""
|
|
|
|
|
2007-02-14 22:44:42 +08:00
|
|
|
echo "Copy objects from root group of source file to root of destination file"
|
|
|
|
echo "(with explicit root group paths)"
|
2007-02-14 07:45:13 +08:00
|
|
|
COPYOBJECTS b "/" "/"
|
2006-09-13 22:46:30 +08:00
|
|
|
|
2006-07-20 05:47:33 +08:00
|
|
|
|
2006-08-01 03:53:14 +08:00
|
|
|
if test $nerrors -eq 0 ; then
|
|
|
|
echo "All h5copy tests passed."
|
|
|
|
fi
|
2006-07-20 05:47:33 +08:00
|
|
|
|
2006-07-21 03:24:48 +08:00
|
|
|
exit $nerrors
|
2006-09-13 22:46:30 +08:00
|
|
|
|