2015-12-22 16:53:02 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2015-12-22 16:53:02 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2015-12-22 16:53:02 +00:00
|
|
|
|
|
|
|
# ---------------------------------------------------------
|
|
|
|
# This is the test for the JIRA issue ECC-197.
|
|
|
|
# It tests decoding a BUFR file which cannot be done unless
|
|
|
|
# we extend the definitions to include extra files
|
|
|
|
# ---------------------------------------------------------
|
2022-06-01 15:02:34 +00:00
|
|
|
label="bufr_ecc-197_test"
|
2016-07-06 09:31:09 +00:00
|
|
|
|
|
|
|
input=${data_dir}/bufr/vos308014_v3_26.bufr
|
|
|
|
TEMP=${label}.temp
|
2019-12-30 18:09:27 +00:00
|
|
|
LOG=${label}.log
|
2020-02-29 14:08:03 +00:00
|
|
|
set -u
|
|
|
|
decode_bufr()
|
|
|
|
{
|
|
|
|
infile=$1
|
|
|
|
${tools_dir}/codes_info
|
|
|
|
${tools_dir}/bufr_dump $infile > $TEMP
|
|
|
|
# Ensure output JSON has all the expected contents
|
|
|
|
# After calling 'wc' and 'set', $1 will be the line count
|
|
|
|
set `wc -l $TEMP`
|
|
|
|
[ $1 -gt 35700 ]
|
|
|
|
grep -q encryptedShipOrMobileLandStationIdentifier $TEMP
|
|
|
|
}
|
2019-12-30 18:09:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Get expanded descriptors
|
|
|
|
cat > $TEMP <<EOF
|
|
|
|
print "expandedDescriptors=[expandedDescriptors%06d!0]";
|
|
|
|
EOF
|
|
|
|
${tools_dir}/bufr_filter -f $TEMP $input > $LOG 2>&1
|
|
|
|
grep -q "ECCODES ERROR.*no match for sequences=308014" $LOG
|
|
|
|
|
2015-12-22 16:53:02 +00:00
|
|
|
|
|
|
|
# Create a temporary directory which holds the tables etc
|
2019-12-31 19:08:56 +00:00
|
|
|
# This BUFR file uses masterTablesVersionNumber 26
|
2016-07-06 09:31:09 +00:00
|
|
|
TEMP_DIR=${label}.temp-dir.$$
|
2015-12-22 16:53:02 +00:00
|
|
|
rm -rf $TEMP_DIR
|
|
|
|
mkdir -p $TEMP_DIR/definitions/bufr/tables/0/wmo/26
|
|
|
|
|
2020-02-29 14:08:03 +00:00
|
|
|
# Copy the definition files needed to decode our BUFR file
|
2015-12-22 16:53:02 +00:00
|
|
|
def_files="${proj_dir}/tests/ECC-197/*"
|
|
|
|
for df in ${def_files}; do
|
|
|
|
cp -f $df $TEMP_DIR/definitions/bufr/tables/0/wmo/26
|
|
|
|
done
|
|
|
|
|
2020-02-29 14:08:03 +00:00
|
|
|
# Point to dir containing the tables
|
2015-12-22 16:53:02 +00:00
|
|
|
MY_DEFS=`pwd`/$TEMP_DIR/definitions
|
2020-02-29 14:08:03 +00:00
|
|
|
export ECCODES_EXTRA_DEFINITION_PATH=$MY_DEFS
|
|
|
|
decode_bufr $input
|
|
|
|
unset ECCODES_EXTRA_DEFINITION_PATH
|
|
|
|
|
|
|
|
if [ $HAVE_MEMFS -eq 1 ]; then
|
|
|
|
unset ECCODES_DEFINITION_PATH
|
|
|
|
std_defs=`${tools_dir}/codes_info -d`
|
|
|
|
export ECCODES_DEFINITION_PATH=$MY_DEFS:$std_defs
|
|
|
|
decode_bufr $input
|
|
|
|
unset ECCODES_DEFINITION_PATH
|
|
|
|
export ECCODES_EXTRA_DEFINITION_PATH=$MY_DEFS
|
|
|
|
decode_bufr $input
|
|
|
|
else
|
|
|
|
# Decode by extending the ECCODES_DEFINITION_PATH
|
|
|
|
export ECCODES_DEFINITION_PATH=$MY_DEFS:$ECCODES_DEFINITION_PATH
|
|
|
|
decode_bufr $input
|
|
|
|
fi
|
2015-12-22 16:53:02 +00:00
|
|
|
|
|
|
|
rm -rf $TEMP_DIR
|
2019-12-30 18:09:27 +00:00
|
|
|
rm -f $TEMP $LOG
|