You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
230 lines
8.1 KiB
230 lines
8.1 KiB
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
#include "kwin_wayland_test.h" |
|
#include "platform.h" |
|
#include "atoms.h" |
|
#include "x11client.h" |
|
#include "cursor.h" |
|
#include "deleted.h" |
|
#include "screenedge.h" |
|
#include "screens.h" |
|
#include "rules.h" |
|
#include "wayland_server.h" |
|
#include "workspace.h" |
|
|
|
#include <netwm.h> |
|
#include <xcb/xcb_icccm.h> |
|
|
|
namespace KWin |
|
{ |
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_window_rules-0"); |
|
|
|
class WindowRuleTest : public QObject |
|
{ |
|
Q_OBJECT |
|
private Q_SLOTS: |
|
void initTestCase(); |
|
void init(); |
|
void cleanup(); |
|
void testApplyInitialMaximizeVert_data(); |
|
void testApplyInitialMaximizeVert(); |
|
void testWindowClassChange(); |
|
}; |
|
|
|
void WindowRuleTest::initTestCase() |
|
{ |
|
qRegisterMetaType<KWin::AbstractClient*>(); |
|
qRegisterMetaType<KWin::Deleted*>(); |
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started); |
|
QVERIFY(applicationStartedSpy.isValid()); |
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024)); |
|
QVERIFY(waylandServer()->init(s_socketName)); |
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(int, 2)); |
|
|
|
kwinApp()->start(); |
|
QVERIFY(applicationStartedSpy.wait()); |
|
QCOMPARE(screens()->count(), 2); |
|
QCOMPARE(screens()->geometry(0), QRect(0, 0, 1280, 1024)); |
|
QCOMPARE(screens()->geometry(1), QRect(1280, 0, 1280, 1024)); |
|
setenv("QT_QPA_PLATFORM", "wayland", true); |
|
Test::initWaylandWorkspace(); |
|
} |
|
|
|
void WindowRuleTest::init() |
|
{ |
|
screens()->setCurrent(0); |
|
Cursors::self()->mouse()->setPos(QPoint(640, 512)); |
|
QVERIFY(waylandServer()->clients().isEmpty()); |
|
} |
|
|
|
void WindowRuleTest::cleanup() |
|
{ |
|
// discards old rules |
|
RuleBook::self()->load(); |
|
} |
|
|
|
struct XcbConnectionDeleter |
|
{ |
|
static inline void cleanup(xcb_connection_t *pointer) |
|
{ |
|
xcb_disconnect(pointer); |
|
} |
|
}; |
|
|
|
void WindowRuleTest::testApplyInitialMaximizeVert_data() |
|
{ |
|
QTest::addColumn<QByteArray>("role"); |
|
|
|
QTest::newRow("lowercase") << QByteArrayLiteral("mainwindow"); |
|
QTest::newRow("CamelCase") << QByteArrayLiteral("MainWindow"); |
|
} |
|
|
|
void WindowRuleTest::testApplyInitialMaximizeVert() |
|
{ |
|
// this test creates the situation of BUG 367554: creates a window and initial apply maximize vertical |
|
// the window is matched by class and role |
|
// load the rule |
|
QFile ruleFile(QFINDTESTDATA("./data/rules/maximize-vert-apply-initial")); |
|
QVERIFY(ruleFile.open(QIODevice::ReadOnly | QIODevice::Text)); |
|
QMetaObject::invokeMethod(RuleBook::self(), "temporaryRulesMessage", Q_ARG(QString, QString::fromUtf8(ruleFile.readAll()))); |
|
|
|
// create the test window |
|
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr)); |
|
QVERIFY(!xcb_connection_has_error(c.data())); |
|
|
|
xcb_window_t w = xcb_generate_id(c.data()); |
|
const QRect windowGeometry = QRect(0, 0, 10, 20); |
|
const uint32_t values[] = { |
|
XCB_EVENT_MASK_ENTER_WINDOW | |
|
XCB_EVENT_MASK_LEAVE_WINDOW |
|
}; |
|
xcb_create_window(c.data(), XCB_COPY_FROM_PARENT, w, rootWindow(), |
|
windowGeometry.x(), |
|
windowGeometry.y(), |
|
windowGeometry.width(), |
|
windowGeometry.height(), |
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, XCB_CW_EVENT_MASK, values); |
|
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()); |
|
xcb_icccm_set_wm_normal_hints(c.data(), w, &hints); |
|
xcb_icccm_set_wm_class(c.data(), w, 9, "kpat\0kpat"); |
|
|
|
QFETCH(QByteArray, role); |
|
xcb_change_property(c.data(), XCB_PROP_MODE_REPLACE, w, atoms->wm_window_role, XCB_ATOM_STRING, 8, role.length(), role.constData()); |
|
|
|
NETWinInfo info(c.data(), w, rootWindow(), NET::WMAllProperties, NET::WM2AllProperties); |
|
info.setWindowType(NET::Normal); |
|
xcb_map_window(c.data(), w); |
|
xcb_flush(c.data()); |
|
|
|
QSignalSpy windowCreatedSpy(workspace(), &Workspace::clientAdded); |
|
QVERIFY(windowCreatedSpy.isValid()); |
|
QVERIFY(windowCreatedSpy.wait()); |
|
X11Client *client = windowCreatedSpy.last().first().value<X11Client *>(); |
|
QVERIFY(client); |
|
QVERIFY(client->isDecorated()); |
|
QVERIFY(!client->hasStrut()); |
|
QVERIFY(!client->isHiddenInternal()); |
|
QVERIFY(!client->readyForPainting()); |
|
QMetaObject::invokeMethod(client, "setReadyForPainting"); |
|
QVERIFY(client->readyForPainting()); |
|
QVERIFY(Test::waitForWaylandSurface(client)); |
|
QCOMPARE(client->maximizeMode(), MaximizeVertical); |
|
|
|
// destroy window again |
|
QSignalSpy windowClosedSpy(client, &X11Client::windowClosed); |
|
QVERIFY(windowClosedSpy.isValid()); |
|
xcb_unmap_window(c.data(), w); |
|
xcb_destroy_window(c.data(), w); |
|
xcb_flush(c.data()); |
|
QVERIFY(windowClosedSpy.wait()); |
|
} |
|
|
|
void WindowRuleTest::testWindowClassChange() |
|
{ |
|
KSharedConfig::Ptr config = KSharedConfig::openConfig(QString(), KConfig::SimpleConfig); |
|
config->group("General").writeEntry("count", 1); |
|
|
|
auto group = config->group("1"); |
|
group.writeEntry("above", true); |
|
group.writeEntry("aboverule", 2); |
|
group.writeEntry("wmclass", "org.kde.foo"); |
|
group.writeEntry("wmclasscomplete", false); |
|
group.writeEntry("wmclassmatch", 1); |
|
group.sync(); |
|
|
|
RuleBook::self()->setConfig(config); |
|
workspace()->slotReconfigure(); |
|
|
|
// create the test window |
|
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr)); |
|
QVERIFY(!xcb_connection_has_error(c.data())); |
|
|
|
xcb_window_t w = xcb_generate_id(c.data()); |
|
const QRect windowGeometry = QRect(0, 0, 10, 20); |
|
const uint32_t values[] = { |
|
XCB_EVENT_MASK_ENTER_WINDOW | |
|
XCB_EVENT_MASK_LEAVE_WINDOW |
|
}; |
|
xcb_create_window(c.data(), XCB_COPY_FROM_PARENT, w, rootWindow(), |
|
windowGeometry.x(), |
|
windowGeometry.y(), |
|
windowGeometry.width(), |
|
windowGeometry.height(), |
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, XCB_CW_EVENT_MASK, values); |
|
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()); |
|
xcb_icccm_set_wm_normal_hints(c.data(), w, &hints); |
|
xcb_icccm_set_wm_class(c.data(), w, 23, "org.kde.bar\0org.kde.bar"); |
|
|
|
NETWinInfo info(c.data(), w, rootWindow(), NET::WMAllProperties, NET::WM2AllProperties); |
|
info.setWindowType(NET::Normal); |
|
xcb_map_window(c.data(), w); |
|
xcb_flush(c.data()); |
|
|
|
QSignalSpy windowCreatedSpy(workspace(), &Workspace::clientAdded); |
|
QVERIFY(windowCreatedSpy.isValid()); |
|
QVERIFY(windowCreatedSpy.wait()); |
|
X11Client *client = windowCreatedSpy.last().first().value<X11Client *>(); |
|
QVERIFY(client); |
|
QVERIFY(client->isDecorated()); |
|
QVERIFY(!client->hasStrut()); |
|
QVERIFY(!client->isHiddenInternal()); |
|
QVERIFY(!client->readyForPainting()); |
|
QMetaObject::invokeMethod(client, "setReadyForPainting"); |
|
QVERIFY(client->readyForPainting()); |
|
QVERIFY(Test::waitForWaylandSurface(client)); |
|
QCOMPARE(client->keepAbove(), false); |
|
|
|
// now change class |
|
QSignalSpy windowClassChangedSpy{client, &X11Client::windowClassChanged}; |
|
QVERIFY(windowClassChangedSpy.isValid()); |
|
xcb_icccm_set_wm_class(c.data(), w, 23, "org.kde.foo\0org.kde.foo"); |
|
xcb_flush(c.data()); |
|
QVERIFY(windowClassChangedSpy.wait()); |
|
QCOMPARE(client->keepAbove(), true); |
|
|
|
// destroy window |
|
QSignalSpy windowClosedSpy(client, &X11Client::windowClosed); |
|
QVERIFY(windowClosedSpy.isValid()); |
|
xcb_unmap_window(c.data(), w); |
|
xcb_destroy_window(c.data(), w); |
|
xcb_flush(c.data()); |
|
QVERIFY(windowClosedSpy.wait()); |
|
} |
|
|
|
} |
|
|
|
WAYLANDTEST_MAIN(KWin::WindowRuleTest) |
|
#include "window_rules_test.moc"
|
|
|