LUMIERA.clone/tests/core/steam/asset/meta/time-grid-basics-test.cpp

128 lines
3.4 KiB
C++
Raw Normal View History

/*
TimeGridBasics(Test) - verify a simple reference scale for time quantisation
Copyright: clarify and simplify the file headers * Lumiera source code always was copyrighted by individual contributors * there is no entity "Lumiera.org" which holds any copyrights * Lumiera source code is provided under the GPL Version 2+ == Explanations == Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above. For this to become legally effective, the ''File COPYING in the root directory is sufficient.'' The licensing header in each file is not strictly necessary, yet considered good practice; attaching a licence notice increases the likeliness that this information is retained in case someone extracts individual code files. However, it is not by the presence of some text, that legally binding licensing terms become effective; rather the fact matters that a given piece of code was provably copyrighted and published under a license. Even reformatting the code, renaming some variables or deleting parts of the code will not alter this legal situation, but rather creates a derivative work, which is likewise covered by the GPL! The most relevant information in the file header is the notice regarding the time of the first individual copyright claim. By virtue of this initial copyright, the first author is entitled to choose the terms of licensing. All further modifications are permitted and covered by the License. The specific wording or format of the copyright header is not legally relevant, as long as the intention to publish under the GPL remains clear. The extended wording was based on a recommendation by the FSF. It can be shortened, because the full terms of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
Copyright (C)
2010, Hermann Vosseler <Ichthyostega@web.de>
Copyright: clarify and simplify the file headers * Lumiera source code always was copyrighted by individual contributors * there is no entity "Lumiera.org" which holds any copyrights * Lumiera source code is provided under the GPL Version 2+ == Explanations == Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above. For this to become legally effective, the ''File COPYING in the root directory is sufficient.'' The licensing header in each file is not strictly necessary, yet considered good practice; attaching a licence notice increases the likeliness that this information is retained in case someone extracts individual code files. However, it is not by the presence of some text, that legally binding licensing terms become effective; rather the fact matters that a given piece of code was provably copyrighted and published under a license. Even reformatting the code, renaming some variables or deleting parts of the code will not alter this legal situation, but rather creates a derivative work, which is likewise covered by the GPL! The most relevant information in the file header is the notice regarding the time of the first individual copyright claim. By virtue of this initial copyright, the first author is entitled to choose the terms of licensing. All further modifications are permitted and covered by the License. The specific wording or format of the copyright header is not legally relevant, as long as the intention to publish under the GPL remains clear. The extended wording was based on a recommendation by the FSF. It can be shortened, because the full terms of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
  **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.
Copyright: clarify and simplify the file headers * Lumiera source code always was copyrighted by individual contributors * there is no entity "Lumiera.org" which holds any copyrights * Lumiera source code is provided under the GPL Version 2+ == Explanations == Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above. For this to become legally effective, the ''File COPYING in the root directory is sufficient.'' The licensing header in each file is not strictly necessary, yet considered good practice; attaching a licence notice increases the likeliness that this information is retained in case someone extracts individual code files. However, it is not by the presence of some text, that legally binding licensing terms become effective; rather the fact matters that a given piece of code was provably copyrighted and published under a license. Even reformatting the code, renaming some variables or deleting parts of the code will not alter this legal situation, but rather creates a derivative work, which is likewise covered by the GPL! The most relevant information in the file header is the notice regarding the time of the first individual copyright claim. By virtue of this initial copyright, the first author is entitled to choose the terms of licensing. All further modifications are permitted and covered by the License. The specific wording or format of the copyright header is not legally relevant, as long as the intention to publish under the GPL remains clear. The extended wording was based on a recommendation by the FSF. It can be shortened, because the full terms of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
* *****************************************************************/
/** @file time-grid-basics-test.cpp
** unit test \ref TimeGridBasics_test
*/
#include "lib/test/run.hpp"
#include "lib/test/test-helper.hpp"
#include "steam/asset/meta.hpp"
#include "steam/asset/meta/time-grid.hpp"
#include "lib/time/timevalue.hpp"
#include "lib/format-cout.hpp"
2011-01-15 15:04:23 +01:00
#include "lib/util.hpp"
#include <boost/rational.hpp>
using boost::rational_cast;
using lib::test::randStr;
namespace steam {
2011-01-15 15:04:23 +01:00
namespace asset{
namespace meta {
namespace test {
using namespace lib::time;
typedef Builder<TimeGrid> GridBuilder;
namespace { // Test definitions...
const Time TEST_ORIGIN (12,34);
const FrameRate TEST_FPS (5,6);
const uint MAX_FRAMES = 1000;
const uint DIRT_GRAIN = 50;
}
/***********************************************************************//**
* @test build some simple time grids and verify their behaviour
* for quantising (grid aligning) time values.
*
* @see asset::meta::TimeGrid
* @see time-quantisation-test.cpp usage context
*/
class TimeGridBasics_test : public Test
{
virtual void
run (Arg)
{
seedRand();
createGrid_fullProcedure();
createGrid_simplified();
}
void
createGrid_fullProcedure()
{
GridID myGrID (randStr(8));
GridBuilder spec = asset::Meta::create (myGrID);
CHECK ( spec.fps == 1);
CHECK ( spec.origin == TimeValue(0));
CHECK (!spec.predecessor);
spec.fps = TEST_FPS;
spec.origin = TEST_ORIGIN;
PGrid myGrid = spec.commit();
CHECK (myGrid);
2011-01-15 15:04:23 +01:00
CHECK (myGrid->ident.name == myGrID.getSym());
// now verify the grid
// by performing some conversions...
int randomFrame = rani(MAX_FRAMES);
Time point (myGrid->timeOf (randomFrame));
CHECK (point == TEST_ORIGIN + randomFrame * TEST_FPS.duration());
int fract = 2 + rani(DIRT_GRAIN);
FSecs dirt = (1/TEST_FPS) / fract;
ASSERT (Time(dirt) < TEST_FPS.duration());
ASSERT (0 < dirt);
Time dirty(point + Time(dirt));
CHECK (point == TEST_ORIGIN + myGrid->gridLocal(dirty));
}
void
createGrid_simplified()
{
PGrid simplePALGrid = TimeGrid::build (FrameRate::PAL);
2011-01-15 15:04:23 +01:00
CHECK (simplePALGrid);
CHECK (!util::isnil (simplePALGrid->ident.name)); // note: name-ID filled in automatically
cout << "simple PAL Grid: " << simplePALGrid->ident << endl;
CHECK (Time(0,2) == simplePALGrid->timeOf(50));
CHECK (Time(0,2) == simplePALGrid->timeOf(FSecs(2)));
}
};
/** Register this test class... */
LAUNCHER (TimeGridBasics_test, "unit asset");
}}}} // namespace steam::asset::meta::test