8 #ifndef TEST_INTERFACE_OBSOPERATOR_H_
9 #define TEST_INTERFACE_OBSOPERATOR_H_
15 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
17 #include <boost/noncopyable.hpp>
19 #include "eckit/config/LocalConfiguration.h"
20 #include "eckit/testing/Test.h"
29 #include "oops/util/Expect.h"
41 typedef ObsTestsFixture<OBS> Test_;
43 typedef typename ObsOperator_::Parameters_ ObsOperatorParameters_;
45 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
46 eckit::LocalConfiguration obsopconf(Test_::config(jj),
"obs operator");
47 ObsOperatorParameters_ obsopparams;
48 obsopparams.validateAndDeserialize(obsopconf);
51 std::unique_ptr<ObsOperator_> hop(
new ObsOperator_(Test_::obspace()[jj], obsopparams));
53 oops::Log::test() <<
"Testing ObsOperator: " << *hop << std::endl;
59 EXPECT_THROWS_MSG(ObsOperator_(Test_::obspace()[jj], obsopparams),
60 expectedMessage.c_str());
73 typedef typename ObsOperator_::Parameters_ ObsOperatorParameters_;
76 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
77 const eckit::LocalConfiguration & conf = Test_::config(jj);
83 eckit::LocalConfiguration obsopconf(conf,
"obs operator");
84 ObsOperatorParameters_ obsopparams;
85 obsopparams.validateAndDeserialize(obsopconf);
86 ObsOperator_ hop(Test_::obspace()[jj], obsopparams);
89 eckit::LocalConfiguration biasconf = conf.getSubConfiguration(
"obs bias");
90 typename ObsAuxCtrl_::Parameters_ biasparams;
91 biasparams.validateAndDeserialize(biasconf);
92 const ObsAuxCtrl_ ybias(Test_::obspace()[jj], biasparams);
95 eckit::LocalConfiguration gconf(conf,
"geovals");
97 hopvars += ybias.requiredVars();
98 const GeoVaLs_ gval(gconf, Test_::obspace()[jj], hopvars);
101 ObsVector_ hofx(Test_::obspace()[jj]);
104 ObsVector_ bias(Test_::obspace()[jj]);
109 diagvars += ybias.requiredHdiagnostics();
110 ObsDiags_ diags(Test_::obspace()[jj], hop.locations(), diagvars);
116 const std::string expectedMessage =
118 EXPECT_THROWS_MSG(hop.simulateObs(gval, hofx, ybias, bias, diags),
119 expectedMessage.c_str());
122 hop.simulateObs(gval, hofx, ybias, bias, diags);
126 const double tol = conf.getDouble(
"tolerance");
127 if (conf.has(
"vector ref")) {
130 ObsVector_ obsref(Test_::obspace()[jj], conf.getString(
"vector ref"));
132 const double zz = obsref.rms();
133 oops::Log::test() <<
"Vector difference between reference and computed: " << obsref;
134 EXPECT(zz < 100*tol);
136 }
else if (conf.has(
"norm ref")) {
139 ObsVector_ obsref(Test_::obspace()[jj], conf.getString(
"norm ref"));
142 const double zz = obsref.rms();
143 oops::Log::test() <<
"Normalised vector difference between reference and computed: "
145 EXPECT(zz < 100*tol);
149 const double zz = hofx.rms();
150 const double xx = conf.getDouble(
"rms ref");
152 oops::Log::debug() <<
"zz: " << std::fixed << std::setprecision(8) << zz << std::endl;
153 oops::Log::debug() <<
"xx: " << std::fixed << std::setprecision(8) << xx << std::endl;
155 EXPECT(oops::is_close(xx, zz, tol));
162 template <
typename OBS>
169 std::string
testid()
const override {
return "test::ObsOperator<" + OBS::name() +
">";}
172 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
174 ts.emplace_back(
CASE(
"interface/ObsOperator/testConstructor")
175 { testConstructor<OBS>(); });
176 ts.emplace_back(
CASE(
"interface/ObsOperator/testSimulateObs")
177 { testSimulateObs<OBS>(); });
Auxiliary state related to observations, templated on <OBS>
MODEL-agnostic part of nonlinear observation (forward) operator. The full nonlinear observation opera...
ObsVector class used in oops; subclass of interface class interface::ObsVector.
void clear() const override
void register_tests() const override
ObsTestsFixture< OBS > Test_
std::string testid() const override
logical function has(this, var)
const char * expectConstructorToThrow
const char * expectSimulateObsToThrow
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.