X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Ftesting%2FTestStep.hpp;h=aa2f5754d9eff2d79ae4b984071257260fb9e255;hb=f9534159f3b43cbf74eccf88723ee740c69eb204;hp=b63c1479a805d5fa3b69d1f3da40fc6bd5419307;hpb=e3f60b6b4a178c63ebd6f8915431bfa485a2e601;p=anna.git diff --git a/example/diameter/launcher/testing/TestStep.hpp b/example/diameter/launcher/testing/TestStep.hpp index b63c147..aa2f575 100644 --- a/example/diameter/launcher/testing/TestStep.hpp +++ b/example/diameter/launcher/testing/TestStep.hpp @@ -12,6 +12,7 @@ // Standard #include #include +#include // Project #include @@ -21,6 +22,8 @@ #include + + namespace anna { class Millisecond; @@ -53,7 +56,7 @@ class TestStep { void initialize(TestCase *testCase); public: - struct Type { enum _v { Unconfigured, Timeout, Sendxml2e, Sendxml2c, Delay, Wait }; }; + struct Type { enum _v { Unconfigured, Timeout, Sendxml2e, Sendxml2c, Delay, Wait, Cmd }; }; static const char* asText(const Type::_v type) throw(); TestStep(TestCase *testCase) { initialize(testCase); } @@ -201,4 +204,41 @@ class TestStepWait : public TestStep { }; +class TestStepCmd : public TestStep { + + std::string a_script; + std::string a_parameters; + std::thread a_thread; + bool a_threadRunning; + bool a_threadDeprecated; + int a_resultCode; + //std::string a_output; + + public: + TestStepCmd(TestCase *testCase) : TestStep(testCase), a_threadRunning(false), a_threadDeprecated(false), a_resultCode(-2)/*, a_output("")*/ { a_type = Type::Cmd; } + + // setter & getters + void setThreadRunning(bool running) throw() { a_threadRunning = running; } + //bool getThreadRunning() const throw() { return a_threadRunning; } + //void setThreadDeprecated(bool deprecated) throw() { a_threadDeprecated = deprecated; } + //bool getThreadDeprecated() const throw() { return a_threadDeprecated; } + + void setResultCode(int rc) throw() { a_resultCode = rc; } + int getResultCode() const throw() { return a_resultCode; } + //void setOutput(const std::string &output) throw() { a_output = output; } + //const std::string &getOutput() const throw() { return a_output; } + + void setScript(const std::string &script) throw() { a_script = script; } + const std::string &getScript() const throw() { return a_script; } + void setParameters(const std::string ¶ms) throw() { a_parameters = params; } + const std::string &getParameters() const throw() { return a_parameters; } + + // virtuals + bool do_execute() throw(); + void do_complete() throw(); + void do_reset() throw(); + anna::xml::Node* asXML(anna::xml::Node* parent) const throw(); +}; + + #endif