forked from qt-creator/qt-creator
Before adding additional members into that class it makes sense to rename it to better represent its content. Other classes serving the same purpose are also renamed to keep the names consistent. Change-Id: I3c8517e42aae29779d71ec9c85b713cff581a473 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
186 lines
5.3 KiB
C++
186 lines
5.3 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 "testenvironment.h"
|
|
|
|
#include <chunksreportedmonitor.h>
|
|
#include <clangdocument.h>
|
|
#include <clangdocuments.h>
|
|
#include <cursor.h>
|
|
#include <tokeninfocontainer.h>
|
|
#include <tokeninfos.h>
|
|
#include <clangtokeninfosreporter.h>
|
|
#include <projectpart.h>
|
|
#include <projects.h>
|
|
#include <unsavedfiles.h>
|
|
|
|
using ClangBackEnd::Cursor;
|
|
using ClangBackEnd::TokenInfos;
|
|
using ClangBackEnd::TokenInfoContainer;
|
|
using ClangBackEnd::HighlightingType;
|
|
using ClangBackEnd::Document;
|
|
using ClangBackEnd::Documents;
|
|
using ClangBackEnd::UnsavedFiles;
|
|
using ClangBackEnd::ProjectPart;
|
|
using ClangBackEnd::ProjectParts;
|
|
using ClangBackEnd::ChunksReportedMonitor;
|
|
|
|
namespace {
|
|
|
|
struct Data {
|
|
ProjectParts projects;
|
|
UnsavedFiles unsavedFiles;
|
|
Documents documents{projects, unsavedFiles};
|
|
Document document{Utf8StringLiteral(TESTDATA_DIR"/highlightingmarks.cpp"),
|
|
ProjectPart(Utf8StringLiteral("projectPartId"),
|
|
TestEnvironment::addPlatformArguments({Utf8StringLiteral("-std=c++14")})),
|
|
{},
|
|
documents};
|
|
};
|
|
|
|
class TokenInfosReporter : public ::testing::Test
|
|
{
|
|
public:
|
|
static void SetUpTestCase();
|
|
static void TearDownTestCase();
|
|
|
|
protected:
|
|
static Data *d;
|
|
};
|
|
|
|
QVector<TokenInfoContainer> noTokenInfos()
|
|
{
|
|
return QVector<TokenInfoContainer>();
|
|
}
|
|
|
|
QVector<TokenInfoContainer> generateTokenInfos(uint count)
|
|
{
|
|
auto container = QVector<TokenInfoContainer>();
|
|
|
|
for (uint i = 0; i < count; ++i) {
|
|
const uint line = i + 1;
|
|
container.append(TokenInfoContainer(line, 1, 1, HighlightingType::Type));
|
|
}
|
|
|
|
return container;
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, StartAndFinish)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(noTokenInfos());
|
|
|
|
auto future = reporter->start();
|
|
|
|
future.waitForFinished();
|
|
ASSERT_THAT(future.isFinished(), true);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportNothingIfNothingToReport)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(generateTokenInfos(0));
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 0L);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportSingleResultAsOneChunk)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(generateTokenInfos(1));
|
|
reporter->setChunkSize(1);
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 1L);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportRestIfChunkSizeNotReached)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(generateTokenInfos(1));
|
|
const int notReachedChunkSize = 100;
|
|
reporter->setChunkSize(notReachedChunkSize);
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 1L);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportChunksWithoutRest)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(generateTokenInfos(4));
|
|
reporter->setChunkSize(1);
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 2L);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportSingleChunkAndRest)
|
|
{
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(generateTokenInfos(5));
|
|
reporter->setChunkSize(2);
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 2L);
|
|
}
|
|
|
|
TEST_F(TokenInfosReporter, ReportCompleteLines)
|
|
{
|
|
QVector<TokenInfoContainer> tokenInfos {
|
|
TokenInfoContainer(1, 1, 1, HighlightingType::Type),
|
|
TokenInfoContainer(1, 2, 1, HighlightingType::Type),
|
|
TokenInfoContainer(2, 1, 1, HighlightingType::Type),
|
|
};
|
|
auto reporter = new ClangCodeModel::TokenInfosReporter(tokenInfos);
|
|
reporter->setChunkSize(1);
|
|
|
|
auto future = reporter->start();
|
|
|
|
ChunksReportedMonitor monitor(future);
|
|
ASSERT_THAT(monitor.resultsReadyCounter(), 2L);
|
|
}
|
|
|
|
Data *TokenInfosReporter::d;
|
|
|
|
void TokenInfosReporter::SetUpTestCase()
|
|
{
|
|
d = new Data;
|
|
}
|
|
|
|
void TokenInfosReporter::TearDownTestCase()
|
|
{
|
|
delete d;
|
|
d = nullptr;
|
|
}
|
|
|
|
} // anonymous
|