2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-04-11 07:42:22 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-04-11 07:42:22 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-04-11 07:42:22 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2019-01-06 15:34:10 +00:00
|
|
|
#include "composite.h"
|
2022-08-29 07:55:49 +00:00
|
|
|
#include "core/output.h"
|
2022-11-05 10:43:41 +00:00
|
|
|
#include "core/outputbackend.h"
|
2022-08-29 07:55:49 +00:00
|
|
|
#include "core/renderbackend.h"
|
2016-04-11 07:42:22 +00:00
|
|
|
#include "cursor.h"
|
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "workspace.h"
|
2022-04-22 17:54:31 +00:00
|
|
|
#include "x11window.h"
|
2016-04-11 07:42:22 +00:00
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <KDecoration2/Decoration>
|
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_dont_crash_empty_decoration-0");
|
|
|
|
|
|
|
|
class DontCrashEmptyDecorationTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void testBug361551();
|
|
|
|
};
|
|
|
|
|
|
|
|
void DontCrashEmptyDecorationTest::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);
|
2022-11-05 10:43:41 +00:00
|
|
|
kwinApp()->outputBackend()->setInitialWindowSize(QSize(1280, 1024));
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2022-11-05 10:43:41 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->outputBackend(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(int, 2));
|
2016-04-11 07:42:22 +00:00
|
|
|
|
|
|
|
// this test needs to enforce OpenGL compositing to get into the crashy condition
|
|
|
|
qputenv("KWIN_COMPOSE", QByteArrayLiteral("O2"));
|
|
|
|
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-04-11 07:42:22 +00:00
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
2019-01-06 15:34:10 +00:00
|
|
|
|
2021-11-10 10:34:18 +00:00
|
|
|
QCOMPARE(Compositor::self()->backend()->compositingType(), KWin::OpenGLCompositing);
|
2016-04-11 07:42:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DontCrashEmptyDecorationTest::init()
|
|
|
|
{
|
2021-08-28 18:58:29 +00:00
|
|
|
workspace()->setActiveOutput(QPoint(640, 512));
|
2020-04-02 16:18:01 +00:00
|
|
|
Cursors::self()->mouse()->setPos(QPoint(640, 512));
|
2016-04-11 07:42:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DontCrashEmptyDecorationTest::testBug361551()
|
|
|
|
{
|
|
|
|
// this test verifies that resizing an X11 window to an invalid size does not result in crash on unmap
|
|
|
|
// when the DecorationRenderer gets copied to the Deleted
|
|
|
|
// there a repaint is scheduled and the resulting texture is invalid if the window size is invalid
|
|
|
|
|
|
|
|
// create an xcb window
|
|
|
|
xcb_connection_t *c = xcb_connect(nullptr, nullptr);
|
|
|
|
QVERIFY(!xcb_connection_has_error(c));
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
xcb_window_t windowId = xcb_generate_id(c);
|
|
|
|
xcb_create_window(c, XCB_COPY_FROM_PARENT, windowId, rootWindow(), 0, 0, 10, 10, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, 0, nullptr);
|
|
|
|
xcb_map_window(c, windowId);
|
2016-04-11 07:42:22 +00:00
|
|
|
xcb_flush(c);
|
|
|
|
|
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-04-11 07:42:22 +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-04-11 07:42:22 +00:00
|
|
|
|
|
|
|
// let's set a stupid geometry
|
2022-04-23 19:51:16 +00:00
|
|
|
window->moveResize({0, 0, 0, 0});
|
|
|
|
QCOMPARE(window->frameGeometry(), QRect(0, 0, 0, 0));
|
2016-04-11 07:42:22 +00:00
|
|
|
|
|
|
|
// and destroy the window again
|
2022-04-23 19:51:16 +00:00
|
|
|
xcb_unmap_window(c, windowId);
|
|
|
|
xcb_destroy_window(c, windowId);
|
2016-04-11 07:42:22 +00:00
|
|
|
xcb_flush(c);
|
|
|
|
xcb_disconnect(c);
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
QSignalSpy windowClosedSpy(window, &X11Window::windowClosed);
|
2016-04-11 07:42:22 +00:00
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(KWin::DontCrashEmptyDecorationTest)
|
|
|
|
#include "dont_crash_empty_deco.moc"
|