OOPS
LinearModelFactory.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 Met Office UK.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #include <vector>
9 
10 #include "eckit/config/LocalConfiguration.h"
11 #include "eckit/testing/Test.h"
12 #include "lorenz95/L95Traits.h"
13 #include "lorenz95/LocsL95.h"
15 #include "oops/runs/Run.h"
16 #include "oops/runs/Test.h"
17 #include "oops/util/Expect.h"
18 #include "test/TestEnvironment.h"
19 
20 namespace test {
21 
22 CASE("test_linearmodelparameterswrapper_valid_name") {
23  eckit::LocalConfiguration config(TestEnvironment::config(), "valid linear model name");
25  EXPECT_NO_THROW(parameters.validateAndDeserialize(config));
26 }
27 
28 CASE("test_linearmodelparameterswrapper_invalid_name") {
29  eckit::LocalConfiguration config(TestEnvironment::config(), "invalid linear model name");
31  if (oops::Parameters::isValidationSupported())
32  EXPECT_THROWS_MSG(parameters.validate(config), "unrecognized enum value");
33  EXPECT_THROWS_MSG(parameters.deserialize(config),
34  "does not exist in the linear model factory");
35 }
36 
37 CASE("test_linearmodelfactory") {
39  std::vector<std::string>{"L95TLM"});
40 }
41 
43  public:
45  // Constructing a LocsL95 object introduces a dependency on a non-inline function from
46  // the lorenz95 library and thus prevents the linker from dropping that library from the list of
47  // dependencies. This ensures static initialization of that library is completed before main()
48  // starts and hence the L95TLM linear model is registered in the linear model factory.
49  lorenz95::LocsL95 locs({}, {});
50  }
51 
52  private:
53  std::string testid() const override {return "test::LinearModelFactory";}
54 
55  void register_tests() const override {}
56 
57  void clear() const override {}
58 };
59 
60 } // namespace test
61 
62 int main(int argc, char **argv) {
63  oops::Run run(argc, argv);
65  return run.execute(tests);
66 }
int main(int argc, char **argv)
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
Contains a polymorphic parameter holding an instance of a subclass of LinearModelParametersBase.
Run encapsulates one OOPS run.
Definition: Run.h:29
int execute(const Application &)
Definition: Run.cc:116
void clear() const override
void register_tests() const override
std::string testid() const override
static const eckit::Configuration & config()
CASE("test_linearmodelparameterswrapper_valid_name")