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.
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
2015-06-16 12:38:04 +02:00
|
|
|
#include "mockipclient.h"
|
|
|
|
#include "mockipcserver.h"
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <ipcclientproxy.h>
|
|
|
|
#include <ipcserverproxy.h>
|
|
|
|
#include <projectpartsdonotexistcommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
#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>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <cmbechocommand.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <cmbendcommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <cmbregisterprojectsforcodecompletioncommand.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <cmbregistertranslationunitsforcodecompletioncommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <cmbunregisterprojectsforcodecompletioncommand.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <cmbunregistertranslationunitsforcodecompletioncommand.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <readcommandblock.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <translationunitdoesnotexistcommand.h>
|
|
|
|
#include <writecommandblock.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <QBuffer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <gmock/gmock.h>
|
|
|
|
#include <gmock/gmock-matchers.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <gtest-qt-printing.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
using namespace ClangBackEnd;
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using ::testing::Args;
|
|
|
|
using ::testing::Property;
|
|
|
|
using ::testing::Eq;
|
|
|
|
|
|
|
|
class ClientServerInProcess : public ::testing::Test
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
ClientServerInProcess();
|
|
|
|
|
|
|
|
void SetUp();
|
|
|
|
void TearDown();
|
|
|
|
|
|
|
|
|
|
|
|
void scheduleServerCommands();
|
|
|
|
void scheduleClientCommands();
|
|
|
|
|
|
|
|
QBuffer buffer;
|
|
|
|
MockIpcClient mockIpcClient;
|
|
|
|
MockIpcServer mockIpcServer;
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::IpcServerProxy serverProxy;
|
|
|
|
ClangBackEnd::IpcClientProxy clientProxy;
|
2015-06-01 18:51:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendEndCommand)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockIpcServer, end())
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.end();
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendAliveCommand)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockIpcClient, alive())
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
clientProxy.alive();
|
|
|
|
scheduleClientCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendRegisterTranslationUnitForCodeCompletionCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral(TESTDATA_DIR"/complete_extractor_function.cpp"),
|
2015-06-01 18:51:55 +02:00
|
|
|
Utf8StringLiteral("pathToProjectPart.pro"));
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::RegisterTranslationUnitForCodeCompletionCommand command({fileContainer});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcServer, registerTranslationUnitsForCodeCompletion(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.registerTranslationUnitsForCodeCompletion(command);
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendUnregisterTranslationUnitsForCodeCompletionCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral("foo.cpp"), Utf8StringLiteral("pathToProjectPart.pro"));
|
|
|
|
ClangBackEnd::UnregisterTranslationUnitsForCodeCompletionCommand command({fileContainer});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcServer, unregisterTranslationUnitsForCodeCompletion(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.unregisterTranslationUnitsForCodeCompletion(command);
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendCompleteCodeCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::CompleteCodeCommand command(Utf8StringLiteral("foo.cpp"), 24, 33, Utf8StringLiteral("do what I want"));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcServer, completeCode(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.completeCode(command);
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendCodeCompletedCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
QVector<ClangBackEnd::CodeCompletion> codeCompletions({Utf8StringLiteral("newFunction()")});
|
|
|
|
ClangBackEnd::CodeCompletedCommand command(codeCompletions, 1);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcClient, codeCompleted(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
clientProxy.codeCompleted(command);
|
|
|
|
scheduleClientCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendRegisterProjectPartsForCodeCompletionCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::ProjectPartContainer projectContainer(Utf8StringLiteral(TESTDATA_DIR"/complete.pro"));
|
|
|
|
ClangBackEnd::RegisterProjectPartsForCodeCompletionCommand command({projectContainer});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcServer, registerProjectPartsForCodeCompletion(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.registerProjectPartsForCodeCompletion(command);
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendUnregisterProjectPartsForCodeCompletionCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::UnregisterProjectPartsForCodeCompletionCommand command({Utf8StringLiteral(TESTDATA_DIR"/complete.pro")});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcServer, unregisterProjectPartsForCodeCompletion(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
serverProxy.unregisterProjectPartsForCodeCompletion(command);
|
|
|
|
scheduleServerCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendTranslationUnitDoesNotExistCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral(TESTDATA_DIR"/complete_extractor_function.cpp"),
|
2015-06-01 18:51:55 +02:00
|
|
|
Utf8StringLiteral("pathToProjectPart.pro"));
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::TranslationUnitDoesNotExistCommand command(fileContainer);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcClient, translationUnitDoesNotExist(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
clientProxy.translationUnitDoesNotExist(command);
|
|
|
|
scheduleClientCommands();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(ClientServerInProcess, SendProjectPartDoesNotExistCommand)
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::ProjectPartsDoNotExistCommand command({Utf8StringLiteral("pathToProjectPart.pro")});
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockIpcClient, projectPartsDoNotExist(command))
|
|
|
|
.Times(1);
|
|
|
|
|
|
|
|
clientProxy.projectPartsDoNotExist(command);
|
|
|
|
scheduleClientCommands();
|
|
|
|
}
|
|
|
|
ClientServerInProcess::ClientServerInProcess()
|
|
|
|
: serverProxy(&mockIpcClient, &buffer),
|
|
|
|
clientProxy(&mockIpcServer, &buffer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerInProcess::SetUp()
|
|
|
|
{
|
|
|
|
buffer.open(QIODevice::ReadWrite);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerInProcess::TearDown()
|
|
|
|
{
|
|
|
|
buffer.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerInProcess::scheduleServerCommands()
|
|
|
|
{
|
|
|
|
buffer.seek(0);
|
|
|
|
clientProxy.readCommands();
|
|
|
|
buffer.buffer().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerInProcess::scheduleClientCommands()
|
|
|
|
{
|
|
|
|
buffer.seek(0);
|
|
|
|
serverProxy.readCommands();
|
|
|
|
buffer.buffer().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|