IODA
test-layoutodb.cpp
Go to the documentation of this file.
1 /*
2  * (C) Crown Copyright 2021 Met Office
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 #include "ioda/testconfig.h"
9 
10 #include "ioda/Exception.h"
11 
12 // This header is internal to ioda. It is not callable by end-users outside of the
13 // testing environment.
15 
16 #include <string>
17 #include <typeindex>
18 
19 #include "eckit/testing/Test.h"
20 
21 using namespace eckit::testing;
22 
23 namespace ioda {
24 namespace test {
25 
26 CASE("Concatenation mapping file; error checks of unit conversion methods") {
27  std::string yamlMappingFile
28  = std::string(IODA_ENGINES_TEST_SOURCE_DIR) + "/layouts/odb_concat_name_map.yaml";
29  ioda::detail::DataLayoutPolicy_ObsGroup_ODB dataLayoutPolicy(yamlMappingFile);
30  // Manually adding a variable which was already included in the mapping file
31  EXPECT_THROWS(ioda::detail::DataLayoutPolicy::generate("ObsGroupODB", yamlMappingFile,
32  {"firstPart"}));
33  //existent variable in mapping file
34  EXPECT(dataLayoutPolicy.isComplementary("firstPart"));
35  EXPECT(dataLayoutPolicy.isComplementary("secondPart"));
36  EXPECT(dataLayoutPolicy.isComplementary("thirdPart"));
37  EXPECT_EQUAL(dataLayoutPolicy.getComplementaryPosition("firstPart"), 0);
38  EXPECT_EQUAL(dataLayoutPolicy.getComplementaryPosition("secondPart"), 1);
39  EXPECT_EQUAL(dataLayoutPolicy.getComplementaryPosition("thirdPart"), 2);
40  EXPECT_EQUAL(dataLayoutPolicy.getInputsNeeded("firstPart"), 3);
41  EXPECT_EQUAL(dataLayoutPolicy.getInputsNeeded("secondPart"), 3);
42  EXPECT_EQUAL(dataLayoutPolicy.getInputsNeeded("thirdPart"), 3);
43  EXPECT(dataLayoutPolicy.getMergeMethod("firstPart") ==
45  EXPECT(dataLayoutPolicy.getMergeMethod("secondPart") ==
47  EXPECT(dataLayoutPolicy.getMergeMethod("thirdPart") ==
49  EXPECT_EQUAL(dataLayoutPolicy.getOutputNameFromComponent("firstPart"),
50  std::string("combined"));
51  EXPECT_EQUAL(dataLayoutPolicy.getOutputNameFromComponent("firstPart"),
52  dataLayoutPolicy.getOutputNameFromComponent("secondPart"));
53  EXPECT_EQUAL(dataLayoutPolicy.getOutputNameFromComponent("firstPart"),
54  dataLayoutPolicy.getOutputNameFromComponent("thirdPart"));
55  EXPECT(dataLayoutPolicy.getOutputVariableDataType("firstPart") ==
56  std::type_index(typeid(std::string)));
57  EXPECT(dataLayoutPolicy.getOutputVariableDataType("firstPart") ==
58  dataLayoutPolicy.getOutputVariableDataType("secondPart"));
59  EXPECT(dataLayoutPolicy.getOutputVariableDataType("firstPart") ==
60  dataLayoutPolicy.getOutputVariableDataType("thirdPart"));
61  EXPECT_NOT(dataLayoutPolicy.isComplementary("notInMapping"));
62  EXPECT_THROWS(dataLayoutPolicy.getComplementaryPosition("notInMapping"));
63  EXPECT_THROWS(dataLayoutPolicy.getInputsNeeded("notInMapping"));
64  EXPECT_THROWS(dataLayoutPolicy.getMergeMethod("notInMapping"));
65  EXPECT_THROWS(dataLayoutPolicy.getOutputNameFromComponent("notInMapping"));
66  EXPECT_THROWS(dataLayoutPolicy.getOutputVariableDataType("notInMapping"));
67  // unit conversion methods
68  EXPECT_NOT(dataLayoutPolicy.isMapped("notInMapping"));
69  EXPECT_THROWS(dataLayoutPolicy.getUnit("notInMapping"));
70 }
71 CASE("Input data name matches the export data name") {
72  std::string yamlMappingFile = std::string(IODA_ENGINES_TEST_SOURCE_DIR)
73  + "/layouts/odb_matchinginputoutput_name_map.yaml";
74  EXPECT_THROWS(ioda::detail::DataLayoutPolicy_ObsGroup_ODB policy(yamlMappingFile));
75 }
76 //The vertical coordinate merge method is currently unsupported
77 CASE("Vertical coordinate mapping file") {
78  std::string yamlMappingFile = std::string(IODA_ENGINES_TEST_SOURCE_DIR)
79  + "/layouts/odb_verticalreference_name_map.yaml";
80  EXPECT_THROWS(ioda::detail::DataLayoutPolicy_ObsGroup_ODB dataLayoutPolicy(yamlMappingFile));
81 }
82 
83 CASE("Missing YAML on generate") {
84  EXPECT_THROWS(detail::DataLayoutPolicy::generate("ObsGroupODB"));
85  EXPECT_THROWS(detail::DataLayoutPolicy::generate(
86  detail::DataLayoutPolicy::Policies::ObsGroupODB));
87 }
88 
89 } // namespace test
90 } // namespace ioda
91 
92 int main(int argc, char** argv) {
93  return run_tests(argc, argv);
94 }
IODA's error system.
Contains definitions for how ODB data are arranged in ioda internally.
DataLayoutPolicy::MergeMethod getMergeMethod(const std::string &) const override
size_t getInputsNeeded(const std::string &) const override
std::string getOutputNameFromComponent(const std::string &) const override
bool isComplementary(const std::string &) const override
Check if the named variable will be a part of a derived variable.
std::pair< bool, std::string > getUnit(const std::string &) const override
bool isMapped(const std::string &) const override
Check if the named variable is in the Variables section of the ODB mapping file.
size_t getComplementaryPosition(const std::string &) const override
std::type_index getOutputVariableDataType(const std::string &) const override
static std::shared_ptr< const DataLayoutPolicy > generate(const std::string &polid="")
Factory generator.
Definition: Layout.cpp:28
@ Concat
Concatenate complementary variables entry-by-entry.
int main(int argc, char **argv)
CASE("Validation")