2023-07-24 13:26:04 +00:00
|
|
|
#!/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="codes_compare_keys_test"
|
2023-07-24 14:34:04 +00:00
|
|
|
tempGrib=temp.${label}.grib
|
2023-07-24 13:26:04 +00:00
|
|
|
tempRef=temp.${label}.ref
|
|
|
|
tempLog=temp.$label.log
|
|
|
|
|
|
|
|
file1=$ECCODES_SAMPLES_PATH/reduced_gg_pl_32_grib2.tmpl
|
|
|
|
file2=$ECCODES_SAMPLES_PATH/reduced_gg_pl_48_grib2.tmpl
|
|
|
|
set +e
|
|
|
|
$EXEC ${test_dir}/codes_compare_keys $file1 $file2 > $tempLog 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
|
|
|
|
|
|
|
cat > $tempRef <<EOF
|
|
|
|
key: totalLength (Long values are different)
|
|
|
|
key: section3Length (Long values are different)
|
|
|
|
key: numberOfDataPoints (Long values are different)
|
|
|
|
key: Nj (Long values are different)
|
|
|
|
key: latitudeOfFirstGridPoint (Long values are different)
|
|
|
|
key: latitudeOfLastGridPoint (Long values are different)
|
|
|
|
key: longitudeOfLastGridPoint (Long values are different)
|
|
|
|
key: N (Long values are different)
|
|
|
|
key: pl (Count mismatch)
|
|
|
|
key: hoursAfterDataCutoff (Long values are different)
|
|
|
|
key: minutesAfterDataCutoff (Long values are different)
|
|
|
|
key: numberOfValues (Long values are different)
|
|
|
|
key: referenceValue (Double values are different)
|
2024-03-08 15:13:17 +00:00
|
|
|
ECCODES ERROR : Key abcdefghij not found in first message
|
2023-07-24 13:26:04 +00:00
|
|
|
|
2023-07-24 15:10:55 +00:00
|
|
|
Comparison failed: 13 differences
|
2023-07-24 13:26:04 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
diff $tempRef $tempLog
|
2023-07-24 14:34:04 +00:00
|
|
|
rm -f $tempRef $tempLog
|
2023-07-24 13:26:04 +00:00
|
|
|
|
2023-07-24 14:34:04 +00:00
|
|
|
# Different values
|
|
|
|
# ---------------------
|
|
|
|
input=${data_dir}/sample.grib2
|
|
|
|
${tools_dir}/grib_set -s scaleValuesBy=1.01 $input $tempGrib
|
|
|
|
set +e
|
|
|
|
$EXEC ${test_dir}/codes_compare_keys $input $tempGrib > $tempLog 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
|
|
|
cat $tempLog
|
|
|
|
cat > $tempRef <<EOF
|
|
|
|
key: referenceValue (Double values are different)
|
|
|
|
key: codedValues (Double values are different)
|
2024-03-08 15:13:17 +00:00
|
|
|
ECCODES ERROR : Key abcdefghij not found in first message
|
2023-07-24 14:34:04 +00:00
|
|
|
|
2023-07-24 15:10:55 +00:00
|
|
|
Comparison failed: 2 differences
|
2023-07-24 14:34:04 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
diff $tempRef $tempLog
|
|
|
|
|
2023-12-18 12:49:46 +00:00
|
|
|
# Spectral
|
|
|
|
# ----------
|
|
|
|
sample_spectral=$ECCODES_SAMPLES_PATH/sh_ml_grib2.tmpl
|
|
|
|
${test_dir}/codes_compare_keys $sample_spectral $sample_spectral enorm,avg
|
|
|
|
|
2024-02-22 19:33:02 +00:00
|
|
|
# Do some constant and transient keys
|
|
|
|
${test_dir}/codes_compare_keys $sample_spectral $sample_spectral marsDir,truncateLaplacian
|
|
|
|
|
2023-12-18 12:49:46 +00:00
|
|
|
|
2023-12-17 16:39:18 +00:00
|
|
|
# Local definitions
|
|
|
|
# ----------------------
|
|
|
|
sample1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl
|
|
|
|
tempGribA=temp.${label}.A.grib
|
|
|
|
tempGribB=temp.${label}.B.grib
|
2024-02-04 14:14:52 +00:00
|
|
|
${tools_dir}/grib_set -s localDefinitionNumber=16,verifyingMonth=2 $sample1 $tempGribA
|
2023-12-17 17:08:48 +00:00
|
|
|
${tools_dir}/grib_set -s localDefinitionNumber=16,verifyingMonth=5 $sample1 $tempGribB
|
|
|
|
set +e
|
|
|
|
${test_dir}/codes_compare_keys $tempGribA $tempGribB endOfInterval > $tempLog 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
|
|
|
grep -q "2 differences" $tempLog
|
2024-02-22 19:33:02 +00:00
|
|
|
|
2023-12-17 16:39:18 +00:00
|
|
|
rm -f $tempGribA $tempGribB
|
|
|
|
|
|
|
|
|
2023-07-24 14:34:04 +00:00
|
|
|
# Clean up
|
|
|
|
rm -f $tempLog $tempRef $tempGrib
|