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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
#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 "TestArray.h"
#include "TestInt16.h"
#include "TestTypeFactory.h"
#include "util.h"
#include "debug.h"
#include "run_tests_cppunit.h"
using std::cerr;
using std::endl;
using namespace CppUnit;
int test_variable_sleep_interval = 0; // Used in Test* classes for testing
// timeouts.
class arrayT: public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE (arrayT);
CPPUNIT_TEST(arrayT_test);
CPPUNIT_TEST_SUITE_END( );
private:
/* TEST PRIVATE DATA */
TestTypeFactory *factory;
public:
void setUp()
{
factory = new TestTypeFactory;
}
void tearDown()
{
delete factory;
factory = 0;
}
void arrayT_test()
{
BaseType *bt = factory->NewInt16();
TestArray ar("My Array", bt);
int l = ar.length();
CPPUNIT_ASSERT(l == -1);
try {
int w = ar.width(true);
DBG(cerr << "w = " << w << endl);DBG(cerr << "(int)bt->width() " << (int)bt->width() << endl);DBG(cerr << "L " << l << endl);
CPPUNIT_ASSERT(w == (l * (int ) bt->width()));
}
catch (InternalErr &e) {
CPPUNIT_FAIL("Unable to retrieve width");
}
ar.append_dim(4, "dim1");
l = ar.length();
CPPUNIT_ASSERT(l == 4);
try {
int w = ar.width();
CPPUNIT_ASSERT(w == (l * (int ) bt->width()));
}
catch (InternalErr &e) {
CPPUNIT_FAIL("Unable to retrieve width");
}
ar.append_dim(3, "dim2");
l = ar.length();
CPPUNIT_ASSERT(l == 12);
try {
int w = ar.width();
CPPUNIT_ASSERT(w == (l * (int ) bt->width()));
}
catch (InternalErr &e) {
CPPUNIT_FAIL("Unable to retrieve width");
}
ar.append_dim(2, "dim3");
l = ar.length();
CPPUNIT_ASSERT(l == 24);
try {
int w = ar.width();
CPPUNIT_ASSERT(w == (l * (int ) bt->width()));
}
catch (InternalErr &e) {
CPPUNIT_FAIL("Unable to retrieve width");
}
vector<string> dims;
typedef vector<string>::const_iterator citer;
dims.push_back("dim1");
dims.push_back("dim2");
dims.push_back("dim3");
vector<int> dimsize;
typedef vector<int>::const_iterator dsiter;
dimsize.push_back(4);
dimsize.push_back(3);
dimsize.push_back(2);
citer i = dims.begin();
dsiter d = dimsize.begin();
Array::Dim_iter diter = ar.dim_begin();
i = dims.begin();
d = dimsize.begin();
for (; diter != ar.dim_end() && i != dims.end(); diter++, i++, d++) {
CPPUNIT_ASSERT(ar.dimension_name(diter) == (*i));
if (ar.dimension_name(diter) == (*i)) {
CPPUNIT_ASSERT(ar.dimension_size(diter) == (*d));
CPPUNIT_ASSERT(ar.dimension_start(diter) == 0);
CPPUNIT_ASSERT(ar.dimension_stop(diter) == (*d) - 1);
CPPUNIT_ASSERT(ar.dimension_stride(diter) == 1);
}
}
if (diter != ar.dim_end() && i == dims.end()) {
CPPUNIT_FAIL("too many dimensions");
}
else if (diter == ar.dim_end() && i != dims.end()) {
CPPUNIT_FAIL("not enough dimensions");
}
unsigned int numdims = ar.dimensions();
CPPUNIT_ASSERT(numdims == 3);
diter = ar.dim_begin();
ar.add_constraint(diter, 0, 2, 3);
l = ar.length();
CPPUNIT_ASSERT(l == 12);
diter = ar.dim_begin();
diter++;
ar.add_constraint(diter, 0, 2, 2);
l = ar.length();
CPPUNIT_ASSERT(l == 8);
ar.reset_constraint();
l = ar.length();
CPPUNIT_ASSERT(l == 24);
ar.rename_dim("dim3", "myDim");
bool is_read = ar.read();
CPPUNIT_ASSERT(is_read == true);
cout << ar << endl;
delete bt;
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(arrayT);
int main(int argc, char *argv[])
{
return run_tests<arrayT>(argc, argv) ? 0: 1;
}
|