21 return std::abs(a - b) < 0.00001f;
26 return std::abs(a - b) < 0.00001f;
30 bool test_equal(
const long double& a,
const long double& b) {
31 return std::abs(a - b) < 0.00001f;
39 std::cout <<
"Testing variable " << varname << std::endl;
40 std::cout <<
"\tCreating..." << std::endl;
43 params.setFillValue(filldata);
45 std::cout <<
"\t\tSuccess.\n\tReading..." << std::endl;
47 std::vector<T> checkdata;
48 f.
vars[varname].read(checkdata);
49 if (checkdata.empty()) {
50 std::cout <<
"\t\tFailed to read." << std::endl;
53 std::cout <<
"\t\tSuccess." << std::endl;
54 std::cout <<
"\tChecking read value with reference..." << std::endl;
55 if (!test_equal<T>(filldata, checkdata.at(0))) {
56 std::cout <<
"\t\tFailed check. Ref is '" << filldata <<
"' and data is '" << checkdata.at(0) <<
"'."
60 std::cout <<
"\t\tSuccess." << std::endl;
62 std::cout <<
"\tCheck that the variable has a fill value." << std::endl;
63 if (f.
vars[varname].hasFillValue()) {
64 std::cout <<
"\t\tSuccess." << std::endl;
66 std::cout <<
"\t\tFailed." << std::endl;
70 std::cout <<
"\tCheck fill value read." << std::endl;
71 auto fv = f.
vars[varname].getFillValue();
73 std::cout <<
"\t\tfv.set_ is false. Failed." << std::endl;
77 if (!test_equal<T>(filldata, ioda::detail::getFillValue<T>(fv))) {
78 std::cout <<
"\t\tFailure. Ref is " << filldata <<
" and fv is " << ioda::detail::getFillValue<T>(fv)
83 std::cout <<
"\t\tSuccess." << std::endl;
87 std::cout <<
"\t\tFailed with exception." << std::endl;
92 int main(
int argc,
char** argv) {
101 int good = 0, bad = 0;
103 (testVarFill<std::string>(f,
"varlen-string-test",
"This is a test")) ? good++ : bad++;
104 (testVarFill<std::string>(f,
"varlen-empty_string-test",
"")) ? good++ : bad++;
106 (testVarFill<int>(f,
"int-test", -999)) ? good++ : bad++;
107 (testVarFill<int32_t>(f,
"int32_t-test", -99)) ? good++ : bad++;
108 (testVarFill<uint32_t>(f,
"uint32_t-test", 99)) ? good++ : bad++;
109 (testVarFill<int16_t>(f,
"int16_t-test", -99)) ? good++ : bad++;
110 (testVarFill<uint16_t>(f,
"uint16_t-test", 99)) ? good++ : bad++;
111 (testVarFill<int64_t>(f,
"int64_t-test", -99)) ? good++ : bad++;
112 (testVarFill<uint64_t>(f,
"uint64_t-test", 99)) ? good++ : bad++;
113 (testVarFill<char>(f,
"char-test",
'a')) ? good++ : bad++;
114 (testVarFill<float>(f,
"float-test", 3.14f)) ? good++ : bad++;
115 (testVarFill<double>(f,
"double-test", 2.7)) ? good++ : bad++;
116 (testVarFill<long double>(f,
"long-double-test", 1.428571428571429L)) ? good++ : bad++;
120 std::cout <<
"\n\nSuccesses: " << good <<
"\nFailures: " << bad << std::endl;
121 return (bad) ? 1 : 0;
122 }
catch (
const std::exception& e) {
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
Groups are a new implementation of ObsSpaces.
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.
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
bool test_equal(const T &a, const T &b)
int main(int argc, char **argv)
bool testVarFill(ioda::Group &f, const std::string &varname, const T &filldata)
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
Used to specify Variable creation-time properties.