OOPS
test/interface/GeoVaLs.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_GEOVALS_H_
9 #define TEST_INTERFACE_GEOVALS_H_
10 
11 #include <cmath>
12 #include <memory>
13 #include <string>
14 #include <vector>
15 
16 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
17 
18 #include <boost/noncopyable.hpp>
19 
20 #include "eckit/config/LocalConfiguration.h"
21 #include "eckit/testing/Test.h"
22 #include "oops/base/ObsSpaces.h"
23 #include "oops/base/State.h"
24 #include "oops/base/Variables.h"
25 #include "oops/interface/GeoVaLs.h"
26 #include "oops/mpi/mpi.h"
27 #include "oops/runs/Test.h"
28 #include "oops/util/dot_product.h"
29 #include "oops/util/Logger.h"
31 #include "test/TestEnvironment.h"
32 
33 namespace test {
34 
35 // -----------------------------------------------------------------------------
36 /// \brief Tests test-constructor and print method
37 template <typename OBS> void testConstructor() {
38  typedef ObsTestsFixture<OBS> Test_;
39  typedef oops::GeoVaLs<OBS> GeoVaLs_;
40 
41  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
42  eckit::LocalConfiguration gconf(Test_::config(jj), "geovals");
43  oops::Variables geovars(gconf, "state variables");
44  std::unique_ptr<GeoVaLs_> geovals(new GeoVaLs_(gconf, Test_::obspace()[jj], geovars));
45  EXPECT(geovals.get());
46  oops::Log::test() << "Testing GeoVaLs: " << *geovals << std::endl;
47  geovals.reset();
48  EXPECT(!geovals.get());
49  }
50 }
51 
52 // -----------------------------------------------------------------------------
53 
54 template <typename OBS> void testUtils() {
55  typedef ObsTestsFixture<OBS> Test_;
56  typedef oops::GeoVaLs<OBS> GeoVaLs_;
57 
58  const double tol = 1e-6;
59 
60  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
61  eckit::LocalConfiguration gconf(Test_::config(jj), "geovals");
62  oops::Variables geovars(gconf, "state variables");
63  GeoVaLs_ gval(gconf, Test_::obspace()[jj], geovars);
64 
65  const double zz = dot_product(gval, gval);
66 
67  oops::Log::trace() << "Testing copy constructor (=) " << std::endl;
68 
69  GeoVaLs_ gval2 = gval;
70 
71  double zz0 = dot_product(gval2, gval2);
72 
73  EXPECT(zz0 == zz);
74 
75  oops::Log::trace() << "Testing *= double" << std::endl;
76 
77  gval2 *= 2.0;
78 
79  const double zz1 = dot_product(gval2, gval2);
80 
81  EXPECT(zz1/zz - 4.0 < tol);
82 
83  oops::Log::trace() << "Testing += GeoVals" << std::endl;
84 
85  gval2 += gval;
86 
87  const double zz2 = dot_product(gval2, gval2);
88 
89  EXPECT(zz2/zz - 9.0 < tol);
90 
91  oops::Log::trace() << "Testing -= GeoVals" << std::endl;
92 
93  gval2 -= gval;
94 
95  const double zz3 = dot_product(gval2, gval2);
96 
97  EXPECT(zz3/zz - 4.0 < tol);
98 
99  oops::Log::trace() << "Testing *= GeoVals" << std::endl;
100 
101  gval2 = gval;
102 
103  gval2 *= gval;
104 
105  GeoVaLs_ gval3 = gval2;
106 
107  gval3 *= gval;
108 
109  const double zz4 = dot_product(gval2, gval2);
110 
111  const double zz5 = dot_product(gval3, gval);
112 
113  EXPECT(zz4/zz5 - 1.0 < tol);
114 
115  oops::Log::trace() << "Testing random" << std::endl;
116 
117  gval.random();
118  const double zz6 = dot_product(gval, gval);
119  EXPECT(zz6 > 0.0);
120 
121  oops::Log::trace() << "Testing zero" << std::endl;
122 
123  gval.zero();
124  const double zz7 = dot_product(gval, gval);
125  EXPECT(zz7 == 0.0);
126  }
127 }
128 
129 // -----------------------------------------------------------------------------
130 
131 template <typename OBS> void testRead() {
132  typedef ObsTestsFixture<OBS> Test_;
133  typedef oops::GeoVaLs<OBS> GeoVaLs_;
134 
135  const double tol = 1.0e-9;
136  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
137  eckit::LocalConfiguration gconf(Test_::config(jj), "geovals");
138  oops::Variables geovars(gconf, "state variables");
139  GeoVaLs_ gval(gconf, Test_::obspace()[jj], geovars);
140 
141  const double xx = gconf.getDouble("norm");
142  const double zz = sqrt(dot_product(gval, gval));
143 
144  oops::Log::debug() << "xx: " << std::fixed << std::setprecision(8) << xx << std::endl;
145  oops::Log::debug() << "zz: " << std::fixed << std::setprecision(8) << zz << std::endl;
146 
147  EXPECT(oops::is_close(xx, zz, tol));
148  }
149 }
150 
151 // -----------------------------------------------------------------------------
152 
153 template <typename OBS>
154 class GeoVaLs : public oops::Test {
156  public:
157  GeoVaLs() {}
158  virtual ~GeoVaLs() {}
159  private:
160  std::string testid() const override {return "test::GeoVaLs<" + OBS::name() + ">";}
161 
162  void register_tests() const override {
163  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
164 
165  ts.emplace_back(CASE("interface/GeoVaLs/testConstructor")
166  { testConstructor<OBS>(); });
167  ts.emplace_back(CASE("interface/GeoVaLs/testUtils")
168  { testUtils<OBS>(); });
169  ts.emplace_back(CASE("interface/GeoVaLs/testRead")
170  { testRead<OBS>(); });
171  }
172 
173  void clear() const override {
174  Test_::reset();
175  }
176 };
177 
178 // =============================================================================
179 
180 } // namespace test
181 
182 #endif // TEST_INTERFACE_GEOVALS_H_
std::string testid() const override
void clear() const override
void register_tests() const override
ObsTestsFixture< OBS > Test_
void testUtils()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.