8 #ifndef TEST_IODA_OBSSPACEINVALIDNUMERIC_H_
9 #define TEST_IODA_OBSSPACEINVALIDNUMERIC_H_
15 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
17 #include <boost/noncopyable.hpp>
18 #include <boost/shared_ptr.hpp>
20 #include "eckit/config/LocalConfiguration.h"
21 #include "eckit/testing/Test.h"
23 #include "oops/mpi/mpi.h"
24 #include "oops/runs/Test.h"
25 #include "oops/test/TestEnvironment.h"
27 #include "ioda/IodaTrait.h"
35 class ObsSpaceTestFixture :
private boost::noncopyable {
43 for (
auto &space : spaces) {
52 return theObsSpaceTestFixture;
56 util::DateTime bgn(::test::TestEnvironment::config().getString(
"window begin"));
57 util::DateTime end(::test::TestEnvironment::config().getString(
"window end"));
59 std::vector<eckit::LocalConfiguration> conf;
60 ::test::TestEnvironment::config().get(
"observations", conf);
62 for (std::size_t jj = 0; jj < conf.size(); ++jj) {
63 eckit::LocalConfiguration obsconf(conf[jj],
"obs space");
65 obsparams.validateAndDeserialize(obsconf);
66 boost::shared_ptr<ioda::ObsSpace> tmp(
new ioda::ObsSpace(obsparams, oops::mpi::world(),
67 bgn, end, oops::mpi::myself()));
74 std::vector<boost::shared_ptr<ioda::ObsSpace> >
ospaces_;
82 std::vector<eckit::LocalConfiguration> conf;
83 ::test::TestEnvironment::config().get(
"observations", conf);
85 for (std::size_t jj = 0; jj < Test_::size(); ++jj) {
87 eckit::LocalConfiguration obsConfig;
88 eckit::LocalConfiguration testConfig;
89 conf[jj].get(
"obs space", obsConfig);
90 conf[jj].get(
"test data", testConfig);
92 const ObsSpace &odb = Test_::obspace(jj);
95 std::vector<eckit::LocalConfiguration> testConfigVars;
96 testConfig.get(
"variables", testConfigVars);
97 float testTol = testConfig.getFloat(
"tolerance");
100 for (std::size_t i = 0; i < testConfigVars.size(); ++i) {
101 std::string varName = testConfigVars[i].getString(
"name");
102 std::string groupName = testConfigVars[i].getString(
"group");
103 std::string varType = testConfigVars[i].getString(
"type");
105 if (varType ==
"int") {
106 std::vector<int> expectedTestVals = testConfigVars[i].getIntVector(
"values");
107 std::vector<int> testVals;
108 odb.get_db(groupName, varName, testVals);
109 EXPECT_EQUAL(testVals, expectedTestVals);
110 }
else if (varType ==
"float") {
111 std::vector<float> expectedTestVals = testConfigVars[i].getFloatVector(
"values");
112 std::vector<float> testVals;
113 odb.get_db(groupName, varName, testVals);
114 for (std::size_t j = 0; j < expectedTestVals.size(); ++j) {
115 EXPECT(oops::is_close(testVals[j], expectedTestVals[j], testTol));
117 }
else if (varType ==
"string") {
118 std::vector<std::string> expectedTestVals =
119 testConfigVars[i].getStringVector(
"values");
120 std::vector<std::string> testVals;
121 odb.get_db(groupName, varName, testVals);
122 EXPECT_EQUAL(testVals, expectedTestVals);
133 typedef ObsSpaceTestFixture Test_;
146 std::string
testid()
const override {
return "test::ObsSpaceInvalidNumeric<ioda::IodaTrait>";}
149 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
151 ts.emplace_back(
CASE(
"ioda/ObsSpace/testInvalidNumeric")
153 ts.emplace_back(
CASE(
"ioda/ObsSpace/testCleanup")
void register_tests() const override
virtual ~ObsSpaceInvalidNumeric()
std::string testid() const override
void clear() const override
std::vector< boost::shared_ptr< ioda::ObsSpace > > ospaces_
static ioda::ObsSpace & obspace(const std::size_t ii)
static ObsSpaceTestFixture & getInstance()
static std::size_t size()
void testInvalidNumeric()
CASE("Derived variable, unit conversion, and exception checking methods")