2010-12-13 03:22:11 +01:00
|
|
|
/*
|
|
|
|
|
FixtureChangeDetector(Test) - detecting segmentation differences
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2010, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
2010-12-17 23:28:49 +01:00
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
2017-02-22 01:54:20 +01:00
|
|
|
/** @file fixture-change-detector-test.cpp
|
2017-02-22 03:17:18 +01:00
|
|
|
** unit test \ref FixtureChangeDetector_test
|
2016-11-03 18:20:10 +01:00
|
|
|
*/
|
|
|
|
|
|
2010-12-13 03:22:11 +01:00
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
|
|
|
#include "lib/test/test-helper.hpp"
|
2023-06-07 04:03:00 +02:00
|
|
|
#include "steam/fixture/fixture-change-detector.hpp"
|
2018-11-15 23:42:43 +01:00
|
|
|
#include "steam/asset/timeline.hpp"
|
|
|
|
|
#include "steam/asset/pipe.hpp"
|
2012-12-01 08:44:07 +01:00
|
|
|
#include "common/query.hpp"
|
2010-12-13 03:22:11 +01:00
|
|
|
#include "lib/util.hpp"
|
|
|
|
|
|
|
|
|
|
|
2018-11-15 23:55:13 +01:00
|
|
|
namespace steam {
|
2023-06-07 04:03:00 +02:00
|
|
|
namespace fixture {
|
2010-12-13 03:22:11 +01:00
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
// using util::isSameObject;
|
|
|
|
|
// using util::isnil;
|
|
|
|
|
//
|
|
|
|
|
using asset::Pipe;
|
|
|
|
|
using asset::PPipe;
|
|
|
|
|
using asset::Struct;
|
|
|
|
|
using asset::Timeline;
|
|
|
|
|
using asset::PTimeline;
|
2012-12-01 08:44:07 +01:00
|
|
|
using lumiera::Query;
|
2010-12-13 03:22:11 +01:00
|
|
|
//
|
|
|
|
|
typedef asset::ID<Pipe> PID;
|
|
|
|
|
typedef asset::ID<Struct> TID;
|
|
|
|
|
//
|
|
|
|
|
// typedef ModelPortRegistry::ModelPortDescriptor const& MPDescriptor;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace { // test environment
|
|
|
|
|
|
|
|
|
|
inline PID
|
|
|
|
|
getPipe (string id)
|
|
|
|
|
{
|
2012-12-26 02:20:11 +01:00
|
|
|
return Pipe::query ("id("+id+")");
|
2010-12-13 03:22:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline TID
|
|
|
|
|
getTimeline (string id)
|
|
|
|
|
{
|
|
|
|
|
return asset::Struct::retrieve (Query<Timeline> ("id("+id+")"))->getID();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct TestContext
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** setup */
|
|
|
|
|
TestContext()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
/** tear-down */
|
|
|
|
|
~TestContext()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-24 23:06:36 +02:00
|
|
|
/*****************************************************************************//**
|
2017-02-22 03:17:18 +01:00
|
|
|
* @test planned test for detecting changes in a given segmentation
|
|
|
|
|
* @todo just a placeholder, nothing done here thus far (2016)
|
2010-12-13 03:22:11 +01:00
|
|
|
*
|
|
|
|
|
* @see mobject::builder::FixtureChangeDetector
|
|
|
|
|
*/
|
|
|
|
|
class FixtureChangeDetector_test : public Test
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
|
run (Arg)
|
|
|
|
|
{
|
|
|
|
|
TestContext ctx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fabricating_ModelPorts ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Register this test class... */
|
2023-06-07 04:03:00 +02:00
|
|
|
LAUNCHER (FixtureChangeDetector_test, "unit fixture");
|
2010-12-13 03:22:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-06-07 04:03:00 +02:00
|
|
|
}}} // namespace steam::fixture::test
|