LUMIERA.clone/tests/lib/time/digxel-test.cpp

249 lines
6 KiB
C++
Raw Normal View History

/*
Digxel(Test) - cover behaviour of a generic number-element holder
Copyright (C) Lumiera.org
2011, Hermann Vosseler <Ichthyostega@web.de>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* *****************************************************/
#include "lib/test/run.hpp"
#include "lib/test/test-helper.hpp"
#include "lib/time/digxel.hpp"
#include "lib/util.hpp"
//#include <boost/lexical_cast.hpp>
//#include <boost/algorithm/string/join.hpp>
//#include <boost/lambda/lambda.hpp>
#include <iostream> //TODO
#include <cstdlib>
//using boost::lexical_cast;
//using util::isnil;
//using util::contains;
using util::isSameObject;
using std::rand;
using std::cout;/////////TODO
using std::endl;
//using boost::algorithm::join;
namespace lib {
namespace time{
namespace test{
namespace { // Test data
const uint REPEAT = 40;
const uint RAND_RANGE = 100;
const uint RAND_DENOM = 3;
2011-01-04 20:56:47 +01:00
const uint TIMING_CNT = 10000;
inline double
randomFrac()
{
double arbitrary = (rand() % RAND_RANGE);
arbitrary /= (1 + rand() % RAND_DENOM);
return arbitrary;
}
2011-01-04 20:56:47 +01:00
inline uint
isOdd (uint i)
{
return i % 2;
}
double sum(0),
checksum(0);
double
sideeffectSum (double val)
{
sum += val;
return val;
}
2011-01-04 20:56:47 +01:00
/* === special Digxel configuration for this test === */
double
limitingMutator (double value2set)
{
return (+1 < value2set) ? 1.0
: (-1 > value2set) ? -1.0
: value2set;
}
struct VerySpecialFormat
: digxel::PrintfFormatter<double, 11>
2011-01-04 20:56:47 +01:00
{
VerySpecialFormat() : digxel::PrintfFormatter<double,11>("## %4.1f ##") { }
2011-01-04 20:56:47 +01:00
};
typedef Digxel<double, VerySpecialFormat> TestDigxel;
}
/***********************************************************************
* @test verify correct behaviour of an display "Digxel":
* A self-contained numeric element to support building displays.
* - build a Digxel
* - set a value
* - retrieve formatted display
* - assign to invoke the setter-functor
*/
class Digxel_test : public Test
{
virtual void
2011-01-04 20:56:47 +01:00
run (Arg)
{
2011-01-04 20:56:47 +01:00
checkSimpleUsage ();
checkMutation ();
verifyMutatorInfluence ();
checkCopy ();
checkDisplayOverrun ();
verifyDisplayCaching ();
}
void
checkSimpleUsage ()
{
TestDigxel digi;
CHECK (0 == digi);
CHECK ("## 0 ##" == string(digi));
digi = 88;
CHECK (88 == digi);
CHECK ("## 88.0 ##" == string(digi));
}
void
checkMutation ()
{
TestDigxel digi;
// configure what the Digxel does on "mutation"
digi.mutator = sideeffectSum;
sum = checksum = 0;
CHECK (0 == digi);
for (uint i=0; i < REPEAT; ++i)
{
double arbitrary = randomFrac();
checksum += arbitrary;
2011-01-04 20:56:47 +01:00
digi = arbitrary; // invoke the mutation functor
CHECK (sum == checksum, "divergence after adding %f in iteration %d", arbitrary, i);
CHECK (digi == arbitrary);
}
}
void
2011-01-04 20:56:47 +01:00
verifyMutatorInfluence ()
{
TestDigxel digi;
2011-01-04 20:56:47 +01:00
// using the default mutator
CHECK (0 == digi);
2011-01-04 20:56:47 +01:00
digi = 12.3;
CHECK (12.3 == digi);
digi.mutator = limitingMutator;
CHECK (12.3 == digi);
digi = 12.3;
CHECK (1 == digi);
digi.setValueRaw(12.3);
CHECK (12.3 == digi);
}
void
checkCopy ()
{
TestDigxel d1;
double someValue = randomFrac();
d1 = someValue;
CHECK (d1 == someValue);
TestDigxel d2(d1);
CHECK (d2 == someValue);
CHECK (!isSameObject (d1, d2));
d1 = randomFrac();
CHECK (d1 != d2);
CHECK (d2 == someValue);
}
void
checkDisplayOverrun ()
{
TestDigxel digi;
digi = 123456789.12345678;
string formatted (digi); // should trigger assertion
CHECK (formatted.length() <= digi.maxlen());
}
void
verifyDisplayCaching ()
{
TestDigxel digi;
digi = 1;
clock_t start, stop;
start = clock();
for (uint i=0; i < TIMING_CNT; ++i)
{
digi = 1;
isOdd (i);
}
stop = clock();
uint without_reformatting = stop - start;
start = clock();
for (uint i=0; i < TIMING_CNT; ++i)
{
digi = isOdd (i);
}
stop = clock();
uint with_reformatting = stop - start;
cout << "without = "<< without_reformatting << endl;
cout << "with = "<< with_reformatting << endl;
}
};
/** Register this test class... */
LAUNCHER (Digxel_test, "unit common");
}}} // namespace lib::time::test