mirror of https://github.com/ecmwf/eccodes.git
Testing: wmo_read_any_from_file
This commit is contained in:
parent
c368d65b16
commit
180608f8c4
|
@ -12,6 +12,7 @@ list(APPEND test_c_bins
|
||||||
list_codetable_flagtable_keys
|
list_codetable_flagtable_keys
|
||||||
wmo_read_bufr_from_file
|
wmo_read_bufr_from_file
|
||||||
wmo_read_gts_from_file
|
wmo_read_gts_from_file
|
||||||
|
wmo_read_any_from_file
|
||||||
grib_bpv_limit
|
grib_bpv_limit
|
||||||
grib_double_cmp
|
grib_double_cmp
|
||||||
read_any
|
read_any
|
||||||
|
@ -182,6 +183,7 @@ if( HAVE_BUILD_TOOLS )
|
||||||
grib_clone_headers_only
|
grib_clone_headers_only
|
||||||
wmo_read_bufr_from_file
|
wmo_read_bufr_from_file
|
||||||
wmo_read_gts_from_file
|
wmo_read_gts_from_file
|
||||||
|
wmo_read_any_from_file
|
||||||
bufr_templates
|
bufr_templates
|
||||||
bufr_rdbSubTypes
|
bufr_rdbSubTypes
|
||||||
bufr_dump_data
|
bufr_dump_data
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
/*
|
||||||
|
* (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 <stdio.h>
|
||||||
|
|
||||||
|
#include "grib_api_internal.h"
|
||||||
|
|
||||||
|
#define SIZE 1024 * 1024
|
||||||
|
char buffer[SIZE];
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
int err = 0;
|
||||||
|
FILE* in = NULL;
|
||||||
|
size_t len = SIZE;
|
||||||
|
|
||||||
|
if (argc != 2) return 1;
|
||||||
|
|
||||||
|
in = fopen(argv[1], "r");
|
||||||
|
if (!in) return 1;
|
||||||
|
|
||||||
|
err = wmo_read_any_from_file(in, buffer, &len);
|
||||||
|
if (err == GRIB_END_OF_FILE && len == 0)
|
||||||
|
printf("end of file\n");
|
||||||
|
|
||||||
|
printf("ANY: size: %zu err: %d (%s)\n", len, err, grib_get_error_message(err));
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
#!/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
|
||||||
|
|
||||||
|
label="wmo_read_any_from_file_test"
|
||||||
|
tempText=temp.$label.txt
|
||||||
|
tempBufr=temp.$label.bufr
|
||||||
|
|
||||||
|
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
|
||||||
|
echo "$0: This test is currently disabled on Windows"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
${test_dir}/wmo_read_any_from_file $data_dir/bufr/aaen_55.bufr
|
||||||
|
${test_dir}/wmo_read_any_from_file $data_dir/sample.grib2
|
||||||
|
${test_dir}/wmo_read_any_from_file $data_dir/second_ord_rbr.grib1
|
||||||
|
${test_dir}/wmo_read_any_from_file $data_dir/gts/EGRR20150317121020_00493212.DAT
|
||||||
|
${test_dir}/wmo_read_any_from_file $ECCODES_SAMPLES_PATH/wrap.tmpl
|
||||||
|
${test_dir}/wmo_read_any_from_file $ECCODES_SAMPLES_PATH/budg.tmpl
|
||||||
|
${test_dir}/wmo_read_any_from_file $ECCODES_SAMPLES_PATH/hdf5.tmpl
|
||||||
|
|
||||||
|
# Bad input
|
||||||
|
echo BUFR > $tempBufr
|
||||||
|
set +e
|
||||||
|
${test_dir}/wmo_read_any_from_file $tempBufr > $tempText
|
||||||
|
status=$?
|
||||||
|
set -e
|
||||||
|
[ $status -ne 0 ]
|
||||||
|
cat $tempText
|
||||||
|
grep -q "End of resource reached when reading message" $tempText
|
||||||
|
|
||||||
|
|
||||||
|
set +e
|
||||||
|
${test_dir}/wmo_read_any_from_file $data_dir > $tempText
|
||||||
|
status=$?
|
||||||
|
set -e
|
||||||
|
[ $status -ne 0 ]
|
||||||
|
cat $tempText
|
||||||
|
grep -q "Input output problem" $tempText
|
||||||
|
|
||||||
|
|
||||||
|
# Clean up
|
||||||
|
rm -f $tempText $tempBufr
|
Loading…
Reference in New Issue