OOPS
test/interface/ObsDataVector.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021-2021 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_OBSDATAVECTOR_H_
9 #define TEST_INTERFACE_OBSDATAVECTOR_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
16 
17 #include "eckit/config/LocalConfiguration.h"
18 #include "eckit/testing/Test.h"
19 #include "oops/base/ObsVector.h"
20 #include "oops/base/Variables.h"
22 #include "oops/runs/Test.h"
23 #include "oops/util/dot_product.h"
25 #include "test/TestEnvironment.h"
26 
27 namespace test {
28 
29 // -----------------------------------------------------------------------------
30 /// \brief tests constructor and print method
31 template <typename OBS> void testConstructors() {
32  typedef ObsTestsFixture<OBS> Test_;
33  typedef oops::ObsDataVector<OBS, float> ObsDataVector_;
34 
35  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
36  oops::Variables vars(Test_::obspace()[jj].obsvariables());
37  std::unique_ptr<ObsDataVector_> odv1(new ObsDataVector_(Test_::obspace()[jj], vars));
38  EXPECT(odv1.get());
39 
40  odv1->zero();
41  oops::Log::test() << "Printing zero ObsDataVector: " << *odv1 << std::endl;
42 
43  std::unique_ptr<ObsDataVector_> odv2(new ObsDataVector_(*odv1));
44  EXPECT(odv2.get());
45 
46  odv2.reset();
47  EXPECT(!odv2.get());
48  EXPECT(odv1.get());
49 
50  odv1.reset();
51  EXPECT(!odv1.get());
52  }
53 }
54 
55 // -----------------------------------------------------------------------------
56 template <typename OBS> void testObsVector() {
57  typedef ObsTestsFixture<OBS> Test_;
58  typedef oops::ObsDataVector<OBS, float> ObsDataVector_;
59 
60  const double tolerance = 1.0e-10;
61  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
62  oops::ObsVector<OBS> ov1(Test_::obspace()[jj]);
63  ov1.random();
64 
65  ObsDataVector_ odv(ov1);
66  oops::Log::test() << "Printing random ObsDataVector: " << odv << std::endl;
67 
68  oops::ObsVector<OBS> ov2(Test_::obspace()[jj]);
69  ov2 = odv;
70 
71  ov1 -= ov2;
72  oops::Log::test() << "ObsVector - ObsDataVector = " << ov1 << std::endl;
73  const double diff = dot_product(ov1, ov1);
74  oops::Log::test() << "ObsVector, ObsDataVector diff = " << diff << std::endl;
75  EXPECT(diff < tolerance);
76  }
77 }
78 // -----------------------------------------------------------------------------
79 
80 template <typename OBS>
81 class ObsDataVector : public oops::Test {
83 
84  public:
86  virtual ~ObsDataVector() {}
87 
88  private:
89  std::string testid() const override {return "test::ObsDataVector<" + OBS::name() + ", float>";}
90 
91  void register_tests() const override {
92  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
93 
94  ts.emplace_back(CASE("interface/ObsDataVector/testConstructors")
95  { testConstructors<OBS>(); });
96  ts.emplace_back(CASE("interface/ObsDataVector/testObsVector")
97  { testObsVector<OBS>(); });
98  }
99 
100  void clear() const override {
101  Test_::reset();
102  }
103 };
104 
105 // =============================================================================
106 
107 } // namespace test
108 
109 #endif // TEST_INTERFACE_OBSDATAVECTOR_H_
ObsDataVector is a vector templated on data type, in the observation space.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
void random()
Set each value in this ObsVector to a random value.
std::string testid() const override
ObsTestsFixture< OBS > Test_
void register_tests() const override
void testConstructors()
tests constructor and print method
CASE("test_linearmodelparameterswrapper_valid_name")