OOPS
src/test/interface/ObsIterator.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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_OBSITERATOR_H_
9 #define TEST_INTERFACE_OBSITERATOR_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
15 
16 #include "eckit/config/Configuration.h"
17 #include "eckit/testing/Test.h"
18 
21 #include "oops/runs/Test.h"
22 
24 #include "test/TestEnvironment.h"
25 
26 namespace test {
27 
28 // -----------------------------------------------------------------------------
29 /*! \brief Tests of ObsSpace::begin/end; ObsIterator ctor, ==/!=/++ operators
30  * and dereferencing operator.
31  *
32  * \details testBasic tests the following:
33  *
34  * 1. Initialize ObsIterator to ObsSpace::begin() and check equality
35  * 2. Initialize ObsIterator to ObsSpace::end() and check equality
36  * 3. Check inequality of the two iterators
37  * 4. Print out the begin iterator, to "test" print method
38  * 5. Loop over iterator (test operator++), compute number of iterations, compare
39  * with reference
40  * 6. Compare the first two Points with reference.
41  */
42 template <typename OBS> void testBasic() {
43  typedef oops::GeometryIterator<OBS> ObsIterator_;
44  typedef ObsTestsFixture<OBS> Test_;
45 
46  for (size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
47  const double tol = Test_::config(jj).getDouble("obs iterator test.tolerance");
48 
49  // Initialize two iterators (begin and end), test equality
50  ObsIterator_ iter1 = Test_::obspace()[jj].begin();
51  EXPECT(iter1 == Test_::obspace()[jj].begin());
52 
53  ObsIterator_ iter2 = Test_::obspace()[jj].end();
54  EXPECT(iter2 == Test_::obspace()[jj].end());
55 
56  // For all current use cases begin() shouldn't be the same as end(); test it
57  EXPECT(iter1 != iter2);
58 
59  // At least test that nothing fails on print
60  oops::Log::test() << "ObsSpace::begin " << iter1 << std::endl;
61 
62  // loop over all points in iterator, compute number of those points, and compare
63  // with reference
64  size_t nlocs = 0;
65  for (ObsIterator_ ii = Test_::obspace()[jj].begin(); ii != Test_::obspace()[jj].end(); ++ii) {
66  nlocs++;
67  }
68  size_t nlocs_ref = Test_::config(jj).getUnsigned("obs iterator test.reference nlocs");
69  EXPECT_EQUAL(nlocs, nlocs_ref);
70 
71  // test that the begin() point is the same as reference
72  double lon1 = Test_::config(jj).getDouble("obs iterator test.lon1");
73  double lat1 = Test_::config(jj).getDouble("obs iterator test.lat1");
74  const eckit::geometry::Point2 point1(lon1, lat1);
75  EXPECT((*iter1).distance(point1) <= tol);
76 
77  // test that the point after begin() is the same as reference
78  ++iter1;
79  double lon2 = Test_::config(jj).getDouble("obs iterator test.lon2");
80  double lat2 = Test_::config(jj).getDouble("obs iterator test.lat2");
81  const eckit::geometry::Point2 point2(lon2, lat2);
82  EXPECT((*iter1).distance(point2) <= tol);
83  }
84 }
85 
86 
87 // -----------------------------------------------------------------------------
88 
89 template <typename OBS> class ObsIterator : public oops::Test {
91  public:
92  ObsIterator() = default;
93  virtual ~ObsIterator() = default;
94 
95  private:
96  std::string testid() const override {return "test::ObsIterator<" + OBS::name() + ">";}
97 
98  void register_tests() const override {
99  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
100 
101  ts.emplace_back(CASE("interface/ObsIterator/testBasic")
102  { testBasic<OBS>(); });
103  }
104 
105  void clear() const override {
106  Test_::reset();
107  }
108 };
109 
110 // =============================================================================
111 
112 } // namespace test
113 
114 #endif // TEST_INTERFACE_OBSITERATOR_H_
ObsIterator()=default
std::string testid() const override
ObsTestsFixture< OBS > Test_
void register_tests() const override
virtual ~ObsIterator()=default
void testBasic()
Tests of Geometry::begin/end; GeometryIterator ctor and ==/!= operators.
CASE("test_linearmodelparameterswrapper_valid_name")