2010-12-30 09:46:44 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2021-03-21 20:58:32 +01:00
|
|
|
* Copyright (C) 2007-2021 Cppcheck team.
|
2010-12-30 09:46:44 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TestUtilsH
|
|
|
|
#define TestUtilsH
|
2011-12-23 22:31:48 +01:00
|
|
|
|
2021-02-18 18:50:30 +01:00
|
|
|
#include "errorlogger.h"
|
2010-12-30 09:46:44 +01:00
|
|
|
#include "settings.h"
|
|
|
|
#include "tokenize.h"
|
2011-12-23 22:31:48 +01:00
|
|
|
|
|
|
|
class Token;
|
2010-12-30 09:46:44 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class givenACodeSampleToTokenize {
|
2010-12-30 09:46:44 +01:00
|
|
|
private:
|
2019-08-18 12:19:05 +02:00
|
|
|
Tokenizer tokenizer;
|
2021-02-18 16:28:04 +01:00
|
|
|
static const Settings settings;
|
2010-12-30 09:46:44 +01:00
|
|
|
|
|
|
|
public:
|
2014-11-18 19:52:06 +01:00
|
|
|
explicit givenACodeSampleToTokenize(const char sample[], bool createOnly = false, bool cpp = true)
|
2019-08-18 12:19:05 +02:00
|
|
|
: tokenizer(&settings, nullptr) {
|
2012-05-16 18:04:03 +02:00
|
|
|
std::istringstream iss(sample);
|
|
|
|
if (createOnly)
|
2019-08-18 12:19:05 +02:00
|
|
|
tokenizer.list.createTokens(iss, cpp ? "test.cpp" : "test.c");
|
2012-05-16 18:04:03 +02:00
|
|
|
else
|
2019-08-18 12:19:05 +02:00
|
|
|
tokenizer.tokenize(iss, cpp ? "test.cpp" : "test.c");
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
const Token* tokens() const {
|
2019-08-18 12:19:05 +02:00
|
|
|
return tokenizer.tokens();
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-08-27 09:42:09 +02:00
|
|
|
|
|
|
|
class SimpleSuppressor : public ErrorLogger {
|
|
|
|
public:
|
|
|
|
SimpleSuppressor(Settings &settings, ErrorLogger *next)
|
2019-08-18 12:19:05 +02:00
|
|
|
: settings(settings), next(next) {
|
2014-08-27 09:42:09 +02:00
|
|
|
}
|
2019-09-20 21:57:16 +02:00
|
|
|
void reportOut(const std::string &outmsg) OVERRIDE {
|
2019-08-18 12:19:05 +02:00
|
|
|
next->reportOut(outmsg);
|
2014-08-27 09:42:09 +02:00
|
|
|
}
|
2020-05-23 07:16:49 +02:00
|
|
|
void reportErr(const ErrorMessage &msg) OVERRIDE {
|
2019-08-18 12:19:05 +02:00
|
|
|
if (!msg.callStack.empty() && !settings.nomsg.isSuppressed(msg.toSuppressionsErrorMessage()))
|
|
|
|
next->reportErr(msg);
|
2014-08-27 09:42:09 +02:00
|
|
|
}
|
|
|
|
private:
|
2019-08-18 12:19:05 +02:00
|
|
|
Settings &settings;
|
|
|
|
ErrorLogger *next;
|
2014-08-27 09:42:09 +02:00
|
|
|
};
|
|
|
|
|
2014-01-28 15:44:56 +01:00
|
|
|
#endif // TestUtilsH
|