8 #ifndef TEST_IODA_DESCENDINGSORT_H_
9 #define TEST_IODA_DESCENDINGSORT_H_
14 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
16 #include "eckit/config/LocalConfiguration.h"
17 #include "eckit/testing/Test.h"
19 #include "oops/mpi/mpi.h"
20 #include "oops/runs/Test.h"
21 #include "oops/test/TestEnvironment.h"
22 #include "oops/util/Expect.h"
24 #include "ioda/IodaTrait.h"
33 util::DateTime bgn(conf.getString(
"window begin"));
34 util::DateTime end(conf.getString(
"window end"));
35 const eckit::LocalConfiguration obsSpaceConf(conf,
"obs space");
37 obsParams.validateAndDeserialize(obsSpaceConf);
38 ioda::ObsSpace obsdata(obsParams, oops::mpi::world(), bgn, end, oops::mpi::myself());
41 if (obsdata.obs_sort_order() !=
"descending") {
42 throw eckit::BadValue(
"Must set sort_order to descending", Here());
44 if (obsdata.obs_group_vars().empty()) {
45 throw eckit::BadValue(
"Must set group_variable", Here());
49 const size_t nlocs = obsdata.
nlocs();
52 std::vector <int> expectedIndicesAll;
53 expectedIndicesAll.assign(nlocs, 0);
54 obsdata.get_db(
"MetaData",
"expected_indices", expectedIndicesAll, { });
57 const std::vector <size_t> recnums = obsdata.recnum();
60 const std::vector <size_t> recnumList = obsdata.recidx_all_recnums();
62 for (
size_t rn = 0; rn < recnumList.size(); ++rn) {
64 std::vector <size_t> expectedRecordIndices;
65 for (
size_t rnindex = 0; rnindex < nlocs; ++rnindex)
66 if (recnums[rnindex] == rn)
67 expectedRecordIndices.emplace_back(expectedIndicesAll[rnindex]);
70 const std::vector<size_t> recordIndices = obsdata.recidx_vector(rn);
73 const bool equal = std::equal(recordIndices.begin(),
75 expectedRecordIndices.begin());
83 std::string
testid()
const override {
return "ioda::test::DescendingSort";}
86 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
88 const eckit::LocalConfiguration conf(::test::TestEnvironment::config());
89 for (
const std::string & testCaseName : conf.keys())
91 const eckit::LocalConfiguration testCaseConf(::test::TestEnvironment::config(), testCaseName);
92 ts.emplace_back(
CASE(
"ioda/DescendingSort/" + testCaseName, testCaseConf)
void register_tests() const override
void clear() const override
std::string testid() const override
CASE("Derived variable, unit conversion, and exception checking methods")
void testDescendingSort(const eckit::LocalConfiguration &conf)