| [54a746] | 1 | /*
 | 
|---|
 | 2 |  * unittest.cpp
 | 
|---|
 | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Aug 17, 2009
 | 
|---|
 | 5 |  *      Author: heber
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
 | 8 | 
 | 
|---|
 | 9 | using namespace std;
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | #include <cppunit/CompilerOutputter.h>
 | 
|---|
 | 12 | #include <cppunit/extensions/TestFactoryRegistry.h>
 | 
|---|
 | 13 | #include <cppunit/ui/text/TestRunner.h>
 | 
|---|
 | 14 | 
 | 
|---|
 | 15 | #include "defs.hpp"
 | 
|---|
| [e6fdbe] | 16 | #include "log.hpp"
 | 
|---|
 | 17 | #include "memoryusageobserver.hpp"
 | 
|---|
| [d52e70c] | 18 | #include "vector.hpp"
 | 
|---|
| [0a4f7f] | 19 | #include "vector_ops.hpp"
 | 
|---|
| [d52e70c] | 20 | #include "vectorunittest.hpp"
 | 
|---|
| [0a4f7f] | 21 | #include "Plane.hpp"
 | 
|---|
 | 22 | #include "Exceptions/LinearDependenceException.hpp"
 | 
|---|
| [54a746] | 23 | 
 | 
|---|
| [9b6b2f] | 24 | #ifdef HAVE_TESTRUNNER
 | 
|---|
 | 25 | #include "UnitTestMain.hpp"
 | 
|---|
 | 26 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
 | 27 | 
 | 
|---|
| [1bd79e] | 28 | #include <iostream>
 | 
|---|
 | 29 | 
 | 
|---|
 | 30 | using namespace std;
 | 
|---|
 | 31 | 
 | 
|---|
| [54a746] | 32 | /********************************************** Test classes **************************************/
 | 
|---|
 | 33 | 
 | 
|---|
 | 34 | // Registers the fixture into the 'registry'
 | 
|---|
 | 35 | CPPUNIT_TEST_SUITE_REGISTRATION( VectorTest );
 | 
|---|
 | 36 | 
 | 
|---|
 | 37 | 
 | 
|---|
 | 38 | void VectorTest::setUp()
 | 
|---|
 | 39 | {
 | 
|---|
| [1bd79e] | 40 |   zero  = Vector(0.,0.,0.);
 | 
|---|
 | 41 |   unit = Vector(1.,0.,0.);
 | 
|---|
 | 42 |   otherunit = Vector(0.,1.,0.);
 | 
|---|
 | 43 |   notunit = Vector(0.,1.,1.);
 | 
|---|
 | 44 |   two = Vector(2.,1.,0.);
 | 
|---|
| [1829c4] | 45 |   three = Vector(1,2,3);
 | 
|---|
| [54a746] | 46 | };
 | 
|---|
 | 47 | 
 | 
|---|
 | 48 | 
 | 
|---|
 | 49 | void VectorTest::tearDown()
 | 
|---|
 | 50 | {
 | 
|---|
| [e6fdbe] | 51 |   logger::purgeInstance();
 | 
|---|
 | 52 |   errorLogger::purgeInstance();
 | 
|---|
| [54a746] | 53 | };
 | 
|---|
 | 54 | 
 | 
|---|
 | 55 | /** UnitTest for Constructors and Vector::IsZero() and Vector::IsOne().
 | 
|---|
 | 56 |  */
 | 
|---|
 | 57 | void VectorTest::UnityTest()
 | 
|---|
 | 58 | {
 | 
|---|
 | 59 |   // unity and zero tests
 | 
|---|
 | 60 |   CPPUNIT_ASSERT_EQUAL( true, zero.IsZero() );
 | 
|---|
 | 61 |   CPPUNIT_ASSERT_EQUAL( false, zero.IsOne() );
 | 
|---|
 | 62 |   CPPUNIT_ASSERT_EQUAL( false, unit.IsZero() );
 | 
|---|
 | 63 |   CPPUNIT_ASSERT_EQUAL( true, unit.IsOne() );
 | 
|---|
 | 64 |   CPPUNIT_ASSERT_EQUAL( false, notunit.IsOne() );
 | 
|---|
 | 65 |   CPPUNIT_ASSERT_EQUAL( true, otherunit.IsOne() );
 | 
|---|
 | 66 |   CPPUNIT_ASSERT_EQUAL( false, otherunit.IsZero() );
 | 
|---|
 | 67 | };
 | 
