* 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.
124 lines
4 KiB
C++
124 lines
4 KiB
C++
/*
|
||
AdviceConfiguration(Test) - cover the various policies to configure Advice
|
||
|
||
Copyright (C)
|
||
2010, 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 advice-configuration-test.cpp
|
||
** unit test \ref AdviceConfiguration_test
|
||
*/
|
||
|
||
|
||
#include "lib/test/run.hpp"
|
||
//#include "lib/test/test-helper.hpp"
|
||
|
||
#include "common/advice.hpp"
|
||
//#include "lib/p.hpp"
|
||
//#include "steam/assetmanager.hpp"
|
||
//#include "steam/asset/inventory.hpp"
|
||
//#include "steam/mobject/session/clip.hpp"
|
||
//#include "steam/mobject/session/fork.hpp"
|
||
//#include "lib/meta/trait-special.hpp"
|
||
//#include "lib/util-foreach.hpp"
|
||
//#include "lib/symbol.hpp"
|
||
|
||
//#include <string>
|
||
|
||
//using lib::test::showSizeof;
|
||
//using lib::test::randStr;
|
||
//using util::isSameObject;
|
||
//using util::and_all;
|
||
//using util::for_each;
|
||
//using util::isnil;
|
||
//using lib::Literal;
|
||
//using lib::Symbol;
|
||
//using lib::P;
|
||
//using std::string;
|
||
|
||
|
||
|
||
namespace lumiera {
|
||
namespace advice {
|
||
namespace test {
|
||
|
||
namespace {
|
||
}
|
||
|
||
|
||
|
||
/***************************************************************************//**
|
||
* @test this is a collection of tests to cover the configuration options
|
||
* available as policy arguments when establishing the collaboration.
|
||
* - default advice values, or blocking or throwing
|
||
* - using activation signals on both sides
|
||
* - dispatch without locking (TODO any chance we can cover this by test??)
|
||
* - more to come....
|
||
*
|
||
* @todo partially unimplemented and thus commented out ////////////////////TICKET #605
|
||
*
|
||
* @see advice.hpp
|
||
* @see AdviceBasics_test
|
||
* @see AdviceSituations_test
|
||
*/
|
||
class AdviceConfiguration_test : public Test
|
||
{
|
||
|
||
virtual void
|
||
run (Arg)
|
||
{
|
||
checkDefaultAdvice();
|
||
blockOnAdvice();
|
||
checkSignals();
|
||
}
|
||
|
||
|
||
/** @test typically, advice is a default constructible value,
|
||
* so there is a natural fallback in case no active advice
|
||
* provision exists. Alternatively we may specify to throw.
|
||
*/
|
||
void
|
||
checkDefaultAdvice()
|
||
{
|
||
#if false /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
#endif /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
}
|
||
|
||
|
||
/** @test when opening the advice collaboration, both sides may independently
|
||
* install a signal (callback functor) to be invoked when the actual
|
||
* advice solution gets established.
|
||
*/
|
||
void
|
||
checkSignals()
|
||
{
|
||
#if false /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
#endif /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
}
|
||
|
||
|
||
/** @test instead of allowing default advice values, both sides
|
||
* may enter a blocking wait until an advice solution is available.
|
||
* This is implemented as special case of using signals
|
||
*/
|
||
void
|
||
blockOnAdvice()
|
||
{
|
||
#if false /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
#endif /////////////////////////////////////////////////////////////////////////////////////////////////////////////UNIMPLEMENTED :: TICKET #605
|
||
}
|
||
};
|
||
|
||
|
||
|
||
/** Register this test class... */
|
||
LAUNCHER (AdviceConfiguration_test, "unit common");
|
||
|
||
|
||
}}} // namespace lumiera::advice::test
|