IODA
test/ioda/FileFormat.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_FILEFORMAT_H_
9 #define TEST_IODA_FILEFORMAT_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/config/LocalConfiguration.h"
16 #include "eckit/testing/Test.h"
17 
18 #include "oops/mpi/mpi.h"
19 #include "oops/runs/Test.h"
20 #include "oops/test/TestEnvironment.h"
21 #include "oops/util/parameters/Parameters.h"
22 #include "oops/util/parameters/RequiredParameter.h"
23 
24 #include "ioda/core/FileFormat.h"
25 #include "ioda/core/ParameterTraitsFileFormat.h"
26 
27 namespace ioda {
28 namespace test {
29 
30 class ConversionTestParameters : public oops::Parameters {
31  OOPS_CONCRETE_PARAMETERS(ConversionTestParameters, Parameters)
32  public:
33  oops::RequiredParameter<ioda::FileFormat> format{"format", this};
34 };
35 
36 class FormatDeterminationParameters : public oops::Parameters {
37  OOPS_CONCRETE_PARAMETERS(FormatDeterminationParameters, Parameters)
38  public:
39  oops::RequiredParameter<ioda::FileFormat> format{"format", this};
40  oops::RequiredParameter<ioda::FileFormat> expectedFormat{"expected format", this};
41  oops::RequiredParameter<std::string> path{"path", this};
42 };
43 
44 CASE("ioda/FileFormat") {
45  const eckit::Configuration &conf = ::test::TestEnvironment::config();
46 
47  {
49  params.validateAndDeserialize(conf.getSubConfiguration("auto"));
50  EXPECT(params.format == FileFormat::AUTO);
51  }
52  {
54  params.validateAndDeserialize(conf.getSubConfiguration("hdf5"));
55  EXPECT(params.format == FileFormat::HDF5);
56  }
57  {
59  params.validateAndDeserialize(conf.getSubConfiguration("odb"));
60  EXPECT(params.format == FileFormat::ODB);
61  }
62  {
64  EXPECT_THROWS(params.validateAndDeserialize(conf.getSubConfiguration("invalid")));
65  }
66 }
67 
68 CASE("ioda/determineFileFormat") {
69  const eckit::Configuration &conf = ::test::TestEnvironment::config();
70  for (const eckit::LocalConfiguration &caseConf : conf.getSubConfigurations("determine format")) {
72  params.validateAndDeserialize(caseConf);
73 
74  FileFormat expectedFormat = params.expectedFormat;
75  FileFormat format = determineFileFormat(params.path, params.format);
76  EXPECT(format == expectedFormat);
77  }
78 }
79 
80 class FileFormat : public oops::Test {
81  private:
82  std::string testid() const override {return "test::ioda::FileFormat";}
83 
84  void register_tests() const override {}
85 
86  void clear() const override {}
87 };
88 
89 // =============================================================================
90 
91 } // namespace test
92 } // namespace ioda
93 
94 #endif // TEST_IODA_FILEFORMAT_H_
oops::RequiredParameter< ioda::FileFormat > format
void register_tests() const override
std::string testid() const override
void clear() const override
oops::RequiredParameter< ioda::FileFormat > format
oops::RequiredParameter< std::string > path
oops::RequiredParameter< ioda::FileFormat > expectedFormat
CASE("Derived variable, unit conversion, and exception checking methods")
@ HDF5
HDF5 file format.
@ ODB
ODB file format.
FileFormat determineFileFormat(const std::string &filePath, FileFormat hint)
Determine the format of an observation file.
Definition: FileFormat.cc:13