Files
RedBear-OS/local/recipes/kde/kwin/source/autotests/test_xcb_window.cpp
T
vasilito 7aeb3bb475 build: capture build script auto-stash changes from 0.2.5 kernel/relibc/base build
The build-redbear.sh script auto-stashes working tree changes
in nested relibc and base source trees before running the
build. These changes were captured by the failed kernel
build attempt that hit the json-target-spec / kernel rust
toolchain mismatch (fixed in 0.2.5 by creating the local
0.2.5 branch).

Captured changes:
- local/recipes/kde/* : KDE Frameworks 6 source CMakeLists
  whitespace changes from the autostash (preserved)
- local/recipes/qt/qtbase/* : qtypes.h whitespace from the
  autostash (preserved)
- local/sources/kernel/Cargo.lock : dependency lock from
  the kernel relibc rebuild attempt
- local/sources/kernel/src/lib.rs : touched (mtime) by the
  build script's touch + make prefix command

This is a bookkeeping commit — the actual code changes
for the threading plan are on the 4 submodule branches
(kernel, relibc, base, libredox) and will be pushed
separately.

0.2.5 branch was created from 0.2.4 (HEAD cd3950072e) to
continue Phase 0 of the multi-threading plan work in a
clean branch.
2026-07-02 13:41:03 +03:00

203 lines
5.8 KiB
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "testutils.h"
// KWin
#include "utils/xcbutils.h"
// Qt
#include <QApplication>
#include <QTest>
#include <private/qtx11extras_p.h>
// xcb
#include <xcb/xcb.h>
using namespace KWin;
class TestXcbWindow : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void defaultCtor();
void ctor();
void classCtor();
void create();
void mapUnmap();
void geometry();
void destroy();
void destroyNotManaged();
};
void TestXcbWindow::initTestCase()
{
qApp->setProperty("x11RootWindow", QVariant::fromValue<quint32>(QX11Info::appRootWindow()));
qApp->setProperty("x11Connection", QVariant::fromValue<void *>(QX11Info::connection()));
}
void TestXcbWindow::defaultCtor()
{
Xcb::Window window;
QCOMPARE(window.isValid(), false);
xcb_window_t wId = window;
QCOMPARE(wId, noneWindow());
xcb_window_t nativeWindow = createWindow();
Xcb::Window window2(nativeWindow);
QCOMPARE(window2.isValid(), true);
wId = window2;
QCOMPARE(wId, nativeWindow);
}
void TestXcbWindow::ctor()
{
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
Xcb::Window window(geometry, XCB_CW_OVERRIDE_REDIRECT, values);
QCOMPARE(window.isValid(), true);
QVERIFY(window != XCB_WINDOW_NONE);
Xcb::WindowGeometry windowGeometry(window);
QCOMPARE(windowGeometry.isNull(), false);
QCOMPARE(windowGeometry.rect(), geometry);
}
void TestXcbWindow::classCtor()
{
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
Xcb::Window window(geometry, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_CW_OVERRIDE_REDIRECT, values);
QCOMPARE(window.isValid(), true);
QVERIFY(window != XCB_WINDOW_NONE);
Xcb::WindowGeometry windowGeometry(window);
QCOMPARE(windowGeometry.isNull(), false);
QCOMPARE(windowGeometry.rect(), geometry);
Xcb::WindowAttributes attribs(window);
QCOMPARE(attribs.isNull(), false);
QVERIFY(attribs->_class == XCB_WINDOW_CLASS_INPUT_ONLY);
}
void TestXcbWindow::create()
{
Xcb::Window window;
QCOMPARE(window.isValid(), false);
xcb_window_t wId = window;
QCOMPARE(wId, noneWindow());
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
window.create(geometry, XCB_CW_OVERRIDE_REDIRECT, values);
QCOMPARE(window.isValid(), true);
QVERIFY(window != XCB_WINDOW_NONE);
// and reset again
window.reset();
QCOMPARE(window.isValid(), false);
QVERIFY(window == XCB_WINDOW_NONE);
}
void TestXcbWindow::mapUnmap()
{
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
Xcb::Window window(geometry, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_CW_OVERRIDE_REDIRECT, values);
Xcb::WindowAttributes attribs(window);
QCOMPARE(attribs.isNull(), false);
QVERIFY(attribs->map_state == XCB_MAP_STATE_UNMAPPED);
window.map();
Xcb::WindowAttributes attribs2(window);
QCOMPARE(attribs2.isNull(), false);
QVERIFY(attribs2->map_state != XCB_MAP_STATE_UNMAPPED);
window.unmap();
Xcb::WindowAttributes attribs3(window);
QCOMPARE(attribs3.isNull(), false);
QVERIFY(attribs3->map_state == XCB_MAP_STATE_UNMAPPED);
// map, unmap shouldn't fail for an invalid window, it's just ignored
window.reset();
window.map();
window.unmap();
}
void TestXcbWindow::geometry()
{
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
Xcb::Window window(geometry, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_CW_OVERRIDE_REDIRECT, values);
Xcb::WindowGeometry windowGeometry(window);
QCOMPARE(windowGeometry.isNull(), false);
QCOMPARE(windowGeometry.rect(), geometry);
const Rect geometry2(10, 20, 100, 200);
window.setGeometry(geometry2);
Xcb::WindowGeometry windowGeometry2(window);
QCOMPARE(windowGeometry2.isNull(), false);
QCOMPARE(windowGeometry2.rect(), geometry2);
// setting a geometry on an invalid window should be ignored
window.reset();
window.setGeometry(geometry2);
Xcb::WindowGeometry windowGeometry3(window);
QCOMPARE(windowGeometry3.isNull(), true);
}
void TestXcbWindow::destroy()
{
const Rect geometry(0, 0, 10, 10);
const uint32_t values[] = {true};
Xcb::Window window(geometry, XCB_CW_OVERRIDE_REDIRECT, values);
QCOMPARE(window.isValid(), true);
xcb_window_t wId = window;
window.create(geometry, XCB_CW_OVERRIDE_REDIRECT, values);
// wId should now be invalid
xcb_generic_error_t *error = nullptr;
UniqueCPtr<xcb_get_window_attributes_reply_t> attribs(xcb_get_window_attributes_reply(
connection(),
xcb_get_window_attributes(connection(), wId),
&error));
QVERIFY(!attribs);
QCOMPARE(error->error_code, uint8_t(3));
QCOMPARE(error->resource_id, wId);
free(error);
// test the same for the dtor
{
Xcb::Window scopedWindow(geometry, XCB_CW_OVERRIDE_REDIRECT, values);
QVERIFY(scopedWindow.isValid());
wId = scopedWindow;
}
error = nullptr;
UniqueCPtr<xcb_get_window_attributes_reply_t> attribs2(xcb_get_window_attributes_reply(
connection(),
xcb_get_window_attributes(connection(), wId),
&error));
QVERIFY(!attribs2);
QCOMPARE(error->error_code, uint8_t(3));
QCOMPARE(error->resource_id, wId);
free(error);
}
void TestXcbWindow::destroyNotManaged()
{
Xcb::Window window;
// just destroy the non-existing window
window.reset();
// now let's add a window
window.reset(createWindow(), false);
xcb_window_t w = window;
window.reset();
Xcb::WindowAttributes attribs(w);
QVERIFY(attribs);
}
Q_CONSTRUCTOR_FUNCTION(forceXcb)
QTEST_MAIN(TestXcbWindow)
#include "test_xcb_window.moc"