OOPS
test/interface/ModelAuxControl.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef TEST_INTERFACE_MODELAUXCONTROL_H_
12 #define TEST_INTERFACE_MODELAUXCONTROL_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
19 
20 #include <boost/noncopyable.hpp>
21 
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/testing/Test.h"
24 #include "oops/base/Geometry.h"
26 #include "oops/mpi/mpi.h"
27 #include "oops/runs/Test.h"
28 #include "test/TestEnvironment.h"
29 
30 namespace test {
31 
32 // -----------------------------------------------------------------------------
33 template <typename MODEL> class ModelAuxControlFixture : private boost::noncopyable {
36 
37  public:
38  static const eckit::Configuration & config() {return *getInstance().conf_;}
39  static const Geometry_ & resol() {return *getInstance().resol_;}
40 
41  private:
43  static ModelAuxControlFixture<MODEL> theModelAuxControlFixture;
44  return theModelAuxControlFixture;
45  }
46 
48  conf_.reset(new eckit::LocalConfiguration(TestEnvironment::config(), "model aux control"));
49 
50  const eckit::LocalConfiguration resolConfig(TestEnvironment::config(), "geometry");
51  resol_.reset(new Geometry_(resolConfig, oops::mpi::world()));
52  }
53 
55 
56  std::unique_ptr<const eckit::LocalConfiguration> conf_;
57  std::unique_ptr<Geometry_> resol_;
58 };
59 
60 // -----------------------------------------------------------------------------
61 /// \brief testing constructor and print method
62 template <typename MODEL> void testConstructor() {
63  typedef ModelAuxControlFixture<MODEL> Test_;
64  typedef oops::ModelAuxControl<MODEL> ModelAux_;
65 
66  std::unique_ptr<ModelAux_> bias(new ModelAux_(Test_::resol(), Test_::config()));
67  EXPECT(bias.get());
68  oops::Log::test() << "Testing ModelAuxControl: " << *bias << std::endl;
69  bias.reset();
70  EXPECT(!bias.get());
71 }
72 
73 // -----------------------------------------------------------------------------
74 
75 template <typename MODEL> void testCopyConstructor() {
76  typedef ModelAuxControlFixture<MODEL> Test_;
77  typedef oops::ModelAuxControl<MODEL> ModelAux_;
78 
79  std::unique_ptr<ModelAux_> bias(new ModelAux_(Test_::resol(), Test_::config()));
80 
81  std::unique_ptr<ModelAux_> other(new ModelAux_(*bias));
82  EXPECT(other.get());
83 
84  other.reset();
85  EXPECT(!other.get());
86 
87  EXPECT(bias.get());
88 }
89 
90 // -----------------------------------------------------------------------------
91 
92 template <typename MODEL> void testChangeRes() {
93  typedef ModelAuxControlFixture<MODEL> Test_;
94  typedef oops::ModelAuxControl<MODEL> ModelAux_;
95 
96  std::unique_ptr<ModelAux_> bias(new ModelAux_(Test_::resol(), Test_::config()));
97 
98  std::unique_ptr<ModelAux_> other(new ModelAux_(Test_::resol(), *bias));
99  EXPECT(other.get());
100 
101  other.reset();
102  EXPECT(!other.get());
103 
104  EXPECT(bias.get());
105 }
106 
107 // -----------------------------------------------------------------------------
108 
109 template <typename MODEL>
110 class ModelAuxControl : public oops::Test {
111  public:
113  virtual ~ModelAuxControl() {}
114  private:
115  std::string testid() const override {return "test::ModelAuxControl<" + MODEL::name() + ">";}
116 
117  void register_tests() const override {
118  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
119 
120  ts.emplace_back(CASE("interface/ModelAuxControl/testConstructor")
121  { testConstructor<MODEL>(); });
122  ts.emplace_back(CASE("interface/ModelAuxControl/testCopyConstructor")
123  { testCopyConstructor<MODEL>(); });
124  ts.emplace_back(CASE("interface/ModelAuxControl/testChangeRes")
125  { testChangeRes<MODEL>(); });
126  }
127 
128  void clear() const override {}
129 };
130 
131 // =============================================================================
132 
133 } // namespace test
134 
135 #endif // TEST_INTERFACE_MODELAUXCONTROL_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
oops::ModelAuxControl< MODEL > ModelAux_
static ModelAuxControlFixture< MODEL > & getInstance()
static const eckit::Configuration & config()
std::unique_ptr< const eckit::LocalConfiguration > conf_
std::string testid() const override
static const eckit::Configuration & config()
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
void testCopyConstructor()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.