OOPS
test/interface/GeometryIterator.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_GEOMETRYITERATOR_H_
12 #define TEST_INTERFACE_GEOMETRYITERATOR_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
19 
20 #include "eckit/config/Configuration.h"
21 #include "eckit/testing/Test.h"
22 
23 #include "oops/base/Geometry.h"
24 #include "oops/base/Increment.h"
27 #include "oops/mpi/mpi.h"
28 #include "oops/runs/Test.h"
29 
32 #include "test/TestEnvironment.h"
33 
34 namespace test {
35 
36 // -----------------------------------------------------------------------------
37 /*! \brief Tests of Geometry::begin/end; GeometryIterator ctor and ==/!= operators
38  *
39  * \details testBasic tests the following:
40  *
41  * 1. Initialize GeometryIterator to Geometry::begin() and check equality
42  * 2. Initialize GeometryIterator to Geometry::end() and check equality
43  * 3. Check inequality of the two iterators
44  * 4. Print out the begin iterator, to "test" print method
45  */
46 template <typename MODEL> void testBasic() {
47  typedef oops::GeometryIterator<MODEL> GeometryIterator_;
48  typedef oops::Geometry<MODEL> Geometry_;
49 
51 
52  GeometryIterator_ iter1 = geom.begin();
53  EXPECT(iter1 == geom.begin());
54 
55  GeometryIterator_ iter2 = geom.end();
56  EXPECT(iter2 == geom.end());
57 
58  // For all current use cases begin() shouldn't be the same as end(); test it
59  EXPECT(iter1 != iter2);
60 
61  // At least test that nothing fails on print
62  oops::Log::test() << "Geometry::begin " << iter1 << std::endl;
63 }
64 
65 
66 // -----------------------------------------------------------------------------
67 /*! \brief Test of GeometryIterator::operator++, Increment::getLocal and Increment::setLocal
68  *
69  * \details testGetSetLocal tests the following:
70  *
71  * Initialize dx1 to non-zero random values, initialize dx2 to zero.
72  * Loop through gridpoints using GeometryIterator operator++, assign dx2 to dx1 gridpoint
73  * by gridpoint using get/setLocal. Check that the two increments are the same
74  * in the end.
75  */
76 template <typename MODEL> void testGetSetLocal() {
77  typedef oops::Geometry<MODEL> Geometry_;
78  typedef oops::GeometryIterator<MODEL> GeometryIterator_;
79  typedef oops::Increment<MODEL> Increment_;
80  typedef IncrementFixture<MODEL> Test_;
81 
83 
84  // randomize increment dx1
85  Increment_ dx1(Test_::resol(), Test_::ctlvars(), Test_::time());
86  dx1.random();
87  EXPECT(dx1.norm() != 0.0);
88  oops::Log::test() << "Increment dx1 (random): " << dx1 << std::endl;
89  // zero out increment dx2
90  Increment_ dx2(Test_::resol(), Test_::ctlvars(), Test_::time());
91  dx2.zero();
92  EXPECT(dx2.norm() == 0.0);
93  oops::Log::test() << "Increment dx2 (zero): " << dx2 << std::endl;
94 
95  for (GeometryIterator_ i = geom.begin(); i != geom.end(); ++i) {
96  // get value for i-th gridpoint from dx1
97  oops::LocalIncrement gp = dx1.getLocal(i);
98  oops::Log::debug() << *i << gp << std::endl;
99  // set this value for i-th gridpoint in dx2
100  dx2.setLocal(gp, i);
101  }
102  oops::Log::test() << "Increment dx2 after dx2=dx1 (at every point): " << dx2 << std::endl;
103  EXPECT(dx2.norm() != 0.0);
104  // compare two increments
105  dx2 -= dx1;
106  EXPECT(dx2.norm() == 0.0);
107 }
108 
109 // -----------------------------------------------------------------------------
110 
111 template <typename MODEL> class GeometryIterator : public oops::Test {
112  public:
114  virtual ~GeometryIterator() {}
115 
116  private:
117  std::string testid() const override {return "test::GeometryIterator<" + MODEL::name() + ">";}
118 
119  void register_tests() const override {
120  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
121 
122  ts.emplace_back(CASE("interface/GeometryIterator/testBasic")
123  { testBasic<MODEL>(); });
124  ts.emplace_back(CASE("interface/Increment/testGetSetLocal")
125  { testGetSetLocal<MODEL>(); });
126  }
127 
128  void clear() const override {}
129 };
130 
131 // =============================================================================
132 
133 } // namespace test
134 
135 #endif // TEST_INTERFACE_GEOMETRYITERATOR_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Fixture used by tests of the Geometry and GeometryIterator interfaces.
std::string testid() const override
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
Definition: oops/mpi/mpi.cc:90
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
void testBasic()
Tests of Geometry::begin/end; GeometryIterator ctor and ==/!= operators.
void testGetSetLocal()
Test of GeometryIterator::operator++, Increment::getLocal and Increment::setLocal.
CASE("test_linearmodelparameterswrapper_valid_name")