IODA
ObsIoConstructor.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_OBSIOCONSTRUCTOR_H_
9 #define TEST_IO_OBSIOCONSTRUCTOR_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/ObsIo.h"
35 #include "ioda/io/ObsIoFactory.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() << "ObsIo obs space config: " << i << ": " << obsConfig << std::endl;
64  oops::Log::trace() << "ObsIo 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<ObsIo> obsIo;
73  obsIo = ObsIoFactory::create(ObsIoModes::READ, obsParams);
74 
75  // Test the counts that should be set on construction
76  ioda::Dimensions_t expectedMaxVarSize = testConfig.getInt("max var size", 0);
77  ioda::Dimensions_t maxVarSize = obsIo->maxVarSize();
78  EXPECT_EQUAL(maxVarSize, expectedMaxVarSize);
79 
80  ioda::Dimensions_t expectedNumLocs = testConfig.getInt("nlocs", 0);
81  ioda::Dimensions_t numLocs = obsIo->numLocs();
82  EXPECT_EQUAL(numLocs, expectedNumLocs);
83 
84  ioda::Dimensions_t expectedNumVars = testConfig.getInt("nvars", 0);
85  ioda::Dimensions_t numVars = obsIo->numVars();
86  EXPECT_EQUAL(numVars, expectedNumVars);
87 
88  ioda::Dimensions_t expectedNumDimVars = testConfig.getInt("ndvars", 0);
89  ioda::Dimensions_t numDimVars = obsIo->numDimVars();
90  EXPECT_EQUAL(numDimVars, expectedNumDimVars);
91 
92  // Try the output constructor, if one was specified
93  if (obsParams.top_level_.obsOutFile.value() != boost::none) {
94  setOfileParamsFromTestConfig(testConfig, obsParams);
95  obsIo = ObsIoFactory::create(ObsIoModes::WRITE, obsParams);
96 
97  // See if we get expected number of locations
98  std::vector<eckit::LocalConfiguration> writeDimConfigs =
99  testConfig.getSubConfigurations("write dimensions");
100  ioda::Dimensions_t expectedNumLocs = 0;
101  for (std::size_t j = 0; j < writeDimConfigs.size(); ++j) {
102  std::string dimName = writeDimConfigs[i].getString("name");
103  Dimensions_t dimSize = writeDimConfigs[i].getInt("size");
104  if (dimName == "nlocs") {
105  expectedNumLocs = dimSize;
106  }
107  }
108 
109  ioda::Dimensions_t numLocs = obsIo->numLocs();
110  EXPECT_EQUAL(numLocs, expectedNumLocs);
111  }
112  }
113 }
114 
115 // -----------------------------------------------------------------------------
116 
117 class ObsIoConstructor : public oops::Test {
118  public:
120  virtual ~ObsIoConstructor() {}
121  private:
122  std::string testid() const override {return "test::ObsIoConstructor";}
123 
124  void register_tests() const override {
125  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
126 
127  ts.emplace_back(CASE("ioda/ObsIoConstructor/testConstructor")
128  { testConstructor(); });
129  }
130 
131  void clear() const override {}
132 };
133 
134 // -----------------------------------------------------------------------------
135 
136 } // namespace test
137 } // namespace ioda
138 
139 #endif // TEST_IO_OBSIOCONSTRUCTOR_H_
Interfaces for ioda::ObsGroup and related classes.
Interfaces for ioda::Variable and related classes.
static std::shared_ptr< ObsIo > create(ObsIoModes mode, const ObsSpaceParameters &parameters)
Create and return a new instance of an ObsIo subclass.
Definition: ObsIoFactory.cc:24
ObsTopLevelParameters top_level_
sub groups of parameters
oops::OptionalParameter< ObsFileOutParameters > obsOutFile
output specification by writing to a file
void clear() const override
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