14 #include "ioda/testconfig.h"
16 #include "eckit/testing/Test.h"
18 using namespace eckit::testing;
26 CASE(
"Stitch variables, remove originals defaulted as true") {
27 typedef std::string str;
28 str mappingFile = str(IODA_ENGINES_TEST_SOURCE_DIR)
29 +
"/variables/hasvariables_stitching_map.yaml";
32 backendParams.
fileName =
"ioda-engines_hasvariables_stitch-file.hdf5";
33 backendParams.
action = Engines::BackendFileActions::Create;
34 backendParams.
createMode = Engines::BackendCreateModes::Truncate_If_Exists;
38 completePart1.
write<str>({str(
"a"), str(
"A"), str(
"1")});
40 completePart2.
write<str>({str(
"b"), str(
"B"), str(
"2")});
42 completePart3.
write<str>({str(
"c"), str(
"C"), str(
"3")});
44 incompletePart1.
write<str>({str(
"a"), str(
"A"), str(
"1")});
46 incompletePart2.
write<str>({str(
"b"), str(
"B"), str(
"2")});
48 oneVar.
write<str>({str(
"foo"), str(
"bar"), str(
"baz"), str(
"lorem"), str(
"ipsum")});
55 detail::DataLayoutPolicy::generate(detail::DataLayoutPolicy::Policies::ObsGroupODB,
56 mappingFile, {
"nlocs",
"nchans"}));
58 EXPECT(
og.vars.exists(str(
"completeCombinationPart1")));
59 EXPECT(
og.vars.exists(str(
"completeCombinationPart2")));
60 EXPECT(
og.vars.exists(str(
"completeCombinationPart3")));
61 EXPECT(
og.vars.exists(str(
"incompleteCombinationPart1")));
62 EXPECT(
og.vars.exists(str(
"incompleteCombinationPart2")));
63 EXPECT(
og.vars.exists(str(
"oneVariableCombination")));
64 std::vector<str> singleVarCombPreStitch;
65 og.vars.open(
"oneVariableCombination").read<str>(singleVarCombPreStitch);
66 og.vars.stitchComplementaryVariables();
68 EXPECT(
og.vars.exists(str(
"completeCombination")));
69 std::vector<str> combinedVariable;
70 (
og.vars.open(
"completeCombination")).read<str>(combinedVariable);
71 std::vector<str> expectedCombinedVariable{
"abc",
"ABC",
"123"};
72 EXPECT(combinedVariable == expectedCombinedVariable);
73 EXPECT_NOT(
og.vars.exists(str(
"completeCombinationPart1")));
74 EXPECT_NOT(
og.vars.exists(str(
"completeCombinationPart2")));
75 EXPECT_NOT(
og.vars.exists(str(
"completeCombinationPart3")));
77 EXPECT_NOT(
og.vars.exists(str(
"incompleteCombination")));
78 EXPECT(
og.vars.exists(str(
"incompleteCombinationPart1")));
79 EXPECT(
og.vars.exists(str(
"incompleteCombinationPart2")));
81 EXPECT_NOT(
og.vars.exists(str(
"oneVariableCombination")));
82 EXPECT(
og.vars.exists(
"oneVariableDerivedVariable"));
83 std::vector<str> singleVarCombPostStitch;
84 (
og.vars.open(
"oneVariableDerivedVariable")).read<str>(singleVarCombPostStitch);
85 EXPECT(singleVarCombPreStitch == singleVarCombPostStitch);
88 CASE(
"Stitch variables, remove originals set to false") {
89 typedef std::string str;
90 str mappingFile = str(IODA_ENGINES_TEST_SOURCE_DIR)
91 +
"/variables/hasvariables_stitching_map.yaml";
94 backendParams.
fileName =
"ioda-engines_hasvariables_stitch-file-originals-kept.hdf5";
95 backendParams.
action = Engines::BackendFileActions::Create;
96 backendParams.
createMode = Engines::BackendCreateModes::Truncate_If_Exists;
100 completePart1.
write<str>({str(
"a"), str(
"A"), str(
"1")});
102 completePart2.
write<str>({str(
"b"), str(
"B"), str(
"2")});
104 completePart3.
write<str>({str(
"c"), str(
"C"), str(
"3")});
106 incompletePart1.
write<str>({str(
"a"), str(
"A"), str(
"1")});
108 incompletePart2.
write<str>({str(
"b"), str(
"B"), str(
"2")});
110 oneVar.
write<str>({str(
"foo"), str(
"bar"), str(
"baz"), str(
"lorem"), str(
"ipsum")});
117 detail::DataLayoutPolicy::generate(detail::DataLayoutPolicy::Policies::ObsGroupODB,
118 mappingFile, {
"nlocs",
"nchans"}));
119 EXPECT(
og.vars.exists(str(
"completeCombinationPart1")));
120 EXPECT(
og.vars.exists(str(
"completeCombinationPart2")));
121 EXPECT(
og.vars.exists(str(
"completeCombinationPart3")));
122 std::vector<str> completeCombinationPart2PreStitch;
123 (
og.vars.open(
"completeCombinationPart2")).read<str>(completeCombinationPart2PreStitch);
125 og.vars.stitchComplementaryVariables(
false);
127 EXPECT(
og.vars.exists(str(
"completeCombination")));
128 std::vector<str> combinedVariable =
129 (
og.vars.open(
"completeCombination")).readAsVector<str>();
130 std::vector<str> expectedCombinedVariable{
"abc",
"ABC",
"123"};
131 EXPECT(combinedVariable == expectedCombinedVariable);
132 EXPECT(
og.vars.exists(str(
"completeCombinationPart1")));
133 EXPECT(
og.vars.exists(str(
"completeCombinationPart2")));
134 EXPECT(
og.vars.exists(str(
"completeCombinationPart3")));
135 std::vector<str> completeCombinationPart2PostStitch;
136 (
og.vars.open(
"completeCombinationPart2")).read<str>(completeCombinationPart2PostStitch);
137 EXPECT(completeCombinationPart2PreStitch == completeCombinationPart2PostStitch);
143 int main(
int argc,
char** argv) {
144 return run_tests(argc, argv);
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Has_Variables and related classes.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
Groups are a new implementation of ObsSpaces.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Has_Variables vars
Use this to access variables.
virtual Variable create(const std::string &name, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters())
Create a Variable without setting its data.
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
BackendNames
Backend names.
IODA_DL Group constructBackend(BackendNames name, BackendCreationParameters ¶ms)
This is a simple factory style function that will instantiate a different backend based on a given na...
constexpr int Unlimited
Specifies that a dimension is resizable to infinity.
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
Used to specify backend creation-time properties.
BackendFileActions action
BackendCreateModes createMode
int main(int argc, char **argv)