2011-02-09 21:03:55 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2018-01-14 15:37:52 +01:00
|
|
|
* Copyright (C) 2007-2017 Cppcheck team.
|
2011-02-09 21:03:55 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
#include <QObject>
|
|
|
|
#include "testxmlreportv2.h"
|
|
|
|
#include "xmlreportv2.h"
|
|
|
|
#include "erroritem.h"
|
2011-06-10 13:13:41 +02:00
|
|
|
#include "errorlogger.h"
|
2011-02-09 21:03:55 +01:00
|
|
|
|
|
|
|
void TestXmlReportV2::readXml()
|
|
|
|
{
|
2011-06-17 12:56:32 +02:00
|
|
|
const QString filepath(QString(SRCDIR) + "/../data/xmlfiles/xmlreport_v2.xml");
|
2011-02-09 21:03:55 +01:00
|
|
|
XmlReportV2 report(filepath);
|
2017-08-13 11:04:37 +02:00
|
|
|
QVERIFY(report.open());
|
|
|
|
QList<ErrorItem> errors = report.read();
|
2011-06-17 12:18:42 +02:00
|
|
|
QCOMPARE(errors.size(), 6);
|
2011-02-09 21:03:55 +01:00
|
|
|
|
2017-08-13 11:04:37 +02:00
|
|
|
const ErrorItem &item = errors[0];
|
|
|
|
QCOMPARE(item.errorPath.size(), 1);
|
|
|
|
QCOMPARE(item.errorPath[0].file, QString("test.cxx"));
|
|
|
|
QCOMPARE(item.errorPath[0].line, (unsigned int)11);
|
2011-10-12 21:18:54 +02:00
|
|
|
QCOMPARE(item.errorId, QString("unreadVariable"));
|
2011-06-10 13:13:41 +02:00
|
|
|
QCOMPARE(GuiSeverity::toString(item.severity), QString("style"));
|
2011-02-09 21:03:55 +01:00
|
|
|
QCOMPARE(item.summary, QString("Variable 'a' is assigned a value that is never used"));
|
|
|
|
QCOMPARE(item.message, QString("Variable 'a' is assigned a value that is never used"));
|
|
|
|
|
2017-08-13 11:04:37 +02:00
|
|
|
const ErrorItem &item2 = errors[3];
|
|
|
|
QCOMPARE(item2.errorPath.size(), 2);
|
|
|
|
QCOMPARE(item2.errorPath[0].file, QString("test.cxx"));
|
|
|
|
QCOMPARE(item2.errorPath[0].line, (unsigned int)16);
|
|
|
|
QCOMPARE(item2.errorPath[1].file, QString("test.cxx"));
|
|
|
|
QCOMPARE(item2.errorPath[1].line, (unsigned int)32);
|
2011-10-12 21:18:54 +02:00
|
|
|
QCOMPARE(item2.errorId, QString("mismatchAllocDealloc"));
|
2011-06-10 13:13:41 +02:00
|
|
|
QCOMPARE(GuiSeverity::toString(item2.severity), QString("error"));
|
2011-02-09 21:03:55 +01:00
|
|
|
QCOMPARE(item2.summary, QString("Mismatching allocation and deallocation: k"));
|
|
|
|
QCOMPARE(item2.message, QString("Mismatching allocation and deallocation: k"));
|
|
|
|
}
|
2011-06-10 13:13:41 +02:00
|
|
|
|
|
|
|
QTEST_MAIN(TestXmlReportV2)
|