2015-11-18 17:07:44 +01:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-11-18 17:07:44 +01:00
|
|
|
**
|
|
|
|
** 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
|
2016-01-15 14:55:33 +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-11-18 17:07:44 +01:00
|
|
|
**
|
2016-01-15 14:55:33 +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-11-18 17:07:44 +01:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
#include "googletest.h"
|
2017-05-23 09:49:22 +02:00
|
|
|
#include "testenvironment.h"
|
2016-09-15 17:41:41 +02:00
|
|
|
|
2015-11-18 17:07:44 +01:00
|
|
|
#include <chunksreportedmonitor.h>
|
2016-09-07 10:42:12 +02:00
|
|
|
#include <clangdocument.h>
|
|
|
|
#include <clangdocuments.h>
|
2016-05-31 16:07:09 +02:00
|
|
|
#include <cursor.h>
|
2015-11-18 17:07:44 +01:00
|
|
|
#include <highlightingmarkcontainer.h>
|
2016-05-31 16:07:09 +02:00
|
|
|
#include <highlightingmarks.h>
|
2015-11-30 09:43:50 +01:00
|
|
|
#include <clanghighlightingmarksreporter.h>
|
2015-11-18 17:07:44 +01:00
|
|
|
#include <projectpart.h>
|
|
|
|
#include <projects.h>
|
|
|
|
#include <unsavedfiles.h>
|
|
|
|
|
|
|
|
using ClangBackEnd::Cursor;
|
2016-02-29 13:09:39 +01:00
|
|
|
using ClangBackEnd::HighlightingMarks;
|
2015-11-18 17:07:44 +01:00
|
|
|
using ClangBackEnd::HighlightingMarkContainer;
|
|
|
|
using ClangBackEnd::HighlightingType;
|
2016-09-07 10:42:12 +02:00
|
|
|
using ClangBackEnd::Document;
|
|
|
|
using ClangBackEnd::Documents;
|
2015-11-18 17:07:44 +01:00
|
|
|
using ClangBackEnd::UnsavedFiles;
|
|
|
|
using ClangBackEnd::ProjectPart;
|
|
|
|
using ClangBackEnd::ProjectParts;
|
|
|
|
using ClangBackEnd::ChunksReportedMonitor;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct Data {
|
|
|
|
ProjectParts projects;
|
|
|
|
UnsavedFiles unsavedFiles;
|
2016-09-07 10:42:12 +02:00
|
|
|
Documents documents{projects, unsavedFiles};
|
|
|
|
Document document{Utf8StringLiteral(TESTDATA_DIR"/highlightingmarks.cpp"),
|
|
|
|
ProjectPart(Utf8StringLiteral("projectPartId"),
|
2017-05-23 09:49:22 +02:00
|
|
|
TestEnvironment::addPlatformArguments({Utf8StringLiteral("-std=c++14")})),
|
2016-09-07 10:42:12 +02:00
|
|
|
{},
|
|
|
|
documents};
|
2015-11-18 17:07:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class HighlightingMarksReporter : public ::testing::Test
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void SetUpTestCase();
|
|
|
|
static void TearDownTestCase();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static Data *d;
|
|
|
|
};
|
|
|
|
|
|
|
|
QVector<HighlightingMarkContainer> noHighlightingMarks()
|
|
|
|
{
|
|
|
|
return QVector<HighlightingMarkContainer>();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<HighlightingMarkContainer> generateHighlightingMarks(uint count)
|
|
|
|
{
|
|
|
|
auto container = QVector<HighlightingMarkContainer>();
|
|
|
|
|
|
|
|
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<HighlightingMarkContainer> 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
|