Files
qt-creator/tests/unit/unittest/readandwritemessageblock-test.cpp
Ivan Donchevskii f130de2400 Clang: use HighlightingMarks for hover with Ctrl highlighting
Make this highlighting work without builtin code model
but based on the HighlightingMarks that we already have
from ClangCodeModel.
Redundant parameters are removed by this change.

Change-Id: I73b5dab46ba59d2f813236831818f0a9bc94c5bc
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
2017-09-22 12:58:46 +00:00

288 lines
9.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 <clangcodemodelclientmessages.h>
#include <clangcodemodelservermessages.h>
#include <diagnosticcontainer.h>
#include <highlightingmarkcontainer.h>
#include <messageenvelop.h>
#include <readmessageblock.h>
#include <writemessageblock.h>
#include <QBuffer>
#include <QString>
#include <QVariant>
#include <vector>
using namespace testing;
namespace CodeModelBackeEndTest {
class ReadAndWriteMessageBlock : public ::testing::Test
{
protected:
ReadAndWriteMessageBlock();
virtual void SetUp() override;
virtual void TearDown() override;
template<class Type>
void CompareMessage(const Type &message);
ClangBackEnd::MessageEnvelop writeCodeCompletedMessage();
void popLastCharacterFromBuffer();
void pushLastCharacterToBuffer();
void readPartialMessage();
protected:
Utf8String filePath{Utf8StringLiteral("foo.cpp")};
ClangBackEnd::FileContainer fileContainer{filePath,
Utf8StringLiteral("projectPartId"),
Utf8StringLiteral("unsaved content"),
true,
1};
QBuffer buffer;
ClangBackEnd::WriteMessageBlock writeMessageBlock;
ClangBackEnd::ReadMessageBlock readMessageBlock;
char lastCharacter = 0;
};
ReadAndWriteMessageBlock::ReadAndWriteMessageBlock()
: writeMessageBlock(&buffer),
readMessageBlock(&buffer)
{
}
void ReadAndWriteMessageBlock::SetUp()
{
buffer.open(QIODevice::ReadWrite);
writeMessageBlock = ClangBackEnd::WriteMessageBlock(&buffer);
readMessageBlock = ClangBackEnd::ReadMessageBlock(&buffer);
}
void ReadAndWriteMessageBlock::TearDown()
{
buffer.close();
}
TEST_F(ReadAndWriteMessageBlock, WriteMessageAndTestSize)
{
writeMessageBlock.write(ClangBackEnd::EndMessage());
ASSERT_EQ(17, buffer.size());
}
TEST_F(ReadAndWriteMessageBlock, WriteSecondMessageAndTestSize)
{
writeMessageBlock.write(ClangBackEnd::EndMessage());
ASSERT_EQ(17, buffer.size());
}
TEST_F(ReadAndWriteMessageBlock, WriteTwoMessagesAndTestCount)
{
writeMessageBlock.write(ClangBackEnd::EndMessage());
writeMessageBlock.write(ClangBackEnd::EndMessage());
ASSERT_EQ(2, writeMessageBlock.counter());
}
TEST_F(ReadAndWriteMessageBlock, ReadThreeMessagesAndTestCount)
{
writeMessageBlock.write(ClangBackEnd::EndMessage());
writeMessageBlock.write(ClangBackEnd::EndMessage());
writeMessageBlock.write(ClangBackEnd::EndMessage());
buffer.seek(0);
ASSERT_EQ(3, readMessageBlock.readAll().count());
}
TEST_F(ReadAndWriteMessageBlock, CompareEndMessage)
{
CompareMessage(ClangBackEnd::EndMessage());
}
TEST_F(ReadAndWriteMessageBlock, CompareAliveMessage)
{
CompareMessage(ClangBackEnd::AliveMessage());
}
TEST_F(ReadAndWriteMessageBlock, CompareRegisterTranslationUnitForEditorMessage)
{
CompareMessage(ClangBackEnd::RegisterTranslationUnitForEditorMessage({fileContainer}, filePath, {filePath}));
}
TEST_F(ReadAndWriteMessageBlock, CompareUpdateTranslationUnitForEditorMessage)
{
CompareMessage(ClangBackEnd::UpdateTranslationUnitsForEditorMessage({fileContainer}));
}
TEST_F(ReadAndWriteMessageBlock, CompareUnregisterFileForEditorMessage)
{
CompareMessage(ClangBackEnd::UnregisterTranslationUnitsForEditorMessage({fileContainer}));
}
TEST_F(ReadAndWriteMessageBlock, CompareCompleteCodeMessage)
{
CompareMessage(ClangBackEnd::CompleteCodeMessage(Utf8StringLiteral("foo.cpp"), 24, 33, Utf8StringLiteral("do what I want")));
}
TEST_F(ReadAndWriteMessageBlock, CompareCodeCompletedMessage)
{
ClangBackEnd::CodeCompletions codeCompletions({Utf8StringLiteral("newFunction()")});
CompareMessage(
ClangBackEnd::CodeCompletedMessage(codeCompletions,
ClangBackEnd::CompletionCorrection::NoCorrection,
1)
);
}
TEST_F(ReadAndWriteMessageBlock, CompareDocumentAnnotationsChangedMessage)
{
ClangBackEnd::DiagnosticContainer diagnostic(Utf8StringLiteral("don't do that"),
Utf8StringLiteral("warning"),
{Utf8StringLiteral("-Wpadded"), Utf8StringLiteral("-Wno-padded")},
ClangBackEnd::DiagnosticSeverity::Warning,
{Utf8StringLiteral("foo.cpp"), 20u, 103u},
{{{Utf8StringLiteral("foo.cpp"), 20u, 103u}, {Utf8StringLiteral("foo.cpp"), 20u, 110u}}},
{},
{});
ClangBackEnd::HighlightingMarkContainer highlightingMark(1, 1, 1, ClangBackEnd::HighlightingType::Keyword);
CompareMessage(ClangBackEnd::DocumentAnnotationsChangedMessage(fileContainer,
{diagnostic},
{},
{highlightingMark},
QVector<ClangBackEnd::SourceRangeContainer>()));
}
TEST_F(ReadAndWriteMessageBlock, CompareRegisterUnsavedFilesForEditorMessage)
{
CompareMessage(ClangBackEnd::RegisterUnsavedFilesForEditorMessage({fileContainer}));
}
TEST_F(ReadAndWriteMessageBlock, CompareUnregisterUnsavedFilesForEditorMessage)
{
CompareMessage(ClangBackEnd::UnregisterUnsavedFilesForEditorMessage({fileContainer}));
}
TEST_F(ReadAndWriteMessageBlock, CompareRequestDocumentAnnotations)
{
CompareMessage(ClangBackEnd::RequestDocumentAnnotationsMessage(fileContainer));
}
TEST_F(ReadAndWriteMessageBlock, CompareRequestReferences)
{
CompareMessage(ClangBackEnd::RequestReferencesMessage{fileContainer, 13, 37});
}
TEST_F(ReadAndWriteMessageBlock, CompareRequestFollowSymbol)
{
QVector<Utf8String> dependentFiles;
dependentFiles.push_back(QString("somefile.cpp"));
dependentFiles.push_back(QString("otherfile.cpp"));
CompareMessage(ClangBackEnd::RequestFollowSymbolMessage{fileContainer, dependentFiles, 13, 37});
}
TEST_F(ReadAndWriteMessageBlock, CompareReferences)
{
const QVector<ClangBackEnd::SourceRangeContainer> references{
true,
{{fileContainer.filePath(), 12, 34},
{fileContainer.filePath(), 56, 78}}
};
CompareMessage(ClangBackEnd::ReferencesMessage(fileContainer, references, true, 1));
}
TEST_F(ReadAndWriteMessageBlock, GetInvalidMessageForAPartialBuffer)
{
writeCodeCompletedMessage();
popLastCharacterFromBuffer();
buffer.seek(0);
readPartialMessage();
}
TEST_F(ReadAndWriteMessageBlock, ReadMessageAfterInterruption)
{
const auto writeMessage = writeCodeCompletedMessage();
popLastCharacterFromBuffer();
buffer.seek(0);
readPartialMessage();
pushLastCharacterToBuffer();
ASSERT_EQ(readMessageBlock.read(), writeMessage);
}
ClangBackEnd::MessageEnvelop ReadAndWriteMessageBlock::writeCodeCompletedMessage()
{
ClangBackEnd::CodeCompletedMessage message(
ClangBackEnd::CodeCompletions({Utf8StringLiteral("newFunction()")}),
ClangBackEnd::CompletionCorrection::NoCorrection,
1);
writeMessageBlock.write(message);
return message;
}
void ReadAndWriteMessageBlock::popLastCharacterFromBuffer()
{
auto &internalBuffer = buffer.buffer();
lastCharacter = internalBuffer.at(internalBuffer.size() - 1);
internalBuffer.chop(1);
}
void ReadAndWriteMessageBlock::pushLastCharacterToBuffer()
{
buffer.buffer().push_back(lastCharacter);
}
void ReadAndWriteMessageBlock::readPartialMessage()
{
const ClangBackEnd::MessageEnvelop readMessage = readMessageBlock.read();
ASSERT_FALSE(readMessage.isValid());
}
template<class Type>
void ReadAndWriteMessageBlock::CompareMessage(const Type &message)
{
const ClangBackEnd::MessageEnvelop writeMessage = message;
writeMessageBlock.write(writeMessage);
buffer.seek(0);
const ClangBackEnd::MessageEnvelop readMessage = readMessageBlock.read();
ASSERT_EQ(writeMessage, readMessage);
}
}