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
|
#!/bin/sh
# (C) Copyright 2005- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
#
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
#
. ./include.ctest.sh
# Define a common label for all the tmp files
label="bufr_dump_decode_filter_test"
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
echo "$0: This test is currently disabled on Windows"
exit 0
fi
cd ${data_dir}/bufr
# Create log file
fLog=temp.${label}".log"
rm -f $fLog
touch $fLog
# Define filter rules file
fRules=temp.${label}.filter
#-----------------------------------------------------------
# NOTE: not all of our BUFR files pass this test. bufr_filter is limited
# in what it can do compared to Python or Fortran!
# The following do not work:
# ias1_240.bufr -- too large, parser out of memory
# tropical_cyclone.bufr -- multi message
# syno_multi.bufr -- multi message
#-----------------------------------------------------------
files=`cat ${data_dir}/bufr/bufr_data_files.txt`
exclude="ias1_240.bufr syno_multi.bufr tropical_cyclone.bufr aeolus_wmo_26.bufr"
for f in $files
do
process_bufr=1
for ex in $exclude; do
if [ "$f" = "$ex" ]; then process_bufr=0; break; fi
done
if [ $process_bufr = 1 ]; then
echo "Test: bufr_dump -Dfilter " >> $fLog
echo "file: $f" >> $fLog
${tools_dir}/bufr_dump -Dfilter $f > $fRules
${tools_dir}/codes_bufr_filter $fRules $f >/dev/null
rm -f $fRules
fi
done
# Check expected failures
set +e
${tools_dir}/bufr_dump -Dfilter ${data_dir}/bufr/tropical_cyclone.bufr > $fLog 2>&1
status=$?
set -e
[ $status -eq 1 ]
grep -q "Cannot dump filter for multi-message BUFR files" $fLog
# Clean up
rm -f $fLog $fRules
|