2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-08-12 10:52:47 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2016-08-12 10:52:47 +00:00
|
|
|
#include "activities.h"
|
2022-08-29 07:55:49 +00:00
|
|
|
#include "core/output.h"
|
2023-03-23 11:39:20 +00:00
|
|
|
#include "libkwineffects/kwineffects.h"
|
2023-02-09 13:07:56 +00:00
|
|
|
#include "pointer_input.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
#include "utils/xcbutils.h"
|
2016-08-12 10:52:47 +00:00
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "workspace.h"
|
2022-04-22 17:54:31 +00:00
|
|
|
#include "x11window.h"
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2018-11-09 16:25:02 +00:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QDBusPendingCall>
|
|
|
|
|
2016-08-12 10:52:47 +00:00
|
|
|
#include <netwm.h>
|
|
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_activities-0");
|
|
|
|
|
|
|
|
class ActivitiesTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
2016-09-14 05:59:14 +00:00
|
|
|
void cleanupTestCase();
|
2016-08-12 10:52:47 +00:00
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
void testSetOnActivitiesValidates();
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
void ActivitiesTest::initTestCase()
|
|
|
|
{
|
2022-04-22 17:39:12 +00:00
|
|
|
qRegisterMetaType<KWin::Window *>();
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2023-05-08 10:16:00 +00:00
|
|
|
Test::setOutputConfig({
|
|
|
|
QRect(0, 0, 1280, 1024),
|
|
|
|
QRect(1280, 0, 1280, 1024),
|
|
|
|
});
|
2016-08-12 10:52:47 +00:00
|
|
|
|
|
|
|
kwinApp()->setUseKActivities(true);
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2022-07-11 10:41:15 +00:00
|
|
|
const auto outputs = workspace()->outputs();
|
2021-08-31 07:03:05 +00:00
|
|
|
QCOMPARE(outputs.count(), 2);
|
|
|
|
QCOMPARE(outputs[0]->geometry(), QRect(0, 0, 1280, 1024));
|
|
|
|
QCOMPARE(outputs[1]->geometry(), QRect(1280, 0, 1280, 1024));
|
2016-08-12 10:52:47 +00:00
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
|
|
|
}
|
|
|
|
|
2016-09-14 05:59:14 +00:00
|
|
|
void ActivitiesTest::cleanupTestCase()
|
|
|
|
{
|
2018-11-09 16:25:02 +00:00
|
|
|
// terminate any still running kactivitymanagerd
|
|
|
|
QDBusConnection::sessionBus().asyncCall(QDBusMessage::createMethodCall(
|
|
|
|
QStringLiteral("org.kde.ActivityManager"),
|
|
|
|
QStringLiteral("/ActivityManager"),
|
|
|
|
QStringLiteral("org.qtproject.Qt.QCoreApplication"),
|
|
|
|
QStringLiteral("quit")));
|
2016-09-14 05:59:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-12 10:52:47 +00:00
|
|
|
void ActivitiesTest::init()
|
|
|
|
{
|
2021-08-28 18:58:29 +00:00
|
|
|
workspace()->setActiveOutput(QPoint(640, 512));
|
2023-02-09 13:07:56 +00:00
|
|
|
input()->pointer()->warp(QPoint(640, 512));
|
2016-08-12 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ActivitiesTest::cleanup()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ActivitiesTest::testSetOnActivitiesValidates()
|
|
|
|
{
|
2020-07-08 10:10:24 +00:00
|
|
|
// this test verifies that windows can't be placed on activities that don't exist
|
2016-08-12 10:52:47 +00:00
|
|
|
// create an xcb window
|
2023-02-03 13:29:21 +00:00
|
|
|
Test::XcbConnectionPtr c = Test::createX11Connection();
|
2022-08-01 21:29:02 +00:00
|
|
|
QVERIFY(!xcb_connection_has_error(c.get()));
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
xcb_window_t windowId = xcb_generate_id(c.get());
|
2016-08-12 10:52:47 +00:00
|
|
|
const QRect windowGeometry(0, 0, 100, 200);
|
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
auto cookie = xcb_create_window_checked(c.get(), 0, windowId, rootWindow(),
|
2022-03-23 10:13:38 +00:00
|
|
|
windowGeometry.x(),
|
|
|
|
windowGeometry.y(),
|
|
|
|
windowGeometry.width(),
|
|
|
|
windowGeometry.height(),
|
|
|
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, 0, 0, nullptr);
|
2022-08-01 21:29:02 +00:00
|
|
|
QVERIFY(!xcb_request_check(c.get(), cookie));
|
2016-08-12 10:52:47 +00:00
|
|
|
xcb_size_hints_t hints;
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
xcb_icccm_size_hints_set_position(&hints, 1, windowGeometry.x(), windowGeometry.y());
|
|
|
|
xcb_icccm_size_hints_set_size(&hints, 1, windowGeometry.width(), windowGeometry.height());
|
2022-08-01 21:29:02 +00:00
|
|
|
xcb_icccm_set_wm_normal_hints(c.get(), windowId, &hints);
|
|
|
|
xcb_map_window(c.get(), windowId);
|
|
|
|
xcb_flush(c.get());
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// we should get a window for it
|
2022-04-23 08:33:23 +00:00
|
|
|
QSignalSpy windowCreatedSpy(workspace(), &Workspace::windowAdded);
|
2016-08-12 10:52:47 +00:00
|
|
|
QVERIFY(windowCreatedSpy.wait());
|
2022-04-23 19:51:16 +00:00
|
|
|
X11Window *window = windowCreatedSpy.first().first().value<X11Window *>();
|
|
|
|
QVERIFY(window);
|
|
|
|
QCOMPARE(window->window(), windowId);
|
|
|
|
QVERIFY(window->isDecorated());
|
2016-08-12 10:52:47 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
// verify the test machine doesn't have the following activities used
|
2022-07-20 10:53:54 +00:00
|
|
|
QVERIFY(!Workspace::self()->activities()->all().contains(QStringLiteral("foo")));
|
|
|
|
QVERIFY(!Workspace::self()->activities()->all().contains(QStringLiteral("bar")));
|
2016-08-12 11:39:08 +00:00
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
window->setOnActivities(QStringList{QStringLiteral("foo"), QStringLiteral("bar")});
|
|
|
|
QVERIFY(!window->activities().contains(QLatin1String("foo")));
|
|
|
|
QVERIFY(!window->activities().contains(QLatin1String("bar")));
|
2016-08-12 10:52:47 +00:00
|
|
|
|
|
|
|
// and destroy the window again
|
2022-08-01 21:29:02 +00:00
|
|
|
xcb_unmap_window(c.get(), windowId);
|
|
|
|
xcb_destroy_window(c.get(), windowId);
|
|
|
|
xcb_flush(c.get());
|
2016-08-12 10:52:47 +00:00
|
|
|
c.reset();
|
|
|
|
|
2023-03-13 19:21:11 +00:00
|
|
|
QSignalSpy windowClosedSpy(window, &X11Window::closed);
|
2016-08-12 10:52:47 +00:00
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(KWin::ActivitiesTest)
|
|
|
|
#include "activities_test.moc"
|