2014-07-04 13:52:04 +00:00
|
|
|
#!/bin/sh
|
2015-12-31 12:44:51 +00:00
|
|
|
# Copyright 2005-2016 ECMWF.
|
2014-07-04 13:52:04 +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.
|
|
|
|
#
|
|
|
|
|
|
|
|
. ./include.sh
|
|
|
|
|
2015-05-06 15:34:03 +00:00
|
|
|
#Define a common label for all the tmp files
|
|
|
|
label="bufr_dump_test"
|
|
|
|
|
|
|
|
#Create log file
|
|
|
|
fLog=${label}".log"
|
|
|
|
rm -f $fLog | true
|
|
|
|
touch $fLog
|
|
|
|
|
|
|
|
#Define tmp bufr files
|
|
|
|
fJsonTmp=${label}".json.tmp"
|
|
|
|
|
|
|
|
#==============================================
|
|
|
|
# Testing bufr_dump -O
|
|
|
|
#==============================================
|
|
|
|
|
2015-03-13 17:51:03 +00:00
|
|
|
bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt`
|
2014-07-04 13:52:04 +00:00
|
|
|
REDIRECT=/dev/null
|
|
|
|
|
2015-03-13 17:51:03 +00:00
|
|
|
for file in ${bufr_files}
|
2014-07-04 13:52:04 +00:00
|
|
|
do
|
2016-07-04 17:12:51 +00:00
|
|
|
${tools_dir}bufr_dump -O ${data_dir}/bufr/$file >/dev/null
|
2014-07-04 13:52:04 +00:00
|
|
|
done
|
2015-05-06 15:34:03 +00:00
|
|
|
|
|
|
|
#==============================================
|
|
|
|
# Testing a malformed bufr file (see ECC-110)
|
|
|
|
#==============================================
|
2016-07-01 14:46:07 +00:00
|
|
|
# find another way to test malformed bufr
|
|
|
|
#echo "Test: malformed bufr file " >> $fLog
|
2015-05-06 15:34:03 +00:00
|
|
|
|
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#rm -f $fJsonTmp | true
|
2015-05-06 15:34:03 +00:00
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#fBufr=${data_dir}/bufr/"bad.bufr"
|
2016-06-23 16:33:03 +00:00
|
|
|
# See ECC-276
|
|
|
|
# In v0.16.0 we changed the shortNames so we use a newer ref file
|
2016-07-01 14:46:07 +00:00
|
|
|
#fJsonRef=${data_dir}/bufr/"bad.bufr.json.v0.16.0.ref"
|
2015-05-06 15:34:03 +00:00
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#${tools_dir}bufr_dump -js $fBufr > $fJsonTmp
|
2015-05-06 15:34:03 +00:00
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#diff $fJsonTmp $fJsonRef
|
2015-05-06 15:34:03 +00:00
|
|
|
|
2015-05-07 08:22:12 +00:00
|
|
|
#==============================================
|
2015-05-11 13:58:23 +00:00
|
|
|
# Testing change of scale (see ECC-111)
|
2015-05-07 08:22:12 +00:00
|
|
|
#==============================================
|
2016-07-01 14:46:07 +00:00
|
|
|
# FIND another way to test this operator
|
|
|
|
#echo "Test: operator 207003 " >> $fLog
|
2015-05-07 08:22:12 +00:00
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#rm -f $fJsonTmp | true
|
2015-05-07 08:22:12 +00:00
|
|
|
|
2016-07-01 14:46:07 +00:00
|
|
|
#fBufr=${data_dir}/bufr/"207003.bufr"
|
|
|
|
#fJsonRef=${data_dir}/bufr/"207003.bufr.json.ref"
|
|
|
|
#
|
|
|
|
#${tools_dir}bufr_dump -ja $fBufr > $fJsonTmp
|
|
|
|
#
|
|
|
|
#diff $fJsonTmp $fJsonRef
|
|
|
|
#
|
2015-05-06 15:34:03 +00:00
|
|
|
#Clean up
|
2016-07-01 14:46:07 +00:00
|
|
|
#rm -f $fLog
|
|
|
|
#rm -f $fJsonTmp | true
|
2015-05-06 15:34:03 +00:00
|
|
|
|