mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
newkey: server/externalConfig <= General/useExternalConfig remove useExternalConfig from appConfig
85 lines
2.8 KiB
C++
85 lines
2.8 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2024 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "gui/config/ServerConfigDialogState.h"
|
|
#include "gui/core/ServerConnection.h"
|
|
|
|
#include "shared/gui/mocks/AppConfigMock.h"
|
|
#include "shared/gui/mocks/ServerConfigMock.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
using testing::_;
|
|
using testing::NiceMock;
|
|
using namespace deskflow::gui;
|
|
|
|
class QWidget;
|
|
|
|
namespace {
|
|
|
|
struct DepsMock : public ServerConnection::Deps
|
|
{
|
|
MOCK_METHOD(
|
|
messages::NewClientPromptResult, showNewClientPrompt,
|
|
(QWidget * parent, const QString &clientName, bool previousyAccepted), (const, override)
|
|
);
|
|
};
|
|
|
|
} // namespace
|
|
|
|
class ServerConnectionTests : public testing::Test
|
|
{
|
|
public:
|
|
std::shared_ptr<DepsMock> m_pDeps = std::make_shared<NiceMock<DepsMock>>();
|
|
NiceMock<AppConfigMock> m_appConfig;
|
|
NiceMock<ServerConfigMock> m_serverConfig;
|
|
config::ServerConfigDialogState m_serverConfigDialogState;
|
|
};
|
|
|
|
TEST_F(ServerConnectionTests, handleLogLine_newClient_shouldShowPrompt)
|
|
{
|
|
ServerConnection serverConnection(nullptr, m_appConfig, m_serverConfig, m_serverConfigDialogState, m_pDeps);
|
|
|
|
QString clientName = "test client";
|
|
EXPECT_CALL(*m_pDeps, showNewClientPrompt(_, clientName, true)).Times(0);
|
|
|
|
serverConnection.handleLogLine(R"(unrecognised client name "test client")");
|
|
}
|
|
|
|
TEST_F(ServerConnectionTests, handleLogLine_ignoredClient_shouldNotShowPrompt)
|
|
{
|
|
ServerConnection serverConnection(nullptr, m_appConfig, m_serverConfig, m_serverConfigDialogState, m_pDeps);
|
|
ON_CALL(*m_pDeps, showNewClientPrompt(_, _, false))
|
|
.WillByDefault(testing::Return(messages::NewClientPromptResult::Ignore));
|
|
serverConnection.handleLogLine(R"(unrecognised client name "stub")");
|
|
|
|
EXPECT_CALL(*m_pDeps, showNewClientPrompt(_, _, false)).Times(0);
|
|
|
|
serverConnection.handleLogLine(R"(unrecognised client name "stub")");
|
|
}
|
|
|
|
TEST_F(ServerConnectionTests, handleLogLine_serverConfigFull_shouldNotShowPrompt)
|
|
{
|
|
ServerConnection serverConnection(nullptr, m_appConfig, m_serverConfig, m_serverConfigDialogState, m_pDeps);
|
|
ON_CALL(m_serverConfig, isFull()).WillByDefault(testing::Return(true));
|
|
|
|
EXPECT_CALL(*m_pDeps, showNewClientPrompt(_, _, false)).Times(0);
|
|
|
|
serverConnection.handleLogLine(R"(unrecognised client name "test client")");
|
|
}
|
|
|
|
TEST_F(ServerConnectionTests, handleLogLine_screenExists_shouldNotShowPrompt)
|
|
{
|
|
ServerConnection serverConnection(nullptr, m_appConfig, m_serverConfig, m_serverConfigDialogState, m_pDeps);
|
|
ON_CALL(m_serverConfig, screenExists(_)).WillByDefault(testing::Return(true));
|
|
|
|
EXPECT_CALL(*m_pDeps, showNewClientPrompt(_, _, false)).Times(0);
|
|
|
|
serverConnection.handleLogLine(R"(unrecognised client name "test client")");
|
|
}
|