2015-10-30 11:26:12 +00:00
|
|
|
/********************************************************************
|
|
|
|
Copyright 2015 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
// Qt
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
// KWin
|
|
|
|
#include "../../src/client/compositor.h"
|
|
|
|
#include "../../src/client/connection_thread.h"
|
|
|
|
#include "../../src/client/event_queue.h"
|
|
|
|
#include "../../src/client/region.h"
|
|
|
|
#include "../../src/client/registry.h"
|
|
|
|
#include "../../src/client/surface.h"
|
|
|
|
#include "../../src/client/plasmawindowmanagement.h"
|
|
|
|
#include "../../src/server/display.h"
|
|
|
|
#include "../../src/server/compositor_interface.h"
|
|
|
|
#include "../../src/server/region_interface.h"
|
|
|
|
#include "../../src/server/plasmawindowmanagement_interface.h"
|
|
|
|
#include "../../src/server/surface_interface.h"
|
2016-06-25 09:41:19 +00:00
|
|
|
#include <wayland-plasma-window-management-client-protocol.h>
|
|
|
|
|
|
|
|
typedef void (KWayland::Server::PlasmaWindowInterface::*ServerWindowSignal)();
|
|
|
|
Q_DECLARE_METATYPE(ServerWindowSignal)
|
|
|
|
typedef void (KWayland::Server::PlasmaWindowInterface::*ServerWindowBooleanSignal)(bool);
|
|
|
|
Q_DECLARE_METATYPE(ServerWindowBooleanSignal)
|
|
|
|
typedef void (KWayland::Client::PlasmaWindow::*ClientWindowVoidSetter)();
|
|
|
|
Q_DECLARE_METATYPE(ClientWindowVoidSetter)
|
2015-10-30 11:26:12 +00:00
|
|
|
|
|
|
|
class TestWindowManagement : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit TestWindowManagement(QObject *parent = nullptr);
|
|
|
|
private Q_SLOTS:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
void testWindowTitle();
|
|
|
|
void testMinimizedGeometry();
|
2016-05-12 05:40:27 +00:00
|
|
|
void testUseAfterUnmap();
|
|
|
|
void testServerDelete();
|
2016-05-17 06:59:26 +00:00
|
|
|
void testActiveWindowOnUnmapped();
|
|
|
|
void testDeleteActiveWindow();
|
2016-06-01 13:39:10 +00:00
|
|
|
void testCreateAfterUnmap();
|
2016-06-25 09:41:19 +00:00
|
|
|
void testRequests_data();
|
|
|
|
void testRequests();
|
|
|
|
void testRequestsBoolean_data();
|
|
|
|
void testRequestsBoolean();
|
2017-05-24 16:02:15 +00:00
|
|
|
void testKeepAbove();
|
|
|
|
void testKeepBelow();
|
2016-06-25 19:04:48 +00:00
|
|
|
void testShowingDesktop();
|
|
|
|
void testRequestShowingDesktop_data();
|
|
|
|
void testRequestShowingDesktop();
|
2016-06-06 13:06:33 +00:00
|
|
|
void testParentWindow();
|
2016-07-15 11:31:12 +00:00
|
|
|
void testGeometry();
|
2016-10-13 11:39:27 +00:00
|
|
|
void testIcon();
|
2017-05-12 17:42:01 +00:00
|
|
|
void testPid();
|
2015-10-30 11:26:12 +00:00
|
|
|
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
private:
|
|
|
|
KWayland::Server::Display *m_display;
|
|
|
|
KWayland::Server::CompositorInterface *m_compositorInterface;
|
|
|
|
KWayland::Server::PlasmaWindowManagementInterface *m_windowManagementInterface;
|
|
|
|
KWayland::Server::PlasmaWindowInterface *m_windowInterface;
|
|
|
|
KWayland::Server::SurfaceInterface *m_surfaceInterface = nullptr;
|
|
|
|
|
|
|
|
KWayland::Client::Surface *m_surface = nullptr;
|
|
|
|
KWayland::Client::ConnectionThread *m_connection;
|
|
|
|
KWayland::Client::Compositor *m_compositor;
|
|
|
|
KWayland::Client::EventQueue *m_queue;
|
|
|
|
KWayland::Client::PlasmaWindowManagement *m_windowManagement;
|
|
|
|
KWayland::Client::PlasmaWindow *m_window;
|
|
|
|
QThread *m_thread;
|
|
|
|
KWayland::Client::Registry *m_registry;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("kwayland-test-wayland-windowmanagement-0");
|
|
|
|
|
|
|
|
TestWindowManagement::TestWindowManagement(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_display(nullptr)
|
|
|
|
, m_compositorInterface(nullptr)
|
|
|
|
, m_connection(nullptr)
|
|
|
|
, m_compositor(nullptr)
|
|
|
|
, m_queue(nullptr)
|
|
|
|
, m_thread(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::init()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
2016-06-25 19:04:48 +00:00
|
|
|
qRegisterMetaType<KWayland::Server::PlasmaWindowManagementInterface::ShowingDesktopState>("ShowingDesktopState");
|
2015-10-30 11:26:12 +00:00
|
|
|
delete m_display;
|
|
|
|
m_display = new Display(this);
|
|
|
|
m_display->setSocketName(s_socketName);
|
|
|
|
m_display->start();
|
|
|
|
QVERIFY(m_display->isRunning());
|
|
|
|
|
|
|
|
// setup connection
|
|
|
|
m_connection = new KWayland::Client::ConnectionThread;
|
|
|
|
QSignalSpy connectedSpy(m_connection, SIGNAL(connected()));
|
|
|
|
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());
|
|
|
|
|
|
|
|
m_registry = new KWayland::Client::Registry(this);
|
|
|
|
QSignalSpy compositorSpy(m_registry, SIGNAL(compositorAnnounced(quint32,quint32)));
|
|
|
|
QVERIFY(compositorSpy.isValid());
|
|
|
|
|
|
|
|
QSignalSpy windowManagementSpy(m_registry, SIGNAL(plasmaWindowManagementAnnounced(quint32,quint32)));
|
|
|
|
QVERIFY(windowManagementSpy.isValid());
|
|
|
|
|
|
|
|
|
|
|
|
QVERIFY(!m_registry->eventQueue());
|
|
|
|
m_registry->setEventQueue(m_queue);
|
|
|
|
QCOMPARE(m_registry->eventQueue(), m_queue);
|
|
|
|
m_registry->create(m_connection->display());
|
|
|
|
QVERIFY(m_registry->isValid());
|
|
|
|
m_registry->setup();
|
|
|
|
|
|
|
|
m_compositorInterface = m_display->createCompositor(m_display);
|
|
|
|
m_compositorInterface->create();
|
|
|
|
QVERIFY(m_compositorInterface->isValid());
|
|
|
|
|
|
|
|
QVERIFY(compositorSpy.wait());
|
|
|
|
m_compositor = m_registry->createCompositor(compositorSpy.first().first().value<quint32>(), compositorSpy.first().last().value<quint32>(), this);
|
|
|
|
|
|
|
|
|
|
|
|
m_windowManagementInterface = m_display->createPlasmaWindowManagement(m_display);
|
|
|
|
m_windowManagementInterface->create();
|
|
|
|
QVERIFY(m_windowManagementInterface->isValid());
|
|
|
|
|
|
|
|
QVERIFY(windowManagementSpy.wait());
|
|
|
|
m_windowManagement = m_registry->createPlasmaWindowManagement(windowManagementSpy.first().first().value<quint32>(), windowManagementSpy.first().last().value<quint32>(), this);
|
|
|
|
|
2018-11-04 22:20:24 +00:00
|
|
|
QSignalSpy windowSpy(m_windowManagement, SIGNAL(windowCreated(KWayland::Client::PlasmaWindow*)));
|
2015-10-30 11:26:12 +00:00
|
|
|
QVERIFY(windowSpy.isValid());
|
|
|
|
m_windowInterface = m_windowManagementInterface->createWindow(this);
|
2017-05-16 14:54:08 +00:00
|
|
|
m_windowInterface->setPid(1337);
|
2015-10-30 11:26:12 +00:00
|
|
|
|
|
|
|
QVERIFY(windowSpy.wait());
|
|
|
|
m_window = windowSpy.first().first().value<KWayland::Client::PlasmaWindow *>();
|
|
|
|
|
|
|
|
QSignalSpy serverSurfaceCreated(m_compositorInterface, SIGNAL(surfaceCreated(KWayland::Server::SurfaceInterface*)));
|
|
|
|
QVERIFY(serverSurfaceCreated.isValid());
|
|
|
|
|
|
|
|
m_surface = m_compositor->createSurface(this);
|
|
|
|
QVERIFY(m_surface);
|
|
|
|
|
|
|
|
QVERIFY(serverSurfaceCreated.wait());
|
|
|
|
m_surfaceInterface = serverSurfaceCreated.first().first().value<KWayland::Server::SurfaceInterface*>();
|
|
|
|
QVERIFY(m_surfaceInterface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testWindowTitle()
|
|
|
|
{
|
2015-11-11 07:52:37 +00:00
|
|
|
m_windowInterface->setTitle(QStringLiteral("Test Title"));
|
2015-10-30 11:26:12 +00:00
|
|
|
|
|
|
|
QSignalSpy titleSpy(m_window, SIGNAL(titleChanged()));
|
|
|
|
QVERIFY(titleSpy.isValid());
|
|
|
|
|
|
|
|
QVERIFY(titleSpy.wait());
|
|
|
|
|
|
|
|
QCOMPARE(m_window->title(), QString::fromUtf8("Test Title"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testMinimizedGeometry()
|
|
|
|
{
|
|
|
|
m_window->setMinimizedGeometry(m_surface, QRect(5, 10, 100, 200));
|
|
|
|
|
|
|
|
QSignalSpy geometrySpy(m_windowInterface, SIGNAL(minimizedGeometriesChanged()));
|
|
|
|
QVERIFY(geometrySpy.isValid());
|
|
|
|
|
|
|
|
QVERIFY(geometrySpy.wait());
|
|
|
|
QCOMPARE(m_windowInterface->minimizedGeometries().values().first(), QRect(5, 10, 100, 200));
|
|
|
|
|
|
|
|
m_window->unsetMinimizedGeometry(m_surface);
|
|
|
|
QVERIFY(geometrySpy.wait());
|
|
|
|
QVERIFY(m_windowInterface->minimizedGeometries().isEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::cleanup()
|
|
|
|
{
|
|
|
|
|
2015-11-09 08:40:58 +00:00
|
|
|
if (m_surface) {
|
|
|
|
delete m_surface;
|
|
|
|
m_surface = nullptr;
|
|
|
|
}
|
2015-10-30 11:26:12 +00:00
|
|
|
if (m_compositor) {
|
|
|
|
delete m_compositor;
|
|
|
|
m_compositor = nullptr;
|
|
|
|
}
|
|
|
|
if (m_queue) {
|
|
|
|
delete m_queue;
|
|
|
|
m_queue = nullptr;
|
|
|
|
}
|
2016-03-02 07:16:23 +00:00
|
|
|
if (m_windowManagement) {
|
|
|
|
delete m_windowManagement;
|
|
|
|
m_windowManagement = nullptr;
|
|
|
|
}
|
2015-10-30 11:26:12 +00:00
|
|
|
if (m_registry) {
|
|
|
|
delete m_registry;
|
|
|
|
m_registry = nullptr;
|
|
|
|
}
|
|
|
|
if (m_thread) {
|
2015-11-11 08:03:42 +00:00
|
|
|
if (m_connection) {
|
2016-08-22 13:57:25 +00:00
|
|
|
m_connection->flush();
|
2015-11-11 08:03:42 +00:00
|
|
|
m_connection->deleteLater();
|
|
|
|
}
|
2015-10-30 11:26:12 +00:00
|
|
|
m_thread->quit();
|
|
|
|
m_thread->wait();
|
|
|
|
delete m_thread;
|
|
|
|
m_thread = nullptr;
|
|
|
|
}
|
|
|
|
m_connection = nullptr;
|
|
|
|
|
2016-08-22 13:57:25 +00:00
|
|
|
m_display->dispatchEvents();
|
2016-05-12 05:40:27 +00:00
|
|
|
delete m_windowManagementInterface;
|
|
|
|
m_windowManagementInterface = nullptr;
|
|
|
|
|
|
|
|
delete m_windowInterface;
|
|
|
|
m_windowInterface = nullptr;
|
|
|
|
|
|
|
|
delete m_surfaceInterface;
|
|
|
|
m_surfaceInterface = nullptr;
|
|
|
|
|
2015-10-30 11:26:12 +00:00
|
|
|
delete m_display;
|
|
|
|
m_display = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-05-12 05:40:27 +00:00
|
|
|
void TestWindowManagement::testUseAfterUnmap()
|
|
|
|
{
|
|
|
|
// this test verifies that when the client uses a window after it's unmapped, things don't break
|
|
|
|
QSignalSpy unmappedSpy(m_window, &KWayland::Client::PlasmaWindow::unmapped);
|
|
|
|
QVERIFY(unmappedSpy.isValid());
|
|
|
|
QSignalSpy destroyedSpy(m_window, &QObject::destroyed);
|
|
|
|
QVERIFY(destroyedSpy.isValid());
|
|
|
|
m_windowInterface->unmap();
|
|
|
|
m_window->requestClose();
|
|
|
|
QVERIFY(unmappedSpy.wait());
|
|
|
|
QVERIFY(destroyedSpy.wait());
|
|
|
|
m_window = nullptr;
|
|
|
|
QSignalSpy serverDestroyedSpy(m_windowInterface, &QObject::destroyed);
|
|
|
|
QVERIFY(serverDestroyedSpy.isValid());
|
|
|
|
QVERIFY(serverDestroyedSpy.wait());
|
|
|
|
m_windowInterface = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testServerDelete()
|
|
|
|
{
|
|
|
|
QSignalSpy unmappedSpy(m_window, &KWayland::Client::PlasmaWindow::unmapped);
|
|
|
|
QVERIFY(unmappedSpy.isValid());
|
|
|
|
QSignalSpy destroyedSpy(m_window, &QObject::destroyed);
|
|
|
|
QVERIFY(destroyedSpy.isValid());
|
|
|
|
delete m_windowInterface;
|
|
|
|
m_windowInterface = nullptr;
|
|
|
|
QVERIFY(unmappedSpy.wait());
|
|
|
|
QVERIFY(destroyedSpy.wait());
|
|
|
|
m_window = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-05-17 06:59:26 +00:00
|
|
|
void TestWindowManagement::testActiveWindowOnUnmapped()
|
|
|
|
{
|
|
|
|
// This test verifies that unmapping the active window changes the active window.
|
|
|
|
// first make the window active
|
|
|
|
QVERIFY(!m_windowManagement->activeWindow());
|
|
|
|
QVERIFY(!m_window->isActive());
|
|
|
|
QSignalSpy activeWindowChangedSpy(m_windowManagement, &KWayland::Client::PlasmaWindowManagement::activeWindowChanged);
|
|
|
|
QVERIFY(activeWindowChangedSpy.isValid());
|
|
|
|
m_windowInterface->setActive(true);
|
|
|
|
QVERIFY(activeWindowChangedSpy.wait());
|
|
|
|
QCOMPARE(m_windowManagement->activeWindow(), m_window);
|
|
|
|
QVERIFY(m_window->isActive());
|
|
|
|
|
|
|
|
// now unmap should change the active window
|
|
|
|
QSignalSpy destroyedSpy(m_window, &QObject::destroyed);
|
|
|
|
QVERIFY(destroyedSpy.isValid());
|
|
|
|
QSignalSpy serverDestroyedSpy(m_windowInterface, &QObject::destroyed);
|
|
|
|
QVERIFY(serverDestroyedSpy.isValid());
|
|
|
|
m_windowManagementInterface->unmapWindow(m_windowInterface);
|
|
|
|
QVERIFY(activeWindowChangedSpy.wait());
|
|
|
|
QVERIFY(!m_windowManagement->activeWindow());
|
|
|
|
QVERIFY(destroyedSpy.wait());
|
|
|
|
QCOMPARE(destroyedSpy.count(), 1);
|
|
|
|
m_window = nullptr;
|
|
|
|
QVERIFY(serverDestroyedSpy.wait());
|
|
|
|
m_windowInterface = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testDeleteActiveWindow()
|
|
|
|
{
|
|
|
|
// This test verifies that deleting the active window on client side changes the active window
|
|
|
|
// first make the window active
|
|
|
|
QVERIFY(!m_windowManagement->activeWindow());
|
|
|
|
QVERIFY(!m_window->isActive());
|
|
|
|
QSignalSpy activeWindowChangedSpy(m_windowManagement, &KWayland::Client::PlasmaWindowManagement::activeWindowChanged);
|
|
|
|
QVERIFY(activeWindowChangedSpy.isValid());
|
|
|
|
m_windowInterface->setActive(true);
|
|
|
|
QVERIFY(activeWindowChangedSpy.wait());
|
|
|
|
QCOMPARE(activeWindowChangedSpy.count(), 1);
|
|
|
|
QCOMPARE(m_windowManagement->activeWindow(), m_window);
|
|
|
|
QVERIFY(m_window->isActive());
|
|
|
|
|
|
|
|
// delete the client side window - that's semantically kind of wrong, but shouldn't make our code crash
|
|
|
|
delete m_window;
|
|
|
|
m_window = nullptr;
|
|
|
|
QCOMPARE(activeWindowChangedSpy.count(), 2);
|
|
|
|
QVERIFY(!m_windowManagement->activeWindow());
|
|
|
|
}
|
|
|
|
|
2016-06-01 13:39:10 +00:00
|
|
|
void TestWindowManagement::testCreateAfterUnmap()
|
|
|
|
{
|
|
|
|
// this test verifies that we don't get a protocol error on client side when creating an already unmapped window.
|
2016-06-06 10:39:51 +00:00
|
|
|
QCOMPARE(m_windowManagement->children().count(), 1);
|
2016-06-01 13:39:10 +00:00
|
|
|
// create and unmap in one go
|
|
|
|
// client will first handle the create, the unmap will be sent once the server side is bound
|
|
|
|
auto serverWindow = m_windowManagementInterface->createWindow(this);
|
|
|
|
serverWindow->unmap();
|
|
|
|
QCOMPARE(m_windowManagementInterface->children().count(), 0);
|
2016-06-06 10:39:51 +00:00
|
|
|
QCoreApplication::instance()->processEvents();
|
|
|
|
QCoreApplication::instance()->processEvents(QEventLoop::WaitForMoreEvents);
|
|
|
|
QTRY_COMPARE(m_windowManagement->children().count(), 2);
|
|
|
|
auto window = dynamic_cast<KWayland::Client::PlasmaWindow*>(m_windowManagement->children().last());
|
2016-06-01 13:39:10 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
// now this is not yet on the server, on the server it will be after next roundtrip
|
|
|
|
// which we can trigger by waiting for destroy of the newly created window.
|
|
|
|
// why destroy? Because we will get the unmap which triggers a destroy
|
|
|
|
QSignalSpy clientDestroyedSpy(window, &QObject::destroyed);
|
|
|
|
QVERIFY(clientDestroyedSpy.isValid());
|
|
|
|
QVERIFY(clientDestroyedSpy.wait());
|
2016-06-06 10:39:51 +00:00
|
|
|
QCOMPARE(m_windowManagement->children().count(), 1);
|
2016-06-01 13:39:10 +00:00
|
|
|
// the server side created a helper PlasmaWindowInterface with PlasmaWindowManagementInterface as parent
|
|
|
|
// it emitted unmapped so we can be sure it will be destroyed directly
|
|
|
|
QCOMPARE(m_windowManagementInterface->children().count(), 1);
|
|
|
|
auto helperWindow = qobject_cast<KWayland::Server::PlasmaWindowInterface*>(m_windowManagementInterface->children().first());
|
|
|
|
QVERIFY(helperWindow);
|
|
|
|
QSignalSpy helperDestroyedSpy(helperWindow, &QObject::destroyed);
|
|
|
|
QVERIFY(helperDestroyedSpy.isValid());
|
|
|
|
QVERIFY(helperDestroyedSpy.wait());
|
|
|
|
}
|
|
|
|
|
2016-06-25 09:41:19 +00:00
|
|
|
void TestWindowManagement::testRequests_data()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
QTest::addColumn<ServerWindowSignal>("changedSignal");
|
|
|
|
QTest::addColumn<ClientWindowVoidSetter>("requester");
|
|
|
|
|
|
|
|
QTest::newRow("close") << &PlasmaWindowInterface::closeRequested << &PlasmaWindow::requestClose;
|
|
|
|
QTest::newRow("move") << &PlasmaWindowInterface::moveRequested << &PlasmaWindow::requestMove;
|
|
|
|
QTest::newRow("resize") << &PlasmaWindowInterface::resizeRequested << &PlasmaWindow::requestResize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testRequests()
|
|
|
|
{
|
|
|
|
// this test case verifies all the different requests on a PlasmaWindow
|
|
|
|
QFETCH(ServerWindowSignal, changedSignal);
|
|
|
|
QSignalSpy requestSpy(m_windowInterface, changedSignal);
|
|
|
|
QVERIFY(requestSpy.isValid());
|
|
|
|
QFETCH(ClientWindowVoidSetter, requester);
|
|
|
|
(m_window->*(requester))();
|
|
|
|
QVERIFY(requestSpy.wait());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testRequestsBoolean_data()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
QTest::addColumn<ServerWindowBooleanSignal>("changedSignal");
|
|
|
|
QTest::addColumn<int>("flag");
|
|
|
|
|
|
|
|
QTest::newRow("activate") << &PlasmaWindowInterface::activeRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_ACTIVE);
|
|
|
|
QTest::newRow("minimized") << &PlasmaWindowInterface::minimizedRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_MINIMIZED);
|
|
|
|
QTest::newRow("maximized") << &PlasmaWindowInterface::maximizedRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_MAXIMIZED);
|
|
|
|
QTest::newRow("fullscreen") << &PlasmaWindowInterface::fullscreenRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_FULLSCREEN);
|
|
|
|
QTest::newRow("keepAbove") << &PlasmaWindowInterface::keepAboveRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_KEEP_ABOVE);
|
|
|
|
QTest::newRow("keepBelow") << &PlasmaWindowInterface::keepBelowRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_KEEP_BELOW);
|
|
|
|
QTest::newRow("demandsAttention") << &PlasmaWindowInterface::demandsAttentionRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_DEMANDS_ATTENTION);
|
|
|
|
QTest::newRow("closeable") << &PlasmaWindowInterface::closeableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_CLOSEABLE);
|
|
|
|
QTest::newRow("minimizable") << &PlasmaWindowInterface::minimizeableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_MINIMIZABLE);
|
|
|
|
QTest::newRow("maximizable") << &PlasmaWindowInterface::maximizeableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_MAXIMIZABLE);
|
|
|
|
QTest::newRow("fullscreenable") << &PlasmaWindowInterface::fullscreenableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_FULLSCREENABLE);
|
|
|
|
QTest::newRow("skiptaskbar") << &PlasmaWindowInterface::skipTaskbarRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_SKIPTASKBAR);
|
2018-05-22 12:11:22 +00:00
|
|
|
QTest::newRow("skipSwitcher") << &PlasmaWindowInterface::skipSwitcherRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_SKIPSWITCHER);
|
2016-06-25 09:41:19 +00:00
|
|
|
QTest::newRow("shadeable") << &PlasmaWindowInterface::shadeableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_SHADEABLE);
|
|
|
|
QTest::newRow("shaded") << &PlasmaWindowInterface::shadedRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_SHADED);
|
|
|
|
QTest::newRow("movable") << &PlasmaWindowInterface::movableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_MOVABLE);
|
|
|
|
QTest::newRow("resizable") << &PlasmaWindowInterface::resizableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_RESIZABLE);
|
|
|
|
QTest::newRow("virtualDesktopChangeable") << &PlasmaWindowInterface::virtualDesktopChangeableRequested << int(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_VIRTUAL_DESKTOP_CHANGEABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testRequestsBoolean()
|
|
|
|
{
|
|
|
|
// this test case verifies all the different requests on a PlasmaWindow
|
|
|
|
QFETCH(ServerWindowBooleanSignal, changedSignal);
|
|
|
|
QSignalSpy requestSpy(m_windowInterface, changedSignal);
|
|
|
|
QVERIFY(requestSpy.isValid());
|
|
|
|
QFETCH(int, flag);
|
|
|
|
org_kde_plasma_window_set_state(*m_window, flag, flag);
|
|
|
|
QVERIFY(requestSpy.wait());
|
|
|
|
QCOMPARE(requestSpy.count(), 1);
|
|
|
|
QCOMPARE(requestSpy.first().first().toBool(), true);
|
|
|
|
org_kde_plasma_window_set_state(*m_window, flag, 0);
|
|
|
|
QVERIFY(requestSpy.wait());
|
|
|
|
QCOMPARE(requestSpy.count(), 2);
|
|
|
|
QCOMPARE(requestSpy.last().first().toBool(), false);
|
|
|
|
}
|
|
|
|
|
2016-06-25 19:04:48 +00:00
|
|
|
void TestWindowManagement::testShowingDesktop()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
// this test verifies setting the showing desktop state
|
|
|
|
QVERIFY(!m_windowManagement->isShowingDesktop());
|
|
|
|
QSignalSpy showingDesktopChangedSpy(m_windowManagement, &KWayland::Client::PlasmaWindowManagement::showingDesktopChanged);
|
|
|
|
QVERIFY(showingDesktopChangedSpy.isValid());
|
|
|
|
m_windowManagementInterface->setShowingDesktopState(PlasmaWindowManagementInterface::ShowingDesktopState::Enabled);
|
|
|
|
QVERIFY(showingDesktopChangedSpy.wait());
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.count(), 1);
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.first().first().toBool(), true);
|
|
|
|
QVERIFY(m_windowManagement->isShowingDesktop());
|
|
|
|
// setting to same should not change
|
|
|
|
m_windowManagementInterface->setShowingDesktopState(PlasmaWindowManagementInterface::ShowingDesktopState::Enabled);
|
|
|
|
QVERIFY(!showingDesktopChangedSpy.wait(100));
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.count(), 1);
|
|
|
|
// setting to other state should change
|
|
|
|
m_windowManagementInterface->setShowingDesktopState(PlasmaWindowManagementInterface::ShowingDesktopState::Disabled);
|
|
|
|
QVERIFY(showingDesktopChangedSpy.wait());
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.count(), 2);
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.first().first().toBool(), true);
|
|
|
|
QCOMPARE(showingDesktopChangedSpy.last().first().toBool(), false);
|
|
|
|
QVERIFY(!m_windowManagement->isShowingDesktop());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testRequestShowingDesktop_data()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
QTest::addColumn<bool>("value");
|
|
|
|
QTest::addColumn<PlasmaWindowManagementInterface::ShowingDesktopState>("expectedValue");
|
|
|
|
|
|
|
|
QTest::newRow("enable") << true << PlasmaWindowManagementInterface::ShowingDesktopState::Enabled;
|
|
|
|
QTest::newRow("disable") << false << PlasmaWindowManagementInterface::ShowingDesktopState::Disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testRequestShowingDesktop()
|
|
|
|
{
|
|
|
|
// this test verifies requesting show desktop state
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
QSignalSpy requestSpy(m_windowManagementInterface, &PlasmaWindowManagementInterface::requestChangeShowingDesktop);
|
|
|
|
QVERIFY(requestSpy.isValid());
|
|
|
|
QFETCH(bool, value);
|
|
|
|
m_windowManagement->setShowingDesktop(value);
|
|
|
|
QVERIFY(requestSpy.wait());
|
|
|
|
QCOMPARE(requestSpy.count(), 1);
|
|
|
|
QTEST(requestSpy.first().first().value<PlasmaWindowManagementInterface::ShowingDesktopState>(), "expectedValue");
|
|
|
|
}
|
|
|
|
|
2017-05-24 16:02:15 +00:00
|
|
|
void TestWindowManagement::testKeepAbove()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
// this test verifies setting the keep above state
|
|
|
|
QVERIFY(!m_window->isKeepAbove());
|
|
|
|
QSignalSpy keepAboveChangedSpy(m_window, &KWayland::Client::PlasmaWindow::keepAboveChanged);
|
|
|
|
QVERIFY(keepAboveChangedSpy.isValid());
|
|
|
|
m_windowInterface->setKeepAbove(true);
|
|
|
|
QVERIFY(keepAboveChangedSpy.wait());
|
|
|
|
QCOMPARE(keepAboveChangedSpy.count(), 1);
|
|
|
|
QVERIFY(m_window->isKeepAbove());
|
|
|
|
// setting to same should not change
|
|
|
|
m_windowInterface->setKeepAbove(true);
|
|
|
|
QVERIFY(!keepAboveChangedSpy.wait(100));
|
|
|
|
QCOMPARE(keepAboveChangedSpy.count(), 1);
|
|
|
|
// setting to other state should change
|
|
|
|
m_windowInterface->setKeepAbove(false);
|
|
|
|
QVERIFY(keepAboveChangedSpy.wait());
|
|
|
|
QCOMPARE(keepAboveChangedSpy.count(), 2);
|
|
|
|
QVERIFY(!m_window->isKeepAbove());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWindowManagement::testKeepBelow()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Server;
|
|
|
|
// this test verifies setting the keep below state
|
|
|
|
QVERIFY(!m_window->isKeepBelow());
|
|
|
|
QSignalSpy keepBelowChangedSpy(m_window, &KWayland::Client::PlasmaWindow::keepBelowChanged);
|
|
|
|
QVERIFY(keepBelowChangedSpy.isValid());
|
|
|
|
m_windowInterface->setKeepBelow(true);
|
|
|
|
QVERIFY(keepBelowChangedSpy.wait());
|
|
|
|
QCOMPARE(keepBelowChangedSpy.count(), 1);
|
|
|
|
QVERIFY(m_window->isKeepBelow());
|
|
|
|
// setting to same should not change
|
|
|
|
m_windowInterface->setKeepBelow(true);
|
|
|
|
QVERIFY(!keepBelowChangedSpy.wait(100));
|
|
|
|
QCOMPARE(keepBelowChangedSpy.count(), 1);
|
|
|
|
// setting to other state should change
|
|
|
|
m_windowInterface->setKeepBelow(false);
|
|
|
|
QVERIFY(keepBelowChangedSpy.wait());
|
|
|
|
QCOMPARE(keepBelowChangedSpy.count(), 2);
|
|
|
|
QVERIFY(!m_window->isKeepBelow());
|
|
|
|
}
|
|
|
|
|
2016-06-06 13:06:33 +00:00
|
|
|
void TestWindowManagement::testParentWindow()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
// this test verifies the functionality of ParentWindows
|
|
|
|
QCOMPARE(m_windowManagement->windows().count(), 1);
|
|
|
|
auto parentWindow = m_windowManagement->windows().first();
|
|
|
|
QVERIFY(parentWindow);
|
|
|
|
QVERIFY(parentWindow->parentWindow().isNull());
|
|
|
|
|
|
|
|
// now let's create a second window
|
|
|
|
QSignalSpy windowAddedSpy(m_windowManagement, &PlasmaWindowManagement::windowCreated);
|
|
|
|
QVERIFY(windowAddedSpy.isValid());
|
|
|
|
auto serverTransient = m_windowManagementInterface->createWindow(this);
|
|
|
|
serverTransient->setParentWindow(m_windowInterface);
|
|
|
|
QVERIFY(windowAddedSpy.wait());
|
|
|
|
auto transient = windowAddedSpy.first().first().value<PlasmaWindow*>();
|
|
|
|
QCOMPARE(transient->parentWindow().data(), parentWindow);
|
|
|
|
|
|
|
|
// let's unset the parent
|
|
|
|
QSignalSpy parentWindowChangedSpy(transient, &PlasmaWindow::parentWindowChanged);
|
|
|
|
QVERIFY(parentWindowChangedSpy.isValid());
|
|
|
|
serverTransient->setParentWindow(nullptr);
|
|
|
|
QVERIFY(parentWindowChangedSpy.wait());
|
|
|
|
QVERIFY(transient->parentWindow().isNull());
|
|
|
|
|
|
|
|
// and set it again
|
|
|
|
serverTransient->setParentWindow(m_windowInterface);
|
|
|
|
QVERIFY(parentWindowChangedSpy.wait());
|
|
|
|
QCOMPARE(transient->parentWindow().data(), parentWindow);
|
|
|
|
|
|
|
|
// now let's try to unmap the parent
|
|
|
|
m_windowInterface->unmap();
|
|
|
|
m_window = nullptr;
|
|
|
|
m_windowInterface = nullptr;
|
|
|
|
QVERIFY(parentWindowChangedSpy.wait());
|
|
|
|
QVERIFY(transient->parentWindow().isNull());
|
|
|
|
}
|
|
|
|
|
2016-07-15 11:31:12 +00:00
|
|
|
void TestWindowManagement::testGeometry()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
QVERIFY(m_window);
|
|
|
|
QCOMPARE(m_window->geometry(), QRect());
|
|
|
|
QSignalSpy windowGeometryChangedSpy(m_window, &PlasmaWindow::geometryChanged);
|
|
|
|
QVERIFY(windowGeometryChangedSpy.isValid());
|
|
|
|
m_windowInterface->setGeometry(QRect(20, -10, 30, 40));
|
|
|
|
QVERIFY(windowGeometryChangedSpy.wait());
|
|
|
|
QCOMPARE(m_window->geometry(), QRect(20, -10, 30, 40));
|
|
|
|
// setting an empty geometry should not be sent to the client
|
|
|
|
m_windowInterface->setGeometry(QRect());
|
|
|
|
QVERIFY(!windowGeometryChangedSpy.wait(10));
|
|
|
|
// setting to the geometry which the client still has should not trigger signal
|
|
|
|
m_windowInterface->setGeometry(QRect(20, -10, 30, 40));
|
|
|
|
QVERIFY(!windowGeometryChangedSpy.wait(10));
|
|
|
|
// setting another geometry should work, though
|
|
|
|
m_windowInterface->setGeometry(QRect(0, 0, 35, 45));
|
|
|
|
QVERIFY(windowGeometryChangedSpy.wait());
|
|
|
|
QCOMPARE(windowGeometryChangedSpy.count(), 2);
|
|
|
|
QCOMPARE(m_window->geometry(), QRect(0, 0, 35, 45));
|
|
|
|
|
|
|
|
// let's bind a second PlasmaWindowManagement to verify the initial setting
|
|
|
|
QScopedPointer<PlasmaWindowManagement> pm(m_registry->createPlasmaWindowManagement(m_registry->interface(Registry::Interface::PlasmaWindowManagement).name,
|
|
|
|
m_registry->interface(Registry::Interface::PlasmaWindowManagement).version));
|
|
|
|
QVERIFY(!pm.isNull());
|
|
|
|
QSignalSpy windowAddedSpy(pm.data(), &PlasmaWindowManagement::windowCreated);
|
|
|
|
QVERIFY(windowAddedSpy.isValid());
|
|
|
|
QVERIFY(windowAddedSpy.wait());
|
|
|
|
auto window = pm->windows().first();
|
|
|
|
QCOMPARE(window->geometry(), QRect(0, 0, 35, 45));
|
|
|
|
}
|
|
|
|
|
2016-10-13 11:39:27 +00:00
|
|
|
void TestWindowManagement::testIcon()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
QVERIFY(m_window);
|
|
|
|
QSignalSpy iconChangedSpy(m_window, &PlasmaWindow::iconChanged);
|
|
|
|
QVERIFY(iconChangedSpy.isValid());
|
|
|
|
m_windowInterface->setIcon(QIcon());
|
|
|
|
// first goes from themed name to empty
|
|
|
|
QVERIFY(iconChangedSpy.wait());
|
|
|
|
if (!QIcon::hasThemeIcon(QStringLiteral("wayland"))) {
|
|
|
|
QEXPECT_FAIL("", "no icon", Continue);
|
|
|
|
}
|
|
|
|
QCOMPARE(m_window->icon().name(), QStringLiteral("wayland"));
|
|
|
|
QVERIFY(iconChangedSpy.wait());
|
|
|
|
if (!QIcon::hasThemeIcon(QStringLiteral("wayland"))) {
|
|
|
|
QEXPECT_FAIL("", "no icon", Continue);
|
|
|
|
}
|
|
|
|
QCOMPARE(m_window->icon().name(), QStringLiteral("wayland"));
|
|
|
|
|
|
|
|
// create an icon with a pixmap
|
|
|
|
QPixmap p(32, 32);
|
|
|
|
p.fill(Qt::red);
|
|
|
|
m_windowInterface->setIcon(p);
|
|
|
|
QVERIFY(iconChangedSpy.wait());
|
|
|
|
QCOMPARE(m_window->icon().pixmap(32, 32), p);
|
|
|
|
|
|
|
|
// let's set a themed icon
|
|
|
|
m_windowInterface->setIcon(QIcon::fromTheme(QStringLiteral("xorg")));
|
|
|
|
QVERIFY(iconChangedSpy.wait());
|
|
|
|
if (!QIcon::hasThemeIcon(QStringLiteral("xorg"))) {
|
|
|
|
QEXPECT_FAIL("", "no icon", Continue);
|
|
|
|
}
|
|
|
|
QCOMPARE(m_window->icon().name(), QStringLiteral("xorg"));
|
|
|
|
}
|
|
|
|
|
2017-05-12 17:42:01 +00:00
|
|
|
void TestWindowManagement::testPid()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
QVERIFY(m_window);
|
2017-05-16 14:54:08 +00:00
|
|
|
QVERIFY(m_window->pid() == 1337);
|
|
|
|
|
|
|
|
//test server not setting a PID for whatever reason
|
|
|
|
QScopedPointer<KWayland::Server::PlasmaWindowInterface> newWindowInterface(m_windowManagementInterface->createWindow(this));
|
2018-11-04 22:20:24 +00:00
|
|
|
QSignalSpy windowSpy(m_windowManagement, SIGNAL(windowCreated(KWayland::Client::PlasmaWindow*)));
|
2017-05-16 14:54:08 +00:00
|
|
|
QVERIFY(windowSpy.wait());
|
|
|
|
QScopedPointer<PlasmaWindow> newWindow( windowSpy.first().first().value<KWayland::Client::PlasmaWindow *>());
|
|
|
|
QVERIFY(newWindow);
|
|
|
|
QVERIFY(newWindow->pid() == 0);
|
|
|
|
|
|
|
|
|
2017-05-12 17:42:01 +00:00
|
|
|
}
|
|
|
|
|
2016-10-13 11:39:27 +00:00
|
|
|
QTEST_MAIN(TestWindowManagement)
|
2015-10-30 11:26:12 +00:00
|
|
|
#include "test_wayland_windowmanagement.moc"
|