2020-03-15 15:19:28 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2020-03-15 15:19:28 +00:00
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2017-12-18 21:50:31 +00:00
|
|
|
// Qt
|
2023-07-03 19:28:19 +00:00
|
|
|
#include <QSignalSpy>
|
|
|
|
#include <QTest>
|
2017-12-18 21:50:31 +00:00
|
|
|
// KWin
|
2023-09-13 05:52:59 +00:00
|
|
|
#include "wayland/appmenu.h"
|
|
|
|
#include "wayland/compositor.h"
|
2022-04-22 09:27:33 +00:00
|
|
|
#include "wayland/display.h"
|
|
|
|
|
2021-08-29 05:11:06 +00:00
|
|
|
#include "KWayland/Client/appmenu.h"
|
2020-04-29 13:59:23 +00:00
|
|
|
#include "KWayland/Client/compositor.h"
|
|
|
|
#include "KWayland/Client/connection_thread.h"
|
|
|
|
#include "KWayland/Client/event_queue.h"
|
|
|
|
#include "KWayland/Client/region.h"
|
|
|
|
#include "KWayland/Client/registry.h"
|
|
|
|
#include "KWayland/Client/surface.h"
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2023-09-13 17:59:29 +00:00
|
|
|
Q_DECLARE_METATYPE(KWin::AppMenuInterface::InterfaceAddress)
|
2017-12-18 21:50:31 +00:00
|
|
|
|
|
|
|
class TestAppmenu : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit TestAppmenu(QObject *parent = nullptr);
|
|
|
|
private Q_SLOTS:
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
void testCreateAndSet();
|
|
|
|
|
|
|
|
private:
|
2023-09-13 17:59:29 +00:00
|
|
|
KWin::Display *m_display;
|
|
|
|
KWin::CompositorInterface *m_compositorInterface;
|
|
|
|
KWin::AppMenuManagerInterface *m_appmenuManagerInterface;
|
2017-12-18 21:50:31 +00:00
|
|
|
KWayland::Client::ConnectionThread *m_connection;
|
|
|
|
KWayland::Client::Compositor *m_compositor;
|
|
|
|
KWayland::Client::AppMenuManager *m_appmenuManager;
|
|
|
|
KWayland::Client::EventQueue *m_queue;
|
|
|
|
QThread *m_thread;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("kwayland-test-wayland-appmenu-0");
|
|
|
|
|
|
|
|
TestAppmenu::TestAppmenu(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_display(nullptr)
|
|
|
|
, m_compositorInterface(nullptr)
|
|
|
|
, m_connection(nullptr)
|
|
|
|
, m_compositor(nullptr)
|
|
|
|
, m_queue(nullptr)
|
|
|
|
, m_thread(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestAppmenu::init()
|
|
|
|
{
|
2023-09-13 17:59:29 +00:00
|
|
|
using namespace KWin;
|
2017-12-18 21:50:31 +00:00
|
|
|
qRegisterMetaType<AppMenuInterface::InterfaceAddress>();
|
|
|
|
delete m_display;
|
2023-09-13 17:59:29 +00:00
|
|
|
m_display = new KWin::Display(this);
|
2020-10-19 15:52:56 +00:00
|
|
|
m_display->addSocketName(s_socketName);
|
2017-12-18 21:50:31 +00:00
|
|
|
m_display->start();
|
|
|
|
QVERIFY(m_display->isRunning());
|
|
|
|
|
|
|
|
// setup connection
|
|
|
|
m_connection = new KWayland::Client::ConnectionThread;
|
2022-11-08 21:15:17 +00:00
|
|
|
QSignalSpy connectedSpy(m_connection, &KWayland::Client::ConnectionThread::connected);
|
2017-12-18 21:50:31 +00:00
|
|
|
m_connection->setSocketName(s_socketName);
|
|
|
|
|
|
|
|
m_thread = new QThread(this);
|
|
|
|
m_connection->moveToThread(m_thread);
|
|
|
|
m_thread->start();
|
|
|
|
|
|
|
|
m_connection->initConnection();
|
|
|
|
QVERIFY(connectedSpy.wait());
|
|
|
|
|
|
|
|
m_queue = new KWayland::Client::EventQueue(this);
|
|
|
|
QVERIFY(!m_queue->isValid());
|
|
|
|
m_queue->setup(m_connection);
|
|
|
|
QVERIFY(m_queue->isValid());
|
|
|
|
|
2022-11-08 21:15:17 +00:00
|
|
|
KWayland::Client::Registry registry;
|
|
|
|
QSignalSpy compositorSpy(®istry, &KWayland::Client::Registry::compositorAnnounced);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2022-11-08 21:15:17 +00:00
|
|
|
QSignalSpy appmenuSpy(®istry, &KWayland::Client::Registry::appMenuAnnounced);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
|
|
|
QVERIFY(!registry.eventQueue());
|
|
|
|
registry.setEventQueue(m_queue);
|
|
|
|
QCOMPARE(registry.eventQueue(), m_queue);
|
|
|
|
registry.create(m_connection->display());
|
|
|
|
QVERIFY(registry.isValid());
|
|
|
|
registry.setup();
|
|
|
|
|
2020-12-09 20:13:19 +00:00
|
|
|
m_compositorInterface = new CompositorInterface(m_display, m_display);
|
2017-12-18 21:50:31 +00:00
|
|
|
QVERIFY(compositorSpy.wait());
|
|
|
|
m_compositor = registry.createCompositor(compositorSpy.first().first().value<quint32>(), compositorSpy.first().last().value<quint32>(), this);
|
|
|
|
|
2020-12-09 20:13:19 +00:00
|
|
|
m_appmenuManagerInterface = new AppMenuManagerInterface(m_display, m_display);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
|
|
|
QVERIFY(appmenuSpy.wait());
|
|
|
|
m_appmenuManager = registry.createAppMenuManager(appmenuSpy.first().first().value<quint32>(), appmenuSpy.first().last().value<quint32>(), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestAppmenu::cleanup()
|
|
|
|
{
|
2022-04-19 10:14:26 +00:00
|
|
|
#define CLEANUP(variable) \
|
|
|
|
if (variable) { \
|
|
|
|
delete variable; \
|
|
|
|
variable = nullptr; \
|
2017-12-18 21:50:31 +00:00
|
|
|
}
|
|
|
|
CLEANUP(m_compositor)
|
|
|
|
CLEANUP(m_appmenuManager)
|
|
|
|
CLEANUP(m_queue)
|
|
|
|
if (m_connection) {
|
|
|
|
m_connection->deleteLater();
|
|
|
|
m_connection = nullptr;
|
|
|
|
}
|
|
|
|
if (m_thread) {
|
|
|
|
m_thread->quit();
|
|
|
|
m_thread->wait();
|
|
|
|
delete m_thread;
|
|
|
|
m_thread = nullptr;
|
|
|
|
}
|
|
|
|
CLEANUP(m_compositorInterface)
|
|
|
|
CLEANUP(m_appmenuManagerInterface)
|
|
|
|
CLEANUP(m_display)
|
|
|
|
#undef CLEANUP
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestAppmenu::testCreateAndSet()
|
|
|
|
{
|
2023-09-13 17:59:29 +00:00
|
|
|
QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWin::CompositorInterface::surfaceCreated);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface(m_compositor->createSurface());
|
2017-12-18 21:50:31 +00:00
|
|
|
QVERIFY(serverSurfaceCreated.wait());
|
|
|
|
|
2023-09-13 17:59:29 +00:00
|
|
|
auto serverSurface = serverSurfaceCreated.first().first().value<KWin::SurfaceInterface *>();
|
|
|
|
QSignalSpy appMenuCreated(m_appmenuManagerInterface, &KWin::AppMenuManagerInterface::appMenuCreated);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2017-12-19 08:10:09 +00:00
|
|
|
QVERIFY(!m_appmenuManagerInterface->appMenuForSurface(serverSurface));
|
2017-12-18 21:50:31 +00:00
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
auto appmenu = m_appmenuManager->create(surface.get(), surface.get());
|
2017-12-18 21:50:31 +00:00
|
|
|
QVERIFY(appMenuCreated.wait());
|
2023-09-13 17:59:29 +00:00
|
|
|
auto appMenuInterface = appMenuCreated.first().first().value<KWin::AppMenuInterface *>();
|
2017-12-18 21:50:31 +00:00
|
|
|
QCOMPARE(m_appmenuManagerInterface->appMenuForSurface(serverSurface), appMenuInterface);
|
|
|
|
|
|
|
|
QCOMPARE(appMenuInterface->address().serviceName, QString());
|
|
|
|
QCOMPARE(appMenuInterface->address().objectPath, QString());
|
|
|
|
|
2023-09-13 17:59:29 +00:00
|
|
|
QSignalSpy appMenuChangedSpy(appMenuInterface, &KWin::AppMenuInterface::addressChanged);
|
2017-12-18 21:50:31 +00:00
|
|
|
|
|
|
|
appmenu->setAddress("net.somename", "/test/path");
|
|
|
|
|
|
|
|
QVERIFY(appMenuChangedSpy.wait());
|
2017-12-19 07:28:20 +00:00
|
|
|
QCOMPARE(appMenuInterface->address().serviceName, QString("net.somename"));
|
|
|
|
QCOMPARE(appMenuInterface->address().objectPath, QString("/test/path"));
|
2017-12-18 21:50:31 +00:00
|
|
|
|
|
|
|
// and destroy
|
|
|
|
QSignalSpy destroyedSpy(appMenuInterface, &QObject::destroyed);
|
|
|
|
delete appmenu;
|
|
|
|
QVERIFY(destroyedSpy.wait());
|
2017-12-19 08:10:09 +00:00
|
|
|
QVERIFY(!m_appmenuManagerInterface->appMenuForSurface(serverSurface));
|
2017-12-18 21:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QTEST_GUILESS_MAIN(TestAppmenu)
|
|
|
|
#include "test_wayland_appmenu.moc"
|