IODA
test-convertv1pathtov2path.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/Exception.h"
10 
11 #include <string>
12 #include <vector>
13 
14 #include "eckit/testing/Test.h"
15 
16 using namespace eckit::testing;
17 
18 namespace ioda {
19 namespace test {
20 
21 CASE("input: empty") {
22  std::string expectedResult = "";
23  std::string result = ioda::convertV1PathToV2Path("");
24  EXPECT_EQUAL(result, expectedResult);
25 }
26 
27 CASE("input: ioda-v1 variable name") {
28  std::string expectedResult = "ObsValue/air_temperature";
29  std::string result = ioda::convertV1PathToV2Path("air_temperature@ObsValue");
30  EXPECT_EQUAL(result, expectedResult);
31 }
32 
33 CASE("input: ioda-v2 variable name") {
34  std::string expectedResult = "ObsValue/air_temperature";
35  // Should leave the string unchanged
36  std::string result = ioda::convertV1PathToV2Path("ObsValue/air_temperature");
37  EXPECT_EQUAL(result, expectedResult);
38 }
39 
40 CASE("input: variable name without group") {
41  std::string expectedResult = "air_temperature";
42  std::string result = ioda::convertV1PathToV2Path("air_temperature");
43  EXPECT_EQUAL(result, expectedResult);
44 }
45 
46 } // namespace test
47 } // namespace ioda
48 
49 int main(int argc, char** argv) {
50  return run_tests(argc, argv);
51 }
IODA's error system.
IODA_DL std::string convertV1PathToV2Path(const std::string &path)
Split path into substrings separated by @ characters, then concatenate them in reverse order,...
Definition: StringFuncs.cpp:85
int main(int argc, char **argv)
CASE("Validation")