2008-10-26 08:55:15 +01:00
|
|
|
/*
|
|
|
|
* c++check - c/c++ syntax checking
|
|
|
|
* Copyright (C) 2007 Daniel Marjamäki
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-10-13 08:42:40 +02:00
|
|
|
|
|
|
|
#include "testsuite.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <list>
|
|
|
|
|
2008-11-20 23:19:26 +01:00
|
|
|
std::ostringstream errout;
|
2008-10-13 08:42:40 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TestRegistry
|
|
|
|
**/
|
|
|
|
|
|
|
|
class TestRegistry
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::list<TestFixture *> _tests;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static TestRegistry &theInstance()
|
|
|
|
{
|
|
|
|
static TestRegistry testreg;
|
|
|
|
return testreg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void addTest( TestFixture *t )
|
|
|
|
{
|
|
|
|
_tests.push_back( t );
|
|
|
|
}
|
|
|
|
|
|
|
|
void removeTest( TestFixture *t )
|
|
|
|
{
|
|
|
|
_tests.remove( t );
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::list<TestFixture *> &tests() const
|
|
|
|
{
|
|
|
|
return _tests;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TestFixture
|
|
|
|
**/
|
|
|
|
|
|
|
|
std::ostringstream TestFixture::errmsg;
|
|
|
|
unsigned int TestFixture::countTests;
|
|
|
|
|
|
|
|
TestFixture::TestFixture(const std::string &_name) : classname(_name)
|
|
|
|
{
|
|
|
|
TestRegistry::theInstance().addTest(this);
|
|
|
|
}
|
|
|
|
|
2008-10-16 19:22:26 +02:00
|
|
|
/*
|
2008-10-13 08:42:40 +02:00
|
|
|
TestFixture::~TestFixture()
|
|
|
|
{
|
|
|
|
TestRegistry::theInstance().removeTest(this);
|
|
|
|
}
|
2008-10-16 19:22:26 +02:00
|
|
|
*/
|
2008-10-13 08:42:40 +02:00
|
|
|
|
|
|
|
bool TestFixture::runTest(const char testname[])
|
|
|
|
{
|
|
|
|
countTests++;
|
|
|
|
std::cout << classname << "::" << testname << "\n";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestFixture::assertFail(const char *filename, int linenr)
|
|
|
|
{
|
|
|
|
errmsg << "Assertion failed in " << filename << " at line " << linenr << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestFixture::printTests()
|
|
|
|
{
|
|
|
|
const std::list<TestFixture *> &tests = TestRegistry::theInstance().tests();
|
|
|
|
|
|
|
|
for ( std::list<TestFixture *>::const_iterator it = tests.begin(); it != tests.end(); ++it )
|
|
|
|
{
|
|
|
|
std::cout << (*it)->classname << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-26 12:11:26 +01:00
|
|
|
void TestFixture::runTests(const char cmd[])
|
2008-10-13 08:42:40 +02:00
|
|
|
{
|
2008-10-26 12:11:26 +01:00
|
|
|
std::string classname(cmd ? cmd : "");
|
|
|
|
std::string testname("");
|
|
|
|
if ( classname.find("::") != std::string::npos )
|
|
|
|
{
|
|
|
|
testname = classname.substr( classname.find("::") + 2 );
|
|
|
|
classname.erase( classname.find("::") );
|
|
|
|
}
|
|
|
|
|
2008-10-13 08:42:40 +02:00
|
|
|
countTests = 0;
|
|
|
|
errmsg.str("");
|
|
|
|
|
|
|
|
const std::list<TestFixture *> &tests = TestRegistry::theInstance().tests();
|
|
|
|
|
|
|
|
for ( std::list<TestFixture *>::const_iterator it = tests.begin(); it != tests.end(); ++it )
|
|
|
|
{
|
2008-10-26 12:11:26 +01:00
|
|
|
if ( classname.empty() || (*it)->classname == classname )
|
|
|
|
(*it)->run();
|
2008-10-13 08:42:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "\n\nTesting Complete\nNumber of tests: " << countTests << "\n";
|
|
|
|
|
|
|
|
std::cerr << errmsg.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-20 23:19:26 +01:00
|
|
|
void TestFixture::reportErr( const std::string &errmsg)
|
|
|
|
{
|
|
|
|
errout << errmsg << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestFixture::reportErr( const TOKEN *token, const std::string &errmsg)
|
|
|
|
{
|
|
|
|
reportErr( errmsg );
|
|
|
|
}
|
2008-10-13 08:42:40 +02:00
|
|
|
|