arabica/tests/CppUnit/TestRunner.cpp

124 lines
2.4 KiB
C++
Raw Normal View History

2005-10-12 01:46:19 +02:00
#include "TestRunner.hpp"
#include "textui/TextTestResult.h"
#include <iostream>
//////////////////////////////////////////
/*
* A command line based tool to run tests.
* TestRunner expects as its only argument the name of a TestCase class.
* TestRunner prints out a trace as the tests are executed followed by a
* summary at the end.
*
* You can add to the tests that the TestRunner knows about by
* making additional calls to "addTest (...)" in main.
*
* Here is the synopsis:
*
* TestRunner [-wait] ExampleTestCase
*
*/
using namespace std;
typedef pair<string, Test *> mapping;
typedef vector<pair<string, Test *> > mappings;
void TestRunner::printBanner ()
{
2006-11-13 17:52:25 +01:00
cout << "Usage: driver [-q] [ -wait ] testName, where name is the name of a test case class" << endl;
2005-10-12 01:46:19 +02:00
} // printBanner
2005-10-31 13:07:30 +01:00
void TestRunner::run(int ac, const char **av)
2005-10-12 01:46:19 +02:00
{
string testCase;
int numberOfTests = 0;
2006-10-12 00:51:04 +02:00
int opt = 0;
2005-10-12 01:46:19 +02:00
for(int i = 1; i < ac; i++)
{
if(string(av[i]) == "-wait")
{
m_wait = true;
2006-10-12 00:51:04 +02:00
++opt;
continue;
}
if(string(av[i]) == "-q")
{
verbose_ = false;
++opt;
2005-10-12 01:46:19 +02:00
continue;
}
testCase = av[i];
if(testCase == "")
{
printBanner ();
return;
}
Test *testToRun = NULL;
for(mappings::iterator it = m_mappings.begin();
it != m_mappings.end();
++it)
{
if((*it).first == testCase)
{
2006-10-12 00:51:04 +02:00
if(verbose_)
cout << (*it).first << std::endl;
2005-10-12 01:46:19 +02:00
testToRun = (*it).second;
run(testToRun);
}
}
numberOfTests++;
if(!testToRun)
{
cout << "Test " << testCase << " not found." << endl;
return;
}
} // for ...
2006-10-12 00:51:04 +02:00
if((ac-opt) == 1)
2005-10-12 01:46:19 +02:00
{
// run everything
for(mappings::iterator it = m_mappings.begin(); it != m_mappings.end(); ++it)
{
2006-10-12 00:51:04 +02:00
if(verbose_)
cout << (*it).first << std::endl;
2005-10-12 01:46:19 +02:00
run((*it).second);
}
return;
}
if(numberOfTests == 0)
{
printBanner ();
return;
}
if(m_wait)
{
cout << "<RETURN> to continue" << endl;
cin.get ();
}
} // run
TestRunner::~TestRunner ()
{
for(mappings::iterator it = m_mappings.begin ();
it != m_mappings.end ();
++it)
delete it->second;
} // ~TestRunner
void TestRunner::run(Test *test)
{
2006-10-12 00:51:04 +02:00
TextTestResult result(verbose_);
2005-10-12 01:46:19 +02:00
test->run (&result);
2006-10-12 00:51:04 +02:00
cout << result;
2005-10-12 01:46:19 +02:00
} // run