2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-07-20 09:42:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-07-20 09:42:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-07-20 09:42:52 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2021-08-31 07:03:05 +00:00
|
|
|
#include "abstract_output.h"
|
2016-07-20 09:42:52 +00:00
|
|
|
#include "cursor.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "screens.h"
|
|
|
|
#include "wayland_server.h"
|
2021-08-28 18:58:29 +00:00
|
|
|
#include "workspace.h"
|
2016-07-20 09:42:52 +00:00
|
|
|
|
|
|
|
#include <KWayland/Client/output.h>
|
2018-05-18 13:16:13 +00:00
|
|
|
#include <KWayland/Client/xdgoutput.h>
|
2016-07-20 09:42:52 +00:00
|
|
|
#include <KWayland/Client/registry.h>
|
|
|
|
|
|
|
|
using namespace KWin;
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_screen_changes-0");
|
|
|
|
|
|
|
|
class ScreenChangesTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
void testScreenAddRemove();
|
|
|
|
};
|
|
|
|
|
|
|
|
void ScreenChangesTest::initTestCase()
|
|
|
|
{
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
|
|
|
QVERIFY(applicationStartedSpy.isValid());
|
2016-07-20 09:42:52 +00:00
|
|
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024));
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2016-07-20 09:42:52 +00:00
|
|
|
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2016-07-20 09:42:52 +00:00
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
2021-05-08 00:08:22 +00:00
|
|
|
Test::initWaylandWorkspace();
|
2016-07-20 09:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenChangesTest::init()
|
|
|
|
{
|
2016-12-03 13:31:14 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection());
|
2016-07-20 09:42:52 +00:00
|
|
|
|
2021-08-28 18:58:29 +00:00
|
|
|
workspace()->setActiveOutput(QPoint(640, 512));
|
2020-04-02 16:18:01 +00:00
|
|
|
KWin::Cursors::self()->mouse()->setPos(QPoint(640, 512));
|
2016-07-20 09:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenChangesTest::cleanup()
|
|
|
|
{
|
|
|
|
Test::destroyWaylandConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenChangesTest::testScreenAddRemove()
|
|
|
|
{
|
|
|
|
// this test verifies that when a new screen is added it gets synced to Wayland
|
|
|
|
|
|
|
|
// first create a registry to get signals about Outputs announced/removed
|
|
|
|
Registry registry;
|
|
|
|
QSignalSpy allAnnounced(®istry, &Registry::interfacesAnnounced);
|
|
|
|
QVERIFY(allAnnounced.isValid());
|
|
|
|
QSignalSpy outputAnnouncedSpy(®istry, &Registry::outputAnnounced);
|
|
|
|
QVERIFY(outputAnnouncedSpy.isValid());
|
|
|
|
QSignalSpy outputRemovedSpy(®istry, &Registry::outputRemoved);
|
|
|
|
QVERIFY(outputRemovedSpy.isValid());
|
|
|
|
registry.create(Test::waylandConnection());
|
|
|
|
QVERIFY(registry.isValid());
|
|
|
|
registry.setup();
|
|
|
|
QVERIFY(allAnnounced.wait());
|
2018-05-18 13:16:13 +00:00
|
|
|
const auto xdgOMData = registry.interface(Registry::Interface::XdgOutputUnstableV1);
|
|
|
|
auto xdgOutputManager = registry.createXdgOutputManager(xdgOMData.name, xdgOMData.version);
|
2016-07-20 09:42:52 +00:00
|
|
|
|
|
|
|
// should be one output
|
|
|
|
QCOMPARE(screens()->count(), 1);
|
|
|
|
QCOMPARE(outputAnnouncedSpy.count(), 1);
|
|
|
|
const quint32 firstOutputId = outputAnnouncedSpy.first().first().value<quint32>();
|
|
|
|
QVERIFY(firstOutputId != 0u);
|
|
|
|
outputAnnouncedSpy.clear();
|
|
|
|
|
|
|
|
// let's announce a new output
|
|
|
|
QSignalSpy screensChangedSpy(screens(), &Screens::changed);
|
|
|
|
QVERIFY(screensChangedSpy.isValid());
|
|
|
|
const QVector<QRect> geometries{QRect(0, 0, 1280, 1024), QRect(1280, 0, 1280, 1024)};
|
2018-03-19 11:05:57 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs",
|
2016-07-20 09:42:52 +00:00
|
|
|
Qt::DirectConnection,
|
2018-03-19 11:05:57 +00:00
|
|
|
Q_ARG(int, 2),
|
2016-07-20 09:42:52 +00:00
|
|
|
Q_ARG(QVector<QRect>, geometries));
|
|
|
|
QVERIFY(screensChangedSpy.wait());
|
2020-12-20 13:15:57 +00:00
|
|
|
QCOMPARE(screensChangedSpy.count(), 2);
|
2021-08-31 07:03:05 +00:00
|
|
|
const auto outputs = kwinApp()->platform()->enabledOutputs();
|
|
|
|
QCOMPARE(outputs.count(), 2);
|
|
|
|
QCOMPARE(outputs[0]->geometry(), geometries[0]);
|
|
|
|
QCOMPARE(outputs[1]->geometry(), geometries[1]);
|
2016-07-20 09:42:52 +00:00
|
|
|
|
|
|
|
// this should result in it getting announced, two new outputs are added...
|
|
|
|
QVERIFY(outputAnnouncedSpy.wait());
|
|
|
|
if (outputAnnouncedSpy.count() < 2) {
|
|
|
|
QVERIFY(outputAnnouncedSpy.wait());
|
|
|
|
}
|
|
|
|
QCOMPARE(outputAnnouncedSpy.count(), 2);
|
|
|
|
// ... and afterward the previous output gets removed
|
|
|
|
if (outputRemovedSpy.isEmpty()) {
|
|
|
|
QVERIFY(outputRemovedSpy.wait());
|
|
|
|
}
|
|
|
|
QCOMPARE(outputRemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(outputRemovedSpy.first().first().value<quint32>(), firstOutputId);
|
|
|
|
|
|
|
|
// let's wait a little bit to ensure we don't get more events
|
|
|
|
QTest::qWait(100);
|
|
|
|
QCOMPARE(outputAnnouncedSpy.count(), 2);
|
|
|
|
QCOMPARE(outputRemovedSpy.count(), 1);
|
|
|
|
|
|
|
|
// let's create the output objects to ensure they are correct
|
|
|
|
QScopedPointer<Output> o1(registry.createOutput(outputAnnouncedSpy.first().first().value<quint32>(), outputAnnouncedSpy.first().last().value<quint32>()));
|
|
|
|
QVERIFY(o1->isValid());
|
|
|
|
QSignalSpy o1ChangedSpy(o1.data(), &Output::changed);
|
|
|
|
QVERIFY(o1ChangedSpy.isValid());
|
|
|
|
QVERIFY(o1ChangedSpy.wait());
|
|
|
|
QCOMPARE(o1->geometry(), geometries.at(0));
|
|
|
|
QScopedPointer<Output> o2(registry.createOutput(outputAnnouncedSpy.last().first().value<quint32>(), outputAnnouncedSpy.last().last().value<quint32>()));
|
|
|
|
QVERIFY(o2->isValid());
|
|
|
|
QSignalSpy o2ChangedSpy(o2.data(), &Output::changed);
|
|
|
|
QVERIFY(o2ChangedSpy.isValid());
|
|
|
|
QVERIFY(o2ChangedSpy.wait());
|
|
|
|
QCOMPARE(o2->geometry(), geometries.at(1));
|
|
|
|
|
2018-05-18 13:16:13 +00:00
|
|
|
//and check XDGOutput is synced
|
|
|
|
QScopedPointer<XdgOutput> xdgO1(xdgOutputManager->getXdgOutput(o1.data()));
|
|
|
|
QSignalSpy xdgO1ChangedSpy(xdgO1.data(), &XdgOutput::changed);
|
|
|
|
QVERIFY(xdgO1ChangedSpy.isValid());
|
|
|
|
QVERIFY(xdgO1ChangedSpy.wait());
|
|
|
|
QCOMPARE(xdgO1->logicalPosition(), geometries.at(0).topLeft());
|
|
|
|
QCOMPARE(xdgO1->logicalSize(), geometries.at(0).size());
|
|
|
|
QScopedPointer<XdgOutput> xdgO2(xdgOutputManager->getXdgOutput(o2.data()));
|
|
|
|
QSignalSpy xdgO2ChangedSpy(xdgO2.data(), &XdgOutput::changed);
|
|
|
|
QVERIFY(xdgO2ChangedSpy.isValid());
|
|
|
|
QVERIFY(xdgO2ChangedSpy.wait());
|
|
|
|
QCOMPARE(xdgO2->logicalPosition(), geometries.at(1).topLeft());
|
|
|
|
QCOMPARE(xdgO2->logicalSize(), geometries.at(1).size());
|
|
|
|
|
2020-04-08 09:38:41 +00:00
|
|
|
QVERIFY(xdgO1->name().startsWith("Virtual-"));
|
|
|
|
QVERIFY(xdgO1->name() != xdgO2->name());
|
|
|
|
QVERIFY(!xdgO1->description().isEmpty());
|
|
|
|
|
2016-07-20 09:42:52 +00:00
|
|
|
// now let's try to remove one output again
|
|
|
|
outputAnnouncedSpy.clear();
|
|
|
|
outputRemovedSpy.clear();
|
|
|
|
screensChangedSpy.clear();
|
|
|
|
|
|
|
|
QSignalSpy o1RemovedSpy(o1.data(), &Output::removed);
|
|
|
|
QVERIFY(o1RemovedSpy.isValid());
|
|
|
|
QSignalSpy o2RemovedSpy(o2.data(), &Output::removed);
|
|
|
|
QVERIFY(o2RemovedSpy.isValid());
|
|
|
|
|
|
|
|
const QVector<QRect> geometries2{QRect(0, 0, 1280, 1024)};
|
2018-03-19 11:05:57 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs",
|
2016-07-20 09:42:52 +00:00
|
|
|
Qt::DirectConnection,
|
2018-03-19 11:05:57 +00:00
|
|
|
Q_ARG(int, 1),
|
2016-07-20 09:42:52 +00:00
|
|
|
Q_ARG(QVector<QRect>, geometries2));
|
|
|
|
QVERIFY(screensChangedSpy.wait());
|
2020-12-20 13:15:57 +00:00
|
|
|
QCOMPARE(screensChangedSpy.count(), 2);
|
2016-07-20 09:42:52 +00:00
|
|
|
QCOMPARE(screens()->count(), 1);
|
|
|
|
QCOMPARE(screens()->geometry(0), geometries2.at(0));
|
|
|
|
|
|
|
|
QVERIFY(outputAnnouncedSpy.wait());
|
|
|
|
QCOMPARE(outputAnnouncedSpy.count(), 1);
|
|
|
|
if (o1RemovedSpy.isEmpty()) {
|
|
|
|
QVERIFY(o1RemovedSpy.wait());
|
|
|
|
}
|
|
|
|
if (o2RemovedSpy.isEmpty()) {
|
|
|
|
QVERIFY(o2RemovedSpy.wait());
|
|
|
|
}
|
|
|
|
// now wait a bit to ensure we don't get more events
|
|
|
|
QTest::qWait(100);
|
|
|
|
QCOMPARE(outputAnnouncedSpy.count(), 1);
|
|
|
|
QCOMPARE(o1RemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(o2RemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(outputRemovedSpy.count(), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(ScreenChangesTest)
|
|
|
|
#include "screen_changes_test.moc"
|