forked from qt-creator/qt-creator
		
	Fix templates highlight and completion on Windows Add UI to turn on/off delayed parsing (off by default) Task-number: QTCREATORBUG-17222 Change-Id: I0cd5e0bcfff2789cd938e4096829f777ff15957a Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
		
			
				
	
	
		
			204 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			204 lines
		
	
	
		
			6.2 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 "googletest.h"
 | |
| #include "diagnosticcontainer-matcher.h"
 | |
| #include "testenvironment.h"
 | |
| 
 | |
| #include <clangbackendipc_global.h>
 | |
| #include <clangdocument.h>
 | |
| #include <diagnosticcontainer.h>
 | |
| #include <diagnosticset.h>
 | |
| #include <fixitcontainer.h>
 | |
| #include <projectpart.h>
 | |
| #include <projects.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::ProjectPart;
 | |
| 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:
 | |
|     ProjectPart projectPart{Utf8StringLiteral("projectPartId"),
 | |
|                 TestEnvironment::addPlatformArguments({Utf8StringLiteral("-pedantic")})};
 | |
|     ClangBackEnd::ProjectParts projects;
 | |
|     ClangBackEnd::UnsavedFiles unsavedFiles;
 | |
|     ClangBackEnd::Documents documents{projects, unsavedFiles};
 | |
|     Document document{Utf8StringLiteral(TESTDATA_DIR"/diagnostic_diagnosticset.cpp"),
 | |
|                       projectPart,
 | |
|                       Utf8StringVector(),
 | |
|                       documents};
 | |
|     Document documentMainFile{Utf8StringLiteral(TESTDATA_DIR"/diagnostic_diagnosticset_mainfile.cpp"),
 | |
|                               projectPart,
 | |
|                               Utf8StringVector(),
 | |
|                               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
 | |
|     );
 | |
| }
 | |
| 
 | |
| }
 |