2015-02-04 15:19:30 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-02-04 15:19:30 +01:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** This file is part of Qt Creator.
|
2015-02-04 15:19:30 +01:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
2015-02-04 15:19:30 +01:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-14 10:59:10 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2015-02-04 15:19:30 +01:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2015-02-04 15:19:30 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangstaticanalyzerunittests.h"
|
|
|
|
|
|
|
|
|
|
#include "clangstaticanalyzerdiagnostic.h"
|
|
|
|
|
#include "clangstaticanalyzertool.h"
|
|
|
|
|
#include "clangstaticanalyzerutils.h"
|
|
|
|
|
|
|
|
|
|
#include <cpptools/cppmodelmanager.h>
|
|
|
|
|
#include <cpptools/cpptoolstestcase.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <projectexplorer/kitmanager.h>
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <projectexplorer/toolchain.h>
|
|
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
|
|
|
|
|
#include <QEventLoop>
|
|
|
|
|
#include <QSignalSpy>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
namespace ClangTools {
|
2015-02-04 15:19:30 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
void ClangStaticAnalyzerUnitTests::initTestCase()
|
|
|
|
|
{
|
|
|
|
|
const QList<Kit *> allKits = KitManager::kits();
|
|
|
|
|
if (allKits.count() != 1)
|
|
|
|
|
QSKIP("This test requires exactly one kit to be present");
|
2016-07-12 16:27:45 +02:00
|
|
|
const ToolChain * const toolchain = ToolChainKitInformation::toolChain(allKits.first(),
|
2016-12-16 00:43:14 +01:00
|
|
|
Constants::CXX_LANGUAGE_ID);
|
2015-02-04 15:19:30 +01:00
|
|
|
if (!toolchain)
|
|
|
|
|
QSKIP("This test requires that there is a kit with a toolchain.");
|
|
|
|
|
bool hasClangExecutable;
|
2017-09-11 14:08:00 +02:00
|
|
|
clangExecutableFromSettings(&hasClangExecutable);
|
2015-02-04 15:19:30 +01:00
|
|
|
if (!hasClangExecutable)
|
|
|
|
|
QSKIP("No clang suitable for analyzing found");
|
|
|
|
|
|
|
|
|
|
m_tmpDir = new CppTools::Tests::TemporaryCopiedDir(QLatin1String(":/unit-tests"));
|
2015-05-18 11:32:43 +02:00
|
|
|
QVERIFY(m_tmpDir->isValid());
|
2015-02-04 15:19:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClangStaticAnalyzerUnitTests::cleanupTestCase()
|
|
|
|
|
{
|
|
|
|
|
delete m_tmpDir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClangStaticAnalyzerUnitTests::testProject()
|
|
|
|
|
{
|
|
|
|
|
QFETCH(QString, projectFilePath);
|
|
|
|
|
QFETCH(int, expectedDiagCount);
|
2017-08-17 09:40:02 +02:00
|
|
|
if (projectFilePath.contains("mingw")) {
|
|
|
|
|
const ToolChain * const toolchain
|
|
|
|
|
= ToolChainKitInformation::toolChain(KitManager::kits().first(),
|
|
|
|
|
Constants::CXX_LANGUAGE_ID);
|
|
|
|
|
if (toolchain->typeId() != ProjectExplorer::Constants::MINGW_TOOLCHAIN_TYPEID)
|
|
|
|
|
QSKIP("This test is mingw specific, does not run for other toolchais");
|
|
|
|
|
}
|
2015-02-04 15:19:30 +01:00
|
|
|
|
|
|
|
|
CppTools::Tests::ProjectOpenerAndCloser projectManager;
|
|
|
|
|
const CppTools::ProjectInfo projectInfo = projectManager.open(projectFilePath, true);
|
|
|
|
|
QVERIFY(projectInfo.isValid());
|
2017-05-08 09:21:48 +02:00
|
|
|
auto tool = ClangStaticAnalyzerTool::instance();
|
|
|
|
|
tool->startTool();
|
|
|
|
|
QSignalSpy waiter(tool, SIGNAL(finished(bool)));
|
2015-05-04 14:57:03 +02:00
|
|
|
QVERIFY(waiter.wait(30000));
|
|
|
|
|
const QList<QVariant> arguments = waiter.takeFirst();
|
|
|
|
|
QVERIFY(arguments.first().toBool());
|
2017-05-08 09:21:48 +02:00
|
|
|
QCOMPARE(tool->diagnostics().count(), expectedDiagCount);
|
2015-02-04 15:19:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClangStaticAnalyzerUnitTests::testProject_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<QString>("projectFilePath");
|
|
|
|
|
QTest::addColumn<int>("expectedDiagCount");
|
2015-04-15 18:24:58 +02:00
|
|
|
|
2016-07-08 15:30:48 +02:00
|
|
|
addTestRow("simple/simple.qbs", 1);
|
|
|
|
|
addTestRow("simple/simple.pro", 1);
|
|
|
|
|
|
|
|
|
|
addTestRow("simple-library/simple-library.qbs", 0);
|
|
|
|
|
addTestRow("simple-library/simple-library.pro", 0);
|
|
|
|
|
|
|
|
|
|
addTestRow("stdc++11-includes/stdc++11-includes.qbs", 0);
|
|
|
|
|
addTestRow("stdc++11-includes/stdc++11-includes.pro", 0);
|
|
|
|
|
|
|
|
|
|
addTestRow("qt-widgets-app/qt-widgets-app.qbs", 0);
|
|
|
|
|
addTestRow("qt-widgets-app/qt-widgets-app.pro", 0);
|
|
|
|
|
|
|
|
|
|
addTestRow("qt-essential-includes/qt-essential-includes.qbs", 0);
|
|
|
|
|
addTestRow("qt-essential-includes/qt-essential-includes.pro", 0);
|
2017-08-17 09:40:02 +02:00
|
|
|
|
|
|
|
|
addTestRow("mingw-includes/mingw-includes.qbs", 0);
|
|
|
|
|
addTestRow("mingw-includes/mingw-includes.pro", 0);
|
2016-07-08 15:30:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClangStaticAnalyzerUnitTests::addTestRow(const QByteArray &relativeFilePath,
|
|
|
|
|
int expectedDiagCount)
|
|
|
|
|
{
|
|
|
|
|
const QString absoluteFilePath = m_tmpDir->absolutePath(relativeFilePath);
|
|
|
|
|
const QString fileName = QFileInfo(absoluteFilePath).fileName();
|
|
|
|
|
|
|
|
|
|
QTest::newRow(fileName.toUtf8().constData()) << absoluteFilePath << expectedDiagCount;
|
2015-02-04 15:19:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2018-03-14 12:58:12 +01:00
|
|
|
} // namespace ClangTools
|