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

353 lines
9.5 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"
2011-01-06 01:35:22 +01:00
#include "lib/time/display.hpp"
#include "lib/time/digxel.hpp"
#include "lib/util.hpp"
2011-01-06 01:35:22 +01:00
#include <iostream>
#include <cstdlib>
using lumiera::error::LUMIERA_ERROR_ASSERTION;
using util::isSameObject;
using std::rand;
2011-01-06 01:35:22 +01:00
using std::cout;
using std::endl;
namespace lib {
namespace time{
namespace test{
2011-01-06 01:35:22 +01:00
namespace { // Test data and setup
2011-01-06 01:35:22 +01:00
const uint REPEAT = 40;
const uint RAND_RANGE = 100;
const uint RAND_DENOM = 3;
2011-01-06 01:35:22 +01:00
const uint TIMING_CNT = 10000000;
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;
}
2011-01-06 01:35:22 +01:00
/* === special Digxel configuration for this test === */
double sum(0),
checksum(0);
2011-01-06 01:35:22 +01:00
double
sideeffectSum (double val)
{
sum += val;
return val;
}
2011-01-04 20:56:47 +01:00
double preval(0), newval(0);
2011-01-06 01:35:22 +01:00
double
protocollingMutator (double val)
{
preval = newval;
newval = val;
return val;
}
2011-01-04 20:56:47 +01:00
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
{
2011-01-06 01:35:22 +01:00
VerySpecialFormat() : digxel::PrintfFormatter<double,11>("##%+5.1f ##") { }
2011-01-04 20:56:47 +01:00
};
typedef Digxel<double, VerySpecialFormat> TestDigxel;
2011-01-06 01:35:22 +01:00
}//(End)Test setup
/***********************************************************************
* @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
* - verify comparisons and increments
2011-01-06 01:35:22 +01:00
* - performing side-effects from the setter-functor
* - formatted value caching
*/
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 ();
verifyAssignMutatingOperators ();
2011-01-06 01:35:22 +01:00
verifyComparisons ();
2011-01-04 20:56:47 +01:00
checkCopy ();
checkDisplayOverrun ();
verifyDisplayCaching ();
}
void
checkSimpleUsage ()
{
TestDigxel digi;
CHECK (0 == digi);
2011-01-06 01:35:22 +01:00
CHECK ("## +0.0 ##" == string(digi));
cout << "empty____" << digi << endl;
2011-01-06 01:35:22 +01:00
digi = -88.77;
CHECK (-88.77 == digi);
CHECK ("##-88.8 ##" == string(digi));
cout << "value____" << digi << endl;
}
void
checkMutation ()
{
TestDigxel digi;
// configure what the Digxel does on "mutation"
digi.mutator = sideeffectSum;
CHECK (0 == digi);
2011-01-06 01:35:22 +01:00
sum = checksum = 0;
for (uint i=0; i < REPEAT; ++i)
{
double arbitrary = randomFrac();
2011-01-06 01:35:22 +01:00
checksum += arbitrary; // for verification
//
digi = arbitrary; //...causes invocation of mutation functor
CHECK (sum == checksum, "divergence after adding %f in iteration %d", arbitrary, i);
CHECK (digi == arbitrary);
}
2011-01-06 01:35:22 +01:00
CHECK (0 < sum);
}
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);
2011-01-06 01:35:22 +01:00
// a special mutator to limit the value
2011-01-04 20:56:47 +01:00
digi.mutator = limitingMutator;
CHECK (12.3 == digi);
digi = 12.3;
CHECK (1 == digi);
2011-01-06 01:35:22 +01:00
digi = 0.5;
CHECK (0.5 == digi);
digi = -0.678;
CHECK (-0.678 == digi);
digi = -9.1011;
CHECK (-1 == digi);
digi.setValueRaw(12.3); // bypassing mutator
CHECK (12.3 == digi);
}
/** @test verify the self-assigning increment/decrement operators.
* @note especially these need to invoke the mutator function,
* much like a direct assignment. We use a special mutator
* to protocol the previous / new value.
*/
void
verifyAssignMutatingOperators ()
{
TestDigxel digi;
digi.mutator = protocollingMutator;
digi = 12.3;
CHECK ( 0.0 == preval && 12.3 == newval);
digi += 10;
CHECK (12.3 == preval && 22.3 == newval);
digi -= 5;
CHECK (22.3 == preval && 17.3 == newval);
++digi;
CHECK (17.3 == preval && 18.3 == newval);
digi++;
CHECK (18.3 == preval && 19.3 == newval);
--digi;
CHECK (19.3 == preval && 18.3 == newval);
digi--;
CHECK (18.3 == preval && 17.3 == newval);
double val = ++digi;
CHECK (18.3 == digi && 18.3 == val);
val = digi++;
CHECK (19.3 == digi && 18.3 == val);
val = --digi;
CHECK (18.3 == digi && 18.3 == val);
val = digi--;
CHECK (17.3 == digi && 18.3 == val);
}
2011-01-06 01:35:22 +01:00
void
verifyComparisons ()
{
TestDigxel d1;
TestDigxel d2;
CHECK (d1 == d2);
double someValue = randomFrac();
d1 = someValue;
CHECK (d1 == someValue);
CHECK (d1 != d2);
CHECK (d2 != d1);
d2 = d1 + 22;
CHECK (d1 < d2);
CHECK (d1 <= d2);
CHECK (!(d1 > d2));
CHECK (!(d1 >= d2));
CHECK (!(d1 == d2));
}
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);
}
2011-01-06 01:35:22 +01:00
/** @test Digxel should be protected
* against display buffer overrun */
void
checkDisplayOverrun ()
{
TestDigxel digi;
digi = 123456789.12345678;
2011-01-06 01:35:22 +01:00
string formatted;
#if false ///////////////////////////////////////////////////////////////////////////////////////////////TICKET #537 : restore throwing ASSERT
VERIFY_ERROR (ASSERTION, formatted = digi.show() ); // should trigger assertion
formatted = digi.show(); // second time doesn't reformat
2011-01-06 01:35:22 +01:00
#endif ///////////////////////////////////////////////////////////////////////////////////////////////TICKET #537 : restore throwing ASSERT
CHECK (formatted.length() <= digi.maxlen());
}
2011-01-06 01:35:22 +01:00
/** @test verify caching of formatted values.
* Digxel avoids reformatting unchanged values;
* to verify the effectivity of this measure,
* we'll take some timings.
2011-01-06 01:35:22 +01:00
* @warning the results of such tests could be unreliable,
* but in this case here I saw a significant difference,
* with values of about 0.5sec / 0.7sec */
void
verifyDisplayCaching ()
{
TestDigxel digi;
digi = 1;
2011-01-06 01:35:22 +01:00
clock_t start(0), stop(0);
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;
2011-01-06 01:35:22 +01:00
cout << "without reformatting = "<< double(without_reformatting)/CLOCKS_PER_SEC <<"sec"<< endl;
cout << "with reformatting = "<< double(with_reformatting )/CLOCKS_PER_SEC <<"sec"<< endl;
CHECK (without_reformatting < with_reformatting);
}
};
/** Register this test class... */
LAUNCHER (Digxel_test, "unit common");
}}} // namespace lib::time::test