2021-01-18 19:10:53 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
* Copyright (C) 2007-2021 Cppcheck team.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cppchecklibrarydata.h"
|
|
|
|
|
2022-02-02 22:31:51 +01:00
|
|
|
#include <QObject>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QString>
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2021-08-07 20:51:18 +02:00
|
|
|
class TestCppcheckLibraryData : public QObject {
|
2021-01-18 19:10:53 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
void xmlReaderError();
|
|
|
|
void unhandledElement();
|
|
|
|
void mandatoryAttributeMissing();
|
|
|
|
|
|
|
|
void podtypeValid();
|
|
|
|
void typechecksValid();
|
|
|
|
void smartPointerValid();
|
2021-01-29 14:54:19 +01:00
|
|
|
void platformTypeValid();
|
|
|
|
void memoryResourceValid();
|
2021-02-03 12:52:52 +01:00
|
|
|
void defineValid();
|
|
|
|
void undefineValid();
|
|
|
|
void reflectionValid();
|
2021-02-09 13:53:32 +01:00
|
|
|
void markupValid();
|
2022-07-04 22:23:20 +02:00
|
|
|
void containerValid();
|
2021-01-18 19:10:53 +01:00
|
|
|
|
2023-01-27 19:43:08 +01:00
|
|
|
void validateAllCfg();
|
|
|
|
|
2021-01-18 19:10:53 +01:00
|
|
|
private:
|
2022-09-16 18:58:59 +02:00
|
|
|
static void loadCfgFile(const QString &filename, CppcheckLibraryData &data, QString &res, bool removeFile = false);
|
|
|
|
static void saveCfgFile(const QString &filename, CppcheckLibraryData &data);
|
2021-01-18 19:10:53 +01:00
|
|
|
|
|
|
|
CppcheckLibraryData libraryData;
|
|
|
|
CppcheckLibraryData fileLibraryData;
|
|
|
|
QString result;
|
|
|
|
|
|
|
|
static const QString TempCfgFile;
|
|
|
|
};
|