2007-09-25 23:39:46 +02:00
|
|
|
/*
|
|
|
|
|
MakeClip(Test) - create a Clip from a Media Asset
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-03-10 04:25:03 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2007-09-25 23:39:46 +02: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.
|
|
|
|
|
|
2007-09-25 23:39:46 +02: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
|
|
|
|
2007-09-25 23:39:46 +02: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
|
|
|
|
2007-09-25 23:39:46 +02:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2009-01-25 00:24:42 +01:00
|
|
|
#include "include/logging.h"
|
2008-12-18 04:47:41 +01:00
|
|
|
#include "lib/test/run.hpp"
|
|
|
|
|
#include "lib/util.hpp"
|
2007-09-25 23:39:46 +02:00
|
|
|
|
2011-05-16 08:38:27 +02:00
|
|
|
#include "lib/time/timevalue.hpp"
|
2007-09-25 23:39:46 +02:00
|
|
|
#include "proc/assetmanager.hpp"
|
|
|
|
|
#include "proc/asset/media.hpp"
|
|
|
|
|
#include "proc/mobject/session/clip.hpp"
|
2009-07-19 05:47:36 +02:00
|
|
|
#include "proc/asset/asset-diagnostics.hpp"
|
2011-05-20 02:59:29 +02:00
|
|
|
#include "backend/media-access-mock.hpp"
|
2007-09-25 23:39:46 +02:00
|
|
|
|
2011-05-20 02:59:29 +02:00
|
|
|
using lib::test::Use4Test;
|
2007-09-25 23:39:46 +02:00
|
|
|
using util::contains;
|
|
|
|
|
using util::isnil;
|
|
|
|
|
using std::string;
|
|
|
|
|
|
2007-09-27 23:26:54 +02:00
|
|
|
using std::tr1::static_pointer_cast; //TODO only temporarily;
|
2007-09-25 23:39:46 +02:00
|
|
|
|
2011-12-02 17:50:44 +01:00
|
|
|
namespace proc {
|
|
|
|
|
namespace asset{
|
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
//using mobject::NOBUG_FLAG(mobject_mem);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* @test creating a Clip MObject and an associated Clip Asset from
|
|
|
|
|
* a given asset::Media.
|
|
|
|
|
* @see asset::Media#createClip
|
|
|
|
|
*/
|
|
|
|
|
class MakeClip_test : public Test
|
|
|
|
|
{
|
|
|
|
|
typedef P<asset::Media> PM;
|
|
|
|
|
typedef asset::Media::PClipMO PC;
|
|
|
|
|
|
|
|
|
|
virtual void run (Arg)
|
|
|
|
|
{
|
|
|
|
|
Use4Test<backend::test::MediaAccessMock> within_this_scope;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PM mm = asset::Media::create("test-1", VIDEO);
|
|
|
|
|
PC cc = mm->createClip();
|
|
|
|
|
PM cm = cc->getMedia();
|
|
|
|
|
|
|
|
|
|
CHECK (cm);
|
|
|
|
|
CHECK (!isnil (cc->getLength()));
|
|
|
|
|
CHECK (cm->ident.category.hasKind (VIDEO));
|
|
|
|
|
CHECK (cm->getFilename() == mm->getFilename());
|
2007-11-20 05:20:01 +01:00
|
|
|
TODO ("implement Processing Pattern!!!");
|
2010-12-10 02:55:40 +01:00
|
|
|
// CHECK (cm->howtoProc() == mm->howtoProc());
|
2011-12-02 17:50:44 +01:00
|
|
|
CHECK (cm->ident.org == mm->ident.org);
|
|
|
|
|
CHECK (dependencyCheck (cm,mm));
|
|
|
|
|
|
|
|
|
|
TRACE (asset_mem, "leaving MakeClip_test::run()");
|
|
|
|
|
TRACE (mobject_mem, "leaving MakeClip_test::run()");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Register this test class... */
|
|
|
|
|
LAUNCHER (MakeClip_test, "function asset");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}}} // namespace proc::asset::test
|