mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
115 lines
2.4 KiB
C++
115 lines
2.4 KiB
C++
// Cyphesis Online RPG Server and AI Engine
|
|
// Copyright (C) 2012 Alistair Riddoch
|
|
//
|
|
// 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 2 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, write to the Free Software Foundation,
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
#ifndef TESTS_TEST_BASE_H
|
|
#define TESTS_TEST_BASE_H
|
|
|
|
#ifdef NDEBUG
|
|
#undef NDEBUG
|
|
#endif
|
|
#ifndef DEBUG
|
|
#define DEBUG
|
|
#endif
|
|
|
|
#include "common/compose.hpp"
|
|
#include "AssertBase.h"
|
|
#include "StreamOperators.h"
|
|
|
|
#include <boost/bind/bind.hpp>
|
|
#include <boost/function.hpp>
|
|
|
|
|
|
namespace Cyphesis {
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
const char * name;
|
|
boost::function<void()> method;
|
|
};
|
|
|
|
class TestBase : public AssertBase
|
|
{
|
|
protected:
|
|
|
|
std::list<Test> m_tests;
|
|
|
|
|
|
public:
|
|
virtual ~TestBase();
|
|
|
|
virtual void setup() = 0;
|
|
virtual void teardown() = 0;
|
|
|
|
void addTest(Test t);
|
|
|
|
int run();
|
|
|
|
|
|
};
|
|
|
|
inline
|
|
TestBase::~TestBase()
|
|
{
|
|
}
|
|
|
|
void TestBase::addTest(Test t)
|
|
{
|
|
m_tests.push_back(t);
|
|
}
|
|
|
|
int TestBase::run()
|
|
{
|
|
int error_count = 0;
|
|
|
|
std::list<Test>::const_iterator Iend = m_tests.end();
|
|
std::list<Test>::const_iterator I = m_tests.begin();
|
|
for (; I != Iend; ++I) {
|
|
setup();
|
|
std::cerr << "Starting test " << I->name << std::endl << std::flush;
|
|
(*I).method();
|
|
teardown();
|
|
std::cerr << "Completed test " << I->name << std::endl << std::flush;
|
|
|
|
if (!m_errorReports.empty()) {
|
|
++error_count;
|
|
|
|
std::cerr << "Test \"" << (*I).name << "\" failed:" << std::endl;
|
|
|
|
|
|
for (const auto& report : m_errorReports) {
|
|
std::cerr << report << std::endl;
|
|
}
|
|
|
|
m_errorReports.clear();
|
|
}
|
|
}
|
|
|
|
return error_count;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
#define ADD_TEST(_function) {\
|
|
Cyphesis::Test _function_test = { #_function,\
|
|
boost::bind(&_function, this) };\
|
|
this->addTest(_function_test);\
|
|
}
|
|
|
|
#endif // TESTS_TEST_BASE_H
|