2016-06-07 09:43:56 +00:00
|
|
|
|
/********************************************************************
|
|
|
|
|
KWin - the KDE window manager
|
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2019-02-28 02:09:16 +00:00
|
|
|
|
Copyright (C) 2019 David Edmundson <davidedmundson@kde.org>
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*********************************************************************/
|
|
|
|
|
#include "kwin_wayland_test.h"
|
|
|
|
|
#include "cursor.h"
|
2016-07-01 14:03:13 +00:00
|
|
|
|
#include "effects.h"
|
2018-11-18 19:13:55 +00:00
|
|
|
|
#include "deleted.h"
|
2016-06-07 09:43:56 +00:00
|
|
|
|
#include "platform.h"
|
|
|
|
|
#include "shell_client.h"
|
|
|
|
|
#include "screens.h"
|
|
|
|
|
#include "wayland_server.h"
|
2016-06-14 11:46:28 +00:00
|
|
|
|
#include "workspace.h"
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
2017-12-22 17:23:44 +00:00
|
|
|
|
#include <QDBusConnection>
|
|
|
|
|
|
2016-06-07 09:43:56 +00:00
|
|
|
|
#include <KWayland/Client/connection_thread.h>
|
|
|
|
|
#include <KWayland/Client/compositor.h>
|
|
|
|
|
#include <KWayland/Client/shell.h>
|
2017-08-24 16:57:30 +00:00
|
|
|
|
#include <KWayland/Client/output.h>
|
2016-09-12 12:14:20 +00:00
|
|
|
|
#include <KWayland/Client/server_decoration.h>
|
2016-06-07 09:43:56 +00:00
|
|
|
|
#include <KWayland/Client/surface.h>
|
2016-09-12 10:03:18 +00:00
|
|
|
|
#include <KWayland/Client/xdgshell.h>
|
2019-01-01 17:37:18 +00:00
|
|
|
|
#include <KWayland/Client/xdgdecoration.h>
|
2017-12-22 14:22:24 +00:00
|
|
|
|
#include <KWayland/Client/appmenu.h>
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
2016-11-15 15:48:20 +00:00
|
|
|
|
#include <KWayland/Server/clientconnection.h>
|
|
|
|
|
#include <KWayland/Server/display.h>
|
2016-06-07 09:43:56 +00:00
|
|
|
|
#include <KWayland/Server/shell_interface.h>
|
2019-01-01 17:37:18 +00:00
|
|
|
|
#include <KWayland/Server/xdgdecoration_interface.h>
|
2017-12-22 14:22:24 +00:00
|
|
|
|
|
2016-11-15 15:48:20 +00:00
|
|
|
|
// system
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <unistd.h>
|
2019-02-28 02:09:16 +00:00
|
|
|
|
#include <signal.h>
|
2016-11-15 15:48:20 +00:00
|
|
|
|
|
2016-06-07 09:43:56 +00:00
|
|
|
|
using namespace KWin;
|
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_shell_client-0");
|
|
|
|
|
|
|
|
|
|
class TestShellClient : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
void initTestCase();
|
|
|
|
|
void init();
|
|
|
|
|
void cleanup();
|
|
|
|
|
|
2016-04-22 12:13:37 +00:00
|
|
|
|
void testMapUnmapMap_data();
|
2016-06-07 09:43:56 +00:00
|
|
|
|
void testMapUnmapMap();
|
2016-07-01 14:03:13 +00:00
|
|
|
|
void testDesktopPresenceChanged();
|
2016-08-08 12:55:26 +00:00
|
|
|
|
void testTransientPositionAfterRemap();
|
2017-08-24 16:57:30 +00:00
|
|
|
|
void testWindowOutputs_data();
|
|
|
|
|
void testWindowOutputs();
|
2016-08-11 15:08:08 +00:00
|
|
|
|
void testMinimizeActiveWindow_data();
|
|
|
|
|
void testMinimizeActiveWindow();
|
2016-09-12 10:03:18 +00:00
|
|
|
|
void testFullscreen_data();
|
|
|
|
|
void testFullscreen();
|
2019-02-22 18:54:52 +00:00
|
|
|
|
void testFullscreenRestore_data();
|
|
|
|
|
void testFullscreenRestore();
|
2017-10-07 09:41:17 +00:00
|
|
|
|
void testUserCanSetFullscreen_data();
|
|
|
|
|
void testUserCanSetFullscreen();
|
|
|
|
|
void testUserSetFullscreenWlShell();
|
|
|
|
|
void testUserSetFullscreenXdgShell_data();
|
|
|
|
|
void testUserSetFullscreenXdgShell();
|
2019-01-29 12:28:52 +00:00
|
|
|
|
void testMaximizedToFullscreenWlShell_data();
|
|
|
|
|
void testMaximizedToFullscreenWlShell();
|
|
|
|
|
void testMaximizedToFullscreenXdgShell_data();
|
|
|
|
|
void testMaximizedToFullscreenXdgShell();
|
2016-09-14 12:08:47 +00:00
|
|
|
|
void testWindowOpensLargerThanScreen_data();
|
|
|
|
|
void testWindowOpensLargerThanScreen();
|
2016-10-11 14:24:10 +00:00
|
|
|
|
void testHidden_data();
|
|
|
|
|
void testHidden();
|
2016-10-27 13:59:08 +00:00
|
|
|
|
void testDesktopFileName();
|
2016-10-31 14:50:14 +00:00
|
|
|
|
void testCaptionSimplified();
|
2017-08-20 06:56:13 +00:00
|
|
|
|
void testCaptionMultipleWindows();
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
void testUnresponsiveWindow_data();
|
|
|
|
|
void testUnresponsiveWindow();
|
2017-07-26 05:08:27 +00:00
|
|
|
|
void testX11WindowId_data();
|
|
|
|
|
void testX11WindowId();
|
2017-12-22 14:22:24 +00:00
|
|
|
|
void testAppMenu();
|
2018-02-19 21:10:17 +00:00
|
|
|
|
void testNoDecorationModeRequested_data();
|
|
|
|
|
void testNoDecorationModeRequested();
|
2018-12-12 17:25:51 +00:00
|
|
|
|
void testSendClientWithTransientToDesktop_data();
|
|
|
|
|
void testSendClientWithTransientToDesktop();
|
2018-12-13 16:47:10 +00:00
|
|
|
|
void testMinimizeWindowWithTransients_data();
|
|
|
|
|
void testMinimizeWindowWithTransients();
|
2019-01-01 17:37:18 +00:00
|
|
|
|
void testXdgDecoration_data();
|
|
|
|
|
void testXdgDecoration();
|
2019-02-26 13:41:07 +00:00
|
|
|
|
void testXdgNeverCommitted();
|
|
|
|
|
void testXdgInitialState();
|
|
|
|
|
void testXdgInitiallyMaximised();
|
|
|
|
|
void testXdgInitiallyMinimized();
|
2016-06-07 09:43:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void TestShellClient::initTestCase()
|
|
|
|
|
{
|
2018-11-18 19:13:55 +00:00
|
|
|
|
qRegisterMetaType<KWin::Deleted*>();
|
2016-06-07 09:43:56 +00:00
|
|
|
|
qRegisterMetaType<KWin::ShellClient*>();
|
|
|
|
|
qRegisterMetaType<KWin::AbstractClient*>();
|
2017-08-24 16:57:30 +00:00
|
|
|
|
qRegisterMetaType<KWayland::Client::Output*>();
|
|
|
|
|
|
2016-06-07 09:43:56 +00:00
|
|
|
|
QSignalSpy workspaceCreatedSpy(kwinApp(), &Application::workspaceCreated);
|
|
|
|
|
QVERIFY(workspaceCreatedSpy.isValid());
|
|
|
|
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024));
|
2018-03-19 11:05:57 +00:00
|
|
|
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(int, 2));
|
2016-07-04 07:09:03 +00:00
|
|
|
|
QVERIFY(waylandServer()->init(s_socketName.toLocal8Bit()));
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
kwinApp()->start();
|
|
|
|
|
QVERIFY(workspaceCreatedSpy.wait());
|
|
|
|
|
QCOMPARE(screens()->count(), 2);
|
|
|
|
|
QCOMPARE(screens()->geometry(0), QRect(0, 0, 1280, 1024));
|
|
|
|
|
QCOMPARE(screens()->geometry(1), QRect(1280, 0, 1280, 1024));
|
|
|
|
|
waylandServer()->initWorkspace();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::init()
|
|
|
|
|
{
|
2017-12-22 14:22:24 +00:00
|
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Decoration |
|
2019-01-01 17:37:18 +00:00
|
|
|
|
Test::AdditionalWaylandInterface::XdgDecoration |
|
2017-12-22 14:22:24 +00:00
|
|
|
|
Test::AdditionalWaylandInterface::AppMenu));
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
screens()->setCurrent(0);
|
|
|
|
|
KWin::Cursor::setPos(QPoint(1280, 512));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::cleanup()
|
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
|
Test::destroyWaylandConnection();
|
2016-06-07 09:43:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-22 12:13:37 +00:00
|
|
|
|
void TestShellClient::testMapUnmapMap_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2016-04-22 12:13:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-07 09:43:56 +00:00
|
|
|
|
void TestShellClient::testMapUnmapMap()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that mapping a previously mapped window works correctly
|
|
|
|
|
QSignalSpy clientAddedSpy(waylandServer(), &WaylandServer::shellClientAdded);
|
|
|
|
|
QVERIFY(clientAddedSpy.isValid());
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QSignalSpy effectsWindowShownSpy(effects, &EffectsHandler::windowShown);
|
|
|
|
|
QVERIFY(effectsWindowShownSpy.isValid());
|
|
|
|
|
QSignalSpy effectsWindowHiddenSpy(effects, &EffectsHandler::windowHidden);
|
|
|
|
|
QVERIFY(effectsWindowHiddenSpy.isValid());
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
2016-04-22 12:13:37 +00:00
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
// now let's render
|
2016-06-30 11:32:54 +00:00
|
|
|
|
Test::render(surface.data(), QSize(100, 50), Qt::blue);
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
QVERIFY(clientAddedSpy.isEmpty());
|
|
|
|
|
QVERIFY(clientAddedSpy.wait());
|
|
|
|
|
auto client = clientAddedSpy.first().first().value<ShellClient*>();
|
|
|
|
|
QVERIFY(client);
|
|
|
|
|
QVERIFY(client->isShown(true));
|
2016-07-04 13:06:20 +00:00
|
|
|
|
QCOMPARE(client->isHiddenInternal(), false);
|
|
|
|
|
QCOMPARE(client->readyForPainting(), true);
|
2016-08-09 11:50:29 +00:00
|
|
|
|
QCOMPARE(client->depth(), 32);
|
|
|
|
|
QVERIFY(client->hasAlpha());
|
2018-02-04 13:19:23 +00:00
|
|
|
|
QCOMPARE(client->icon().name(), QStringLiteral("wayland"));
|
2016-06-14 11:46:28 +00:00
|
|
|
|
QCOMPARE(workspace()->activeClient(), client);
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QVERIFY(effectsWindowShownSpy.isEmpty());
|
2016-08-29 05:53:26 +00:00
|
|
|
|
QVERIFY(client->isMaximizable());
|
|
|
|
|
QVERIFY(client->isMovable());
|
|
|
|
|
QVERIFY(client->isMovableAcrossScreens());
|
|
|
|
|
QVERIFY(client->isResizable());
|
|
|
|
|
QVERIFY(client->property("maximizable").toBool());
|
|
|
|
|
QVERIFY(client->property("moveable").toBool());
|
|
|
|
|
QVERIFY(client->property("moveableAcrossScreens").toBool());
|
|
|
|
|
QVERIFY(client->property("resizeable").toBool());
|
2019-01-13 16:50:32 +00:00
|
|
|
|
QCOMPARE(client->isInternal(), false);
|
|
|
|
|
QVERIFY(client->effectWindow());
|
|
|
|
|
QVERIFY(!client->effectWindow()->internalWindow());
|
2018-11-18 19:13:55 +00:00
|
|
|
|
QCOMPARE(client->internalId().isNull(), false);
|
|
|
|
|
const auto uuid = client->internalId();
|
|
|
|
|
QUuid deletedUuid;
|
|
|
|
|
QCOMPARE(deletedUuid.isNull(), true);
|
|
|
|
|
|
|
|
|
|
connect(client, &ShellClient::windowClosed, this, [&deletedUuid] (Toplevel *, Deleted *d) { deletedUuid = d->internalId(); });
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
// now unmap
|
|
|
|
|
QSignalSpy hiddenSpy(client, &ShellClient::windowHidden);
|
|
|
|
|
QVERIFY(hiddenSpy.isValid());
|
|
|
|
|
QSignalSpy windowClosedSpy(client, &ShellClient::windowClosed);
|
|
|
|
|
QVERIFY(windowClosedSpy.isValid());
|
|
|
|
|
surface->attachBuffer(Buffer::Ptr());
|
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
QVERIFY(hiddenSpy.wait());
|
2016-07-04 13:06:20 +00:00
|
|
|
|
QCOMPARE(client->readyForPainting(), true);
|
|
|
|
|
QCOMPARE(client->isHiddenInternal(), true);
|
2016-06-07 09:43:56 +00:00
|
|
|
|
QVERIFY(windowClosedSpy.isEmpty());
|
2016-06-14 11:46:28 +00:00
|
|
|
|
QVERIFY(!workspace()->activeClient());
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(effectsWindowHiddenSpy.count(), 1);
|
|
|
|
|
QCOMPARE(effectsWindowHiddenSpy.first().first().value<EffectWindow*>(), client->effectWindow());
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
QSignalSpy windowShownSpy(client, &ShellClient::windowShown);
|
|
|
|
|
QVERIFY(windowShownSpy.isValid());
|
2016-08-09 11:50:29 +00:00
|
|
|
|
Test::render(surface.data(), QSize(100, 50), Qt::blue, QImage::Format_RGB32);
|
2016-06-07 09:43:56 +00:00
|
|
|
|
QCOMPARE(clientAddedSpy.count(), 1);
|
|
|
|
|
QVERIFY(windowShownSpy.wait());
|
|
|
|
|
QCOMPARE(windowShownSpy.count(), 1);
|
|
|
|
|
QCOMPARE(clientAddedSpy.count(), 1);
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(client->readyForPainting(), true);
|
|
|
|
|
QCOMPARE(client->isHiddenInternal(), false);
|
2016-08-09 11:50:29 +00:00
|
|
|
|
QCOMPARE(client->depth(), 24);
|
|
|
|
|
QVERIFY(!client->hasAlpha());
|
2016-06-14 11:46:28 +00:00
|
|
|
|
QCOMPARE(workspace()->activeClient(), client);
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(effectsWindowShownSpy.count(), 1);
|
|
|
|
|
QCOMPARE(effectsWindowShownSpy.first().first().value<EffectWindow*>(), client->effectWindow());
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
// let's unmap again
|
|
|
|
|
surface->attachBuffer(Buffer::Ptr());
|
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
QVERIFY(hiddenSpy.wait());
|
|
|
|
|
QCOMPARE(hiddenSpy.count(), 2);
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(client->readyForPainting(), true);
|
|
|
|
|
QCOMPARE(client->isHiddenInternal(), true);
|
2018-11-18 19:13:55 +00:00
|
|
|
|
QCOMPARE(client->internalId(), uuid);
|
2016-06-07 09:43:56 +00:00
|
|
|
|
QVERIFY(windowClosedSpy.isEmpty());
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(effectsWindowHiddenSpy.count(), 2);
|
|
|
|
|
QCOMPARE(effectsWindowHiddenSpy.last().first().value<EffectWindow*>(), client->effectWindow());
|
2016-06-07 09:43:56 +00:00
|
|
|
|
|
|
|
|
|
shellSurface.reset();
|
|
|
|
|
surface.reset();
|
|
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
|
QCOMPARE(windowClosedSpy.count(), 1);
|
2016-07-04 13:37:30 +00:00
|
|
|
|
QCOMPARE(effectsWindowHiddenSpy.count(), 2);
|
2018-11-18 19:13:55 +00:00
|
|
|
|
QCOMPARE(deletedUuid.isNull(), false);
|
|
|
|
|
QCOMPARE(deletedUuid, uuid);
|
2016-06-07 09:43:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-01 14:03:13 +00:00
|
|
|
|
void TestShellClient::testDesktopPresenceChanged()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that the desktop presence changed signals are properly emitted
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QCOMPARE(c->desktop(), 1);
|
|
|
|
|
effects->setNumberOfDesktops(4);
|
|
|
|
|
QSignalSpy desktopPresenceChangedClientSpy(c, &ShellClient::desktopPresenceChanged);
|
|
|
|
|
QVERIFY(desktopPresenceChangedClientSpy.isValid());
|
|
|
|
|
QSignalSpy desktopPresenceChangedWorkspaceSpy(workspace(), &Workspace::desktopPresenceChanged);
|
|
|
|
|
QVERIFY(desktopPresenceChangedWorkspaceSpy.isValid());
|
|
|
|
|
QSignalSpy desktopPresenceChangedEffectsSpy(effects, &EffectsHandler::desktopPresenceChanged);
|
|
|
|
|
QVERIFY(desktopPresenceChangedEffectsSpy.isValid());
|
|
|
|
|
|
|
|
|
|
// let's change the desktop
|
|
|
|
|
workspace()->sendClientToDesktop(c, 2, false);
|
|
|
|
|
QCOMPARE(c->desktop(), 2);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedClientSpy.count(), 1);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedWorkspaceSpy.count(), 1);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedEffectsSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
// verify the arguments
|
|
|
|
|
QCOMPARE(desktopPresenceChangedClientSpy.first().at(0).value<AbstractClient*>(), c);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedClientSpy.first().at(1).toInt(), 1);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedWorkspaceSpy.first().at(0).value<AbstractClient*>(), c);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedWorkspaceSpy.first().at(1).toInt(), 1);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedEffectsSpy.first().at(0).value<EffectWindow*>(), c->effectWindow());
|
|
|
|
|
QCOMPARE(desktopPresenceChangedEffectsSpy.first().at(1).toInt(), 1);
|
|
|
|
|
QCOMPARE(desktopPresenceChangedEffectsSpy.first().at(2).toInt(), 2);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-08 12:55:26 +00:00
|
|
|
|
void TestShellClient::testTransientPositionAfterRemap()
|
|
|
|
|
{
|
|
|
|
|
// this test simulates the situation that a transient window gets reused and the parent window
|
|
|
|
|
// moved between the two usages
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
|
|
|
|
|
// create the Transient window
|
|
|
|
|
QScopedPointer<Surface> transientSurface(Test::createSurface());
|
|
|
|
|
QScopedPointer<ShellSurface> transientShellSurface(Test::createShellSurface(transientSurface.data()));
|
|
|
|
|
transientShellSurface->setTransient(surface.data(), QPoint(5, 10));
|
|
|
|
|
auto transient = Test::renderAndWaitForShown(transientSurface.data(), QSize(50, 40), Qt::blue);
|
|
|
|
|
QVERIFY(transient);
|
|
|
|
|
QCOMPARE(transient->geometry(), QRect(c->geometry().topLeft() + QPoint(5, 10), QSize(50, 40)));
|
|
|
|
|
|
|
|
|
|
// unmap the transient
|
|
|
|
|
QSignalSpy windowHiddenSpy(transient, &ShellClient::windowHidden);
|
|
|
|
|
QVERIFY(windowHiddenSpy.isValid());
|
|
|
|
|
transientSurface->attachBuffer(Buffer::Ptr());
|
|
|
|
|
transientSurface->commit(Surface::CommitFlag::None);
|
|
|
|
|
QVERIFY(windowHiddenSpy.wait());
|
|
|
|
|
|
|
|
|
|
// now move the parent surface
|
|
|
|
|
c->setGeometry(c->geometry().translated(5, 10));
|
|
|
|
|
|
|
|
|
|
// now map the transient again
|
|
|
|
|
QSignalSpy windowShownSpy(transient, &ShellClient::windowShown);
|
|
|
|
|
QVERIFY(windowShownSpy.isValid());
|
|
|
|
|
Test::render(transientSurface.data(), QSize(50, 40), Qt::blue);
|
|
|
|
|
QVERIFY(windowShownSpy.wait());
|
|
|
|
|
QCOMPARE(transient->geometry(), QRect(c->geometry().topLeft() + QPoint(5, 10), QSize(50, 40)));
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-24 16:57:30 +00:00
|
|
|
|
void TestShellClient::testWindowOutputs_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2017-08-24 16:57:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testWindowOutputs()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
auto size = QSize(200,200);
|
|
|
|
|
|
|
|
|
|
QSignalSpy outputEnteredSpy(surface.data(), &Surface::outputEntered);
|
|
|
|
|
QSignalSpy outputLeftSpy(surface.data(), &Surface::outputLeft);
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), size, Qt::blue);
|
|
|
|
|
//move to be in the first screen
|
|
|
|
|
c->setGeometry(QRect(QPoint(100,100), size));
|
|
|
|
|
//we don't don't know where the compositor first placed this window,
|
|
|
|
|
//this might fire, it might not
|
|
|
|
|
outputEnteredSpy.wait(5);
|
|
|
|
|
outputEnteredSpy.clear();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(surface->outputs().count(), 1);
|
|
|
|
|
QCOMPARE(surface->outputs().first()->globalPosition(), QPoint(0,0));
|
|
|
|
|
|
|
|
|
|
//move to overlapping both first and second screen
|
|
|
|
|
c->setGeometry(QRect(QPoint(1250,100), size));
|
|
|
|
|
QVERIFY(outputEnteredSpy.wait());
|
|
|
|
|
QCOMPARE(outputEnteredSpy.count(), 1);
|
|
|
|
|
QCOMPARE(outputLeftSpy.count(), 0);
|
|
|
|
|
QCOMPARE(surface->outputs().count(), 2);
|
|
|
|
|
QVERIFY(surface->outputs()[0] != surface->outputs()[1]);
|
|
|
|
|
|
|
|
|
|
//move entirely into second screen
|
|
|
|
|
c->setGeometry(QRect(QPoint(1400,100), size));
|
|
|
|
|
QVERIFY(outputLeftSpy.wait());
|
|
|
|
|
QCOMPARE(outputEnteredSpy.count(), 1);
|
|
|
|
|
QCOMPARE(outputLeftSpy.count(), 1);
|
|
|
|
|
QCOMPARE(surface->outputs().count(), 1);
|
|
|
|
|
QCOMPARE(surface->outputs().first()->globalPosition(), QPoint(1280,0));
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 15:08:08 +00:00
|
|
|
|
void TestShellClient::testMinimizeActiveWindow_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2016-08-11 15:08:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testMinimizeActiveWindow()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that when minimizing the active window it gets deactivated
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2016-09-12 08:01:02 +00:00
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
|
|
|
|
QVERIFY(c->isShown(true));
|
2016-08-11 15:08:08 +00:00
|
|
|
|
|
|
|
|
|
workspace()->slotWindowMinimize();
|
2016-09-12 08:01:02 +00:00
|
|
|
|
QVERIFY(!c->isShown(true));
|
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
2016-08-11 15:08:08 +00:00
|
|
|
|
QVERIFY(!c->isActive());
|
|
|
|
|
QVERIFY(!workspace()->activeClient());
|
2016-08-18 08:30:27 +00:00
|
|
|
|
QVERIFY(c->isMinimized());
|
|
|
|
|
|
|
|
|
|
// unminimize again
|
|
|
|
|
c->unminimize();
|
|
|
|
|
QVERIFY(!c->isMinimized());
|
|
|
|
|
QVERIFY(c->isActive());
|
2016-09-12 08:01:02 +00:00
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
|
|
|
|
QVERIFY(c->isShown(true));
|
2016-08-18 08:30:27 +00:00
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2016-08-11 15:08:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 10:03:18 +00:00
|
|
|
|
void TestShellClient::testFullscreen_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
2016-09-12 12:14:20 +00:00
|
|
|
|
QTest::addColumn<ServerSideDecoration::Mode>("decoMode");
|
2016-09-12 10:03:18 +00:00
|
|
|
|
|
2016-09-12 12:14:20 +00:00
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell << ServerSideDecoration::Mode::Client;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5 << ServerSideDecoration::Mode::Client;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6 << ServerSideDecoration::Mode::Client;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgShellWmBase") << Test::ShellSurfaceType::XdgShellStable << ServerSideDecoration::Mode::Client;
|
2016-09-12 12:14:20 +00:00
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell - deco") << Test::ShellSurfaceType::WlShell << ServerSideDecoration::Mode::Server;
|
|
|
|
|
QTest::newRow("xdgShellV5 - deco") << Test::ShellSurfaceType::XdgShellV5 << ServerSideDecoration::Mode::Server;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6 - deco") << Test::ShellSurfaceType::XdgShellV6 << ServerSideDecoration::Mode::Server;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgShellWmBase - deco") << Test::ShellSurfaceType::XdgShellStable << ServerSideDecoration::Mode::Server;
|
|
|
|
|
|
2016-09-12 10:03:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testFullscreen()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that a window can be properly fullscreened
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
2016-09-12 12:14:20 +00:00
|
|
|
|
|
2018-10-05 14:27:05 +00:00
|
|
|
|
ShellSurface* wlShellSurface = nullptr;
|
|
|
|
|
XdgShellSurface *xdgShellSurface = nullptr;
|
|
|
|
|
// fullscreen the window
|
|
|
|
|
switch (type) {
|
|
|
|
|
case Test::ShellSurfaceType::WlShell:
|
|
|
|
|
wlShellSurface = qobject_cast<ShellSurface*>(shellSurface.data());
|
|
|
|
|
break;
|
|
|
|
|
case Test::ShellSurfaceType::XdgShellV5:
|
|
|
|
|
case Test::ShellSurfaceType::XdgShellV6:
|
2018-10-15 14:02:53 +00:00
|
|
|
|
case Test::ShellSurfaceType::XdgShellStable:
|
2018-10-05 14:27:05 +00:00
|
|
|
|
xdgShellSurface = qobject_cast<XdgShellSurface*>(shellSurface.data());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
QVERIFY(wlShellSurface || xdgShellSurface);
|
|
|
|
|
QVERIFY(!(wlShellSurface && xdgShellSurface));
|
|
|
|
|
|
2016-09-12 12:14:20 +00:00
|
|
|
|
// create deco
|
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
QSignalSpy decoSpy(deco.data(), &ServerSideDecoration::modeChanged);
|
|
|
|
|
QVERIFY(decoSpy.isValid());
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QFETCH(ServerSideDecoration::Mode, decoMode);
|
|
|
|
|
deco->requestMode(decoMode);
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QCOMPARE(deco->mode(), decoMode);
|
|
|
|
|
|
2016-09-12 10:03:18 +00:00
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
2016-09-13 08:30:52 +00:00
|
|
|
|
QCOMPARE(c->layer(), NormalLayer);
|
2016-09-12 10:03:18 +00:00
|
|
|
|
QVERIFY(!c->isFullScreen());
|
2016-09-12 12:14:20 +00:00
|
|
|
|
QCOMPARE(c->clientSize(), QSize(100, 50));
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
2016-11-18 11:32:05 +00:00
|
|
|
|
QCOMPARE(c->sizeForClientSize(c->clientSize()), c->geometry().size());
|
2016-09-12 10:03:18 +00:00
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &ShellClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
QSignalSpy geometryChangedSpy(c, &ShellClient::geometryChanged);
|
|
|
|
|
QVERIFY(geometryChangedSpy.isValid());
|
|
|
|
|
QSignalSpy sizeChangeRequestedSpy(shellSurface.data(), SIGNAL(sizeChanged(QSize)));
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.isValid());
|
2018-10-05 14:27:05 +00:00
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), SIGNAL(configureRequested(QSize, KWayland::Client::XdgShellSurface::States, quint32)));
|
|
|
|
|
if (xdgShellSurface) {
|
|
|
|
|
QVERIFY(configureRequestedSpy.isValid());
|
|
|
|
|
}
|
2016-09-12 10:03:18 +00:00
|
|
|
|
|
2018-10-05 14:27:05 +00:00
|
|
|
|
if (wlShellSurface) {
|
|
|
|
|
wlShellSurface->setFullscreen();
|
|
|
|
|
}
|
|
|
|
|
if (xdgShellSurface) {
|
|
|
|
|
xdgShellSurface->setFullscreen(true);
|
2016-09-12 10:03:18 +00:00
|
|
|
|
}
|
2018-10-05 14:27:05 +00:00
|
|
|
|
|
2016-09-12 10:03:18 +00:00
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 1);
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.first().first().toSize(), QSize(screens()->size(0)));
|
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
2016-09-12 12:14:20 +00:00
|
|
|
|
QCOMPARE(c->clientSize(), QSize(100, 50));
|
2016-09-12 10:03:18 +00:00
|
|
|
|
QVERIFY(geometryChangedSpy.isEmpty());
|
|
|
|
|
|
2018-10-05 14:27:05 +00:00
|
|
|
|
if (xdgShellSurface) {
|
|
|
|
|
for (const auto &it: configureRequestedSpy) {
|
|
|
|
|
xdgShellSurface->ackConfigure(it[2].toInt());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 10:03:18 +00:00
|
|
|
|
Test::render(surface.data(), sizeChangeRequestedSpy.first().first().toSize(), Qt::red);
|
|
|
|
|
QVERIFY(geometryChangedSpy.wait());
|
|
|
|
|
QCOMPARE(geometryChangedSpy.count(), 1);
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QVERIFY(!c->isDecorated());
|
2016-09-12 10:03:18 +00:00
|
|
|
|
QCOMPARE(c->geometry(), QRect(QPoint(0, 0), sizeChangeRequestedSpy.first().first().toSize()));
|
2016-09-13 08:30:52 +00:00
|
|
|
|
QCOMPARE(c->layer(), ActiveLayer);
|
2016-09-12 10:03:18 +00:00
|
|
|
|
|
|
|
|
|
// swap back to normal
|
2018-10-05 14:27:05 +00:00
|
|
|
|
if (wlShellSurface) {
|
|
|
|
|
wlShellSurface->setToplevel();
|
|
|
|
|
}
|
|
|
|
|
if (xdgShellSurface) {
|
|
|
|
|
xdgShellSurface->setFullscreen(false);
|
2016-09-12 10:03:18 +00:00
|
|
|
|
}
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 2);
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.last().first().toSize(), QSize(100, 50));
|
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
2016-09-13 08:30:52 +00:00
|
|
|
|
QCOMPARE(c->layer(), NormalLayer);
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-22 18:54:52 +00:00
|
|
|
|
void TestShellClient::testFullscreenRestore_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
|
|
|
|
QTest::newRow("xdgShellWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testFullscreenRestore()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that windows created fullscreen can be later properly restored
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
XdgShellSurface *xdgShellSurface = Test::createXdgShellSurface(type, surface.data(), surface.data(), Test::CreationSetup::CreateOnly);
|
|
|
|
|
QSignalSpy configureRequestedSpy(xdgShellSurface, SIGNAL(configureRequested(QSize, KWayland::Client::XdgShellSurface::States, quint32)));
|
2019-02-22 18:54:52 +00:00
|
|
|
|
|
|
|
|
|
// fullscreen the window
|
|
|
|
|
xdgShellSurface->setFullscreen(true);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
2019-02-22 18:54:52 +00:00
|
|
|
|
|
2019-02-26 13:41:07 +00:00
|
|
|
|
configureRequestedSpy.wait();
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
const auto size = configureRequestedSpy.first()[0].value<QSize>();
|
|
|
|
|
const auto state = configureRequestedSpy.first()[1].value<KWayland::Client::XdgShellSurface::States>();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(size, screens()->size(0));
|
|
|
|
|
QVERIFY(state & KWayland::Client::XdgShellSurface::State::Fullscreen);
|
|
|
|
|
xdgShellSurface->ackConfigure(configureRequestedSpy.first()[2].toUInt());
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), size, Qt::blue);
|
2019-02-22 18:54:52 +00:00
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
|
2019-02-26 13:41:07 +00:00
|
|
|
|
configureRequestedSpy.wait(100);
|
|
|
|
|
|
2019-02-22 18:54:52 +00:00
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &ShellClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
QSignalSpy geometryChangedSpy(c, &ShellClient::geometryChanged);
|
|
|
|
|
QVERIFY(geometryChangedSpy.isValid());
|
|
|
|
|
|
|
|
|
|
// swap back to normal
|
2019-02-26 13:41:07 +00:00
|
|
|
|
configureRequestedSpy.clear();
|
2019-02-22 18:54:52 +00:00
|
|
|
|
xdgShellSurface->setFullscreen(false);
|
|
|
|
|
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
QVERIFY(configureRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(configureRequestedSpy.last().first().toSize(), QSize(0, 0));
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
|
|
|
|
|
for (const auto &it: configureRequestedSpy) {
|
2019-02-26 13:41:07 +00:00
|
|
|
|
xdgShellSurface->ackConfigure(it[2].toUInt());
|
2019-02-22 18:54:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Test::render(surface.data(), QSize(100, 50), Qt::red);
|
|
|
|
|
QVERIFY(geometryChangedSpy.wait());
|
|
|
|
|
QCOMPARE(geometryChangedSpy.count(), 1);
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QCOMPARE(c->geometry().size(), QSize(100, 50));
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-07 09:41:17 +00:00
|
|
|
|
void TestShellClient::testUserCanSetFullscreen_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
QTest::addColumn<bool>("expected");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell << false;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5 << true;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6 << true;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable << true;
|
|
|
|
|
|
2017-10-07 09:41:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testUserCanSetFullscreen()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QTEST(c->userCanSetFullScreen(), "expected");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testUserSetFullscreenWlShell()
|
|
|
|
|
{
|
|
|
|
|
// wlshell cannot sync fullscreen to the client
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &AbstractClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
c->setFullScreen(true);
|
|
|
|
|
QCOMPARE(fullscreenChangedSpy.count(), 0);
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testUserSetFullscreenXdgShell_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2017-10-07 09:41:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testUserSetFullscreenXdgShell()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellSurface(
|
|
|
|
|
type, surface.data(), surface.data(), Test::CreationSetup::CreateOnly));
|
2017-10-07 09:41:17 +00:00
|
|
|
|
QVERIFY(!shellSurface.isNull());
|
2019-02-26 13:41:07 +00:00
|
|
|
|
|
|
|
|
|
// wait for the initial configure event
|
2017-10-07 09:41:17 +00:00
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), &XdgShellSurface::configureRequested);
|
|
|
|
|
QVERIFY(configureRequestedSpy.isValid());
|
2019-02-26 13:41:07 +00:00
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
QVERIFY(configureRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.last().at(2).value<quint32>());
|
2017-10-07 09:41:17 +00:00
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
|
2019-02-26 13:41:07 +00:00
|
|
|
|
// The client gets activated, which gets another configure event. Though that's not relevant to the test
|
|
|
|
|
configureRequestedSpy.wait(10);
|
2017-10-07 09:41:17 +00:00
|
|
|
|
|
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &AbstractClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
c->setFullScreen(true);
|
|
|
|
|
QCOMPARE(c->isFullScreen(), true);
|
|
|
|
|
configureRequestedSpy.clear();
|
|
|
|
|
QVERIFY(configureRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
QCOMPARE(configureRequestedSpy.first().at(0).toSize(), screens()->size(0));
|
|
|
|
|
const auto states = configureRequestedSpy.first().at(1).value<KWayland::Client::XdgShellSurface::States>();
|
|
|
|
|
QVERIFY(states.testFlag(KWayland::Client::XdgShellSurface::State::Fullscreen));
|
|
|
|
|
QVERIFY(states.testFlag(KWayland::Client::XdgShellSurface::State::Activated));
|
|
|
|
|
QVERIFY(!states.testFlag(KWayland::Client::XdgShellSurface::State::Maximized));
|
|
|
|
|
QVERIFY(!states.testFlag(KWayland::Client::XdgShellSurface::State::Resizing));
|
|
|
|
|
QCOMPARE(fullscreenChangedSpy.count(), 1);
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.first().at(2).value<quint32>());
|
|
|
|
|
|
|
|
|
|
// unset fullscreen again
|
|
|
|
|
c->setFullScreen(false);
|
|
|
|
|
QCOMPARE(c->isFullScreen(), false);
|
|
|
|
|
configureRequestedSpy.clear();
|
|
|
|
|
QVERIFY(configureRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
QCOMPARE(configureRequestedSpy.first().at(0).toSize(), QSize(100, 50));
|
|
|
|
|
QVERIFY(!configureRequestedSpy.first().at(1).value<KWayland::Client::XdgShellSurface::States>().testFlag(KWayland::Client::XdgShellSurface::State::Fullscreen));
|
|
|
|
|
QCOMPARE(fullscreenChangedSpy.count(), 2);
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
}
|
2016-09-12 12:41:03 +00:00
|
|
|
|
|
2019-01-29 12:28:52 +00:00
|
|
|
|
void TestShellClient::testMaximizedToFullscreenWlShell_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<ServerSideDecoration::Mode>("decoMode");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << ServerSideDecoration::Mode::Client;
|
|
|
|
|
QTest::newRow("wlShell - deco") << ServerSideDecoration::Mode::Server;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testMaximizedToFullscreenWlShell()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that a window can be properly fullscreened after maximizing
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data()));
|
|
|
|
|
|
|
|
|
|
QVERIFY(shellSurface.data());
|
|
|
|
|
|
|
|
|
|
// create deco
|
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
QSignalSpy decoSpy(deco.data(), &ServerSideDecoration::modeChanged);
|
|
|
|
|
QVERIFY(decoSpy.isValid());
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QFETCH(ServerSideDecoration::Mode, decoMode);
|
|
|
|
|
deco->requestMode(decoMode);
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QCOMPARE(deco->mode(), decoMode);
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QCOMPARE(c->clientSize(), QSize(100, 50));
|
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &ShellClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
QSignalSpy geometryChangedSpy(c, &ShellClient::geometryChanged);
|
|
|
|
|
QVERIFY(geometryChangedSpy.isValid());
|
|
|
|
|
QSignalSpy sizeChangeRequestedSpy(shellSurface.data(), SIGNAL(sizeChanged(QSize)));
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.isValid());
|
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), SIGNAL(configureRequested(QSize, KWayland::Client::XdgShellSurface::States, quint32)));
|
|
|
|
|
|
|
|
|
|
shellSurface->setMaximized();
|
|
|
|
|
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
Test::render(surface.data(), sizeChangeRequestedSpy.last().first().toSize(), Qt::red);
|
|
|
|
|
QVERIFY(geometryChangedSpy.wait());
|
|
|
|
|
|
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeFull);
|
|
|
|
|
QCOMPARE(geometryChangedSpy.isEmpty(), false);
|
|
|
|
|
geometryChangedSpy.clear();
|
|
|
|
|
|
|
|
|
|
// fullscreen the window
|
|
|
|
|
shellSurface->setFullscreen();
|
|
|
|
|
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
if (decoMode == ServerSideDecoration::Mode::Server) {
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 2);
|
|
|
|
|
}
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.last().first().toSize(), QSize(screens()->size(0)));
|
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
|
|
|
|
|
// render at the new size
|
|
|
|
|
Test::render(surface.data(), sizeChangeRequestedSpy.last().first().toSize(), Qt::red);
|
|
|
|
|
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
QVERIFY(!c->isDecorated());
|
|
|
|
|
QCOMPARE(c->geometry(), QRect(QPoint(0, 0), sizeChangeRequestedSpy.last().first().toSize()));
|
|
|
|
|
sizeChangeRequestedSpy.clear();
|
|
|
|
|
|
|
|
|
|
// swap back to normal
|
|
|
|
|
shellSurface->setToplevel();
|
|
|
|
|
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
if (decoMode == ServerSideDecoration::Mode::Server) {
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
// fails as we don't correctly call setMaximize(false)
|
|
|
|
|
// but realistically the only toolkits that support the deco also use XDGShell
|
|
|
|
|
QEXPECT_FAIL("wlShell - deco", "With decoration incorrect geometry requested", Continue);
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.last().first().toSize(), QSize(100, 50));
|
|
|
|
|
}
|
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testMaximizedToFullscreenXdgShell_data()
|
2016-09-12 12:41:03 +00:00
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
QTest::addColumn<ServerSideDecoration::Mode>("decoMode");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5 << ServerSideDecoration::Mode::Client;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6 << ServerSideDecoration::Mode::Client;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgShellWmBase") << Test::ShellSurfaceType::XdgShellStable << ServerSideDecoration::Mode::Client;
|
2016-09-12 12:41:03 +00:00
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5 - deco") << Test::ShellSurfaceType::XdgShellV5 << ServerSideDecoration::Mode::Server;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6 - deco") << Test::ShellSurfaceType::XdgShellV6 << ServerSideDecoration::Mode::Server;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgShellWmBase - deco") << Test::ShellSurfaceType::XdgShellStable << ServerSideDecoration::Mode::Server;
|
2016-09-12 12:41:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-29 12:28:52 +00:00
|
|
|
|
void TestShellClient::testMaximizedToFullscreenXdgShell()
|
2016-09-12 12:41:03 +00:00
|
|
|
|
{
|
|
|
|
|
// this test verifies that a window can be properly fullscreened after maximizing
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
|
2018-10-05 14:27:05 +00:00
|
|
|
|
XdgShellSurface *xdgShellSurface = nullptr;
|
|
|
|
|
// fullscreen the window
|
|
|
|
|
switch (type) {
|
|
|
|
|
case Test::ShellSurfaceType::XdgShellV5:
|
|
|
|
|
case Test::ShellSurfaceType::XdgShellV6:
|
2018-10-15 14:02:53 +00:00
|
|
|
|
case Test::ShellSurfaceType::XdgShellStable:
|
2018-10-05 14:27:05 +00:00
|
|
|
|
xdgShellSurface = qobject_cast<XdgShellSurface*>(shellSurface.data());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-01-29 12:28:52 +00:00
|
|
|
|
QVERIFY(xdgShellSurface);
|
2018-10-05 14:27:05 +00:00
|
|
|
|
|
2016-09-12 12:41:03 +00:00
|
|
|
|
// create deco
|
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
QSignalSpy decoSpy(deco.data(), &ServerSideDecoration::modeChanged);
|
|
|
|
|
QVERIFY(decoSpy.isValid());
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QFETCH(ServerSideDecoration::Mode, decoMode);
|
|
|
|
|
deco->requestMode(decoMode);
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QCOMPARE(deco->mode(), decoMode);
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QCOMPARE(c->clientSize(), QSize(100, 50));
|
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
|
|
|
|
QSignalSpy fullscreenChangedSpy(c, &ShellClient::fullScreenChanged);
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.isValid());
|
|
|
|
|
QSignalSpy geometryChangedSpy(c, &ShellClient::geometryChanged);
|
|
|
|
|
QVERIFY(geometryChangedSpy.isValid());
|
|
|
|
|
QSignalSpy sizeChangeRequestedSpy(shellSurface.data(), SIGNAL(sizeChanged(QSize)));
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.isValid());
|
2018-10-05 14:27:05 +00:00
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), SIGNAL(configureRequested(QSize, KWayland::Client::XdgShellSurface::States, quint32)));
|
2019-01-29 12:28:52 +00:00
|
|
|
|
QVERIFY(configureRequestedSpy.isValid());
|
|
|
|
|
xdgShellSurface->setMaximized(true);
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 1);
|
[wayland] Asyncronously update maximise flags
Summary:
A window maximising is an async operation. We work out what size we want
the client to be, then request the client to update. The window isn't
really maximised until we get that new buffer with the new size.
This patch splits the requested, pending and current state, updating as
appropriate.
Things are a bit complex with things like borders. Technically we
shouldn't update them till we get a response, but we also need to have
the correct geometry of the full size window in our request. For now
they behave as before, updating when we request the change.
X code is untouched.
This hopefully fixes maximise animations on wayland as now we update the
geometry before emitting maximisedChanged.
Test Plan:
Maximised a window with the button and double clicking title bar.
I get only the following events on maximise/restore:
19:51:39.156 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(47,24 640x509) QRect(0,0 716x573)
19:51:39.157 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised true true
19:51:40.522 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(0,0 716x573) QRect(47,24 640x509)
19:51:40.522 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised false false
BUG: 382698
Reviewers: #kwin, romangg
Reviewed By: #kwin, romangg
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15150
2018-10-05 14:36:02 +00:00
|
|
|
|
|
2019-01-29 12:28:52 +00:00
|
|
|
|
for (const auto &it: configureRequestedSpy) {
|
|
|
|
|
xdgShellSurface->ackConfigure(it[2].toInt());
|
[wayland] Asyncronously update maximise flags
Summary:
A window maximising is an async operation. We work out what size we want
the client to be, then request the client to update. The window isn't
really maximised until we get that new buffer with the new size.
This patch splits the requested, pending and current state, updating as
appropriate.
Things are a bit complex with things like borders. Technically we
shouldn't update them till we get a response, but we also need to have
the correct geometry of the full size window in our request. For now
they behave as before, updating when we request the change.
X code is untouched.
This hopefully fixes maximise animations on wayland as now we update the
geometry before emitting maximisedChanged.
Test Plan:
Maximised a window with the button and double clicking title bar.
I get only the following events on maximise/restore:
19:51:39.156 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(47,24 640x509) QRect(0,0 716x573)
19:51:39.157 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised true true
19:51:40.522 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(0,0 716x573) QRect(47,24 640x509)
19:51:40.522 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised false false
BUG: 382698
Reviewers: #kwin, romangg
Reviewed By: #kwin, romangg
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15150
2018-10-05 14:36:02 +00:00
|
|
|
|
}
|
|
|
|
|
Test::render(surface.data(), sizeChangeRequestedSpy.last().first().toSize(), Qt::red);
|
|
|
|
|
QVERIFY(geometryChangedSpy.wait());
|
|
|
|
|
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeFull);
|
|
|
|
|
QCOMPARE(geometryChangedSpy.isEmpty(), false);
|
|
|
|
|
geometryChangedSpy.clear();
|
|
|
|
|
|
|
|
|
|
// fullscreen the window
|
2019-01-29 12:28:52 +00:00
|
|
|
|
xdgShellSurface->setFullscreen(true);
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
|
|
|
|
if (decoMode == ServerSideDecoration::Mode::Server) {
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.count(), 2);
|
|
|
|
|
}
|
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.last().first().toSize(), QSize(screens()->size(0)));
|
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
|
2019-01-29 12:28:52 +00:00
|
|
|
|
for (const auto &it: configureRequestedSpy) {
|
|
|
|
|
xdgShellSurface->ackConfigure(it[2].toInt());
|
2018-10-05 14:27:05 +00:00
|
|
|
|
}
|
2016-09-12 12:41:03 +00:00
|
|
|
|
// render at the new size
|
|
|
|
|
Test::render(surface.data(), sizeChangeRequestedSpy.last().first().toSize(), Qt::red);
|
2018-11-16 11:59:39 +00:00
|
|
|
|
|
2016-09-12 12:41:03 +00:00
|
|
|
|
QVERIFY(c->isFullScreen());
|
|
|
|
|
QVERIFY(!c->isDecorated());
|
|
|
|
|
QCOMPARE(c->geometry(), QRect(QPoint(0, 0), sizeChangeRequestedSpy.last().first().toSize()));
|
|
|
|
|
sizeChangeRequestedSpy.clear();
|
|
|
|
|
|
|
|
|
|
// swap back to normal
|
|
|
|
|
switch (type) {
|
|
|
|
|
case Test::ShellSurfaceType::XdgShellV5:
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
case Test::ShellSurfaceType::XdgShellV6:
|
2018-10-15 14:02:53 +00:00
|
|
|
|
case Test::ShellSurfaceType::XdgShellStable:
|
2016-09-12 12:41:03 +00:00
|
|
|
|
qobject_cast<XdgShellSurface*>(shellSurface.data())->setFullscreen(false);
|
2018-11-16 11:59:39 +00:00
|
|
|
|
qobject_cast<XdgShellSurface*>(shellSurface.data())->setMaximized(false);
|
2016-09-12 12:41:03 +00:00
|
|
|
|
break;
|
2019-01-29 12:28:52 +00:00
|
|
|
|
default:
|
|
|
|
|
Q_UNREACHABLE();
|
2016-09-12 12:41:03 +00:00
|
|
|
|
}
|
|
|
|
|
QVERIFY(fullscreenChangedSpy.wait());
|
2018-11-16 11:59:39 +00:00
|
|
|
|
if (decoMode == ServerSideDecoration::Mode::Server) {
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
2018-11-17 12:06:35 +00:00
|
|
|
|
// XDG will legitimately get two updates. They might be batched
|
|
|
|
|
if (xdgShellSurface && sizeChangeRequestedSpy.count() == 1) {
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait());
|
|
|
|
|
}
|
2018-11-16 11:59:39 +00:00
|
|
|
|
QCOMPARE(sizeChangeRequestedSpy.last().first().toSize(), QSize(100, 50));
|
|
|
|
|
}
|
2016-09-12 12:41:03 +00:00
|
|
|
|
// TODO: should switch to fullscreen once it's updated
|
|
|
|
|
QVERIFY(!c->isFullScreen());
|
|
|
|
|
QCOMPARE(c->isDecorated(), decoMode == ServerSideDecoration::Mode::Server);
|
2016-09-12 10:03:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 12:08:47 +00:00
|
|
|
|
void TestShellClient::testWindowOpensLargerThanScreen_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2016-09-14 12:08:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testWindowOpensLargerThanScreen()
|
|
|
|
|
{
|
|
|
|
|
// this test creates a window which is as large as the screen, but is decorated
|
|
|
|
|
// the window should get resized to fit into the screen, BUG: 366632
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
QSignalSpy sizeChangeRequestedSpy(shellSurface.data(), SIGNAL(sizeChanged(QSize)));
|
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.isValid());
|
|
|
|
|
|
|
|
|
|
// create deco
|
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
QSignalSpy decoSpy(deco.data(), &ServerSideDecoration::modeChanged);
|
|
|
|
|
QVERIFY(decoSpy.isValid());
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
deco->requestMode(ServerSideDecoration::Mode::Server);
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
QCOMPARE(deco->mode(), ServerSideDecoration::Mode::Server);
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), screens()->size(0), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QCOMPARE(c->clientSize(), screens()->size(0));
|
|
|
|
|
QVERIFY(c->isDecorated());
|
|
|
|
|
QEXPECT_FAIL("", "BUG 366632", Continue);
|
2019-02-28 01:41:16 +00:00
|
|
|
|
QVERIFY(sizeChangeRequestedSpy.wait(10));
|
2016-09-14 12:08:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 14:24:10 +00:00
|
|
|
|
void TestShellClient::testHidden_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2016-10-11 14:24:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testHidden()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that when hiding window it doesn't get shown
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
|
|
|
|
QVERIFY(c->isShown(true));
|
|
|
|
|
|
|
|
|
|
c->hideClient(true);
|
|
|
|
|
QVERIFY(!c->isShown(true));
|
|
|
|
|
QVERIFY(!c->isActive());
|
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
|
|
|
|
|
|
|
|
|
// unhide again
|
|
|
|
|
c->hideClient(false);
|
|
|
|
|
QVERIFY(c->isShown(true));
|
|
|
|
|
QVERIFY(c->wantsInput());
|
|
|
|
|
QVERIFY(c->wantsTabFocus());
|
|
|
|
|
|
|
|
|
|
//QCOMPARE(workspace()->activeClient(), c);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-27 13:59:08 +00:00
|
|
|
|
void TestShellClient::testDesktopFileName()
|
|
|
|
|
{
|
2016-10-31 13:16:23 +00:00
|
|
|
|
QIcon::setThemeName(QStringLiteral("breeze"));
|
2016-10-27 13:59:08 +00:00
|
|
|
|
// this test verifies that desktop file name is passed correctly to the window
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
// only xdg-shell as ShellSurface misses the setter
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface.data())));
|
|
|
|
|
shellSurface->setAppId(QByteArrayLiteral("org.kde.foo"));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QCOMPARE(c->desktopFileName(), QByteArrayLiteral("org.kde.foo"));
|
2018-03-04 16:05:46 +00:00
|
|
|
|
QCOMPARE(c->resourceClass(), QByteArrayLiteral("org.kde.foo"));
|
|
|
|
|
QVERIFY(c->resourceName().startsWith("testShellClient"));
|
2016-10-27 13:59:08 +00:00
|
|
|
|
// the desktop file does not exist, so icon should be generic Wayland
|
|
|
|
|
QCOMPARE(c->icon().name(), QStringLiteral("wayland"));
|
|
|
|
|
|
|
|
|
|
QSignalSpy desktopFileNameChangedSpy(c, &AbstractClient::desktopFileNameChanged);
|
|
|
|
|
QVERIFY(desktopFileNameChangedSpy.isValid());
|
|
|
|
|
QSignalSpy iconChangedSpy(c, &ShellClient::iconChanged);
|
|
|
|
|
QVERIFY(iconChangedSpy.isValid());
|
|
|
|
|
shellSurface->setAppId(QByteArrayLiteral("org.kde.bar"));
|
|
|
|
|
QVERIFY(desktopFileNameChangedSpy.wait());
|
|
|
|
|
QCOMPARE(c->desktopFileName(), QByteArrayLiteral("org.kde.bar"));
|
2018-03-04 16:05:46 +00:00
|
|
|
|
QCOMPARE(c->resourceClass(), QByteArrayLiteral("org.kde.bar"));
|
|
|
|
|
QVERIFY(c->resourceName().startsWith("testShellClient"));
|
2016-10-27 13:59:08 +00:00
|
|
|
|
// icon should still be wayland
|
|
|
|
|
QCOMPARE(c->icon().name(), QStringLiteral("wayland"));
|
|
|
|
|
QVERIFY(iconChangedSpy.isEmpty());
|
|
|
|
|
|
|
|
|
|
const QString dfPath = QFINDTESTDATA("data/example.desktop");
|
|
|
|
|
shellSurface->setAppId(dfPath.toUtf8());
|
|
|
|
|
QVERIFY(desktopFileNameChangedSpy.wait());
|
|
|
|
|
QCOMPARE(iconChangedSpy.count(), 1);
|
|
|
|
|
QCOMPARE(QString::fromUtf8(c->desktopFileName()), dfPath);
|
|
|
|
|
QCOMPARE(c->icon().name(), QStringLiteral("kwin"));
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-31 14:50:14 +00:00
|
|
|
|
void TestShellClient::testCaptionSimplified()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that caption is properly trimmed
|
|
|
|
|
// see BUG 323798 comment #12
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
// only done for xdg-shell as ShellSurface misses the setter
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface.data())));
|
|
|
|
|
const QString origTitle = QString::fromUtf8(QByteArrayLiteral("Was tun, wenn Schüler Autismus haben?\342\200\250\342\200\250\342\200\250 – Marlies Hübner - Mozilla Firefox"));
|
|
|
|
|
shellSurface->setTitle(origTitle);
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->caption() != origTitle);
|
|
|
|
|
QCOMPARE(c->caption(), origTitle.simplified());
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-20 06:56:13 +00:00
|
|
|
|
void TestShellClient::testCaptionMultipleWindows()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface.data())));
|
|
|
|
|
shellSurface->setTitle(QStringLiteral("foo"));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QCOMPARE(c->caption(), QStringLiteral("foo"));
|
|
|
|
|
QCOMPARE(c->captionNormal(), QStringLiteral("foo"));
|
|
|
|
|
QCOMPARE(c->captionSuffix(), QString());
|
|
|
|
|
|
|
|
|
|
QScopedPointer<Surface> surface2(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface2(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface2.data())));
|
|
|
|
|
shellSurface2->setTitle(QStringLiteral("foo"));
|
|
|
|
|
auto c2 = Test::renderAndWaitForShown(surface2.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c2);
|
|
|
|
|
QCOMPARE(c2->caption(), QStringLiteral("foo <2>"));
|
|
|
|
|
QCOMPARE(c2->captionNormal(), QStringLiteral("foo"));
|
|
|
|
|
QCOMPARE(c2->captionSuffix(), QStringLiteral(" <2>"));
|
|
|
|
|
|
|
|
|
|
QScopedPointer<Surface> surface3(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface3(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface3.data())));
|
|
|
|
|
shellSurface3->setTitle(QStringLiteral("foo"));
|
|
|
|
|
auto c3 = Test::renderAndWaitForShown(surface3.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c3);
|
|
|
|
|
QCOMPARE(c3->caption(), QStringLiteral("foo <3>"));
|
|
|
|
|
QCOMPARE(c3->captionNormal(), QStringLiteral("foo"));
|
|
|
|
|
QCOMPARE(c3->captionSuffix(), QStringLiteral(" <3>"));
|
|
|
|
|
|
|
|
|
|
QScopedPointer<Surface> surface4(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface4(qobject_cast<XdgShellSurface*>(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV5, surface4.data())));
|
|
|
|
|
shellSurface4->setTitle(QStringLiteral("bar"));
|
|
|
|
|
auto c4 = Test::renderAndWaitForShown(surface4.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c4);
|
|
|
|
|
QCOMPARE(c4->caption(), QStringLiteral("bar"));
|
|
|
|
|
QCOMPARE(c4->captionNormal(), QStringLiteral("bar"));
|
|
|
|
|
QCOMPARE(c4->captionSuffix(), QString());
|
|
|
|
|
QSignalSpy captionChangedSpy(c4, &ShellClient::captionChanged);
|
|
|
|
|
QVERIFY(captionChangedSpy.isValid());
|
|
|
|
|
shellSurface4->setTitle(QStringLiteral("foo"));
|
|
|
|
|
QVERIFY(captionChangedSpy.wait());
|
|
|
|
|
QCOMPARE(captionChangedSpy.count(), 1);
|
|
|
|
|
QCOMPARE(c4->caption(), QStringLiteral("foo <4>"));
|
|
|
|
|
QCOMPARE(c4->captionNormal(), QStringLiteral("foo"));
|
|
|
|
|
QCOMPARE(c4->captionSuffix(), QStringLiteral(" <4>"));
|
|
|
|
|
}
|
|
|
|
|
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
void TestShellClient::testUnresponsiveWindow_data()
|
2016-11-15 15:48:20 +00:00
|
|
|
|
{
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::addColumn<QString>("shellInterface");//see env selection in qwaylandintegration.cpp
|
2016-11-15 15:48:20 +00:00
|
|
|
|
QTest::addColumn<bool>("socketMode");
|
|
|
|
|
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
//wl-shell ping is not implemented
|
|
|
|
|
//QTest::newRow("wl-shell display") << "wl-shell" << false;
|
|
|
|
|
//QTest::newRow("wl-shell socket") << "wl-shell" << true;
|
|
|
|
|
QTest::newRow("xdgv5 display") << "xdg-shell-v5" << false;
|
|
|
|
|
QTest::newRow("xdgv5 socket") << "xdg-shell-v5" << true;
|
|
|
|
|
QTest::newRow("xdgv6 display") << "xdg-shell-v6" << false;
|
|
|
|
|
QTest::newRow("xdgv6 socket") << "xdg-shell-v6" << true;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
|
|
|
|
|
//TODO add XDG WM Base when Kwin relies on Qt 5.12
|
2016-11-15 15:48:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
void TestShellClient::testUnresponsiveWindow()
|
2016-11-15 15:48:20 +00:00
|
|
|
|
{
|
|
|
|
|
// this test verifies that killWindow properly terminates a process
|
|
|
|
|
// for this an external binary is launched
|
2017-08-25 16:18:20 +00:00
|
|
|
|
const QString kill = QFINDTESTDATA(QStringLiteral("kill"));
|
2016-11-15 15:48:20 +00:00
|
|
|
|
QVERIFY(!kill.isEmpty());
|
|
|
|
|
QSignalSpy shellClientAddedSpy(waylandServer(), &WaylandServer::shellClientAdded);
|
|
|
|
|
QVERIFY(shellClientAddedSpy.isValid());
|
|
|
|
|
|
|
|
|
|
QScopedPointer<QProcess> process(new QProcess);
|
|
|
|
|
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
|
|
|
|
|
QFETCH(QString, shellInterface);
|
2016-11-15 15:48:20 +00:00
|
|
|
|
QFETCH(bool, socketMode);
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
env.insert("QT_WAYLAND_SHELL_INTEGRATION", shellInterface);
|
2016-11-15 15:48:20 +00:00
|
|
|
|
if (socketMode) {
|
|
|
|
|
int sx[2];
|
|
|
|
|
QVERIFY(socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sx) >= 0);
|
|
|
|
|
waylandServer()->display()->createClient(sx[0]);
|
|
|
|
|
int socket = dup(sx[1]);
|
|
|
|
|
QVERIFY(socket != -1);
|
|
|
|
|
env.insert(QStringLiteral("WAYLAND_SOCKET"), QByteArray::number(socket));
|
|
|
|
|
env.remove("WAYLAND_DISPLAY");
|
|
|
|
|
} else {
|
|
|
|
|
env.insert("WAYLAND_DISPLAY", s_socketName);
|
|
|
|
|
}
|
|
|
|
|
process->setProcessEnvironment(env);
|
|
|
|
|
process->setProcessChannelMode(QProcess::ForwardedChannels);
|
|
|
|
|
process->setProgram(kill);
|
2018-12-23 06:58:29 +00:00
|
|
|
|
QSignalSpy processStartedSpy{process.data(), &QProcess::started};
|
|
|
|
|
QVERIFY(processStartedSpy.isValid());
|
2016-11-15 15:48:20 +00:00
|
|
|
|
process->start();
|
2018-12-23 06:58:29 +00:00
|
|
|
|
QVERIFY(processStartedSpy.wait());
|
2016-11-15 15:48:20 +00:00
|
|
|
|
|
|
|
|
|
AbstractClient *killClient = nullptr;
|
2018-12-23 06:58:29 +00:00
|
|
|
|
if (shellClientAddedSpy.isEmpty()) {
|
|
|
|
|
QVERIFY(shellClientAddedSpy.wait());
|
|
|
|
|
}
|
2019-02-28 02:09:16 +00:00
|
|
|
|
::kill(process->processId(), SIGUSR1); // send a signal to freeze the process
|
|
|
|
|
|
2016-11-15 15:48:20 +00:00
|
|
|
|
killClient = shellClientAddedSpy.first().first().value<AbstractClient*>();
|
2019-02-28 02:09:16 +00:00
|
|
|
|
QVERIFY(killClient);
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QSignalSpy unresponsiveSpy(killClient, &AbstractClient::unresponsiveChanged);
|
|
|
|
|
QSignalSpy killedSpy(process.data(), static_cast<void(QProcess::*)(int,QProcess::ExitStatus)>(&QProcess::finished));
|
|
|
|
|
QSignalSpy deletedSpy(killClient, &QObject::destroyed);
|
|
|
|
|
|
|
|
|
|
qint64 startTime = QDateTime::currentMSecsSinceEpoch();
|
|
|
|
|
|
|
|
|
|
//wait for the process to be frozen
|
|
|
|
|
QTest::qWait(10);
|
|
|
|
|
|
|
|
|
|
//pretend the user clicked the close button
|
|
|
|
|
killClient->closeWindow();
|
|
|
|
|
|
|
|
|
|
//client should not yet be marked unresponsive nor killed
|
|
|
|
|
QVERIFY(!killClient->unresponsive());
|
|
|
|
|
QVERIFY(killedSpy.isEmpty());
|
|
|
|
|
|
|
|
|
|
QVERIFY(unresponsiveSpy.wait());
|
|
|
|
|
//client should be marked unresponsive but not killed
|
|
|
|
|
auto elapsed1 = QDateTime::currentMSecsSinceEpoch() - startTime;
|
|
|
|
|
QVERIFY(elapsed1 > 900 && elapsed1 < 1200); //ping timer is 1s, but coarse timers on a test across two processes means we need a fuzzy compare
|
|
|
|
|
QVERIFY(killClient->unresponsive());
|
|
|
|
|
QVERIFY(killedSpy.isEmpty());
|
|
|
|
|
|
|
|
|
|
QVERIFY(deletedSpy.wait());
|
|
|
|
|
if (!socketMode) {
|
|
|
|
|
//process was killed - because we're across process this could happen in either order
|
|
|
|
|
QVERIFY(killedSpy.count() || killedSpy.wait());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto elapsed2 = QDateTime::currentMSecsSinceEpoch() - startTime;
|
|
|
|
|
QVERIFY(elapsed2 > 1800); //second ping comes in a second later
|
2016-11-15 15:48:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 05:08:27 +00:00
|
|
|
|
void TestShellClient::testX11WindowId_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2017-07-26 05:08:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testX11WindowId()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->windowId() != 0);
|
|
|
|
|
QCOMPARE(c->window(), 0u);
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-22 14:22:24 +00:00
|
|
|
|
void TestShellClient::testAppMenu()
|
|
|
|
|
{
|
2017-12-22 17:23:44 +00:00
|
|
|
|
//register a faux appmenu client
|
|
|
|
|
QVERIFY (QDBusConnection::sessionBus().registerService("org.kde.kappmenu"));
|
|
|
|
|
|
2017-12-22 14:22:24 +00:00
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(Test::ShellSurfaceType::XdgShellV6, surface.data()));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QScopedPointer<AppMenu> menu(Test::waylandAppMenuManager()->create(surface.data()));
|
|
|
|
|
QSignalSpy spy(c, &ShellClient::hasApplicationMenuChanged);
|
|
|
|
|
menu->setAddress("service.name", "object/path");
|
|
|
|
|
spy.wait();
|
|
|
|
|
QCOMPARE(c->hasApplicationMenu(), true);
|
2017-12-22 15:47:43 +00:00
|
|
|
|
QCOMPARE(c->applicationMenuServiceName(), QString("service.name"));
|
|
|
|
|
QCOMPARE(c->applicationMenuObjectPath(), QString("object/path"));
|
2017-12-22 17:23:44 +00:00
|
|
|
|
|
|
|
|
|
QVERIFY (QDBusConnection::sessionBus().unregisterService("org.kde.kappmenu"));
|
2017-12-22 14:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-19 21:10:17 +00:00
|
|
|
|
void TestShellClient::testNoDecorationModeRequested_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("wlShell") << Test::ShellSurfaceType::WlShell;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
2018-09-14 11:04:33 +00:00
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
2018-02-19 21:10:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testNoDecorationModeRequested()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that the decoration follows the default mode if no mode is explicitly requested
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
QSignalSpy decoSpy(deco.data(), &ServerSideDecoration::modeChanged);
|
|
|
|
|
QVERIFY(decoSpy.isValid());
|
|
|
|
|
if (deco->mode() != ServerSideDecoration::Mode::Server) {
|
|
|
|
|
QVERIFY(decoSpy.wait());
|
|
|
|
|
}
|
|
|
|
|
QCOMPARE(deco->mode(), ServerSideDecoration::Mode::Server);
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QCOMPARE(c->noBorder(), false);
|
|
|
|
|
QCOMPARE(c->isDecorated(), true);
|
|
|
|
|
}
|
2017-12-22 14:22:24 +00:00
|
|
|
|
|
2018-12-12 17:25:51 +00:00
|
|
|
|
void TestShellClient::testSendClientWithTransientToDesktop_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testSendClientWithTransientToDesktop()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that when sending a client to a desktop all transients are also send to that desktop
|
|
|
|
|
|
|
|
|
|
VirtualDesktopManager::self()->setCount(2);
|
|
|
|
|
QScopedPointer<Surface> surface{Test::createSurface()};
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface{qobject_cast<XdgShellSurface*>(Test::createShellSurface(type, surface.data()))};
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
|
|
|
|
|
// let's create a transient window
|
|
|
|
|
QScopedPointer<Surface> transientSurface{Test::createSurface()};
|
|
|
|
|
QScopedPointer<XdgShellSurface> transientShellSurface{qobject_cast<XdgShellSurface*>(Test::createShellSurface(type, transientSurface.data()))};
|
|
|
|
|
transientShellSurface->setTransientFor(shellSurface.data());
|
|
|
|
|
|
|
|
|
|
auto transient = Test::renderAndWaitForShown(transientSurface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(transient);
|
|
|
|
|
QCOMPARE(workspace()->activeClient(), transient);
|
|
|
|
|
QCOMPARE(transient->transientFor(), c);
|
|
|
|
|
QVERIFY(c->transients().contains(transient));
|
|
|
|
|
|
|
|
|
|
QCOMPARE(c->desktop(), 1);
|
|
|
|
|
QVERIFY(!c->isOnAllDesktops());
|
|
|
|
|
QCOMPARE(transient->desktop(), 1);
|
|
|
|
|
QVERIFY(!transient->isOnAllDesktops());
|
|
|
|
|
workspace()->slotWindowToDesktop(2);
|
|
|
|
|
|
|
|
|
|
QCOMPARE(c->desktop(), 1);
|
|
|
|
|
QCOMPARE(transient->desktop(), 2);
|
|
|
|
|
|
|
|
|
|
// activate c
|
|
|
|
|
workspace()->activateClient(c);
|
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
|
|
|
|
QVERIFY(c->isActive());
|
|
|
|
|
|
|
|
|
|
// and send it to the desktop it's already on
|
|
|
|
|
QCOMPARE(c->desktop(), 1);
|
|
|
|
|
QCOMPARE(transient->desktop(), 2);
|
|
|
|
|
workspace()->slotWindowToDesktop(1);
|
|
|
|
|
|
|
|
|
|
// which should move the transient back to the desktop
|
|
|
|
|
QCOMPARE(c->desktop(), 1);
|
|
|
|
|
QCOMPARE(transient->desktop(), 1);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-13 16:47:10 +00:00
|
|
|
|
void TestShellClient::testMinimizeWindowWithTransients_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("xdgShellV5") << Test::ShellSurfaceType::XdgShellV5;
|
|
|
|
|
QTest::newRow("xdgShellV6") << Test::ShellSurfaceType::XdgShellV6;
|
|
|
|
|
QTest::newRow("xdgWmBase") << Test::ShellSurfaceType::XdgShellStable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testMinimizeWindowWithTransients()
|
|
|
|
|
{
|
|
|
|
|
// this test verifies that when minimizing/unminimizing a window all its
|
|
|
|
|
// transients will be minimized/unminimized as well
|
|
|
|
|
|
|
|
|
|
// create the main window
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QFETCH(Test::ShellSurfaceType, type);
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(qobject_cast<XdgShellSurface *>(
|
|
|
|
|
Test::createShellSurface(type, surface.data())));
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(!c->isMinimized());
|
|
|
|
|
|
|
|
|
|
// create a transient window
|
|
|
|
|
QScopedPointer<Surface> transientSurface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> transientShellSurface(qobject_cast<XdgShellSurface *>(
|
|
|
|
|
Test::createShellSurface(type, transientSurface.data())));
|
|
|
|
|
transientShellSurface->setTransientFor(shellSurface.data());
|
|
|
|
|
auto transient = Test::renderAndWaitForShown(transientSurface.data(), QSize(100, 50), Qt::red);
|
|
|
|
|
QVERIFY(transient);
|
|
|
|
|
QVERIFY(!transient->isMinimized());
|
|
|
|
|
QCOMPARE(transient->transientFor(), c);
|
|
|
|
|
QVERIFY(c->hasTransient(transient, false));
|
|
|
|
|
|
|
|
|
|
// minimize the main window, the transient should be minimized as well
|
|
|
|
|
c->minimize();
|
|
|
|
|
QVERIFY(c->isMinimized());
|
|
|
|
|
QVERIFY(transient->isMinimized());
|
|
|
|
|
|
|
|
|
|
// unminimize the main window, the transient should be unminimized as well
|
|
|
|
|
c->unminimize();
|
|
|
|
|
QVERIFY(!c->isMinimized());
|
|
|
|
|
QVERIFY(!transient->isMinimized());
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-01 17:37:18 +00:00
|
|
|
|
void TestShellClient::testXdgDecoration_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<KWayland::Client::XdgDecoration::Mode>("requestedMode");
|
|
|
|
|
QTest::addColumn<KWayland::Client::XdgDecoration::Mode>("expectedMode");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("client side requested") << XdgDecoration::Mode::ClientSide << XdgDecoration::Mode::ClientSide;
|
|
|
|
|
QTest::newRow("server side requested") << XdgDecoration::Mode::ServerSide << XdgDecoration::Mode::ServerSide;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testXdgDecoration()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data()));
|
|
|
|
|
QScopedPointer<XdgDecoration> deco(Test::xdgDecorationManager()->getToplevelDecoration(shellSurface.data()));
|
|
|
|
|
|
|
|
|
|
QSignalSpy decorationConfiguredSpy(deco.data(), &XdgDecoration::modeChanged);
|
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), &XdgShellSurface::configureRequested);
|
|
|
|
|
|
|
|
|
|
QFETCH(KWayland::Client::XdgDecoration::Mode, requestedMode);
|
|
|
|
|
QFETCH(KWayland::Client::XdgDecoration::Mode, expectedMode);
|
|
|
|
|
|
|
|
|
|
//request a mode
|
|
|
|
|
deco->setMode(requestedMode);
|
|
|
|
|
|
|
|
|
|
//kwin will send a configure
|
|
|
|
|
decorationConfiguredSpy.wait();
|
|
|
|
|
configureRequestedSpy.wait();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(decorationConfiguredSpy.count(), 1);
|
|
|
|
|
QCOMPARE(decorationConfiguredSpy.first()[0].value<KWayland::Client::XdgDecoration::Mode>(), expectedMode);
|
|
|
|
|
QVERIFY(configureRequestedSpy.count() > 0);
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.last()[2].toInt());
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
|
QCOMPARE(c->userCanSetNoBorder(), expectedMode == XdgDecoration::Mode::ServerSide);
|
|
|
|
|
QCOMPARE(c->isDecorated(), expectedMode == XdgDecoration::Mode::ServerSide);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-26 13:41:07 +00:00
|
|
|
|
void TestShellClient::testXdgNeverCommitted()
|
|
|
|
|
{
|
|
|
|
|
//check we don't crash if we create a shell object but delete the ShellClient before committing it
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data(), nullptr, Test::CreationSetup::CreateOnly));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testXdgInitialState()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data(), nullptr, Test::CreationSetup::CreateOnly));
|
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), &XdgShellSurface::configureRequested);
|
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
|
|
|
|
|
configureRequestedSpy.wait();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
const auto size = configureRequestedSpy.first()[0].value<QSize>();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(size, QSize(0, 0)); //client should chose it's preferred size
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.first()[2].toUInt());
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(200,100), Qt::blue);
|
|
|
|
|
QCOMPARE(c->size(), QSize(200, 100));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testXdgInitiallyMaximised()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data(), nullptr, Test::CreationSetup::CreateOnly));
|
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), &XdgShellSurface::configureRequested);
|
|
|
|
|
|
|
|
|
|
shellSurface->setMaximized(true);
|
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
|
|
|
|
|
configureRequestedSpy.wait();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
const auto size = configureRequestedSpy.first()[0].value<QSize>();
|
|
|
|
|
const auto state = configureRequestedSpy.first()[1].value<KWayland::Client::XdgShellSurface::States>();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(size, QSize(1280, 1024));
|
|
|
|
|
QVERIFY(state & KWayland::Client::XdgShellSurface::State::Maximized);
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.first()[2].toUInt());
|
|
|
|
|
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), size, Qt::blue);
|
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeFull);
|
|
|
|
|
QCOMPARE(c->size(), QSize(1280, 1024));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestShellClient::testXdgInitiallyMinimized()
|
|
|
|
|
{
|
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
|
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data(), nullptr, Test::CreationSetup::CreateOnly));
|
|
|
|
|
QSignalSpy configureRequestedSpy(shellSurface.data(), &XdgShellSurface::configureRequested);
|
|
|
|
|
|
|
|
|
|
shellSurface->requestMinimize();
|
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
|
|
|
|
|
|
|
|
|
configureRequestedSpy.wait();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(configureRequestedSpy.count(), 1);
|
|
|
|
|
|
|
|
|
|
const auto size = configureRequestedSpy.first()[0].value<QSize>();
|
|
|
|
|
const auto state = configureRequestedSpy.first()[1].value<KWayland::Client::XdgShellSurface::States>();
|
|
|
|
|
|
|
|
|
|
QCOMPARE(size, QSize(0, 0));
|
|
|
|
|
QCOMPARE(state, 0);
|
|
|
|
|
|
|
|
|
|
shellSurface->ackConfigure(configureRequestedSpy.first()[2].toUInt());
|
|
|
|
|
|
|
|
|
|
QEXPECT_FAIL("", "Client created in a minimised state is not exposed to kwin bug 404838", Abort);
|
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), size, Qt::blue, QImage::Format_ARGB32, 10);
|
|
|
|
|
QVERIFY(c);
|
|
|
|
|
QVERIFY(c->isMinimized());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-06-07 09:43:56 +00:00
|
|
|
|
WAYLANDTEST_MAIN(TestShellClient)
|
|
|
|
|
#include "shell_client_test.moc"
|