OOPS
test/interface/ObsAuxControl.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_OBSAUXCONTROL_H_
12 #define TEST_INTERFACE_OBSAUXCONTROL_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/Configuration.h"
23 #include "eckit/testing/Test.h"
25 #include "oops/runs/Test.h"
27 #include "test/TestEnvironment.h"
28 
29 namespace test {
30 
31 // -----------------------------------------------------------------------------
32 /// \brief test constructor and print method
33 template <typename OBS> void testConstructor() {
34  typedef ObsTestsFixture<OBS> Test_;
35  typedef oops::ObsAuxControl<OBS> ObsAux_;
36 
37  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
38  eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration("obs bias");
39  typename ObsAux_::Parameters_ biasparams;
40  biasparams.validateAndDeserialize(biasconf);
41  std::unique_ptr<ObsAux_> bias(new ObsAux_(Test_::obspace()[jj], biasparams));
42  EXPECT(bias.get());
43  oops::Log::test() << "Testing ObsAuxControl: " << *bias << std::endl;
44 
45  // Not all configurations for interface tests specify "obs bias"; need to check
46  // whether "obs bias" section is available
47  if (Test_::config(jj).has("obs bias")) {
48  const double reference = Test_::config(jj).getDouble("obs bias test.norm");
49  const double tolerance = Test_::config(jj).getDouble("obs bias test.relative tolerance");
50  EXPECT(oops::is_close_relative(bias->norm(), reference, tolerance));
51  }
52 
53  bias.reset();
54  EXPECT(!bias.get());
55  }
56 }
57 
58 // -----------------------------------------------------------------------------
59 
60 template <typename OBS> void testCopyConstructor() {
61  typedef ObsTestsFixture<OBS> Test_;
62  typedef oops::ObsAuxControl<OBS> ObsAux_;
63 
64  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
65  eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration("obs bias");
66  typename ObsAux_::Parameters_ biasparams;
67  biasparams.validateAndDeserialize(biasconf);
68  std::unique_ptr<ObsAux_> bias(new ObsAux_(Test_::obspace()[jj], biasparams));
69 
70  std::unique_ptr<ObsAux_> other(new ObsAux_(*bias));
71  EXPECT(other.get());
72 
73  other.reset();
74  EXPECT(!other.get());
75 
76  EXPECT(bias.get());
77  }
78 }
79 
80 // -----------------------------------------------------------------------------
81 
82 template <typename OBS>
83 class ObsAuxControl : public oops::Test {
85  public:
87  virtual ~ObsAuxControl() {}
88  private:
89  std::string testid() const override {return "test::ObsAuxControl<" + OBS::name() + ">";}
90 
91  void register_tests() const override {
92  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
93 
94  ts.emplace_back(CASE("interface/ObsAuxControl/testConstructor")
95  { testConstructor<OBS>(); });
96  ts.emplace_back(CASE("interface/ObsAuxControl/testCopyConstructor")
97  { testCopyConstructor<OBS>(); });
98  }
99 
100  void clear() const override {
101  Test_::reset();
102  }
103 };
104 
105 // =============================================================================
106 
107 } // namespace test
108 
109 #endif // TEST_INTERFACE_OBSAUXCONTROL_H_
Auxiliary state related to observations, templated on <OBS>
ObsTestsFixture< OBS > Test_
std::string testid() const override
void register_tests() const override
logical function has(this, var)
void testCopyConstructor()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.