IODA
test/ioda/ObsDataVector.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 Met Office UK
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_IODA_OBSDATAVECTOR_H_
9 #define TEST_IODA_OBSDATAVECTOR_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include <boost/make_unique.hpp>
16 
17 #include "eckit/config/LocalConfiguration.h"
18 #include "eckit/testing/Test.h"
19 
20 #include "oops/mpi/mpi.h"
21 #include "oops/runs/Test.h"
22 #include "oops/test/TestEnvironment.h"
23 
24 #include "ioda/ObsDataVector.h"
25 #include "ioda/ObsSpace.h"
26 
27 namespace ioda {
28 namespace test {
29 
30 class ObsDataVecTestFixture : private boost::noncopyable {
32 
33  public:
34  static ObsSpace_ & obspace() {return *getInstance().obspace_;}
35 
36  private:
38  static ObsDataVecTestFixture theObsDataVecTestFixture;
39  return theObsDataVecTestFixture;
40  }
41 
43  const eckit::Configuration &conf = ::test::TestEnvironment::config();
44  const util::DateTime bgn(conf.getString("window begin"));
45  const util::DateTime end(conf.getString("window end"));
46 
47  eckit::LocalConfiguration obsconf(conf, "obs space");
49  obsparams.validateAndDeserialize(obsconf);
50  obspace_ = boost::make_unique<ObsSpace_>(obsparams, oops::mpi::world(),
51  bgn, end, oops::mpi::myself());
52  }
53 
54  std::unique_ptr<ObsSpace_> obspace_;
55 };
56 
57 std::string trim(const std::string & str) {
58  const auto strBegin = str.find_first_not_of("\n");
59  if (strBegin == std::string::npos) return "";
60  const auto strEnd = str.find_last_not_of("\n");
61  const auto strRange = strEnd - strBegin + 1;
62  return str.substr(strBegin, strRange);
63 }
64 
65 
66 template <typename T>
67 void testPrint(const std::string &datatype) {
68  eckit::LocalConfiguration conf(::test::TestEnvironment::config(), "print." + datatype);
69 
70  oops::Variables vars;
71  for (const std::string &var : conf.getStringVector("variables"))
72  vars.push_back(var);
73  const std::string group = conf.getString("group");
75 
76  std::stringstream stream;
77  stream << vector;
78  std::string output = trim(stream.str());
79  std::string expectedOutput = trim(conf.getString("expected output"));
80  EXPECT_EQUAL(output, expectedOutput);
81 }
82 
83 CASE("ioda/ObsDataVector/printFloat") {
84  testPrint<float>("float");
85 }
86 
87 CASE("ioda/ObsDataVector/printDouble") {
88  testPrint<double>("double");
89 }
90 
91 CASE("ioda/ObsDataVector/printInt") {
92  testPrint<int>("int");
93 }
94 
95 CASE("ioda/ObsDataVector/printString") {
96  testPrint<std::string>("string");
97 }
98 
99 CASE("ioda/ObsDataVector/printDateTime") {
100  testPrint<util::DateTime>("datetime");
101 }
102 
103 CASE("ioda/ObsDataVector/closeObsSpace") {
104  // In case the obsdataout spec is ever used
106 }
107 
108 class ObsDataVector : public oops::Test {
109  private:
110  std::string testid() const override {return "test::ObsDataVector<ioda::IodaTrait>";}
111 
112  void register_tests() const override {}
113 
114  void clear() const override {}
115 };
116 
117 // =============================================================================
118 
119 } // namespace test
120 } // namespace ioda
121 
122 #endif // TEST_IODA_OBSDATAVECTOR_H_
ObsDataVector<DATATYPE> handles vectors of data of type DATATYPE in observation space.
std::unique_ptr< ObsSpace_ > obspace_
static ObsDataVecTestFixture & getInstance()
void register_tests() const override
std::string testid() const override
CASE("Derived variable, unit conversion, and exception checking methods")
void testPrint(const std::string &datatype)
std::string trim(const std::string &str)