|---|
 | 68 | 
 | 
|---|
 | 69 | /** UnitTest for Vector::CopyVector(), Vector::AddVector, Vector::SubtractVector() and Vector::Scale()/
 | 
|---|
 | 70 |  */
 | 
|---|
 | 71 | void VectorTest::SimpleAlgebraTest()
 | 
|---|
 | 72 | {
 | 
|---|
 | 73 |   double factor;
 | 
|---|
| [78b73c] | 74 |   // copy vector
 | 
|---|
| [1bd79e] | 75 |   fixture = Vector(2.,3.,4.);
 | 
|---|
| [78b73c] | 76 |   CPPUNIT_ASSERT_EQUAL( Vector(2.,3.,4.), fixture );
 | 
|---|
| [54a746] | 77 |   // summation and scaling
 | 
|---|
| [273382] | 78 |   fixture = zero + unit;
 | 
|---|
| [78b73c] | 79 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsOne() );
 | 
|---|
| [273382] | 80 |   fixture = zero - unit;
 | 
|---|
| [78b73c] | 81 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsOne() );
 | 
|---|
 | 82 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsZero() );
 | 
|---|
| [273382] | 83 |   fixture = zero + zero;
 | 
|---|
| [78b73c] | 84 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsZero() );
 | 
|---|
| [273382] | 85 |   fixture = notunit - otherunit;
 | 
|---|
| [78b73c] | 86 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsOne() );
 | 
|---|
| [273382] | 87 |   fixture = unit - otherunit;
 | 
|---|
| [78b73c] | 88 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsOne() );
 | 
|---|
| [273382] | 89 |   fixture = notunit - unit - otherunit;
 | 
|---|
| [78b73c] | 90 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsZero() );
 | 
|---|
| [273382] | 91 |   fixture = 0.98 * unit;
 | 
|---|
| [78b73c] | 92 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsOne() );
 | 
|---|
| [273382] | 93 |   fixture = 1. * unit;
 | 
|---|
| [78b73c] | 94 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsOne() );
 | 
|---|
| [54a746] | 95 |   factor = 0.98;
 | 
|---|
| [273382] | 96 |   fixture = factor * unit;
 | 
|---|
| [78b73c] | 97 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsOne() );
 | 
|---|
| [54a746] | 98 |   factor = 1.;
 | 
|---|
| [273382] | 99 |   fixture = factor * unit;
 | 
|---|
| [78b73c] | 100 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsOne() );
 | 
|---|
| [54a746] | 101 | };
 | 
|---|
 | 102 | 
 | 
|---|
 | 103 | 
 | 
|---|
 | 104 | /** UnitTest for operator versions of Vector::CopyVector(), Vector::AddVector, Vector::SubtractVector() and Vector::Scale().
 | 
|---|
 | 105 |  */
 | 
|---|
 | 106 | void VectorTest::OperatorAlgebraTest()
 | 
