8 #ifndef TEST_IODA_OBSSPACEPUTDBCHANNELS_H_
9 #define TEST_IODA_OBSSPACEPUTDBCHANNELS_H_
15 #include <boost/make_unique.hpp>
18 #include "eckit/config/LocalConfiguration.h"
19 #include "eckit/testing/Test.h"
21 #include "oops/mpi/mpi.h"
22 #include "oops/runs/Test.h"
23 #include "oops/test/TestEnvironment.h"
31 CASE(
"ioda/ObsSpace/testPutDb") {
32 const auto &topLevelConf = ::test::TestEnvironment::config();
34 util::DateTime bgn(topLevelConf.getString(
"window begin"));
35 util::DateTime end(topLevelConf.getString(
"window end"));
37 std::vector<eckit::LocalConfiguration> confs;
38 topLevelConf.get(
"observations", confs);
40 for (
const eckit::LocalConfiguration & conf : confs) {
41 eckit::LocalConfiguration obsconf(conf,
"obs space");
43 obsparams.validateAndDeserialize(obsconf);
45 std::unique_ptr<ObsSpace>
obsspace = boost::make_unique<ObsSpace>(
46 obsparams, oops::mpi::world(), bgn, end, oops::mpi::myself());
48 const Dimensions_t nlocs =
obsspace->nlocs();
49 const Dimensions_t nchans =
obsspace->nchans();
50 const bool hasChannels = nchans != 0;
52 std::vector<float> testVec1(nlocs), testVec2(nlocs);
53 std::iota(testVec1.begin(), testVec1.end(), 1.0f);
54 std::iota(testVec2.begin(), testVec2.end(), 2.0f);
55 obsspace->put_db(
"DummyGroup",
"multi_dimensional_var_2", testVec1);
56 obsspace->put_db(
"DummyGroup",
"multi_dimensional_var_4", testVec2);
57 obsspace->put_db(
"MetaData",
"single_dimensional_var_2", testVec1);
58 obsspace->put_db(
"DummyGroup",
"single_dimensional_var", testVec1);
61 EXPECT_THROWS(
obsspace->put_db(
"DummyGroup",
"multi_dimensional_var_1000000", testVec1));
64 EXPECT_THROWS(
obsspace->put_db(
"DummyGroup",
"single_dimensional_var_2", testVec1));
72 const std::string fileName =
uniquifyFileName(obsconf.getString(
"obsdataout.obsfile"), 0, -1);
79 const std::size_t channel2Index =
81 const std::size_t channel4Index =
88 const std::vector<Dimensions_t> expectedDimsCur{nlocs, nchans};
89 EXPECT_EQUAL(dims.
dimsCur, expectedDimsCur);
91 Eigen::ArrayXXf values;
93 std::vector<float> channelValues(nlocs);
94 for (std::size_t loc = 0; loc < nlocs; ++loc)
95 channelValues[loc] = values(loc, channel2Index);
96 EXPECT_EQUAL(channelValues, testVec1);
98 for (std::size_t loc = 0; loc < nlocs; ++loc)
99 channelValues[loc] = values(loc, channel4Index);
100 EXPECT_EQUAL(channelValues, testVec2);
107 const std::vector<Dimensions_t> expectedDimsCur{nlocs};
108 EXPECT_EQUAL(dims.
dimsCur, expectedDimsCur);
110 const std::vector<float> values = var.
readAsVector<
float>();
111 EXPECT_EQUAL(values, testVec1);
118 const std::vector<Dimensions_t> expectedDimsCur{nlocs};
119 EXPECT_EQUAL(dims.
dimsCur, expectedDimsCur);
121 const std::vector<float> values = var.
readAsVector<
float>();
122 EXPECT_EQUAL(values, testVec2);
130 const std::vector<Dimensions_t> expectedDimsCur{nlocs};
131 EXPECT_EQUAL(dims.
dimsCur, expectedDimsCur);
133 const std::vector<float> values = var.
readAsVector<
float>();
134 EXPECT_EQUAL(values, testVec1);
141 const std::vector<Dimensions_t> expectedDimsCur{nlocs};
142 EXPECT_EQUAL(dims.
dimsCur, expectedDimsCur);
144 const std::vector<float> values = var.
readAsVector<
float>();
145 EXPECT_EQUAL(values, testVec1);
152 std::string
testid()
const override {
return "test::ObsSpacePutDbChannels";}
Groups are a new implementation of ObsSpaces.
Has_Variables vars
Use this to access variables.
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual Dimensions getDimensions() const
std::vector< DataType > readAsVector(const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read the variable into a new vector. Python convenience function.
Variable_Implementation readWithEigenRegular(EigenClass &res, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
void clear() const override
std::string testid() const override
void register_tests() const override
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
@ Read_Only
Open the file in read-only mode.
CASE("Derived variable, unit conversion, and exception checking methods")
std::string uniquifyFileName(const std::string &fileName, const std::size_t rankNum, const int timeRankNum)
uniquify the output file name
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Dimensions_t dimensionality
The dimensionality (rank) of the data.