LUMIERA.clone/tests/basics/time/time-basics-test.cpp
Ichthyostega afa7ca2e4d Upgrade: switch to C++23 (see #1245)
The Lumiera »Reference Platform« is now upgraded to Debian/Buster, which provides GCC-14 and Clang-20.
Thus the compiler support for C++20 language features seems solid enough, and C++23,
while still in ''experimental stage'' can be seen as a complement and addendum.

This changeset
 * upgrades the compile switches for the build system
 * provides all the necessary adjustments to keep the code base compilable

Notable changes:
 * λ-capture by value now requires explicit qualification how to handle `this`
 * comparison operators are now handled transparently by the core language,
   largely obsoleting boost::operators. This change incurs several changes
   to implicit handling rules and causes lots of ambiguities — which typically
   pinpoint some long standing design issues, especially related to MObjects
   and the ''time entities''. Most tweaks done here can be ''considered preliminary''
 * unfortunately the upgraded standard ''fails'' to handle **tuple-like** entities
   in a satisfactory way — rather an ''exposition-only'' concept is introduced,
   which applies solely to some containers from the STL, thereby breaking some
   very crucial code in the render entities, which was built upon the notion of
   ''tuple-like'' entities and the ''tuple protocol''. The solution is to
   abandon the STL in this respect and **provide an alternative implementation**
   of the `apply` function and related elements.
2025-06-19 01:52:55 +02:00

166 lines
4.4 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
TimeBasics(Test) - working with Lumiera's internal Time values
Copyright (C)
2008, Hermann Vosseler <Ichthyostega@web.de>
  **Lumiera** 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. See the file COPYING for further details.
* *****************************************************************/
/** @file time-basics-test.cpp
** unit test \ref TimeBasics_test
*/
#include "lib/test/run.hpp"
#include "lib/time/timevalue.hpp"
#include "lib/test/test-helper.hpp"
#include "lib/random.hpp"
#include "lib/util.hpp"
#include <boost/lexical_cast.hpp>
using boost::lexical_cast;
using util::isnil;
namespace lib {
namespace test{
using time::Time;
using time::TimeVar;
using time::FSecs;
using time::raw_time_64;
/****************************************//**
* @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);
checkComponentBreakdown();
}
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) );
raw_time_64 rat = _raw(var);
CHECK (!(rat == ref) );
CHECK ( (rat != ref) );
CHECK ( (rat >= ref) );
CHECK (!(rat <= ref) );
CHECK (!(rat < ref) );
CHECK ( (rat > ref) );
CHECK ( (var == rat) );
CHECK (!(var != rat) );
CHECK ( (var >= rat) );
CHECK ( (var <= rat) );
CHECK (!(var < rat) );
CHECK (!(var > rat) );
}
void
checkComponentBreakdown()
{
Time t1(2008,0);
CHECK (t1 == "0:00:02.008"_expect);
Time t2(2008,88);
CHECK (t2 == "0:01:30.008"_expect);
Time t3(2008,118,58);
CHECK (t3 == "1:00:00.008"_expect);
Time t4(t2 - t3);
CHECK (t4 == "-0:58:30.000"_expect);
CHECK (Time::ZERO == "0:00:00.000"_expect);
CHECK (Time::MAX == "85401592:56:01.825"_expect);
CHECK (Time::MIN == "-85401592:56:01.825"_expect);
seedRand();
int millis = 1 + rani (999);
int secs = rani (60);
int mins = rani (60);
int hours = rani (100);
Time randTime(millis,secs,mins,hours);
CHECK (Time() < randTime);
const auto TIME_SCALE_sec{lib::time::TimeValue::SCALE };
const auto TIME_SCALE_ms {lib::time::TimeValue::SCALE / 1000};
CHECK (millis == (_raw(randTime) / TIME_SCALE_ms ) % 1000);
CHECK (secs == (_raw(randTime) / TIME_SCALE_sec) % 60);
CHECK (mins == (_raw(randTime) / TIME_SCALE_sec / 60) % 60);
CHECK (hours == _raw(randTime) / TIME_SCALE_sec / 60 / 60);
}
};
/** Register this test class... */
LAUNCHER (TimeBasics_test, "unit common");
}} // namespace lib::test