lumiera_/tests/library/time/time-basics-test.cpp
Ichthyostega ada5cefaaf re-arrange tests according to layer structure
the buildsystem will now pick up and link
all test cases according to the layer, e.g.
backend tests will automatically be linked
against the backend + library solely.
2013-01-07 05:43:01 +01:00

177 lines
4.6 KiB
C++

/*
LumiBasics(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.
* *****************************************************/
#include "lib/test/run.hpp"
#include "lib/util.hpp"
#include <boost/lexical_cast.hpp>
#include <iostream>
#include <cstdlib>
using boost::lexical_cast;
using util::isnil;
using std::rand;
using std::cout;
using std::endl;
#include "lib/time/timevalue.hpp"
#include "lib/time/diagnostics.hpp"
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