2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-03-14 09:23:52 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2020-03-04 07:55:26 +00:00
|
|
|
#include "abstract_client.h"
|
2016-03-14 09:23:52 +00:00
|
|
|
#include "debug_console.h"
|
2019-08-26 07:44:04 +00:00
|
|
|
#include "internal_client.h"
|
|
|
|
#include "platform.h"
|
2016-03-14 09:23:52 +00:00
|
|
|
#include "screens.h"
|
|
|
|
#include "wayland_server.h"
|
2019-08-26 07:44:04 +00:00
|
|
|
#include "workspace.h"
|
2016-03-14 09:23:52 +00:00
|
|
|
#include "xcbutils.h"
|
|
|
|
|
|
|
|
#include <KWayland/Client/connection_thread.h>
|
|
|
|
#include <KWayland/Client/compositor.h>
|
|
|
|
#include <KWayland/Client/shm_pool.h>
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QRasterWindow>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_debug_console-0");
|
|
|
|
|
|
|
|
class DebugConsoleTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
2016-06-30 11:32:54 +00:00
|
|
|
void cleanup();
|
2016-03-14 09:23:52 +00:00
|
|
|
void topLevelTest_data();
|
|
|
|
void topLevelTest();
|
|
|
|
void testX11Client();
|
|
|
|
void testX11Unmanaged();
|
|
|
|
void testWaylandClient();
|
|
|
|
void testInternalWindow();
|
2016-10-04 11:37:25 +00:00
|
|
|
void testClosingDebugConsole();
|
2016-03-14 09:23:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void DebugConsoleTest::initTestCase()
|
|
|
|
{
|
2019-08-26 07:44:04 +00:00
|
|
|
qRegisterMetaType<KWin::AbstractClient *>();
|
|
|
|
qRegisterMetaType<KWin::InternalClient *>();
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
|
|
|
QVERIFY(applicationStartedSpy.isValid());
|
2016-04-07 06:28:35 +00:00
|
|
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024));
|
2016-07-04 07:09:03 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName.toLocal8Bit()));
|
2019-08-26 21:16:53 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(int, 2));
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2016-03-14 09:23:52 +00:00
|
|
|
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);
|
|
|
|
waylandServer()->initWorkspace();
|
|
|
|
}
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
void DebugConsoleTest::cleanup()
|
|
|
|
{
|
|
|
|
Test::destroyWaylandConnection();
|
|
|
|
}
|
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
void DebugConsoleTest::topLevelTest_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<int>("row");
|
|
|
|
QTest::addColumn<int>("column");
|
|
|
|
QTest::addColumn<bool>("expectedValid");
|
|
|
|
|
|
|
|
// this tests various combinations of row/column on the top level whether they are valid
|
|
|
|
// valid are rows 0-4 with column 0, everything else is invalid
|
|
|
|
QTest::newRow("0/0") << 0 << 0 << true;
|
|
|
|
QTest::newRow("0/1") << 0 << 1 << false;
|
|
|
|
QTest::newRow("0/3") << 0 << 3 << false;
|
|
|
|
QTest::newRow("1/0") << 1 << 0 << true;
|
|
|
|
QTest::newRow("1/1") << 1 << 1 << false;
|
|
|
|
QTest::newRow("1/3") << 1 << 3 << false;
|
|
|
|
QTest::newRow("2/0") << 2 << 0 << true;
|
|
|
|
QTest::newRow("3/0") << 3 << 0 << true;
|
|
|
|
QTest::newRow("4/0") << 4 << 0 << false;
|
|
|
|
QTest::newRow("100/0") << 4 << 0 << false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugConsoleTest::topLevelTest()
|
|
|
|
{
|
|
|
|
DebugConsoleModel model;
|
|
|
|
QCOMPARE(model.rowCount(QModelIndex()), 4);
|
|
|
|
QCOMPARE(model.columnCount(QModelIndex()), 2);
|
|
|
|
QFETCH(int, row);
|
|
|
|
QFETCH(int, column);
|
|
|
|
const QModelIndex index = model.index(row, column, QModelIndex());
|
|
|
|
QTEST(index.isValid(), "expectedValid");
|
|
|
|
if (index.isValid()) {
|
|
|
|
QVERIFY(!model.parent(index).isValid());
|
|
|
|
QVERIFY(model.data(index, Qt::DisplayRole).isValid());
|
|
|
|
QCOMPARE(model.data(index, Qt::DisplayRole).userType(), int(QMetaType::QString));
|
|
|
|
for (int i = Qt::DecorationRole; i <= Qt::UserRole; i++) {
|
|
|
|
QVERIFY(!model.data(index, i).isValid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugConsoleTest::testX11Client()
|
|
|
|
{
|
|
|
|
DebugConsoleModel model;
|
|
|
|
QModelIndex x11TopLevelIndex = model.index(0, 0, QModelIndex());
|
|
|
|
QVERIFY(x11TopLevelIndex.isValid());
|
|
|
|
// we don't have any windows yet
|
|
|
|
QCOMPARE(model.rowCount(x11TopLevelIndex), 0);
|
|
|
|
QVERIFY(!model.hasChildren(x11TopLevelIndex));
|
|
|
|
// child index must be invalid
|
|
|
|
QVERIFY(!model.index(0, 0, x11TopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 1, x11TopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, x11TopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, x11TopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// start glxgears, to get a window, which should be added to the model
|
|
|
|
QSignalSpy rowsInsertedSpy(&model, &QAbstractItemModel::rowsInserted);
|
|
|
|
QVERIFY(rowsInsertedSpy.isValid());
|
|
|
|
|
|
|
|
QProcess glxgears;
|
2020-09-10 07:15:31 +00:00
|
|
|
glxgears.setProgram(QStringLiteral("glxgears"));
|
|
|
|
glxgears.start();
|
2016-03-14 09:23:52 +00:00
|
|
|
QVERIFY(glxgears.waitForStarted());
|
|
|
|
|
|
|
|
QVERIFY(rowsInsertedSpy.wait());
|
|
|
|
QCOMPARE(rowsInsertedSpy.count(), 1);
|
|
|
|
QVERIFY(model.hasChildren(x11TopLevelIndex));
|
|
|
|
QCOMPARE(model.rowCount(x11TopLevelIndex), 1);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(0).value<QModelIndex>(), x11TopLevelIndex);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
QModelIndex clientIndex = model.index(0, 0, x11TopLevelIndex);
|
|
|
|
QVERIFY(clientIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(clientIndex), x11TopLevelIndex);
|
|
|
|
QVERIFY(model.hasChildren(clientIndex));
|
|
|
|
QVERIFY(model.rowCount(clientIndex) != 0);
|
|
|
|
QCOMPARE(model.columnCount(clientIndex), 2);
|
|
|
|
// other indexes are still invalid
|
|
|
|
QVERIFY(!model.index(0, 1, x11TopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, x11TopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, x11TopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// the clientIndex has children and those are properties
|
|
|
|
for (int i = 0; i < model.rowCount(clientIndex); i++) {
|
|
|
|
const QModelIndex propNameIndex = model.index(i, 0, clientIndex);
|
|
|
|
QVERIFY(propNameIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propNameIndex), clientIndex);
|
|
|
|
QVERIFY(!model.hasChildren(propNameIndex));
|
|
|
|
QVERIFY(!model.index(0, 0, propNameIndex).isValid());
|
|
|
|
QVERIFY(model.data(propNameIndex, Qt::DisplayRole).isValid());
|
|
|
|
QCOMPARE(model.data(propNameIndex, Qt::DisplayRole).userType(), int(QMetaType::QString));
|
|
|
|
|
|
|
|
// and the value
|
|
|
|
const QModelIndex propValueIndex = model.index(i, 1, clientIndex);
|
|
|
|
QVERIFY(propValueIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propValueIndex), clientIndex);
|
|
|
|
QVERIFY(!model.index(0, 0, propValueIndex).isValid());
|
|
|
|
QVERIFY(!model.hasChildren(propValueIndex));
|
|
|
|
// TODO: how to test whether the values actually work?
|
|
|
|
|
|
|
|
// and on third column we should not get an index any more
|
|
|
|
QVERIFY(!model.index(i, 2, clientIndex).isValid());
|
|
|
|
}
|
|
|
|
// row after count should be invalid
|
|
|
|
QVERIFY(!model.index(model.rowCount(clientIndex), 0, clientIndex).isValid());
|
|
|
|
|
|
|
|
// creating a second model should be initialized directly with the X11 child
|
|
|
|
DebugConsoleModel model2;
|
|
|
|
QVERIFY(model2.hasChildren(model2.index(0, 0, QModelIndex())));
|
|
|
|
|
|
|
|
// now close the window again, it should be removed from the model
|
|
|
|
QSignalSpy rowsRemovedSpy(&model, &QAbstractItemModel::rowsRemoved);
|
|
|
|
QVERIFY(rowsRemovedSpy.isValid());
|
|
|
|
|
|
|
|
glxgears.terminate();
|
|
|
|
QVERIFY(glxgears.waitForFinished());
|
|
|
|
|
|
|
|
QVERIFY(rowsRemovedSpy.wait());
|
|
|
|
QCOMPARE(rowsRemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().first().value<QModelIndex>(), x11TopLevelIndex);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
// the child should be gone again
|
|
|
|
QVERIFY(!model.hasChildren(x11TopLevelIndex));
|
|
|
|
QVERIFY(!model2.hasChildren(model2.index(0, 0, QModelIndex())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugConsoleTest::testX11Unmanaged()
|
|
|
|
{
|
|
|
|
DebugConsoleModel model;
|
|
|
|
QModelIndex unmanagedTopLevelIndex = model.index(1, 0, QModelIndex());
|
|
|
|
QVERIFY(unmanagedTopLevelIndex.isValid());
|
|
|
|
// we don't have any windows yet
|
|
|
|
QCOMPARE(model.rowCount(unmanagedTopLevelIndex), 0);
|
|
|
|
QVERIFY(!model.hasChildren(unmanagedTopLevelIndex));
|
|
|
|
// child index must be invalid
|
|
|
|
QVERIFY(!model.index(0, 0, unmanagedTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 1, unmanagedTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, unmanagedTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, unmanagedTopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// we need to create an unmanaged window
|
|
|
|
QSignalSpy rowsInsertedSpy(&model, &QAbstractItemModel::rowsInserted);
|
|
|
|
QVERIFY(rowsInsertedSpy.isValid());
|
|
|
|
|
|
|
|
// let's create an override redirect window
|
|
|
|
const uint32_t values[] = {true};
|
|
|
|
Xcb::Window window(QRect(0, 0, 10, 10), XCB_CW_OVERRIDE_REDIRECT, values);
|
|
|
|
window.map();
|
|
|
|
|
|
|
|
QVERIFY(rowsInsertedSpy.wait());
|
|
|
|
QCOMPARE(rowsInsertedSpy.count(), 1);
|
|
|
|
QVERIFY(model.hasChildren(unmanagedTopLevelIndex));
|
|
|
|
QCOMPARE(model.rowCount(unmanagedTopLevelIndex), 1);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(0).value<QModelIndex>(), unmanagedTopLevelIndex);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
QModelIndex clientIndex = model.index(0, 0, unmanagedTopLevelIndex);
|
|
|
|
QVERIFY(clientIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(clientIndex), unmanagedTopLevelIndex);
|
|
|
|
QVERIFY(model.hasChildren(clientIndex));
|
|
|
|
QVERIFY(model.rowCount(clientIndex) != 0);
|
|
|
|
QCOMPARE(model.columnCount(clientIndex), 2);
|
|
|
|
// other indexes are still invalid
|
|
|
|
QVERIFY(!model.index(0, 1, unmanagedTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, unmanagedTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, unmanagedTopLevelIndex).isValid());
|
|
|
|
|
|
|
|
QCOMPARE(model.data(clientIndex, Qt::DisplayRole).toString(), QString::number(window));
|
|
|
|
|
|
|
|
// the clientIndex has children and those are properties
|
|
|
|
for (int i = 0; i < model.rowCount(clientIndex); i++) {
|
|
|
|
const QModelIndex propNameIndex = model.index(i, 0, clientIndex);
|
|
|
|
QVERIFY(propNameIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propNameIndex), clientIndex);
|
|
|
|
QVERIFY(!model.hasChildren(propNameIndex));
|
|
|
|
QVERIFY(!model.index(0, 0, propNameIndex).isValid());
|
|
|
|
QVERIFY(model.data(propNameIndex, Qt::DisplayRole).isValid());
|
|
|
|
QCOMPARE(model.data(propNameIndex, Qt::DisplayRole).userType(), int(QMetaType::QString));
|
|
|
|
|
|
|
|
// and the value
|
|
|
|
const QModelIndex propValueIndex = model.index(i, 1, clientIndex);
|
|
|
|
QVERIFY(propValueIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propValueIndex), clientIndex);
|
|
|
|
QVERIFY(!model.index(0, 0, propValueIndex).isValid());
|
|
|
|
QVERIFY(!model.hasChildren(propValueIndex));
|
|
|
|
// TODO: how to test whether the values actually work?
|
|
|
|
|
|
|
|
// and on third column we should not get an index any more
|
|
|
|
QVERIFY(!model.index(i, 2, clientIndex).isValid());
|
|
|
|
}
|
|
|
|
// row after count should be invalid
|
|
|
|
QVERIFY(!model.index(model.rowCount(clientIndex), 0, clientIndex).isValid());
|
|
|
|
|
|
|
|
// creating a second model should be initialized directly with the X11 child
|
|
|
|
DebugConsoleModel model2;
|
|
|
|
QVERIFY(model2.hasChildren(model2.index(1, 0, QModelIndex())));
|
|
|
|
|
|
|
|
// now close the window again, it should be removed from the model
|
|
|
|
QSignalSpy rowsRemovedSpy(&model, &QAbstractItemModel::rowsRemoved);
|
|
|
|
QVERIFY(rowsRemovedSpy.isValid());
|
|
|
|
|
|
|
|
window.unmap();
|
|
|
|
|
|
|
|
QVERIFY(rowsRemovedSpy.wait());
|
|
|
|
QCOMPARE(rowsRemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().first().value<QModelIndex>(), unmanagedTopLevelIndex);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
// the child should be gone again
|
|
|
|
QVERIFY(!model.hasChildren(unmanagedTopLevelIndex));
|
|
|
|
QVERIFY(!model2.hasChildren(model2.index(1, 0, QModelIndex())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugConsoleTest::testWaylandClient()
|
|
|
|
{
|
|
|
|
DebugConsoleModel model;
|
|
|
|
QModelIndex waylandTopLevelIndex = model.index(2, 0, QModelIndex());
|
|
|
|
QVERIFY(waylandTopLevelIndex.isValid());
|
|
|
|
|
|
|
|
// we don't have any windows yet
|
|
|
|
QCOMPARE(model.rowCount(waylandTopLevelIndex), 0);
|
|
|
|
QVERIFY(!model.hasChildren(waylandTopLevelIndex));
|
|
|
|
// child index must be invalid
|
|
|
|
QVERIFY(!model.index(0, 0, waylandTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 1, waylandTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, waylandTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, waylandTopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// we need to create a wayland window
|
|
|
|
QSignalSpy rowsInsertedSpy(&model, &QAbstractItemModel::rowsInserted);
|
|
|
|
QVERIFY(rowsInsertedSpy.isValid());
|
|
|
|
|
|
|
|
// create our connection
|
2016-12-03 13:31:14 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection());
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
// create the Surface and ShellSurface
|
2016-06-30 11:32:54 +00:00
|
|
|
using namespace KWayland::Client;
|
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
2016-03-14 09:23:52 +00:00
|
|
|
QVERIFY(surface->isValid());
|
2020-09-09 09:54:44 +00:00
|
|
|
QScopedPointer<XdgShellSurface> shellSurface(Test::createXdgShellStableSurface(surface.data()));
|
2016-04-22 12:13:37 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface.data(), QSize(10, 10), Qt::red);
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
// now we have the window, it should be added to our model
|
|
|
|
QVERIFY(rowsInsertedSpy.wait());
|
|
|
|
QCOMPARE(rowsInsertedSpy.count(), 1);
|
|
|
|
|
|
|
|
QVERIFY(model.hasChildren(waylandTopLevelIndex));
|
|
|
|
QCOMPARE(model.rowCount(waylandTopLevelIndex), 1);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(0).value<QModelIndex>(), waylandTopLevelIndex);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsInsertedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
QModelIndex clientIndex = model.index(0, 0, waylandTopLevelIndex);
|
|
|
|
QVERIFY(clientIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(clientIndex), waylandTopLevelIndex);
|
|
|
|
QVERIFY(model.hasChildren(clientIndex));
|
|
|
|
QVERIFY(model.rowCount(clientIndex) != 0);
|
|
|
|
QCOMPARE(model.columnCount(clientIndex), 2);
|
|
|
|
// other indexes are still invalid
|
|
|
|
QVERIFY(!model.index(0, 1, waylandTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(0, 2, waylandTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(1, 0, waylandTopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// the clientIndex has children and those are properties
|
|
|
|
for (int i = 0; i < model.rowCount(clientIndex); i++) {
|
|
|
|
const QModelIndex propNameIndex = model.index(i, 0, clientIndex);
|
|
|
|
QVERIFY(propNameIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propNameIndex), clientIndex);
|
|
|
|
QVERIFY(!model.hasChildren(propNameIndex));
|
|
|
|
QVERIFY(!model.index(0, 0, propNameIndex).isValid());
|
|
|
|
QVERIFY(model.data(propNameIndex, Qt::DisplayRole).isValid());
|
|
|
|
QCOMPARE(model.data(propNameIndex, Qt::DisplayRole).userType(), int(QMetaType::QString));
|
|
|
|
|
|
|
|
// and the value
|
|
|
|
const QModelIndex propValueIndex = model.index(i, 1, clientIndex);
|
|
|
|
QVERIFY(propValueIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propValueIndex), clientIndex);
|
|
|
|
QVERIFY(!model.index(0, 0, propValueIndex).isValid());
|
|
|
|
QVERIFY(!model.hasChildren(propValueIndex));
|
|
|
|
// TODO: how to test whether the values actually work?
|
|
|
|
|
|
|
|
// and on third column we should not get an index any more
|
|
|
|
QVERIFY(!model.index(i, 2, clientIndex).isValid());
|
|
|
|
}
|
|
|
|
// row after count should be invalid
|
|
|
|
QVERIFY(!model.index(model.rowCount(clientIndex), 0, clientIndex).isValid());
|
|
|
|
|
|
|
|
// creating a second model should be initialized directly with the X11 child
|
|
|
|
DebugConsoleModel model2;
|
|
|
|
QVERIFY(model2.hasChildren(model2.index(2, 0, QModelIndex())));
|
|
|
|
|
|
|
|
// now close the window again, it should be removed from the model
|
|
|
|
QSignalSpy rowsRemovedSpy(&model, &QAbstractItemModel::rowsRemoved);
|
|
|
|
QVERIFY(rowsRemovedSpy.isValid());
|
|
|
|
|
|
|
|
surface->attachBuffer(Buffer::Ptr());
|
|
|
|
surface->commit(Surface::CommitFlag::None);
|
2020-05-07 14:29:41 +00:00
|
|
|
QVERIFY(rowsRemovedSpy.wait());
|
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
QCOMPARE(rowsRemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().first().value<QModelIndex>(), waylandTopLevelIndex);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(1).value<int>(), 0);
|
|
|
|
QCOMPARE(rowsRemovedSpy.first().at(2).value<int>(), 0);
|
|
|
|
|
|
|
|
// the child should be gone again
|
|
|
|
QVERIFY(!model.hasChildren(waylandTopLevelIndex));
|
|
|
|
QVERIFY(!model2.hasChildren(model2.index(2, 0, QModelIndex())));
|
|
|
|
}
|
|
|
|
|
|
|
|
class HelperWindow : public QRasterWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
HelperWindow() : QRasterWindow(nullptr) {}
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~HelperWindow() override = default;
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void entered();
|
|
|
|
void left();
|
|
|
|
void mouseMoved(const QPoint &global);
|
|
|
|
void mousePressed();
|
|
|
|
void mouseReleased();
|
|
|
|
void wheel();
|
|
|
|
void keyPressed();
|
|
|
|
void keyReleased();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event) override {
|
|
|
|
Q_UNUSED(event)
|
|
|
|
QPainter p(this);
|
|
|
|
p.fillRect(0, 0, width(), height(), Qt::red);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void DebugConsoleTest::testInternalWindow()
|
|
|
|
{
|
|
|
|
DebugConsoleModel model;
|
|
|
|
QModelIndex internalTopLevelIndex = model.index(3, 0, QModelIndex());
|
|
|
|
QVERIFY(internalTopLevelIndex.isValid());
|
|
|
|
|
|
|
|
// there might already be some internal windows, so we cannot reliable test whether there are children
|
|
|
|
// given that we just test whether adding a window works.
|
|
|
|
|
|
|
|
QSignalSpy rowsInsertedSpy(&model, &QAbstractItemModel::rowsInserted);
|
|
|
|
QVERIFY(rowsInsertedSpy.isValid());
|
|
|
|
|
|
|
|
QScopedPointer<HelperWindow> w(new HelperWindow);
|
|
|
|
w->setGeometry(0, 0, 100, 100);
|
|
|
|
w->show();
|
|
|
|
|
2019-06-27 16:52:06 +00:00
|
|
|
QTRY_COMPARE(rowsInsertedSpy.count(), 1);
|
2016-03-14 09:23:52 +00:00
|
|
|
QCOMPARE(rowsInsertedSpy.first().first().value<QModelIndex>(), internalTopLevelIndex);
|
|
|
|
|
|
|
|
QModelIndex clientIndex = model.index(rowsInsertedSpy.first().last().toInt(), 0, internalTopLevelIndex);
|
|
|
|
QVERIFY(clientIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(clientIndex), internalTopLevelIndex);
|
|
|
|
QVERIFY(model.hasChildren(clientIndex));
|
|
|
|
QVERIFY(model.rowCount(clientIndex) != 0);
|
|
|
|
QCOMPARE(model.columnCount(clientIndex), 2);
|
|
|
|
// other indexes are still invalid
|
|
|
|
QVERIFY(!model.index(rowsInsertedSpy.first().last().toInt(), 1, internalTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(rowsInsertedSpy.first().last().toInt(), 2, internalTopLevelIndex).isValid());
|
|
|
|
QVERIFY(!model.index(rowsInsertedSpy.first().last().toInt() + 1, 0, internalTopLevelIndex).isValid());
|
|
|
|
|
|
|
|
// the wayland shell client top level should not have gained this window
|
|
|
|
QVERIFY(!model.hasChildren(model.index(2, 0, QModelIndex())));
|
|
|
|
|
|
|
|
// the clientIndex has children and those are properties
|
|
|
|
for (int i = 0; i < model.rowCount(clientIndex); i++) {
|
|
|
|
const QModelIndex propNameIndex = model.index(i, 0, clientIndex);
|
|
|
|
QVERIFY(propNameIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propNameIndex), clientIndex);
|
|
|
|
QVERIFY(!model.hasChildren(propNameIndex));
|
|
|
|
QVERIFY(!model.index(0, 0, propNameIndex).isValid());
|
|
|
|
QVERIFY(model.data(propNameIndex, Qt::DisplayRole).isValid());
|
|
|
|
QCOMPARE(model.data(propNameIndex, Qt::DisplayRole).userType(), int(QMetaType::QString));
|
|
|
|
|
|
|
|
// and the value
|
|
|
|
const QModelIndex propValueIndex = model.index(i, 1, clientIndex);
|
|
|
|
QVERIFY(propValueIndex.isValid());
|
|
|
|
QCOMPARE(model.parent(propValueIndex), clientIndex);
|
|
|
|
QVERIFY(!model.index(0, 0, propValueIndex).isValid());
|
|
|
|
QVERIFY(!model.hasChildren(propValueIndex));
|
|
|
|
// TODO: how to test whether the values actually work?
|
|
|
|
|
|
|
|
// and on third column we should not get an index any more
|
|
|
|
QVERIFY(!model.index(i, 2, clientIndex).isValid());
|
|
|
|
}
|
|
|
|
// row after count should be invalid
|
|
|
|
QVERIFY(!model.index(model.rowCount(clientIndex), 0, clientIndex).isValid());
|
|
|
|
|
|
|
|
// now close the window again, it should be removed from the model
|
|
|
|
QSignalSpy rowsRemovedSpy(&model, &QAbstractItemModel::rowsRemoved);
|
|
|
|
QVERIFY(rowsRemovedSpy.isValid());
|
|
|
|
|
|
|
|
w->hide();
|
|
|
|
w.reset();
|
|
|
|
|
2019-08-26 07:44:04 +00:00
|
|
|
QTRY_COMPARE(rowsRemovedSpy.count(), 1);
|
2016-03-14 09:23:52 +00:00
|
|
|
QCOMPARE(rowsRemovedSpy.first().first().value<QModelIndex>(), internalTopLevelIndex);
|
|
|
|
}
|
|
|
|
|
2016-10-04 11:37:25 +00:00
|
|
|
void DebugConsoleTest::testClosingDebugConsole()
|
|
|
|
{
|
|
|
|
// this test verifies that the DebugConsole gets destroyed when closing the window
|
|
|
|
// BUG: 369858
|
|
|
|
|
|
|
|
DebugConsole *console = new DebugConsole;
|
|
|
|
QSignalSpy destroyedSpy(console, &QObject::destroyed);
|
|
|
|
QVERIFY(destroyedSpy.isValid());
|
|
|
|
|
2019-08-26 07:44:04 +00:00
|
|
|
QSignalSpy clientAddedSpy(workspace(), &Workspace::internalClientAdded);
|
2016-10-04 11:37:25 +00:00
|
|
|
QVERIFY(clientAddedSpy.isValid());
|
|
|
|
console->show();
|
|
|
|
QCOMPARE(console->windowHandle()->isVisible(), true);
|
|
|
|
QTRY_COMPARE(clientAddedSpy.count(), 1);
|
2019-08-26 07:44:04 +00:00
|
|
|
InternalClient *c = clientAddedSpy.first().first().value<InternalClient *>();
|
2016-10-04 11:37:25 +00:00
|
|
|
QVERIFY(c->isInternal());
|
|
|
|
QCOMPARE(c->internalWindow(), console->windowHandle());
|
|
|
|
QVERIFY(c->isDecorated());
|
2016-11-03 10:32:51 +00:00
|
|
|
QCOMPARE(c->isMinimizable(), false);
|
2016-10-04 11:37:25 +00:00
|
|
|
c->closeWindow();
|
|
|
|
QVERIFY(destroyedSpy.wait());
|
|
|
|
}
|
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(KWin::DebugConsoleTest)
|
|
|
|
#include "debug_console_test.moc"
|