200 lines
6.8 KiB
C++
200 lines
6.8 KiB
C++
/*
|
|
* 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 "testcppchecklibrarydata.h"
|
|
|
|
const QString TestCppcheckLibraryData::TempCfgFile = "./tmp.cfg";
|
|
|
|
void TestCppcheckLibraryData::init()
|
|
{
|
|
result.clear();
|
|
libraryData.clear();
|
|
fileLibraryData.clear();
|
|
}
|
|
|
|
void TestCppcheckLibraryData::xmlReaderError()
|
|
{
|
|
loadCfgFile(":/files/xml_reader_error.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), false);
|
|
qDebug() << result;
|
|
}
|
|
|
|
void TestCppcheckLibraryData::unhandledElement()
|
|
{
|
|
loadCfgFile(":/files/unhandled_element.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), false);
|
|
qDebug() << result;
|
|
}
|
|
|
|
void TestCppcheckLibraryData::mandatoryAttributeMissing()
|
|
{
|
|
loadCfgFile(":/files/mandatory_attribute_missing.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), false);
|
|
qDebug() << result;
|
|
}
|
|
|
|
void TestCppcheckLibraryData::podtypeValid()
|
|
{
|
|
// Load library data from file
|
|
loadCfgFile(":/files/podtype_valid.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Swap libray data read from file to other object
|
|
libraryData.swap(fileLibraryData);
|
|
|
|
// Do size and content checks against swapped data.
|
|
QCOMPARE(libraryData.podtypes.size(), 2);
|
|
|
|
QCOMPARE(libraryData.podtypes[0].name, "bool");
|
|
QCOMPARE(libraryData.podtypes[0].stdtype.isEmpty(), true);
|
|
QCOMPARE(libraryData.podtypes[0].sign.isEmpty(), true);
|
|
QCOMPARE(libraryData.podtypes[0].size.isEmpty(), true);
|
|
|
|
QCOMPARE(libraryData.podtypes[1].name, "ulong");
|
|
QCOMPARE(libraryData.podtypes[1].stdtype, "uint32_t");
|
|
QCOMPARE(libraryData.podtypes[1].sign, "u");
|
|
QCOMPARE(libraryData.podtypes[1].size, "4");
|
|
|
|
// Save library data to file
|
|
saveCfgFile(TempCfgFile, libraryData);
|
|
|
|
fileLibraryData.clear();
|
|
QCOMPARE(fileLibraryData.podtypes.size(), 0);
|
|
|
|
// Reload library data from file
|
|
loadCfgFile(TempCfgFile, fileLibraryData, result, true);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Verify no data got lost or modified
|
|
QCOMPARE(libraryData.podtypes.size(), fileLibraryData.podtypes.size());
|
|
QCOMPARE(libraryData.podtypes.size(), 2);
|
|
for (int i=0; i < libraryData.podtypes.size(); i++) {
|
|
QCOMPARE(libraryData.podtypes[i].name, fileLibraryData.podtypes[i].name);
|
|
QCOMPARE(libraryData.podtypes[i].stdtype, fileLibraryData.podtypes[i].stdtype);
|
|
QCOMPARE(libraryData.podtypes[i].sign, fileLibraryData.podtypes[i].sign);
|
|
QCOMPARE(libraryData.podtypes[i].size, fileLibraryData.podtypes[i].size);
|
|
}
|
|
}
|
|
|
|
void TestCppcheckLibraryData::typechecksValid()
|
|
{
|
|
// Load library data from file
|
|
loadCfgFile(":/files/typechecks_valid.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Swap libray data read from file to other object
|
|
libraryData.swap(fileLibraryData);
|
|
|
|
// Do size and content checks against swapped data.
|
|
QCOMPARE(libraryData.typeChecks.size(), 3);
|
|
|
|
CppcheckLibraryData::TypeChecks check = libraryData.typeChecks[0];
|
|
QCOMPARE(check.size(), 2);
|
|
QCOMPARE(check[0].first, "suppress");
|
|
QCOMPARE(check[0].second, "std::insert_iterator");
|
|
QCOMPARE(check[1].first, "check");
|
|
QCOMPARE(check[1].second, "std::pair");
|
|
|
|
check = libraryData.typeChecks[1];
|
|
QCOMPARE(check.isEmpty(), true);
|
|
|
|
check = libraryData.typeChecks[2];
|
|
QCOMPARE(check.size(), 1);
|
|
QCOMPARE(check[0].first, "check");
|
|
QCOMPARE(check[0].second, "std::tuple");
|
|
|
|
// Save library data to file
|
|
saveCfgFile(TempCfgFile, libraryData);
|
|
|
|
fileLibraryData.clear();
|
|
QCOMPARE(fileLibraryData.typeChecks.size(), 0);
|
|
|
|
// Reload library data from file
|
|
loadCfgFile(TempCfgFile, fileLibraryData, result, true);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Verify no data got lost or modified
|
|
QCOMPARE(libraryData.typeChecks.size(), fileLibraryData.typeChecks.size());
|
|
QCOMPARE(libraryData.typeChecks.size(), 3);
|
|
for (int idx=0; idx < libraryData.typeChecks.size(); idx++) {
|
|
CppcheckLibraryData::TypeChecks lhs = libraryData.typeChecks[idx];
|
|
CppcheckLibraryData::TypeChecks rhs = fileLibraryData.typeChecks[idx];
|
|
QCOMPARE(lhs.size(), lhs.size());
|
|
for (int num=0; num < lhs.size(); num++) {
|
|
QCOMPARE(lhs[num].first, rhs[num].first);
|
|
QCOMPARE(lhs[num].second, rhs[num].second);
|
|
}
|
|
}
|
|
}
|
|
|
|
void TestCppcheckLibraryData::smartPointerValid()
|
|
{
|
|
// Load library data from file
|
|
loadCfgFile(":/files/smartptr_valid.cfg", fileLibraryData, result);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Swap libray data read from file to other object
|
|
libraryData.swap(fileLibraryData);
|
|
|
|
// Do size and content checks against swapped data.
|
|
QCOMPARE(libraryData.smartPointers.size(), 3);
|
|
|
|
QCOMPARE(libraryData.smartPointers[0], "wxObjectDataPtr");
|
|
QCOMPARE(libraryData.smartPointers[1], "wxScopedArray");
|
|
QCOMPARE(libraryData.smartPointers[2], "wxScopedPtr");
|
|
|
|
// Save library data to file
|
|
saveCfgFile(TempCfgFile, libraryData);
|
|
|
|
fileLibraryData.clear();
|
|
QCOMPARE(fileLibraryData.smartPointers.size(), 0);
|
|
|
|
// Reload library data from file
|
|
loadCfgFile(TempCfgFile, fileLibraryData, result, true);
|
|
QCOMPARE(result.isNull(), true);
|
|
|
|
// Verify no data got lost or modified
|
|
QCOMPARE(libraryData.smartPointers.size(), fileLibraryData.smartPointers.size());
|
|
QCOMPARE(libraryData.smartPointers.size(), 3);
|
|
for (int i=0; i < libraryData.smartPointers.size(); i++) {
|
|
QCOMPARE(libraryData.smartPointers[i], fileLibraryData.smartPointers[i]);
|
|
}
|
|
}
|
|
|
|
void TestCppcheckLibraryData::loadCfgFile(QString filename, CppcheckLibraryData &data, QString &result, bool removeFile)
|
|
{
|
|
QFile file(filename);
|
|
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
|
|
result = data.open(file);
|
|
file.close();
|
|
if (removeFile) {
|
|
file.remove();
|
|
}
|
|
}
|
|
|
|
void TestCppcheckLibraryData::saveCfgFile(QString filename, CppcheckLibraryData &data)
|
|
{
|
|
QFile file(filename);
|
|
QVERIFY(file.open(QIODevice::WriteOnly | QIODevice::Text));
|
|
QTextStream textStream(&file);
|
|
textStream << data.toString() << '\n';
|
|
file.close();
|
|
}
|
|
|
|
QTEST_MAIN(TestCppcheckLibraryData)
|