|---|
 | 107 | {
 | 
|---|
 | 108 |   // summation and scaling
 | 
|---|
 | 109 |   CPPUNIT_ASSERT_EQUAL( true, (zero+unit).IsOne() );
 | 
|---|
| [ef9df36] | 110 |   CPPUNIT_ASSERT_EQUAL( true, (zero+unit).IsOne() );
 | 
|---|
| [54a746] | 111 |   CPPUNIT_ASSERT_EQUAL( true, (zero-unit).IsOne() );
 | 
|---|
 | 112 |   CPPUNIT_ASSERT_EQUAL( false, (zero-unit).IsZero() );
 | 
|---|
 | 113 |   CPPUNIT_ASSERT_EQUAL( true, (zero+zero).IsZero() );
 | 
|---|
 | 114 |   CPPUNIT_ASSERT_EQUAL( true, (notunit-otherunit).IsOne() );
 | 
|---|
 | 115 |   CPPUNIT_ASSERT_EQUAL( false, (unit+otherunit).IsOne() );
 | 
|---|
 | 116 |   CPPUNIT_ASSERT_EQUAL( false, (notunit-unit-otherunit).IsZero() );
 | 
|---|
 | 117 |   CPPUNIT_ASSERT_EQUAL( false, (unit*0.98).IsOne() );
 | 
|---|
 | 118 |   CPPUNIT_ASSERT_EQUAL( true, (unit*1.).IsOne() );
 | 
|---|
| [ef9df36] | 119 | 
 | 
|---|
 | 120 |   CPPUNIT_ASSERT_EQUAL( unit, (zero+unit) );
 | 
|---|
 | 121 |   CPPUNIT_ASSERT_EQUAL( Vector(0.,0.,1.), (notunit-otherunit) );
 | 
|---|
 | 122 |   CPPUNIT_ASSERT_EQUAL( Vector(-1, 0., 1.), (notunit-unit-otherunit) );
 | 
|---|
| [54a746] | 123 | };
 | 
|---|
 | 124 | 
 | 
|---|
| [ef9df36] | 125 | /** UnitTest for scalar products.
 | 
|---|
| [54a746] | 126 |  */
 | 
|---|
| [ef9df36] | 127 | void VectorTest::EuclidianScalarProductTest()
 | 
|---|
| [54a746] | 128 | {
 | 
|---|
| [273382] | 129 |   CPPUNIT_ASSERT_EQUAL( 0., zero.ScalarProduct(zero) );
 | 
|---|
 | 130 |   CPPUNIT_ASSERT_EQUAL( 0., zero.ScalarProduct(unit) );
 | 
|---|
 | 131 |   CPPUNIT_ASSERT_EQUAL( 0., zero.ScalarProduct(otherunit) );
 | 
|---|
 | 132 |   CPPUNIT_ASSERT_EQUAL( 0., zero.ScalarProduct(notunit) );
 | 
|---|
 | 133 |   CPPUNIT_ASSERT_EQUAL( 1., unit.ScalarProduct(unit) );
 | 
|---|
 | 134 |   CPPUNIT_ASSERT_EQUAL( 0., otherunit.ScalarProduct(unit) );
 | 
|---|
 | 135 |   CPPUNIT_ASSERT_EQUAL( 0., otherunit.ScalarProduct(unit) );
 | 
|---|
 | 136 |   CPPUNIT_ASSERT_EQUAL( 1., otherunit.ScalarProduct(notunit) );
 | 
|---|
 | 137 |   CPPUNIT_ASSERT_EQUAL( 2., two.ScalarProduct(unit) );
 | 
|---|
 | 138 |   CPPUNIT_ASSERT_EQUAL( 1., two.ScalarProduct(otherunit) );
 | 
|---|
 | 139 |   CPPUNIT_ASSERT_EQUAL( 1., two.ScalarProduct(notunit) );
 | 
|---|
| [ef9df36] | 140 | }
 | 
|---|
| [54a746] | 141 | 
 | 
|---|
| [ef9df36] | 142 | /** UnitTest for norms.
 | 
|---|
 | 143 |  */
 | 
|---|
 | 144 | void VectorTest::EuclidianNormTest()
 | 
|---|
 | 145 | {
 | 
|---|
| [54a746] | 146 |   CPPUNIT_ASSERT_EQUAL( 0., zero.Norm() );
 | 
|---|
 | 147 |   CPPUNIT_ASSERT_EQUAL( 0., zero.NormSquared() );
 | 
|---|
 | 148 |   CPPUNIT_ASSERT_EQUAL( 1., unit.Norm() );
 | 
|---|
 | 149 |   CPPUNIT_ASSERT_EQUAL( 1., unit.NormSquared() );
 | 
|---|
 | 150 |   CPPUNIT_ASSERT_EQUAL( 1., otherunit.Norm() );
 | 
|---|
 | 151 |   CPPUNIT_ASSERT_EQUAL( 1., otherunit.NormSquared() );
 | 
|---|
 | 152 |   CPPUNIT_ASSERT_EQUAL( 2., notunit.NormSquared() );
 | 
|---|
 | 153 |   CPPUNIT_ASSERT_EQUAL( sqrt(2.), notunit.Norm() );
 | 
|---|
| [ef9df36] | 154 | }
 | 
