X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Ftestsuite.cpp;h=719da031319c21455ea8ff360cd4a316c21b0bd2;hb=4d4882d667c2c2eea180219e0c76d15cc1f49415;hp=a9ae8caba7050e43432589babd22bd9edc848050;hpb=c3b8b80a334cb638424185f2767b7853f43537da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/testsuite.cpp b/src/testsuite.cpp index a9ae8caba..719da0313 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -11,9 +11,128 @@ * --------------------------------------------------- */ -/* $Install: src/inspircd $(BINPATH) */ +/* $Core: libIRCDtestsuite */ #include "inspircd.h" #include "testsuite.h" +#include "threadengine.h" +#include + +using namespace std; + +class TestSuiteThread : public Thread +{ + public: + TestSuiteThread() : Thread() + { + } + + virtual ~TestSuiteThread() + { + } + + virtual void Run() + { + while (GetExitFlag() == false) + { + cout << "Test suite thread run...\n"; + sleep(5); + } + } +}; + +TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) +{ + cout << "\n\n*** STARTING TESTSUITE ***\n"; + + std::string modname; + std::string choice; + + ServerInstance->SE->Blocking(fileno(stdin)); + + while (1) + { + cout << "(1) Call all module OnRunTestSuite() methods\n"; + cout << "(2) Load a module\n"; + cout << "(3) Unload a module\n"; + cout << "(4) Threading tests\n"; + + cout << endl << "(X) Exit test suite\n"; + + cout << "\nChoice: "; + cin >> choice; + + switch (*choice.begin()) + { + case '1': + FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite()); + break; + case '2': + cout << "Enter module filename to load: "; + cin >> modname; + cout << (Instance->Modules->Load(modname.c_str()) ? "\nSUCCESS!\n" : "\nFAILURE\n"); + break; + case '3': + cout << "Enter module filename to unload: "; + cin >> modname; + cout << (Instance->Modules->Unload(modname.c_str()) ? "\nSUCCESS!\n" : "\nFAILURE\n"); + break; + case '4': + cout << (DoThreadTests() ? "\nSUCCESS!\n" : "\nFAILURE\n"); + break; + case 'X': + return; + break; + default: + cout << "Invalid option\n"; + break; + } + cout << endl; + } +} + +bool TestSuite::DoThreadTests() +{ + std::string anything; + ThreadEngine* te = NULL; + + cout << "Creating new ThreadEngine class...\n"; + try + { + ThreadEngineFactory* tef = new ThreadEngineFactory(); + te = tef->Create(ServerInstance); + delete tef; + } + catch (...) + { + cout << "Creation failed, test failure.\n"; + return false; + } + cout << "Creation success!\n"; + + cout << "Creating new thread of type TestSuiteThread...\n"; + TestSuiteThread* tst = new TestSuiteThread(); + + cout << "Create new thread based on TestSuiteThread...\n"; + te->Create(tst); + + cout << "Press any key to end test.\n"; + getchar(); + + /* Thread engine auto frees thread on delete */ + cout << "Waiting for thread to exit..."; + delete tst; + cout << "Done!\n"; + + cout << "Delete ThreadEngine... "; + delete te; + cout << "Done!\n"; + + return true; +} + +TestSuite::~TestSuite() +{ + cout << "\n\n*** END OF TEST SUITE ***\n"; +} -/* $Core: libIRCDtestsuite */