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
133 lines
4.1 KiB
C++
133 lines
4.1 KiB
C++
/*
|
|
MObjectInterface(Test) - covers behaviour common to all MObjects
|
|
|
|
Copyright (C) Lumiera.org
|
|
2010, 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 mobject-interface-test.cpp
|
|
** unit test \ref MObjectInterface_test
|
|
*/
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
#include "lib/symbol.hpp"
|
|
|
|
#include "proc/asset/media.hpp"
|
|
#include "proc/mobject/mobject.hpp"
|
|
#include "proc/mobject/session/mobjectfactory.hpp"
|
|
//#include "proc/mobject/mobject-ref.hpp"
|
|
#include "proc/mobject/placement.hpp"
|
|
//#include "proc/mobject/placement-ref.hpp"
|
|
//#include "proc/mobject/session/placement-index.hpp"
|
|
//#include "proc/mobject/session/session-service-mock-index.hpp"
|
|
//#include "proc/mobject/session/clip.hpp"
|
|
//#include "proc/mobject/explicitplacement.hpp"
|
|
#include "proc/mobject/test-dummy-mobject.hpp"
|
|
#include "backend/media-access-mock.hpp"
|
|
#include "lib/test/depend-4test.hpp"
|
|
#include "lib/time/timevalue.hpp"
|
|
#include "lib/format-cout.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
namespace proc {
|
|
namespace mobject {
|
|
namespace test {
|
|
|
|
// using lib::test::showSizeof;
|
|
|
|
using lib::Symbol;
|
|
using lib::test::Depend4Test;
|
|
using lib::time::Duration;
|
|
using lib::time::FSecs;
|
|
using lib::time::Time;
|
|
|
|
|
|
// using session::Clip;
|
|
// using session::PMedia;
|
|
|
|
|
|
using namespace mobject::test;
|
|
typedef TestPlacement<DummyMO> PDummy;
|
|
|
|
|
|
/*****************************************************************************//**
|
|
* @test cover the common behaviour of all MObjects.
|
|
* @note the MObject interface is still very preliminary (as of 10/10).
|
|
* It is expected to support some kind of metadata and object serialisation
|
|
*
|
|
* @see mobject::MObject
|
|
* @see mobject::Placement
|
|
*/
|
|
class MObjectInterface_test : public Test
|
|
{
|
|
|
|
|
|
|
|
virtual void
|
|
run (Arg)
|
|
{
|
|
Depend4Test<backend::test::MediaAccessMock> within_this_scope;
|
|
|
|
|
|
PMO testClip1 = asset::Media::create("test-1", asset::VIDEO)->createClip();
|
|
PMO testClip2 = asset::Media::create("test-2", asset::VIDEO)->createClip();
|
|
|
|
// set up a tie to fixed start positions (i.e. "properties of placement")
|
|
testClip1.chain(Time(FSecs(10)));
|
|
testClip2.chain(Time(FSecs(20)));
|
|
|
|
Symbol labelType ("dummyLabel");
|
|
PMO testLabel1 = MObject::create (labelType);
|
|
|
|
testLabel1.chain(Time(FSecs(30)));
|
|
|
|
PDummy testDummy1(*new DummyMO);
|
|
PDummy testDummy2(*new TestSubMO1);
|
|
|
|
CHECK (testClip1->isValid());
|
|
CHECK (testClip2->isValid());
|
|
CHECK (testLabel1->isValid());
|
|
CHECK (testDummy1->isValid());
|
|
CHECK (testDummy2->isValid());
|
|
|
|
Duration lenC1 = testClip1->getLength();
|
|
Duration lenC2 = testClip2->getLength();
|
|
Duration lenL1 = testLabel1->getLength();
|
|
CHECK (lenC1 > Time::ZERO);
|
|
CHECK (lenC2 > Time::ZERO);
|
|
CHECK (lenL1 ==Time::ZERO);
|
|
|
|
cout << testClip1->shortID() << endl;
|
|
cout << testClip2->shortID() << endl;
|
|
cout << testLabel1->shortID() << endl;
|
|
cout << testDummy1->shortID() << endl;
|
|
cout << testDummy2->shortID() << endl;
|
|
}
|
|
};
|
|
|
|
|
|
|
|
/** Register this test class... */
|
|
LAUNCHER (MObjectInterface_test, "unit session");
|
|
|
|
|
|
}}} // namespace proc::mobject::test
|