IODA
ObsFrameConstructor.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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_IO_OBSFRAMECONSTRUCTOR_H_
9 #define TEST_IO_OBSFRAMECONSTRUCTOR_H_
10 
11 #include <algorithm>
12 #include <functional>
13 #include <map>
14 #include <memory>
15 #include <numeric>
16 #include <string>
17 #include <utility>
18 #include <vector>
19 
20 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
21 
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/testing/Test.h"
24 
25 #include "oops/mpi/mpi.h"
26 #include "oops/runs/Test.h"
27 #include "oops/test/TestEnvironment.h"
28 #include "oops/util/DateTime.h"
29 #include "oops/util/FloatCompare.h"
30 #include "oops/util/Logger.h"
31 
32 #include "ioda/core/IodaUtils.h"
33 #include "ioda/distribution/DistributionFactory.h"
34 #include "ioda/io/ObsFrameRead.h"
35 #include "ioda/io/ObsFrameWrite.h"
36 #include "ioda/ObsGroup.h"
37 #include "ioda/ObsSpaceParameters.h"
39 
40 namespace ioda {
41 namespace test {
42 
43 // -----------------------------------------------------------------------------
44 // Helper Functions
45 // -----------------------------------------------------------------------------
46 
47 // -----------------------------------------------------------------------------
48 // Test Functions
49 // -----------------------------------------------------------------------------
50 
51 // -----------------------------------------------------------------------------
52 void testConstructor() {
53  const eckit::LocalConfiguration conf(::test::TestEnvironment::config());
54  std::vector<eckit::LocalConfiguration> confOspaces = conf.getSubConfigurations("observations");
55  util::DateTime bgn(::test::TestEnvironment::config().getString("window begin"));
56  util::DateTime end(::test::TestEnvironment::config().getString("window end"));
57 
58  for (std::size_t i = 0; i < confOspaces.size(); ++i) {
59  eckit::LocalConfiguration obsConfig;
60  eckit::LocalConfiguration testConfig;
61  confOspaces[i].get("obs space", obsConfig);
62  confOspaces[i].get("test data", testConfig);
63  oops::Log::trace() << "ObsFrame obs space config: " << i << ": " << obsConfig << std::endl;
64  oops::Log::trace() << "ObsFrame test data config: " << i << ": " << testConfig << std::endl;
65 
67  topParams.validateAndDeserialize(obsConfig);
68  ioda::ObsSpaceParameters obsParams(topParams, bgn, end,
69  oops::mpi::world(), oops::mpi::myself());
70 
71  // Try the input constructor first - should have one to try if we got here
72  std::shared_ptr<ObsFrame> obsFrame = std::make_shared<ObsFrameRead>(obsParams);
73 
74  // Test the counts that should be set on construction
75  ioda::Dimensions_t expectedMaxVarSize = testConfig.getInt("max var size", 0);
76  ioda::Dimensions_t maxVarSize = obsFrame->ioMaxVarSize();
77  EXPECT_EQUAL(maxVarSize, expectedMaxVarSize);
78 
79  ioda::Dimensions_t expectedNumLocs = testConfig.getInt("nlocs", 0);
80  ioda::Dimensions_t numLocs = obsFrame->ioNumLocs();
81  EXPECT_EQUAL(numLocs, expectedNumLocs);
82 
83  ioda::Dimensions_t expectedNumVars = testConfig.getInt("nvars", 0);
84  ioda::Dimensions_t numVars = obsFrame->ioNumVars();
85  EXPECT_EQUAL(numVars, expectedNumVars);
86 
87  ioda::Dimensions_t expectedNumDimVars = testConfig.getInt("ndvars", 0);
88  ioda::Dimensions_t numDimVars = obsFrame->ioNumDimVars();
89  EXPECT_EQUAL(numDimVars, expectedNumDimVars);
90 
91  // Try the output constructor, if one was specified
92  if (obsParams.top_level_.obsOutFile.value() != boost::none) {
93  setOfileParamsFromTestConfig(testConfig, obsParams);
94  obsFrame = std::make_shared<ObsFrameWrite>(obsParams);
95 
96  // See if we get expected number of locations
97  std::vector<eckit::LocalConfiguration> writeDimConfigs =
98  testConfig.getSubConfigurations("write dimensions");
99  ioda::Dimensions_t expectedNumLocs = 0;
100  for (std::size_t j = 0; j < writeDimConfigs.size(); ++j) {
101  std::string dimName = writeDimConfigs[i].getString("name");
102  Dimensions_t dimSize = writeDimConfigs[i].getInt("size");
103  if (dimName == "nlocs") {
104  expectedNumLocs = dimSize;
105  }
106  }
107 
108  ioda::Dimensions_t numLocs = obsFrame->ioNumLocs();
109  EXPECT_EQUAL(numLocs, expectedNumLocs);
110  }
111  }
112 }
113 
114 // -----------------------------------------------------------------------------
115 
116 class ObsFrameConstructor : public oops::Test {
117  public:
119  virtual ~ObsFrameConstructor() {}
120  private:
121  std::string testid() const override {return "test::ObsFrameConstructor";}
122 
123  void register_tests() const override {
124  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
125 
126  ts.emplace_back(CASE("ioda/ObsFrameConstructor/testConstructor")
127  { testConstructor(); });
128  }
129 
130  void clear() const override {}
131 };
132 
133 // -----------------------------------------------------------------------------
134 
135 } // namespace test
136 } // namespace ioda
137 
138 #endif // TEST_IO_OBSFRAMECONSTRUCTOR_H_
Interfaces for ioda::ObsGroup and related classes.
Interfaces for ioda::Variable and related classes.
ObsTopLevelParameters top_level_
sub groups of parameters
oops::OptionalParameter< ObsFileOutParameters > obsOutFile
output specification by writing to a file
std::string testid() const override
void register_tests() const override
CASE("Derived variable, unit conversion, and exception checking methods")
void setOfileParamsFromTestConfig(const eckit::LocalConfiguration &obsConfig, ioda::ObsSpaceParameters &obsParams)
set params for output file construction from test YAML configuration
Definition: IodaUtils.cc:306