OOPS
test/interface/ObsSpace.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2017-2020 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef TEST_INTERFACE_OBSSPACE_H_
13 #define TEST_INTERFACE_OBSSPACE_H_
14 
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/ObsVector.h"
26 #include "oops/runs/Test.h"
27 #include "oops/util/DateTime.h"
28 #include "oops/util/Duration.h"
30 #include "test/TestEnvironment.h"
31 
32 namespace test {
33 
34 // -----------------------------------------------------------------------------
35 /// \brief tests constructor, window accessor methods and prints
36 template <typename OBS> void testConstructor() {
37  typedef ObsTestsFixture<OBS> Test_;
38 
39  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
40  oops::Log::test() << "Testing ObsSpace: " << Test_::obspace()[jj] << std::endl;
41  EXPECT(Test_::obspace()[jj].windowStart() == Test_::tbgn());
42  EXPECT(Test_::obspace()[jj].windowEnd() == Test_::tend());
43  }
44 }
45 
46 // -----------------------------------------------------------------------------
47 /// \brief tests that ObsSpaces created on subwindows have the same number obs as
48 /// ObsSpaces created on the whole window
49 template <typename OBS> void testSubwindows() {
50  typedef ObsTestsFixture<OBS> Test_;
51  typedef oops::ObsSpace<OBS> ObsSpace_;
52  typedef typename ObsSpace_::Parameters_ ObsSpaceParameters_;
53  typedef oops::ObsVector<OBS> ObsVector_;
54 
55  util::DateTime tmid = Test_::tbgn() + (Test_::tend()-Test_::tbgn())/2;
56  oops::Log::test() << "Testing subwindows: " << Test_::tbgn() << " to " << tmid << " and "
57  << tmid << " to " << Test_::tend() << std::endl;
58  for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
59  eckit::LocalConfiguration obsconfig(Test_::config(jj), "obs space");
60  ObsSpaceParameters_ obsparams;
61  obsparams.validateAndDeserialize(obsconfig);
62  ObsSpace_ obspace1(obsparams, oops::mpi::world(), Test_::tbgn(), tmid);
63  ObsSpace_ obspace2(obsparams, oops::mpi::world(), tmid, Test_::tend());
64 
65  /// Create ObsVectors for each of the ObsSpaces, to compare nobs
66  ObsVector_ ovec(Test_::obspace()[jj]);
67  ObsVector_ ovec1(obspace1);
68  ObsVector_ ovec2(obspace2);
69  oops::Log::test() << Test_::obspace()[jj].obsname() << " nobs(all): " << ovec.nobs()
70  << " nobs(1st subwindow): " << ovec1.nobs()
71  << " nobs(2nd subwindow): " << ovec2.nobs() << std::endl;
72  EXPECT_EQUAL(ovec1.nobs() + ovec2.nobs(), ovec.nobs());
73  }
74 }
75 
76 // -----------------------------------------------------------------------------
77 
78 template <typename OBS> class ObsSpace : public oops::Test {
80  public:
81  ObsSpace() {}
82  virtual ~ObsSpace() {}
83  private:
84  std::string testid() const override {return "test::ObsSpace<" + OBS::name() + ">";}
85 
86  void register_tests() const override {
87  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
88 
89  ts.emplace_back(CASE("interface/ObsSpace/testConstructor")
90  { testConstructor<OBS>(); });
91  ts.emplace_back(CASE("interface/ObsSpace/testSubwindows")
92  { testSubwindows<OBS>(); });
93  }
94 
95  void clear() const override {
96  Test_::reset();
97  }
98 };
99 
100 // -----------------------------------------------------------------------------
101 
102 } // namespace test
103 
104 #endif // TEST_INTERFACE_OBSSPACE_H_
ObsVector class used in oops; subclass of interface class interface::ObsVector.
void register_tests() const override
void clear() const override
ObsTestsFixture< OBS > Test_
std::string testid() const override
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
void testSubwindows()
tests that ObsSpaces created on subwindows have the same number obs as ObsSpaces created on the whole...
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.