|---|
| [54a746] | 155 | 
 | 
|---|
| [ef9df36] | 156 | /** UnitTest for distances.
 | 
|---|
 | 157 |  */
 | 
|---|
 | 158 | void VectorTest::EuclidianDistancesTest()
 | 
|---|
 | 159 | {
 | 
|---|
| [1513a74] | 160 |   CPPUNIT_ASSERT_EQUAL( 1., zero.distance(unit) );
 | 
|---|
 | 161 |   CPPUNIT_ASSERT_EQUAL( sqrt(2.), otherunit.distance(unit) );
 | 
|---|
 | 162 |   CPPUNIT_ASSERT_EQUAL( sqrt(2.), zero.distance(notunit) );
 | 
|---|
 | 163 |   CPPUNIT_ASSERT_EQUAL( 1., otherunit.distance(notunit) );
 | 
|---|
 | 164 |   CPPUNIT_ASSERT_EQUAL( sqrt(5.), two.distance(notunit) );
 | 
|---|
| [ef9df36] | 165 | }
 | 
|---|
| [54a746] | 166 | 
 | 
|---|
| [ef9df36] | 167 | /** UnitTest for angles.
 | 
|---|
 | 168 |  */
 | 
|---|
 | 169 | void VectorTest::EuclidianAnglesTest()
 | 
|---|
 | 170 | {
 | 
|---|
| [273382] | 171 |   CPPUNIT_ASSERT_EQUAL( M_PI, zero.Angle(unit) );
 | 
|---|
 | 172 |   CPPUNIT_ASSERT_EQUAL( 0., unit.Angle(unit) );
 | 
|---|
 | 173 |   CPPUNIT_ASSERT_EQUAL( true, fabs(M_PI/2. - otherunit.Angle(unit)) < MYEPSILON );
 | 
|---|
 | 174 |   CPPUNIT_ASSERT_EQUAL( true, fabs(M_PI/2. - unit.Angle(notunit)) < MYEPSILON );
 | 
|---|
 | 175 |   CPPUNIT_ASSERT_EQUAL( true, fabs(M_PI/4. - otherunit.Angle(notunit)) < MYEPSILON );
 | 
|---|
| [54a746] | 176 | };
 | 
|---|
 | 177 | 
 | 
|---|
| [ef9df36] | 178 | /** UnitTest for projections.
 | 
|---|
 | 179 |  */
 | 
|---|
 | 180 | void VectorTest::ProjectionTest()
 | 
|---|
 | 181 | {
 | 
|---|
| [273382] | 182 |   CPPUNIT_ASSERT_EQUAL( zero, zero.Projection(unit) );
 | 
|---|
 | 183 |   CPPUNIT_ASSERT_EQUAL( zero, otherunit.Projection(unit) );
 | 
|---|
 | 184 |   CPPUNIT_ASSERT_EQUAL( Vector(0.4,0.2,0.),  otherunit.Projection(two) );
 | 
|---|
 | 185 |   CPPUNIT_ASSERT_EQUAL( Vector(0.,1.,0.),  two.Projection(otherunit) );
 | 
|---|
| [ef9df36] | 186 | };
 | 
|---|
 | 187 | 
 | 
|---|
| [1829c4] | 188 | /**
 | 
|---|
 | 189 |  * Unittest for operation with normals
 | 
|---|
 | 190 |  */
 | 
