Command execution for system test cases
[anna.git] / example / diameter / launcher / testing / TestManager.hpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 #ifndef example_diameter_launcher_TestManager_hpp
10 #define example_diameter_launcher_TestManager_hpp
11
12 // Project
13 #include <anna/config/defines.hpp>
14 #include <anna/core/util/Recycler.hpp>
15 #include <anna/core/Singleton.hpp>
16 #include <anna/timex/TimeEventObserver.hpp>
17 #include <anna/core/RuntimeException.hpp>
18 #include <anna/core/DataBlock.hpp>
19
20 // Process
21 #include <TestTimer.hpp>
22
23
24 namespace anna {
25   class Millisecond;
26
27   namespace timex {
28     class Engine;
29   }
30   namespace diameter {
31     namespace comm {
32       class ClientSession;
33       class ServerSession;
34     }
35   }
36 }
37
38
39 class TestClock;
40 class TestCase;
41 class TestCaseStep;
42
43 typedef std::map<unsigned int /* test case id */, TestCase*> test_pool_t;
44 typedef std::map<unsigned int /* test case id */, TestCase*>::const_iterator test_pool_it;
45 typedef std::map<unsigned int /* test case id */, TestCase*>::iterator test_pool_nc_it;
46
47
48 /**
49    Timer Manager for testing system
50 */
51 class TestManager : public anna::timex::TimeEventObserver, public anna::Singleton <TestManager> {
52   typedef anna::Recycler <TestTimer> timer_container;
53
54   anna::timex::Engine* a_timeController;
55
56   // reports
57   std::string a_reportsDirectory;
58   bool a_dumpReports;
59   bool a_dumpHexMessages;
60
61   // Pool of test cases
62   test_pool_t a_testPool;
63   test_pool_it a_currentTestIt;
64   int a_poolRepeats; // repeat pool N times
65   int a_poolCycle; // current cycle, from 1 to N
66   unsigned int a_inProgressCount;
67   unsigned int a_inProgressLimit; // limit load to have this value
68
69   // Test clock
70   int a_synchronousAmount;
71   TestClock *a_clock;
72   bool tick() throw();
73   bool nextTestCase() throw();
74
75   // Test timers
76   timer_container a_timers;
77
78   // Session-Id's
79   std::map<std::string /* session id's */, TestCase*> a_sessionIdTestCaseMap; // stores used Session-Id values within a test case.
80                                                                               // No other can use them, but a test case could use more than one.
81
82
83   TestManager();
84   TestManager(const TestManager&);
85
86   TestTimer* createTimer(TestCaseStep*, const anna::Millisecond &, const TestTimer::Type::_v type) throw(anna::RuntimeException);
87   void cancelTimer(TestTimer*) throw();
88   void release(anna::timex::TimeEvent*) throw();
89
90   public:
91
92     void registerSessionId(const std::string &sessionId, const TestCase *testCase) throw(anna::RuntimeException);
93
94     int tests() const throw() { return a_testPool.size(); }
95     void setTimerController(anna::timex::Engine *engine) throw() {  a_timeController = engine; }
96
97     void setReportsDirectory(const std::string &rd) throw() { a_reportsDirectory = rd; }
98     const std::string &getReportsDirectory() const throw() { return a_reportsDirectory; }
99
100     void setDumpHex(bool dh) throw() { a_dumpHexMessages = dh; }
101     bool getDumpHex() const throw() { return a_dumpHexMessages; }
102     void setDumpReports(bool dr) throw() { a_dumpReports = dr; }
103     bool getDumpReports() const throw() { return a_dumpReports; }
104
105     // Helper to calculate time interval and synchronous amount of execution tests to guarantee the input rate (tests per second)
106     //  through the time manager which has a minimum resolution of ADML minimum resolution. The first call to this method will
107     //  start the time trigger system and check for new test cases to be launched.
108     bool configureTTPS(int testTicksPerSecond) throw();
109
110     bool clearPool() throw();
111     bool resetPool(bool hard /* hard reset includes in-progress test cases */) throw();
112     void setPoolRepeats(int repeats) throw() { a_poolRepeats = repeats; }
113     int getPoolRepeats() const throw() { return a_poolRepeats; }
114     int getPoolCycle() const throw() { return a_poolCycle; }
115
116     unsigned int getInProgressCount() const throw() { return a_inProgressCount; }
117     void setInProgressCountDelta(unsigned int delta) throw() { a_inProgressCount += delta; }
118     unsigned int getInProgressLimit() const throw() { return a_inProgressLimit; }
119     void setInProgressLimit(unsigned int limit) throw() { a_inProgressLimit = limit; } // 0 = UINT_MAX (no limit)
120
121     bool gotoTestCase(unsigned int id) throw();
122     TestCase *findTestCase(unsigned int id) const throw(); // id = -1 provides current test case triggered
123     TestCase *getTestCase(unsigned int id) throw(); // creates/reuses a test case
124
125     // Main logic
126     TestCase *getTestCaseFromSessionId(const anna::DataBlock &message, std::string &sessionId) throw();
127     void receiveMessage(const anna::DataBlock &message, const anna::diameter::comm::ClientSession *clientSession) throw(anna::RuntimeException);
128     void receiveMessage(const anna::DataBlock &message, const anna::diameter::comm::ServerSession *serverSession) throw(anna::RuntimeException);
129
130     anna::xml::Node* asXML(anna::xml::Node* parent) const throw();
131     std::string asXMLString() const throw();
132
133
134   friend class anna::Singleton <TestManager>;
135   friend class TestStepTimeout; // createTimer
136   friend class TestStepDelay; // createTimer
137   friend class TestClock; // tick
138 };
139
140 #endif