OOPS
test/interface/ObsAuxCovariance.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_OBSAUXCOVARIANCE_H_
12 #define TEST_INTERFACE_OBSAUXCOVARIANCE_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"
24 #include "oops/runs/Test.h"
26 #include "test/TestEnvironment.h"
27 
28 namespace test {
29 
30 // -----------------------------------------------------------------------------
31 /// \brief testing constructor and print method
32 template <typename OBS> void testConstructor() {
33  typedef ObsTestsFixture<OBS> Test_;
34  typedef oops::ObsAuxCovariance<OBS> Covariance_;
35 
36  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
37  eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration("obs bias");
38  typename Covariance_::Parameters_ biasparams;
39  biasparams.validateAndDeserialize(biasconf);
40  std::unique_ptr<Covariance_> cov(new Covariance_(Test_::obspace()[jj], biasparams));
41  EXPECT(cov.get());
42  oops::Log::test() << "Testing ObsAuxCovariance: " << *cov << std::endl;
43  cov.reset();
44  EXPECT(!cov.get());
45  }
46 }
47 
48 // -----------------------------------------------------------------------------
49 // void linearize(const ObsAuxControl_ &, const Geometry_ &);
50 // void multiply(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const;
51 // void invMult(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const;
52 // void randomize(ObsAuxIncrement_ &) const;
53 // -----------------------------------------------------------------------------
54 
55 // -----------------------------------------------------------------------------
56 
57 template <typename OBS>
58 class ObsAuxCovariance : public oops::Test {
60  public:
62  virtual ~ObsAuxCovariance() {}
63  private:
64  std::string testid() const override {return "test::ObsAuxCovariance<" + OBS::name() + ">";}
65 
66  void register_tests() const override {
67  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
68 
69  ts.emplace_back(CASE("interface/ObsAuxCovariance/testConstructor")
70  { testConstructor<OBS>(); });
71  }
72 
73  void clear() const override {
74  Test_::reset();
75  }
76 };
77 
78 // =============================================================================
79 
80 } // namespace test
81 
82 #endif // TEST_INTERFACE_OBSAUXCOVARIANCE_H_
Auxiliary error covariance related to observations, templated on <OBS>
std::string testid() const override
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.