|---|
 | 191 | void VectorTest::NormalsTest(){
 | 
|---|
 | 192 |   Vector testVector;
 | 
|---|
 | 193 |   // the zero Vector should produce an error
 | 
|---|
 | 194 |   CPPUNIT_ASSERT(!testVector.GetOneNormalVector(zero));
 | 
|---|
 | 195 | 
 | 
|---|
 | 196 |   // first one-component system
 | 
|---|
 | 197 |   CPPUNIT_ASSERT(testVector.GetOneNormalVector(unit));
 | 
|---|
 | 198 |   CPPUNIT_ASSERT(testVector.ScalarProduct(unit) < MYEPSILON);
 | 
|---|
 | 199 | 
 | 
|---|
 | 200 |   // second one-component system
 | 
|---|
 | 201 |   CPPUNIT_ASSERT(testVector.GetOneNormalVector(otherunit));
 | 
|---|
 | 202 |   CPPUNIT_ASSERT(testVector.ScalarProduct(otherunit) < MYEPSILON);
 | 
|---|
 | 203 | 
 | 
|---|
 | 204 |   // first two-component system
 | 
|---|
 | 205 |   CPPUNIT_ASSERT(testVector.GetOneNormalVector(notunit));
 | 
|---|
 | 206 |   CPPUNIT_ASSERT(testVector.ScalarProduct(notunit) < MYEPSILON);
 | 
|---|
 | 207 | 
 | 
|---|
 | 208 |   // second two-component system
 | 
|---|
 | 209 |   CPPUNIT_ASSERT(testVector.GetOneNormalVector(two));
 | 
|---|
 | 210 |   CPPUNIT_ASSERT(testVector.ScalarProduct(two) < MYEPSILON);
 | 
|---|
 | 211 | 
 | 
|---|
 | 212 |   // three component system
 | 
|---|
 | 213 |   CPPUNIT_ASSERT(testVector.GetOneNormalVector(three));
 | 
|---|
 | 214 |   CPPUNIT_ASSERT(testVector.ScalarProduct(three) < MYEPSILON);
 | 
|---|
 | 215 | }
 | 
|---|
 | 216 | 
 | 
|---|
| [78b73c] | 217 | 
 | 
|---|
| [89c8b2] | 218 | /**
 | 
|---|
 | 219 |  * UnitTest for Vector::IsInParallelepiped().
 | 
|---|
 | 220 |  */
 | 
|---|
 | 221 | void VectorTest::IsInParallelepipedTest()
 | 
|---|
 | 222 | {
 | 
|---|
 | 223 |   double parallelepiped[NDIM*NDIM];
 | 
|---|
 | 224 |   parallelepiped[0] = 1;
 | 
|---|
 | 225 |   parallelepiped[1] = 0;
 | 
|---|
 | 226 |   parallelepiped[2] = 0;
 | 
|---|
 | 227 |   parallelepiped[3] = 0;
 | 
|---|
 | 228 |   parallelepiped[4] = 1;
 | 
|---|
 | 229 |   parallelepiped[5] = 0;
 | 
|---|
 | 230 |   parallelepiped[6] = 0;
 | 
|---|
 | 231 |   parallelepiped[7] = 0;
 | 
|---|
 | 232 |   parallelepiped[8] = 1;
 | 
|---|
 | 233 | 
 | 
|---|
| [1bd79e] | 234 |   fixture = zero;
 | 
|---|
| [89c8b2] | 235 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 236 |   fixture = Vector(2.5,2.5,2.5);
 | 
|---|
| [89c8b2] | 237 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 238 |   fixture = Vector(1.,1.,1.);
 | 
|---|
| [89c8b2] | 239 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 240 |   fixture = Vector(3.5,3.5,3.5);
 | 
|---|
| [89c8b2] | 241 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 242 |   fixture = Vector(2.,2.,2.);
 | 
|---|
| [89c8b2] | 243 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 244 |   fixture = Vector(2.,3.,2.);
 | 
|---|
| [89c8b2] | 245 |   CPPUNIT_ASSERT_EQUAL( true, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
| [1bd79e] | 246 |   fixture = Vector(-2.,2.,-1.);
 | 
|---|
| [89c8b2] | 247 |   CPPUNIT_ASSERT_EQUAL( false, fixture.IsInParallelepiped(Vector(2.,2.,2.), parallelepiped) );
 | 
|---|
 | 248 | }
 | 
|---|
 | 249 | 
 | 
|---|