nr-types-test.h revision c0092c87b724182672defa4f5f75a82c27f017dc
// nr-types-test.h
#include <cxxtest/TestSuite.h>
#include "libnr/nr-types.h"
#include "libnr/nr-point-fns.h"
#include <cmath>
class NrTypesTest : public CxxTest::TestSuite
{
public:
NrTypesTest() :
a( 1.5, 2.0 ),
b(-2.0, 3.0),
ab(-0.5, 5.0),
small(pow(2.0, -1070)),
small_left(-small, 0.0),
smallish_3_neg4(3.0 * small, -4.0 * small)
{}
virtual ~NrTypesTest() {}
// createSuite and destroySuite get us per-suite setup and teardown
// without us having to worry about static initialization order, etc.
static NrTypesTest *createSuite() { return new NrTypesTest(); }
static void destroySuite( NrTypesTest *suite ) { delete suite; }
NR::Point const a;
NR::Point const b;
NR::Point const ab;
double const small;
NR::Point const small_left;
NR::Point const smallish_3_neg4;
void testXYValues( void )
{
TS_ASSERT_EQUALS( NR::X, 0 );
TS_ASSERT_EQUALS( NR::Y, 1 );
}
void testXYCtorAndArrayConst(void)
{
TS_ASSERT_EQUALS( a[NR::X], 1.5 );
TS_ASSERT_EQUALS( a[NR::Y], 2.0 );
}
void testCopyCtor(void)
{
NR::Point a_copy(a);
TS_ASSERT_EQUALS( a, a_copy );
TS_ASSERT( !(a != a_copy) );
}
void testNonConstArrayOperator(void)
{
NR::Point a_copy(a);
a_copy[NR::X] = -2.0;
TS_ASSERT_DIFFERS( a_copy, a );
TS_ASSERT_DIFFERS( a_copy, b );
a_copy[NR::Y] = 3.0;
TS_ASSERT_EQUALS( a_copy, b );
}
void testBinaryPlusMinus(void)
{
TS_ASSERT_DIFFERS( a, b );
TS_ASSERT_EQUALS( a + b, ab );
TS_ASSERT_EQUALS( ab - a, b );
TS_ASSERT_EQUALS( ab - b, a );
TS_ASSERT_DIFFERS( ab + a, b );
}
void testUnaryMinus(void)
{
TS_ASSERT_EQUALS( -a, NR::Point(-a[NR::X], -a[NR::Y]) );
}
void tetScaleDivide(void)
{
TS_ASSERT_EQUALS( -a, -1.0 * a );
TS_ASSERT_EQUALS( a + a + a, 3.0 * a );
TS_ASSERT_EQUALS( a / .5, 2.0 * a );
}
void testDot(void)
{
TS_ASSERT_EQUALS( dot(a, b), ( a[NR::X] * b[NR::X] +
a[NR::Y] * b[NR::Y] ) );
TS_ASSERT_EQUALS( dot(a, NR::rot90(a)), 0.0 );
TS_ASSERT_EQUALS( dot(-a, NR::rot90(a)), 0.0 );
}
void testL1L2LInftyNorms(void)
{
// TODO look at TS_ASSERT_DELTA
TS_ASSERT_EQUALS( L1(small_left), small );
TS_ASSERT_EQUALS( L2(small_left), small );
TS_ASSERT_EQUALS( LInfty(small_left), small );
TS_ASSERT_EQUALS( L1(smallish_3_neg4), 7.0 * small );
TS_ASSERT_EQUALS( L2(smallish_3_neg4), 5.0 * small );
TS_ASSERT_EQUALS( LInfty(smallish_3_neg4), 4.0 * small );
}
void testOperatorPlusEquals(void)
{
NR::Point x(a);
x += b;
TS_ASSERT_EQUALS( x, ab );
}
void tetOperatorDivEquals(void)
{
NR::Point x(a);
x /= .5;
TS_ASSERT_EQUALS( x, a + a );
}
void testNormalize(void)
{
NR::Point x(small_left);
x.normalize();
TS_ASSERT_EQUALS( x, NR::Point(-1.0, 0.0) );
x = smallish_3_neg4;
x.normalize();
TS_ASSERT_EQUALS( x, NR::Point(0.6, -0.8) );
}
};
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :