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"
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
#include <cmbalivemessage.h>
|
|
|
|
#include <cmbcodecompletedmessage.h>
|
|
|
|
#include <cmbmessages.h>
|
|
|
|
#include <cmbcompletecodemessage.h>
|
|
|
|
#include <cmbechomessage.h>
|
|
|
|
#include <cmbendmessage.h>
|
|
|
|
#include <cmbregisterprojectsforcodecompletionmessage.h>
|
|
|
|
#include <cmbregistertranslationunitsforcodecompletionmessage.h>
|
|
|
|
#include <cmbunregisterprojectsforcodecompletionmessage.h>
|
|
|
|
#include <cmbunregistertranslationunitsforcodecompletionmessage.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <connectionclient.h>
|
2015-08-19 12:36:43 +02:00
|
|
|
#include <projectpartsdonotexistmessage.h>
|
|
|
|
#include <readmessageblock.h>
|
|
|
|
#include <translationunitdoesnotexistmessage.h>
|
|
|
|
#include <writemessageblock.h>
|
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-16 12:38:04 +02:00
|
|
|
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QSignalSpy>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
#include <vector>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#define QTC_HOST_EXE_SUFFIX L".exe"
|
|
|
|
#else
|
|
|
|
#define QTC_HOST_EXE_SUFFIX ""
|
|
|
|
#endif
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
using namespace ClangBackEnd;
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
using ::testing::Eq;
|
|
|
|
|
|
|
|
class ClientServerOutsideProcess : public ::testing::Test
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
void SetUp();
|
|
|
|
void TearDown();
|
|
|
|
|
|
|
|
static void SetUpTestCase();
|
|
|
|
static void TearDownTestCase();
|
|
|
|
|
|
|
|
static MockIpcClient mockIpcClient;
|
2015-06-16 11:56:00 +02:00
|
|
|
static ClangBackEnd::ConnectionClient client;
|
2015-06-01 18:51:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
MockIpcClient ClientServerOutsideProcess::mockIpcClient;
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::ConnectionClient ClientServerOutsideProcess::client(&ClientServerOutsideProcess::mockIpcClient);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
TEST_F(ClientServerOutsideProcess, RestartProcess)
|
|
|
|
{
|
|
|
|
client.restartProcess();
|
|
|
|
|
|
|
|
ASSERT_TRUE(client.isProcessIsRunning());
|
|
|
|
ASSERT_TRUE(client.isConnected());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerOutsideProcess, RestartProcessAfterAliveTimeout)
|
|
|
|
{
|
|
|
|
QSignalSpy clientSpy(&client, SIGNAL(processRestarted()));
|
|
|
|
|
|
|
|
client.setProcessAliveTimerInterval(1);
|
|
|
|
|
|
|
|
ASSERT_TRUE(clientSpy.wait(100000));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientServerOutsideProcess, RestartProcessAfterTermination)
|
|
|
|
{
|
|
|
|
QSignalSpy clientSpy(&client, SIGNAL(processRestarted()));
|
|
|
|
|
|
|
|
client.processForTestOnly()->kill();
|
|
|
|
|
|
|
|
ASSERT_TRUE(clientSpy.wait(100000));
|
|
|
|
}
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
TEST_F(ClientServerOutsideProcess, SendRegisterTranslationUnitForCodeCompletionMessage)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::FileContainer fileContainer(Utf8StringLiteral("foo"), Utf8StringLiteral("pathToProjectPart.pro"));
|
2015-08-19 12:36:43 +02:00
|
|
|
ClangBackEnd::RegisterTranslationUnitForCodeCompletionMessage registerTranslationUnitForCodeCompletionMessage({fileContainer});
|
|
|
|
EchoMessage echoMessage(QVariant::fromValue(registerTranslationUnitForCodeCompletionMessage));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
EXPECT_CALL(mockIpcClient, echo(echoMessage))
|
2015-06-01 18:51:55 +02:00
|
|
|
.Times(1);
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
client.serverProxy().registerTranslationUnitsForCodeCompletion(registerTranslationUnitForCodeCompletionMessage);
|
2015-06-01 18:51:55 +02:00
|
|
|
ASSERT_TRUE(client.waitForEcho());
|
|
|
|
}
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
TEST_F(ClientServerOutsideProcess, SendUnregisterTranslationUnitsForCodeCompletionMessage)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
|
|
|
FileContainer fileContainer(Utf8StringLiteral("foo.cpp"), Utf8StringLiteral("bar.pro"));
|
2015-08-19 12:36:43 +02:00
|
|
|
ClangBackEnd::UnregisterTranslationUnitsForCodeCompletionMessage unregisterTranslationUnitsForCodeCompletionMessage ({fileContainer});
|
|
|
|
EchoMessage echoMessage(QVariant::fromValue(unregisterTranslationUnitsForCodeCompletionMessage));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
EXPECT_CALL(mockIpcClient, echo(echoMessage))
|
2015-06-01 18:51:55 +02:00
|
|
|
.Times(1);
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
client.serverProxy().unregisterTranslationUnitsForCodeCompletion(unregisterTranslationUnitsForCodeCompletionMessage);
|
2015-06-01 18:51:55 +02:00
|
|
|
ASSERT_TRUE(client.waitForEcho());
|
|
|
|
}
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
TEST_F(ClientServerOutsideProcess, SendCompleteCodeMessage)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
CompleteCodeMessage codeCompleteMessage(Utf8StringLiteral("foo.cpp"), 24, 33, Utf8StringLiteral("do what I want"));
|
|
|
|
EchoMessage echoMessage(QVariant::fromValue(codeCompleteMessage));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
EXPECT_CALL(mockIpcClient, echo(echoMessage))
|
2015-06-01 18:51:55 +02:00
|
|
|
.Times(1);
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
client.serverProxy().completeCode(codeCompleteMessage);
|
2015-06-01 18:51:55 +02:00
|
|
|
ASSERT_TRUE(client.waitForEcho());
|
|
|
|
}
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
TEST_F(ClientServerOutsideProcess, SendRegisterProjectPartsForCodeCompletionMessage)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::ProjectPartContainer projectContainer(Utf8StringLiteral(TESTDATA_DIR"/complete.pro"));
|
2015-08-19 12:36:43 +02:00
|
|
|
ClangBackEnd::RegisterProjectPartsForCodeCompletionMessage registerProjectPartsForCodeCompletionMessage({projectContainer});
|
|
|
|
EchoMessage echoMessage(QVariant::fromValue(registerProjectPartsForCodeCompletionMessage));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
EXPECT_CALL(mockIpcClient, echo(echoMessage))
|
2015-06-01 18:51:55 +02:00
|
|
|
.Times(1);
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
client.serverProxy().registerProjectPartsForCodeCompletion(registerProjectPartsForCodeCompletionMessage);
|
2015-06-01 18:51:55 +02:00
|
|
|
ASSERT_TRUE(client.waitForEcho());
|
|
|
|
}
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
TEST_F(ClientServerOutsideProcess, SendUnregisterProjectPartsForCodeCompletionMessage)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
ClangBackEnd::UnregisterProjectPartsForCodeCompletionMessage unregisterProjectPartsForCodeCompletionMessage({Utf8StringLiteral(TESTDATA_DIR"/complete.pro")});
|
|
|
|
EchoMessage echoMessage(QVariant::fromValue(unregisterProjectPartsForCodeCompletionMessage));
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
EXPECT_CALL(mockIpcClient, echo(echoMessage))
|
2015-06-01 18:51:55 +02:00
|
|
|
.Times(1);
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
client.serverProxy().unregisterProjectPartsForCodeCompletion(unregisterProjectPartsForCodeCompletionMessage);
|
2015-06-01 18:51:55 +02:00
|
|
|
ASSERT_TRUE(client.waitForEcho());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerOutsideProcess::SetUpTestCase()
|
|
|
|
{
|
|
|
|
client.setProcessPath(QStringLiteral(ECHOSERVER QTC_HOST_EXE_SUFFIX));
|
|
|
|
|
|
|
|
ASSERT_TRUE(client.connectToServer());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerOutsideProcess::TearDownTestCase()
|
|
|
|
{
|
|
|
|
client.finishProcess();
|
|
|
|
}
|
|
|
|
void ClientServerOutsideProcess::SetUp()
|
|
|
|
{
|
|
|
|
client.setProcessAliveTimerInterval(1000000);
|
|
|
|
|
|
|
|
ASSERT_TRUE(client.isConnected());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientServerOutsideProcess::TearDown()
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(client.isProcessIsRunning());
|
|
|
|
ASSERT_TRUE(client.isConnected());
|
|
|
|
}
|