2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 Cppcheck team.
|
2008-12-18 22:28:57 +01:00
|
|
|
*
|
|
|
|
* 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-08-28 12:13:46 +02:00
|
|
|
#ifndef testsuiteH
|
|
|
|
#define testsuiteH
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
#include <sstream>
|
2014-01-12 12:44:24 +01:00
|
|
|
#include <set>
|
2009-10-25 12:49:06 +01:00
|
|
|
#include "errorlogger.h"
|
2010-09-26 05:29:23 +02:00
|
|
|
|
|
|
|
class options;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class TestFixture : public ErrorLogger {
|
2008-12-18 22:28:57 +01:00
|
|
|
private:
|
|
|
|
static std::ostringstream errmsg;
|
|
|
|
static unsigned int countTests;
|
2012-07-08 23:39:46 +02:00
|
|
|
static std::size_t fails_counter;
|
|
|
|
static std::size_t todos_counter;
|
|
|
|
static std::size_t succeeded_todos_counter;
|
2014-01-12 12:44:24 +01:00
|
|
|
static std::set<std::string> missingLibs;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string classname;
|
2008-12-17 20:18:39 +01:00
|
|
|
std::string testToRun;
|
2010-09-26 05:29:23 +02:00
|
|
|
bool gcc_style_errors;
|
|
|
|
bool quiet_tests;
|
2013-04-13 15:49:15 +02:00
|
|
|
std::string currentTest;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
virtual void run() = 0;
|
|
|
|
|
2014-08-02 20:20:07 +02:00
|
|
|
bool prepareTest(const char testname[]);
|
2009-03-25 18:31:40 +01:00
|
|
|
|
2012-08-01 20:54:55 +02:00
|
|
|
void assert_(const char *filename, unsigned int linenr, bool condition) const;
|
2015-06-28 12:34:08 +02:00
|
|
|
|
2015-07-01 19:15:27 +02:00
|
|
|
void assertEquals(const char *filename, unsigned int linenr, const std::string &expected, const std::string &actual, const std::string &msg = emptyString) const;
|
|
|
|
void assertEquals(const char *filename, unsigned int linenr, const char expected[], const std::string& actual, const std::string &msg = emptyString) const;
|
|
|
|
void assertEquals(const char *filename, unsigned int linenr, const char expected[], const char actual[], const std::string &msg = emptyString) const;
|
|
|
|
void assertEquals(const char *filename, unsigned int linenr, const std::string& expected, const char actual[], const std::string &msg = emptyString) const;
|
|
|
|
void assertEquals(const char *filename, unsigned int linenr, long long expected, long long actual, const std::string &msg = emptyString) const;
|
2014-06-26 11:44:19 +02:00
|
|
|
void assertEqualsDouble(const char *filename, unsigned int linenr, double expected, double actual, const std::string &msg = emptyString) const;
|
2010-04-02 20:23:37 +02:00
|
|
|
|
2012-01-03 15:34:34 +01:00
|
|
|
void todoAssertEquals(const char *filename, unsigned int linenr, const std::string &wanted,
|
2012-08-01 20:54:55 +02:00
|
|
|
const std::string ¤t, const std::string &actual) const;
|
2012-01-03 15:34:34 +01:00
|
|
|
void todoAssertEquals(const char *filename, unsigned int linenr, long long wanted,
|
2012-08-01 20:54:55 +02:00
|
|
|
long long current, long long actual) const;
|
2016-04-22 06:02:54 +02:00
|
|
|
void assertThrow(const char *filename, unsigned int linenr) const;
|
2012-08-01 20:54:55 +02:00
|
|
|
void assertThrowFail(const char *filename, unsigned int linenr) const;
|
2016-07-26 12:15:55 +02:00
|
|
|
void assertNoThrowFail(const char *filename, unsigned int linenr) const;
|
2014-01-12 12:44:24 +01:00
|
|
|
void complainMissingLib(const char* libname) const;
|
2014-08-02 20:20:07 +02:00
|
|
|
|
2010-09-26 05:29:23 +02:00
|
|
|
void processOptions(const options& args);
|
2008-12-18 22:28:57 +01:00
|
|
|
public:
|
2009-01-05 16:49:57 +01:00
|
|
|
virtual void reportOut(const std::string &outmsg);
|
2009-02-10 22:51:52 +01:00
|
|
|
virtual void reportErr(const ErrorLogger::ErrorMessage &msg);
|
2008-12-17 20:18:39 +01:00
|
|
|
void run(const std::string &str);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit TestFixture(const std::string &_name);
|
2008-12-18 22:28:57 +01:00
|
|
|
virtual ~TestFixture() { }
|
|
|
|
|
2012-07-08 23:39:46 +02:00
|
|
|
static std::size_t runTests(const options& args);
|
2008-12-18 22:28:57 +01:00
|
|
|
};
|
|
|
|
|
2015-03-11 22:26:33 +01:00
|
|
|
extern std::ostringstream errout;
|
|
|
|
extern std::ostringstream output;
|
|
|
|
extern std::ostringstream warnings;
|
|
|
|
|
2014-08-02 20:20:07 +02:00
|
|
|
#define TEST_CASE( NAME ) if ( prepareTest(#NAME) ) { NAME(); }
|
2010-12-27 21:19:48 +01:00
|
|
|
#define ASSERT( CONDITION ) assert_(__FILE__, __LINE__, CONDITION)
|
2008-12-18 22:28:57 +01:00
|
|
|
#define ASSERT_EQUALS( EXPECTED , ACTUAL ) assertEquals(__FILE__, __LINE__, EXPECTED, ACTUAL)
|
2010-12-30 22:56:53 +01:00
|
|
|
#define ASSERT_EQUALS_DOUBLE( EXPECTED , ACTUAL ) assertEqualsDouble(__FILE__, __LINE__, EXPECTED, ACTUAL)
|
2010-05-13 22:14:29 +02:00
|
|
|
#define ASSERT_EQUALS_MSG( EXPECTED , ACTUAL, MSG ) assertEquals(__FILE__, __LINE__, EXPECTED, ACTUAL, MSG)
|
2014-08-02 20:20:07 +02:00
|
|
|
#define ASSERT_THROW( CMD, EXCEPTION ) try { CMD ; assertThrowFail(__FILE__, __LINE__); } catch (const EXCEPTION&) { } catch (...) { assertThrowFail(__FILE__, __LINE__); }
|
2016-07-26 12:15:55 +02:00
|
|
|
#define ASSERT_NO_THROW( CMD ) try { CMD ; } catch (...) { assertNoThrowFail(__FILE__, __LINE__); }
|
2016-04-22 06:02:54 +02:00
|
|
|
#define TODO_ASSERT_THROW( CMD, EXCEPTION ) try { CMD ; } catch (const EXCEPTION&) { } catch (...) { assertThrow(__FILE__, __LINE__); }
|
2015-07-19 15:03:02 +02:00
|
|
|
#define TODO_ASSERT( CONDITION ) { bool condition=CONDITION; todoAssertEquals(__FILE__, __LINE__, true, false, condition); }
|
2011-01-30 12:54:19 +01:00
|
|
|
#define TODO_ASSERT_EQUALS( WANTED , CURRENT , ACTUAL ) todoAssertEquals(__FILE__, __LINE__, WANTED, CURRENT, ACTUAL)
|
2015-10-07 14:30:01 +02:00
|
|
|
#define REGISTER_TEST( CLASSNAME ) namespace { CLASSNAME instance_##CLASSNAME; }
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2014-01-12 12:44:24 +01:00
|
|
|
#ifdef _WIN32
|
2014-06-04 18:55:29 +02:00
|
|
|
#define LOAD_LIB_2( LIB, NAME ) { if (((LIB).load("./testrunner", "../cfg/" NAME).errorcode != Library::OK) && ((LIB).load("./testrunner", "cfg/" NAME).errorcode != Library::OK)) { complainMissingLib(NAME); return; } }
|
2014-01-12 12:44:24 +01:00
|
|
|
#else
|
2014-06-04 18:55:29 +02:00
|
|
|
#define LOAD_LIB_2( LIB, NAME ) { if ((LIB).load("./testrunner", "cfg/" NAME).errorcode != Library::OK) { complainMissingLib(NAME); return; } }
|
2014-01-12 12:44:24 +01:00
|
|
|
#endif
|
|
|
|
|
2009-08-28 12:13:46 +02:00
|
|
|
#endif
|