2015-06-01 18:51:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/licensing. 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, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <cmbalivecommand.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <cmbcodecompletedcommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <cmbcommands.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <cmbcompletecodecommand.h>
|
|
|
|
|
#include <cmbendcommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <cmbregistertranslationunitsforcodecompletioncommand.h>
|
|
|
|
|
#include <cmbunregistertranslationunitsforcodecompletioncommand.h>
|
|
|
|
|
#include <readcommandblock.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <writecommandblock.h>
|
|
|
|
|
|
|
|
|
|
#include <QBuffer>
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
#include <vector>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <gmock/gmock.h>
|
|
|
|
|
#include <gmock/gmock-matchers.h>
|
|
|
|
|
#include <gtest/gtest.h>
|
2015-07-01 14:50:35 +02:00
|
|
|
#include "gtest-qt-printing.h"
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
using namespace testing;
|
|
|
|
|
namespace CodeModelBackeEndTest {
|
|
|
|
|
|
|
|
|
|
class ReadAndWriteCommandBlockTest : public ::testing::Test
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
ReadAndWriteCommandBlockTest();
|
|
|
|
|
|
|
|
|
|
virtual void SetUp() override;
|
|
|
|
|
virtual void TearDown() override;
|
|
|
|
|
|
|
|
|
|
template<class Type>
|
|
|
|
|
void CompareCommand(const Type &command);
|
|
|
|
|
|
2015-06-15 13:01:28 +02:00
|
|
|
QVariant writeCodeCompletedCommand();
|
|
|
|
|
void popLastCharacterFromBuffer();
|
|
|
|
|
void pushLastCharacterToBuffer();
|
|
|
|
|
void readPartialCommand();
|
|
|
|
|
|
|
|
|
|
protected:
|
2015-06-01 18:51:55 +02:00
|
|
|
QBuffer buffer;
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::WriteCommandBlock writeCommandBlock;
|
|
|
|
|
ClangBackEnd::ReadCommandBlock readCommandBlock;
|
2015-06-15 13:01:28 +02:00
|
|
|
char lastCharacter = 0;
|
2015-06-01 18:51:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ReadAndWriteCommandBlockTest::ReadAndWriteCommandBlockTest()
|
|
|
|
|
: writeCommandBlock(&buffer),
|
|
|
|
|
readCommandBlock(&buffer)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadAndWriteCommandBlockTest::SetUp()
|
|
|
|
|
{
|
|
|
|
|
buffer.open(QIODevice::ReadWrite);
|
2015-06-16 11:56:00 +02:00
|
|
|
writeCommandBlock = ClangBackEnd::WriteCommandBlock(&buffer);
|
|
|
|
|
readCommandBlock = ClangBackEnd::ReadCommandBlock(&buffer);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadAndWriteCommandBlockTest::TearDown()
|
|
|
|
|
{
|
|
|
|
|
buffer.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, WriteCommandAndTestSize)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
ASSERT_EQ(46, buffer.size());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, WriteSecondCommandAndTestSize)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
ASSERT_EQ(46, buffer.size());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, WriteTwoCommandsAndTestCount)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
|
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
ASSERT_EQ(2, writeCommandBlock.counter());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, ReadThreeCommandsAndTestCount)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
|
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
|
|
|
|
writeCommandBlock.write(QVariant::fromValue(ClangBackEnd::EndCommand()));
|
2015-06-01 18:51:55 +02:00
|
|
|
buffer.seek(0);
|
|
|
|
|
|
|
|
|
|
ASSERT_EQ(3, readCommandBlock.readAll().count());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareEndCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::EndCommand());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareAliveCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::AliveCommand());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareRegisterTranslationUnitForCodeCompletionCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral("foo.cpp"), Utf8StringLiteral("pathToProject.pro"));
|
|
|
|
|
QVector<ClangBackEnd::FileContainer> fileContainers({fileContainer});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::RegisterTranslationUnitForCodeCompletionCommand(fileContainers));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareUnregisterFileForCodeCompletionCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral("foo.cpp"), Utf8StringLiteral("pathToProject.pro"));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::UnregisterTranslationUnitsForCodeCompletionCommand({fileContainer}));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareCompleteCodeCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::CompleteCodeCommand(Utf8StringLiteral("foo.cpp"), 24, 33, Utf8StringLiteral("do what I want")));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, CompareCodeCompletedCommand)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
QVector<ClangBackEnd::CodeCompletion> codeCompletions({Utf8StringLiteral("newFunction()")});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
CompareCommand(ClangBackEnd::CodeCompletedCommand(codeCompletions, 1));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-15 13:01:28 +02:00
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, GetInvalidCommandForAPartialBuffer)
|
|
|
|
|
{
|
|
|
|
|
writeCodeCompletedCommand();
|
|
|
|
|
popLastCharacterFromBuffer();
|
|
|
|
|
buffer.seek(0);
|
|
|
|
|
|
|
|
|
|
readPartialCommand();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(ReadAndWriteCommandBlockTest, ReadCommandAfterInterruption)
|
|
|
|
|
{
|
|
|
|
|
const QVariant writeCommand = writeCodeCompletedCommand();
|
|
|
|
|
popLastCharacterFromBuffer();
|
|
|
|
|
buffer.seek(0);
|
|
|
|
|
readPartialCommand();
|
|
|
|
|
pushLastCharacterToBuffer();
|
|
|
|
|
|
|
|
|
|
ASSERT_EQ(readCommandBlock.read(), writeCommand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant ReadAndWriteCommandBlockTest::writeCodeCompletedCommand()
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::CodeCompletedCommand command(QVector<ClangBackEnd::CodeCompletion>({Utf8StringLiteral("newFunction()")}), 1);
|
2015-06-15 13:01:28 +02:00
|
|
|
const QVariant writeCommand = QVariant::fromValue(command);
|
|
|
|
|
writeCommandBlock.write(writeCommand);
|
|
|
|
|
|
|
|
|
|
return writeCommand;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadAndWriteCommandBlockTest::popLastCharacterFromBuffer()
|
|
|
|
|
{
|
|
|
|
|
auto &internalBuffer = buffer.buffer();
|
|
|
|
|
lastCharacter = internalBuffer.at(internalBuffer.size() - 1);
|
|
|
|
|
internalBuffer.chop(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadAndWriteCommandBlockTest::pushLastCharacterToBuffer()
|
|
|
|
|
{
|
|
|
|
|
buffer.buffer().push_back(lastCharacter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadAndWriteCommandBlockTest::readPartialCommand()
|
|
|
|
|
{
|
|
|
|
|
QVariant readCommand = readCommandBlock.read();
|
|
|
|
|
|
|
|
|
|
ASSERT_FALSE(readCommand.isValid());
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
template<class Type>
|
|
|
|
|
void ReadAndWriteCommandBlockTest::CompareCommand(const Type &command)
|
|
|
|
|
{
|
|
|
|
|
const QVariant writeCommand = QVariant::fromValue(command);
|
|
|
|
|
writeCommandBlock.write(writeCommand);
|
|
|
|
|
buffer.seek(0);
|
|
|
|
|
|
|
|
|
|
const QVariant readCommand = readCommandBlock.read();
|
|
|
|
|
|
|
|
|
|
ASSERT_EQ(writeCommand, readCommand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|