1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
#include <cppunit/TestFixture.h>
#include <cppunit/TestAssert.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/CompilerOutputter.h>
#include <iostream>
#include <sstream>
#include "TestStructure.h"
#include "TestArray.h"
#include "TestInt16.h"
#include "TestStr.h"
#include "TestTypeFactory.h"
#include "util.h"
#include "run_tests_cppunit.h"
#include "test_config.h"
using std::cerr;
using std::endl;
using std::ostringstream;
using namespace CppUnit;
int test_variable_sleep_interval = 0; // Used in Test* classes for testing timeouts.
string ExpectedPrint1(
"Structure {\n\
Int16 name_int16;\n\
String name_str;\n\
Int16 array_int[dim1 = 4][dim2 = 3][dim3 = 2];\n\
} my_structure = { 32000, \"Silly test string: 1\", {{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}}} };\n");
string ExpectedPrint2(
"Structure {\n\
Int16 name_int16;\n\
Int16 array_int[dim1 = 4][dim2 = 3][dim3 = 2];\n\
} my_structure = { 32000, {{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}},{{32000, 32000},{32000, 32000},{32000, 32000}}} };\n");
class structT: public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE (structT);
CPPUNIT_TEST (structT_test);
CPPUNIT_TEST_SUITE_END( );
private:
/* TEST PRIVATE DATA */
TestTypeFactory *factory;
public:
void setUp()
{
factory = new TestTypeFactory;
}
void tearDown()
{
delete factory;
factory = nullptr;
}
void structT_test()
{
TestStructure s("my_structure");
BaseType *bt = factory->NewInt16("name_int16");
s.add_var(bt);
delete bt;
bt = 0;
bt = factory->NewStr("name_str");
s.add_var(bt);
delete bt;
bt = 0;
Int16 *i16 = factory->NewInt16("array_int");
Array *abt = factory->NewArray("name_array", i16);
abt->append_dim(4, "dim1");
abt->append_dim(3, "dim2");
abt->append_dim(2, "dim3");
s.add_var(abt);
delete abt;
delete i16;
abt = 0;
bt = 0;
bt = s.var("name_str", true);
CPPUNIT_ASSERT(bt && bt->name() == "name_str");
bt = 0;
bt = s.var("name_str", false);
CPPUNIT_ASSERT(bt && bt->name() == "name_str");
vector<string> varnames;
varnames.push_back("name_int16");
varnames.push_back("name_str");
varnames.push_back("array_int");
typedef vector<string>::const_iterator niter;
Structure::Vars_iter viter = s.var_begin();
niter n = varnames.begin();
for (; viter != s.var_end() && n != varnames.end(); viter++, n++) {
CPPUNIT_ASSERT((*viter)->name() == *n);
}
CPPUNIT_ASSERT(viter == s.var_end() && n == varnames.end());
if (viter != s.var_end() && n == varnames.end()) {
CPPUNIT_FAIL("Too many variables");
}
else if (viter == s.var_end() && n != varnames.end()) {
CPPUNIT_FAIL("Too few variables");
}
int num_elems = s.element_count();
CPPUNIT_ASSERT(num_elems == 3);
unsigned int w = s.width();
unsigned int wsb = sizeof(string) + sizeof(dods_int16) + 24 * sizeof(dods_int16);
cerr << "s.width(): " << s.width() << endl;
CPPUNIT_ASSERT(w == wsb);
bool is_read = s.read();
CPPUNIT_ASSERT(is_read == true);
ostringstream sstrm1;
s.print_val(sstrm1);
CPPUNIT_ASSERT(sstrm1.str() == ExpectedPrint1);
s.del_var("name_str");
bt = 0;
bt = s.var("name_str", false);
CPPUNIT_ASSERT(bt == 0);
w = s.width();
wsb = +sizeof(dods_int16) + 24 * sizeof(dods_int16);
CPPUNIT_ASSERT(w == wsb);
ostringstream sstrm2;
s.print_val(sstrm2);
CPPUNIT_ASSERT(sstrm2.str() == ExpectedPrint2);
}
};
CPPUNIT_TEST_SUITE_REGISTRATION (structT);
/* NOTHING NEEDS TO BE CHANGED BELOW HERE */
int main(int argc, char *argv[])
{
return run_tests<structT>(argc, argv) ? 0: 1;
}
|