Files
qt-creator/tests/unit/unittest/diagnosticset-test.cpp
Marco Bubke 2d520140d0 Clang: Fix system pre include search path
We now get the resource path from creator. The -fPIC case is working now
too.

Change-Id: Id191e89e6d46706748d50440038a06a349972cc9
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
2019-04-29 12:52:05 +00:00

200 lines
6.1 KiB
C++

/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** 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.
**
** 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.
**
****************************************************************************/
#include "diagnosticcontainer-matcher.h"
#include "googletest.h"
#include "unittest-utility-functions.h"
#include <clangsupport_global.h>
#include <clangdocument.h>
#include <diagnosticcontainer.h>
#include <diagnosticset.h>
#include <fixitcontainer.h>
#include <sourcelocation.h>
#include <sourcelocationcontainer.h>
#include <sourcerangecontainer.h>
#include <clangtranslationunit.h>
#include <clangdocuments.h>
#include <unsavedfiles.h>
#include <clang-c/Index.h>
using ::testing::Contains;
using ::testing::Not;
using ::testing::PrintToString;
using ::ClangBackEnd::Diagnostic;
using ::ClangBackEnd::DiagnosticSet;
using ::ClangBackEnd::DiagnosticContainer;
using ::ClangBackEnd::FixItContainer;
using ::ClangBackEnd::SourceLocation;
using ::ClangBackEnd::SourceLocationContainer;
using ::ClangBackEnd::Document;
using ::ClangBackEnd::UnsavedFiles;
namespace {
const Utf8String headerFilePath = Utf8StringLiteral(TESTDATA_DIR"/diagnostic_diagnosticset_header.cpp");
class DiagnosticSet : public ::testing::Test
{
protected:
ClangBackEnd::UnsavedFiles unsavedFiles;
ClangBackEnd::Documents documents{unsavedFiles};
Utf8StringVector compilationArguments{
UnitTest::addPlatformArguments({Utf8StringLiteral("-pedantic")})};
Document document{Utf8StringLiteral(TESTDATA_DIR "/diagnostic_diagnosticset.cpp"),
compilationArguments,
{},
documents};
Document documentMainFile{Utf8StringLiteral(TESTDATA_DIR"/diagnostic_diagnosticset_mainfile.cpp"),
compilationArguments,
{},
documents};
protected:
enum ChildMode { WithChild, WithoutChild };
DiagnosticContainer expectedDiagnostic(ChildMode childMode) const;
};
using DiagnosticSetSlowTest = DiagnosticSet;
TEST_F(DiagnosticSetSlowTest, SetHasContent)
{
document.parse();
const auto set = document.translationUnit().diagnostics();
ASSERT_THAT(set.size(), 1);
}
TEST_F(DiagnosticSetSlowTest, MoveConstructor)
{
document.parse();
auto set = document.translationUnit().diagnostics();
const auto set2 = std::move(set);
ASSERT_TRUE(set.isNull());
ASSERT_FALSE(set2.isNull());
}
TEST_F(DiagnosticSetSlowTest, MoveAssigment)
{
document.parse();
auto set = document.translationUnit().diagnostics();
auto set2 = std::move(set);
set = std::move(set2);
ASSERT_TRUE(set2.isNull());
ASSERT_FALSE(set.isNull());
}
TEST_F(DiagnosticSetSlowTest, MoveSelfAssigment)
{
document.parse();
auto set = document.translationUnit().diagnostics();
set = std::move(set);
ASSERT_FALSE(set.isNull());
}
TEST_F(DiagnosticSetSlowTest, FirstElementEqualBegin)
{
document.parse();
auto set = document.translationUnit().diagnostics();
ASSERT_TRUE(set.front() == *set.begin());
}
TEST_F(DiagnosticSetSlowTest, BeginIsUnequalEnd)
{
document.parse();
auto set = document.translationUnit().diagnostics();
ASSERT_TRUE(set.begin() != set.end());
}
TEST_F(DiagnosticSetSlowTest, BeginPlusOneIsEqualEnd)
{
document.parse();
auto set = document.translationUnit().diagnostics();
ASSERT_TRUE(++set.begin() == set.end());
}
TEST_F(DiagnosticSetSlowTest, ToDiagnosticContainersLetThroughByDefault)
{
const auto diagnosticContainerWithoutChild = expectedDiagnostic(WithChild);
documentMainFile.parse();
const auto diagnostics = documentMainFile.translationUnit().diagnostics().toDiagnosticContainers();
ASSERT_THAT(diagnostics, Contains(IsDiagnosticContainer(diagnosticContainerWithoutChild)));
}
TEST_F(DiagnosticSetSlowTest, ToDiagnosticContainersFiltersOutTopLevelItem)
{
documentMainFile.parse();
const ::DiagnosticSet diagnosticSetWithChildren{documentMainFile.translationUnit().diagnostics()};
const auto acceptNoDiagnostics = [](const Diagnostic &) { return false; };
const auto diagnostics = diagnosticSetWithChildren.toDiagnosticContainers(acceptNoDiagnostics);
ASSERT_TRUE(diagnostics.isEmpty());
}
DiagnosticContainer DiagnosticSet::expectedDiagnostic(DiagnosticSet::ChildMode childMode) const
{
QVector<DiagnosticContainer> children;
if (childMode == WithChild) {
const auto child = DiagnosticContainer(
Utf8StringLiteral("note: previous definition is here"),
Utf8StringLiteral("Semantic Issue"),
{Utf8String(), Utf8String()},
ClangBackEnd::DiagnosticSeverity::Note,
SourceLocationContainer(headerFilePath, 1, 6),
{},
{},
{}
);
children.append(child);
}
return DiagnosticContainer(
Utf8StringLiteral("error: redefinition of 'f'"),
Utf8StringLiteral("Semantic Issue"),
{Utf8String(), Utf8String()},
ClangBackEnd::DiagnosticSeverity::Error,
SourceLocationContainer(documentMainFile.filePath(), 3, 6),
{},
{},
children
);
}
}