8 #ifndef TEST_INTERFACE_VARIABLECHANGE_H_
9 #define TEST_INTERFACE_VARIABLECHANGE_H_
17 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
19 #include <boost/noncopyable.hpp>
21 #include "eckit/config/Configuration.h"
22 #include "eckit/testing/Test.h"
29 #include "oops/util/Expect.h"
30 #include "oops/util/Logger.h"
51 return theVariableChangeFixture;
55 oops::instantiateVariableChangeFactory<MODEL>();
65 ~VariableChangeFixture<MODEL>() {}
67 std::vector<eckit::LocalConfiguration>
confs_;
68 std::unique_ptr<const Geometry_>
resol_;
79 for (std::size_t jj = 0; jj < Test_::confs().size(); ++jj) {
81 VariableChange_ changevar(Test_::resol(), Test_::confs()[jj]);
83 oops::Log::test() <<
"Testing VariableChange: " << changevar << std::endl;
85 const double tol = Test_::confs()[jj].getDouble(
"tolerance inverse");
88 const eckit::LocalConfiguration initialConfig(Test_::confs()[jj],
"state");
89 State_ xx(Test_::resol(), initialConfig);
91 const double xxnorm_ref = xx.norm();
95 const bool inverseFirst = Test_::confs()[jj].getBool(
"inverse first",
false);
100 State_ xin(Test_::resol(), varin, xx.validTime());
101 changevar.changeVarInverse(xx, xin);
103 changevar.changeVar(xin, xx);
106 State_ xout(Test_::resol(), varout, xx.validTime());
107 changevar.changeVar(xx, xout);
109 changevar.changeVarInverse(xout, xx);
113 const double xxnorm_tst = xx.norm();
116 oops::Log::test() <<
"<xin>, <K^{-1}[K(xin)]>, (<xin>-<K^{-1}[K(xin)]<xin>)/>=" << xxnorm_ref <<
117 " " << xxnorm_tst <<
" " << (xxnorm_ref - xxnorm_tst)/xxnorm_ref <<std::endl;
120 EXPECT(oops::is_close(xxnorm_tst, xxnorm_ref, tol));
128 for (
const eckit::Configuration &config : Test_::confs()) {
130 EXPECT_NO_THROW(parameters.validateAndDeserialize(config));
137 eckit::LocalConfiguration config;
138 config.set(
"variable change",
"###INVALID###");
140 if (oops::Parameters::isValidationSupported())
141 EXPECT_THROWS_MSG(parameters.validate(config),
"unrecognized enum value");
142 EXPECT_THROWS_MSG(parameters.deserialize(config),
143 "does not exist in VariableChangeFactory");
150 const std::vector<std::string> registeredNames =
152 for (
const eckit::Configuration &config : Test_::confs()) {
153 const std::string validName = config.getString(
"variable change");
154 const bool found = std::find(registeredNames.begin(), registeredNames.end(), validName) !=
155 registeredNames.end();
167 std::string
testid()
const override {
return "test::VariableChange<" + MODEL::name() +
">";}
170 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
172 ts.emplace_back(
CASE(
"interface/VariableChange/testVariableChangeInverse")
173 { testVariableChangeInverse<MODEL>(); });
174 ts.emplace_back(
CASE(
"interface/VariableChange/"
175 "testVariableChangeParametersWrapperValidName")
176 { testVariableChangeParametersWrapperValidName<MODEL>(); });
177 ts.emplace_back(
CASE(
"interface/VariableChange/"
178 "testVariableChangeParametersWrapperInvalidName")
179 { testVariableChangeParametersWrapperInvalidName<MODEL>(); });
180 ts.emplace_back(
CASE(
"interface/VariableChange/"
181 "testVariableChangeFactoryGetMakerNames")
182 { testVariableChangeFactoryGetMakerNames<MODEL>(); });
Geometry class used in oops; subclass of interface class interface::Geometry.
State class used in oops; subclass of interface class interface::State.
static std::vector< std::string > getMakerNames()
Return the names of all variable changes that can be created by one of the registered makers.
Encapsulates the nonlinear variable change Note: to see methods that need to be implemented in the im...
Contains a polymorphic parameter holding an instance of a subclass of VariableChangeParametersBase.
static const eckit::Configuration & config()
oops::State< MODEL > State_
static std::vector< eckit::LocalConfiguration > & confs()
static const Geometry_ & resol()
oops::Geometry< MODEL > Geometry_
std::vector< eckit::LocalConfiguration > confs_
std::unique_ptr< const Geometry_ > resol_
static VariableChangeFixture< MODEL > & getInstance()
void register_tests() const override
virtual ~VariableChange()
std::string testid() const override
void clear() const override
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
void testVariableChangeParametersWrapperValidName()
void testVariableChangeFactoryGetMakerNames()
void testVariableChangeInverse()
void testVariableChangeParametersWrapperInvalidName()
CASE("test_linearmodelparameterswrapper_valid_name")