Testing: Add the tests for ECC-1433 (CCSDS very small values)

This commit is contained in:
Shahram Najm 2023-06-12 11:35:32 +01:00
parent 89f92e0751
commit c014f0a5f7
3 changed files with 82 additions and 0 deletions

View File

@ -34,6 +34,7 @@ list(APPEND test_c_bins
grib_ecc-386
grib_ecc-1467
grib_ecc-1431
grib_ecc-1433
bufr_ecc-517
bufr_ecc-1288
bufr_get_element
@ -281,6 +282,7 @@ if( HAVE_BUILD_TOOLS )
if( HAVE_AEC AND ENABLE_EXTRA_TESTS )
list(APPEND tests_extra grib_ecc-1431)
list(APPEND tests_extra grib_ecc-1433)
endif()
if( HAVE_FORTRAN AND ENABLE_EXTRA_TESTS )
list(APPEND tests_extra bufr_dump_encode_fortran)

62
tests/grib_ecc-1433.cc Normal file
View File

@ -0,0 +1,62 @@
/*
* (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 "grib_api_internal.h"
#include <eccodes.h>
#include <string.h>
#include <iostream>
#include <vector>
#include <string>
#include <random>
#include <limits>
#include <cmath>
typedef std::numeric_limits<double> dbl;
typedef std::numeric_limits<float> flt;
int main(int argc, char** argv)
{
size_t values_len = 10;
std::default_random_engine re;
std::uniform_real_distribution<double> unif(flt::min(), flt::min() * 10);
codes_handle* handle = codes_grib_handle_new_from_samples(0, "reduced_gg_pl_128_grib2");
double* values = new double[values_len];
double* grid_ccsds_values = new double[values_len];
// Initialize with small random values
for (size_t i = 0; i < values_len; ++i) {
values[i] = unif(re);
}
// Test grid_ccsds
std::string packing_type = "grid_ccsds";
size_t size = packing_type.size();
CODES_CHECK(codes_set_double_array(handle, "values", values, values_len), 0);
CODES_CHECK(codes_set_string(handle, "packingType", packing_type.c_str(), &size), 0);
CODES_CHECK(codes_get_double_array(handle, "values", grid_ccsds_values, &values_len), 0);
// Test buffers
double tolerance = 0.000001;
for (size_t i = 0; i < values_len; ++i) {
if (!((grid_ccsds_values[i] < (values[i] * (1 + tolerance))) &&
grid_ccsds_values[i] > (values[i] / (1 + tolerance)))) {
std::cout.precision(dbl::max_digits10);
std::cout << "Test failed: " << grid_ccsds_values[i] << " != " << values[i] << std::endl;
Assert(0);
}
}
codes_handle_delete(handle);
delete[] values;
delete[] grid_ccsds_values;
return 0;
}

18
tests/grib_ecc-1433.sh Executable file
View File

@ -0,0 +1,18 @@
#!/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="grib_ecc-1433_test"
temp=temp.$label
$EXEC $test_dir/grib_ecc-1433
rm -f $temp