Doxygen will only process files with a @file documentation comment. Up to now, none of our test code has such a comment, preventing the cross-links to unit tests from working. This is unfortunate, since unit tests, and even the code comments there, can be considered as the most useful form of technical documentation. Thus I'll start an initiative to fill in those missing comments automatically
212 lines
6.3 KiB
C++
212 lines
6.3 KiB
C++
/*
|
|
CommandUse2(Test) - usage aspects II
|
|
|
|
Copyright (C) Lumiera.org
|
|
2009, 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 command-use2-test.cpp
|
|
** unit test §§TODO§§
|
|
*/
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
#include "lib/test/test-helper.hpp"
|
|
#include "proc/control/command.hpp"
|
|
#include "proc/control/command-def.hpp"
|
|
#include "proc/control/handling-pattern.hpp"
|
|
#include "lib/format-string.hpp"
|
|
#include "lib/format-obj.hpp"
|
|
#include "lib/util.hpp"
|
|
|
|
#include "proc/control/test-dummy-commands.hpp"
|
|
|
|
#include <functional>
|
|
#include <boost/ref.hpp>
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <string>
|
|
|
|
|
|
namespace proc {
|
|
namespace control {
|
|
namespace test {
|
|
|
|
|
|
using util::_Fmt;
|
|
using std::string;
|
|
using std::function;
|
|
using std::bind;
|
|
using std::ref;
|
|
using boost::lexical_cast;
|
|
using util::contains;
|
|
|
|
|
|
using lumiera::error::LUMIERA_ERROR_EXTERNAL;
|
|
|
|
|
|
/** diagnostics: checks if the given value has been written
|
|
* to the test protocol (string stream) of command2
|
|
* Explanation: command2 accepts a function, invokes
|
|
* it and writes the result to the protocol stream.
|
|
*/
|
|
template<typename TY>
|
|
inline bool
|
|
protocolled (TY val2check)
|
|
{
|
|
return contains ( command2::check_.str()
|
|
, util::toString (val2check)
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************//**
|
|
* @test command usage aspects II: patterns of command invocation.
|
|
*
|
|
* @todo this test is still on hold, as the non-trivial patterns aren't implemented as of 10/09 ////////////////TICKET #211
|
|
*
|
|
* @see Command
|
|
* @see command-basic-test.cpp (simple usage example)
|
|
*/
|
|
class CommandUse2_test : public Test
|
|
{
|
|
|
|
int randVal_;
|
|
|
|
string randomTxt()
|
|
{
|
|
_Fmt fmt ("invoked( %2d )");
|
|
|
|
randVal_ = rand() % 100;
|
|
return fmt % randVal_;
|
|
}
|
|
|
|
bool blowUp_;
|
|
|
|
|
|
virtual void
|
|
run (Arg)
|
|
{
|
|
command2::check_.seekp(0);
|
|
uint cnt_defs = Command::definition_count();
|
|
uint cnt_inst = Command::instance_count();
|
|
|
|
function<string()> randFun = bind (&CommandUse2_test::randomTxt, this);
|
|
|
|
// prepare a command definition (prototype)
|
|
CommandDef ("test.command2")
|
|
.operation (command2::operate)
|
|
.captureUndo (command2::capture)
|
|
.undoOperation (command2::undoIt)
|
|
.bind (randFun, &blowUp_);
|
|
|
|
//note : blowUp_ is bound via pointer,
|
|
// thus we can provoke an exception at will.
|
|
blowUp_ = false;
|
|
|
|
|
|
check_defaultHandlingPattern();
|
|
// check_ThrowOnError(); //////////////////////////////////////////////////////////////////////TICKET #211
|
|
// check_DispatcherInvocation() // yet to be written as of 1/2016
|
|
|
|
|
|
Command::remove ("test.command2");
|
|
Command::remove ("test.command2.1");
|
|
CHECK (cnt_defs == Command::definition_count());
|
|
CHECK (cnt_inst == Command::instance_count());
|
|
}
|
|
|
|
|
|
|
|
void
|
|
check_defaultHandlingPattern()
|
|
{
|
|
Command com = Command::get("test.command2");
|
|
|
|
CHECK (!protocolled("invoked"));
|
|
|
|
bool success = com();
|
|
|
|
CHECK (success);
|
|
CHECK (protocolled("invoked"));
|
|
CHECK (protocolled(randVal_));
|
|
|
|
success = com.undo();
|
|
CHECK (success); // UNDO invoked successfully
|
|
CHECK (!protocolled(randVal_));
|
|
CHECK (protocolled("UNDO"));
|
|
|
|
blowUp_ = true;
|
|
string current = command2::check_.str();
|
|
|
|
success = com();
|
|
CHECK (not success); // NOT executed successfully (exception thrown and caught)
|
|
CHECK (command2::check_.str() == current);
|
|
CHECK (!lumiera_error_peek()); // already absorbed
|
|
|
|
success = com.undo();
|
|
CHECK (not success); // UNDO failed (exception thrown and caught)
|
|
CHECK (command2::check_.str() == current);
|
|
|
|
blowUp_ = false;
|
|
}
|
|
|
|
|
|
|
|
void
|
|
check_ThrowOnError()
|
|
{
|
|
Command com = Command::get("test.command2");
|
|
|
|
blowUp_ = false;
|
|
com.exec(HandlingPattern::SYNC_THROW);
|
|
CHECK (protocolled(randVal_));
|
|
|
|
blowUp_ = true;
|
|
string current = command2::check_.str();
|
|
HandlingPattern const& doThrow = HandlingPattern::get(HandlingPattern::SYNC_THROW);
|
|
|
|
VERIFY_ERROR( EXTERNAL, com.exec (doThrow) );
|
|
CHECK (command2::check_.str() == current);
|
|
|
|
// we can achieve the same effect,
|
|
// after changing the default HandlingPatern for this command instance
|
|
com.setHandlingPattern(HandlingPattern::SYNC_THROW);
|
|
com.storeDef ("test.command2.1");
|
|
|
|
Command com2 = Command::get("test.command2.1");
|
|
VERIFY_ERROR( EXTERNAL, com2() );
|
|
CHECK (command2::check_.str() == current);
|
|
|
|
blowUp_ = false;
|
|
com2();
|
|
CHECK (command2::check_.str() > current);
|
|
CHECK (protocolled(randVal_));
|
|
|
|
com2.undo();
|
|
CHECK (!protocolled(randVal_));
|
|
}
|
|
};
|
|
|
|
|
|
/** Register this test class... */
|
|
LAUNCHER (CommandUse2_test, "function controller");
|
|
|
|
|
|
}}} // namespace proc::control::test
|