/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://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 http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include "gtest-qt-printing.h" using ClangBackEnd::Cursor; using ClangBackEnd::HighlightingInformations; using ClangBackEnd::HighlightingMarkContainer; using ClangBackEnd::HighlightingType; using ClangBackEnd::TranslationUnit; using ClangBackEnd::UnsavedFiles; using ClangBackEnd::ProjectPart; using ClangBackEnd::ProjectParts; using ClangBackEnd::TranslationUnits; using ClangBackEnd::ChunksReportedMonitor; namespace { struct Data { ProjectParts projects; UnsavedFiles unsavedFiles; TranslationUnits translationUnits{projects, unsavedFiles}; TranslationUnit translationUnit{Utf8StringLiteral(TESTDATA_DIR"/highlightinginformations.cpp"), ProjectPart(Utf8StringLiteral("projectPartId"), {Utf8StringLiteral("-std=c++14")}), {}, translationUnits}; }; class HighlightingMarksReporter : public ::testing::Test { public: static void SetUpTestCase(); static void TearDownTestCase(); protected: static Data *d; }; QVector noHighlightingMarks() { return QVector(); } QVector generateHighlightingMarks(uint count) { auto container = QVector(); for (uint i = 0; i < count; ++i) { const uint line = i + 1; container.append(HighlightingMarkContainer(line, 1, 1, HighlightingType::Type)); } return container; } TEST_F(HighlightingMarksReporter, StartAndFinish) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(noHighlightingMarks()); auto future = reporter->start(); future.waitForFinished(); ASSERT_THAT(future.isFinished(), true); } TEST_F(HighlightingMarksReporter, ReportNothingIfNothingToReport) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(generateHighlightingMarks(0)); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 0L); } TEST_F(HighlightingMarksReporter, ReportSingleResultAsOneChunk) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(generateHighlightingMarks(1)); reporter->setChunkSize(1); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 1L); } TEST_F(HighlightingMarksReporter, ReportRestIfChunkSizeNotReached) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(generateHighlightingMarks(1)); const int notReachedChunkSize = 100; reporter->setChunkSize(notReachedChunkSize); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 1L); } TEST_F(HighlightingMarksReporter, ReportChunksWithoutRest) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(generateHighlightingMarks(4)); reporter->setChunkSize(1); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 2L); } TEST_F(HighlightingMarksReporter, ReportSingleChunkAndRest) { auto reporter = new ClangCodeModel::HighlightingMarksReporter(generateHighlightingMarks(5)); reporter->setChunkSize(2); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 2L); } TEST_F(HighlightingMarksReporter, ReportCompleteLines) { QVector highlightingMarks { HighlightingMarkContainer(1, 1, 1, HighlightingType::Type), HighlightingMarkContainer(1, 2, 1, HighlightingType::Type), HighlightingMarkContainer(2, 1, 1, HighlightingType::Type), }; auto reporter = new ClangCodeModel::HighlightingMarksReporter(highlightingMarks); reporter->setChunkSize(1); auto future = reporter->start(); ChunksReportedMonitor monitor(future); ASSERT_THAT(monitor.resultsReadyCounter(), 2L); } Data *HighlightingMarksReporter::d; void HighlightingMarksReporter::SetUpTestCase() { d = new Data; } void HighlightingMarksReporter::TearDownTestCase() { delete d; d = nullptr; } } // anonymous