Add basic test suite to make sure that ActionsHandler rejects attempts to handleMessage if either m_room or chatBarCacher are nullptr.
44 lines
1.6 KiB
C++
44 lines
1.6 KiB
C++
// SPDX-FileCopyrightText: 2023 James Graham <james.h.graham@protonmail.com>
|
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
#include <QTest>
|
|
|
|
#include "actionshandler.h"
|
|
#include "chatbarcache.h"
|
|
|
|
#include "testutils.h"
|
|
|
|
class ActionsHandlerTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
Quotient::Connection *connection = Quotient::Connection::makeMockConnection(QStringLiteral("@bob:kde.org"));
|
|
ActionsHandler *actionsHandler = new ActionsHandler(this);
|
|
|
|
private Q_SLOTS:
|
|
void nullObject();
|
|
};
|
|
|
|
void ActionsHandlerTest::nullObject()
|
|
{
|
|
QTest::ignoreMessage(QtWarningMsg, "ActionsHandler::handleMessageEvent - called with m_room and/or chatBarCache set to nullptr.");
|
|
actionsHandler->handleMessageEvent(nullptr);
|
|
|
|
auto chatBarCache = new ChatBarCache(this);
|
|
QTest::ignoreMessage(QtWarningMsg, "ActionsHandler::handleMessageEvent - called with m_room and/or chatBarCache set to nullptr.");
|
|
actionsHandler->handleMessageEvent(chatBarCache);
|
|
|
|
auto room = new TestUtils::TestRoom(connection, QStringLiteral("#myroom:kde.org"));
|
|
actionsHandler->setRoom(room);
|
|
QTest::ignoreMessage(QtWarningMsg, "ActionsHandler::handleMessageEvent - called with m_room and/or chatBarCache set to nullptr.");
|
|
actionsHandler->handleMessageEvent(nullptr);
|
|
|
|
// The final one should throw no warning so we make sure.
|
|
QTest::failOnWarning("ActionsHandler::handleMessageEvent - called with m_room and/or chatBarCache set to nullptr.");
|
|
actionsHandler->handleMessageEvent(chatBarCache);
|
|
}
|
|
|
|
QTEST_GUILESS_MAIN(ActionsHandlerTest)
|
|
#include "actionshandlertest.moc"
|