OOPS
GeometryFixture.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 UCAR
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 #ifndef TEST_INTERFACE_GEOMETRYFIXTURE_H_
9 #define TEST_INTERFACE_GEOMETRYFIXTURE_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 #include "oops/base/Geometry.h"
16 #include "oops/util/parameters/IgnoreOtherParameters.h"
17 #include "oops/util/parameters/Parameters.h"
18 #include "oops/util/parameters/RequiredParameter.h"
19 #include "test/TestEnvironment.h"
20 
21 namespace test {
22 
23 // -----------------------------------------------------------------------------
24 
25 /// \brief Parameters loaded from the input YAML file and used by GeometryFixture.
26 template <typename MODEL>
27 class GeometryTestParameters : public oops::Parameters {
28  OOPS_CONCRETE_PARAMETERS(GeometryTestParameters, Parameters)
29 
30  public:
32 
33  /// \brief Group of parameters controlling the tested model's geometry.
34  oops::RequiredParameter<GeometryParameters_> geometry{"geometry", this};
35  /// \brief Don't treat the presence of other parameter groups as an error (this makes it
36  /// possible to reuse a single YAML file in tests of implementations of multiple oops interfaces).
37  oops::IgnoreOtherParameters ignoreOthers{this};
38 };
39 
40 // -----------------------------------------------------------------------------
41 
42 /// \brief Fixture used by tests of the Geometry and GeometryIterator interfaces.
43 template <typename MODEL> class GeometryFixture : private boost::noncopyable {
46 
47  public:
49  static const Parameters_ & getParameters() {return getInstance().parameters_.geometry.value();}
50 
51  private:
53  static GeometryFixture<MODEL> theGeometryFixture;
54  return theGeometryFixture;
55  }
56 
58  parameters_.validateAndDeserialize(TestEnvironment::config());
59  }
60 
62 
64 };
65 
66 // -----------------------------------------------------------------------------
67 
68 } // namespace test
69 
70 #endif // TEST_INTERFACE_GEOMETRYFIXTURE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
interface::Geometry< MODEL >::Parameters_ Parameters_
Fixture used by tests of the Geometry and GeometryIterator interfaces.
static const Parameters_ & getParameters()
Geometry_::Parameters_ Parameters_
oops::Geometry< MODEL > Geometry_
TestParameters_ parameters_
static GeometryFixture< MODEL > & getInstance()
GeometryTestParameters< MODEL > TestParameters_
Parameters loaded from the input YAML file and used by GeometryFixture.
oops::RequiredParameter< GeometryParameters_ > geometry
Group of parameters controlling the tested model's geometry.
oops::IgnoreOtherParameters ignoreOthers
Don't treat the presence of other parameter groups as an error (this makes it possible to reuse a sin...
oops::Geometry< MODEL >::Parameters_ GeometryParameters_
static const eckit::Configuration & config()