this bit of Sed magic relies on the fact that we happen to write
the almost correct class name of a test into the header comment.
HOWTO:
for F in $(find tests -type f \( -name '*.cpp' \) -exec egrep -q '§§TODO§§' {} \; -print);
do sed -r -i -e'
2 {h;x;s/\s+(.+)\(Test\).*$/\\ref \1_test/;x};
/§§TODO§§/ {s/§§TODO§§//;G;s/\n//}'
$F;
done
176 lines
4.7 KiB
C++
176 lines
4.7 KiB
C++
/*
|
|
TimeBasics(Test) - working with Lumiera's internal Time values
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, 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.
|
|
|
|
* *****************************************************/
|
|
|
|
/** @file time-basics-test.cpp
|
|
** unit test \ref TimeBasics_test
|
|
*/
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
#include "lib/time/timevalue.hpp"
|
|
#include "lib/time/diagnostics.hpp"
|
|
#include "lib/format-cout.hpp"
|
|
#include "lib/util.hpp"
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <cstdlib>
|
|
|
|
using boost::lexical_cast;
|
|
using util::isnil;
|
|
using std::rand;
|
|
|
|
|
|
namespace lib {
|
|
namespace test{
|
|
|
|
using time::Time;
|
|
using time::TimeVar;
|
|
using time::FSecs;
|
|
|
|
|
|
/****************************************//**
|
|
* @test sanity check of basic Time handling.
|
|
*/
|
|
class TimeBasics_test : public Test
|
|
{
|
|
virtual void
|
|
run (Arg arg)
|
|
{
|
|
FSecs refval = isnil(arg)? 1 : lexical_cast<long> (arg[1]);
|
|
|
|
Time org(refval);
|
|
|
|
checkBasics (org);
|
|
checkComparisons (org);
|
|
checkComponentDiagnostics();
|
|
}
|
|
|
|
|
|
void
|
|
checkBasics (Time const& ref)
|
|
{
|
|
Time zero;
|
|
Time two (FSecs(2));
|
|
Time max (Time::MAX);
|
|
Time min (Time::MIN);
|
|
|
|
TimeVar var (ref);
|
|
|
|
var += two;
|
|
var *= 2;
|
|
CHECK (zero == (var - 2*(ref + two)) );
|
|
|
|
var = ref;
|
|
CHECK (zero == (var - ref));
|
|
}
|
|
|
|
|
|
void
|
|
checkComparisons (Time const& ref)
|
|
{
|
|
Time zero;
|
|
Time max (Time::MAX);
|
|
Time min (Time::MIN);
|
|
|
|
CHECK (zero == Time());
|
|
CHECK (min < zero);
|
|
CHECK (max > zero);
|
|
|
|
TimeVar var (ref);
|
|
CHECK ( (var == ref) );
|
|
CHECK (!(var != ref) );
|
|
CHECK ( (var >= ref) );
|
|
CHECK ( (var <= ref) );
|
|
CHECK (!(var < ref) );
|
|
CHECK (!(var > ref) );
|
|
|
|
var += Time(FSecs(2));
|
|
CHECK (!(var == ref) );
|
|
CHECK ( (var != ref) );
|
|
CHECK ( (var >= ref) );
|
|
CHECK (!(var <= ref) );
|
|
CHECK (!(var < ref) );
|
|
CHECK ( (var > ref) );
|
|
|
|
gavl_time_t gat(var);
|
|
CHECK (!(gat == ref) );
|
|
CHECK ( (gat != ref) );
|
|
CHECK ( (gat >= ref) );
|
|
CHECK (!(gat <= ref) );
|
|
CHECK (!(gat < ref) );
|
|
CHECK ( (gat > ref) );
|
|
|
|
CHECK ( (var == gat) );
|
|
CHECK (!(var != gat) );
|
|
CHECK ( (var >= gat) );
|
|
CHECK ( (var <= gat) );
|
|
CHECK (!(var < gat) );
|
|
CHECK (!(var > gat) );
|
|
}
|
|
|
|
|
|
void
|
|
checkComponentDiagnostics()
|
|
{
|
|
int millis = rand() % 1000;
|
|
int secs = rand() % 60;
|
|
int mins = rand() % 60;
|
|
int hours = rand() % 100;
|
|
|
|
Time time(millis,secs,mins,hours);
|
|
CHECK (Time() < time);
|
|
CHECK (millis == getMillis(time));
|
|
CHECK (secs == getSecs (time));
|
|
CHECK (mins == getMins (time));
|
|
CHECK (hours == getHours (time));
|
|
cout << time << endl;
|
|
|
|
Time t2(2008,0);
|
|
cout << t2 << endl;
|
|
CHECK ( 8 == getMillis(t2));
|
|
CHECK ( 2 == getSecs (t2));
|
|
CHECK ( 0 == getMins (t2));
|
|
CHECK ( 0 == getHours (t2));
|
|
|
|
Time t3(2008,88);
|
|
cout << t3 << endl;
|
|
CHECK ( 8 == getMillis(t3));
|
|
CHECK (30 == getSecs (t3));
|
|
CHECK ( 1 == getMins (t3));
|
|
CHECK ( 0 == getHours (t3));
|
|
|
|
Time t4(2008,118,58);
|
|
cout << t4 << endl;
|
|
CHECK ( 8 == getMillis(t4));
|
|
CHECK ( 0 == getSecs (t4));
|
|
CHECK ( 0 == getMins (t4));
|
|
CHECK ( 1 == getHours (t4));
|
|
}
|
|
};
|
|
|
|
|
|
/** Register this test class... */
|
|
LAUNCHER (TimeBasics_test, "unit common");
|
|
|
|
|
|
|
|
}} // namespace lib::test
|