Files
RedBear-OS/local/recipes/kde/kf6-kconfig/source/autotests/kwindowstatesavertest.cpp
T
2026-04-14 10:51:06 +01:00

91 lines
2.4 KiB
C++

/*
SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "kwindowstatesaver.h"
#include "kconfiggroup.h"
#include "ksharedconfig.h"
#include <QSignalSpy>
#include <QStandardPaths>
#include <QTest>
#include <QProgressDialog>
class KWindowStateSaverTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void testTopLevelDialog();
void testSubDialog();
};
void KWindowStateSaverTest::initTestCase()
{
QStandardPaths::setTestModeEnabled(true);
}
void KWindowStateSaverTest::testTopLevelDialog()
{
auto cfg = KSharedConfig::openStateConfig();
cfg->deleteGroup(QStringLiteral("topLevelDialogTest"));
QSize dlgSize(720, 720);
{
QProgressDialog dlg;
new KWindowStateSaver(&dlg, QStringLiteral("topLevelDialogTest"));
dlg.show();
QTest::qWait(10); // give the window time to show up, so we simulate a user-triggered resize
dlg.resize(dlgSize);
QTest::qWait(500); // give the state saver time to trigger
QCOMPARE(dlg.size(), dlgSize);
}
QVERIFY(cfg->hasGroup(QStringLiteral("topLevelDialogTest")));
{
QProgressDialog dlg;
new KWindowStateSaver(&dlg, QStringLiteral("topLevelDialogTest"));
dlg.show();
QTest::qWait(100); // give the window time to show up properly
QCOMPARE(dlg.size(), dlgSize);
}
}
void KWindowStateSaverTest::testSubDialog()
{
QWidget mainWindow;
mainWindow.show();
QTest::qWait(10);
auto cfg = KSharedConfig::openStateConfig();
cfg->deleteGroup(QStringLiteral("subDialogTest"));
QSize dlgSize(700, 500);
{
auto dlg = new QProgressDialog(&mainWindow);
new KWindowStateSaver(dlg, QStringLiteral("subDialogTest"));
dlg->show();
QTest::qWait(10); // give the window time to show up, so we simulate a user-triggered resize
dlg->resize(dlgSize);
QTest::qWait(500); // give the state saver time to trigger
QCOMPARE(dlg->size(), dlgSize);
delete dlg;
}
QVERIFY(cfg->hasGroup(QStringLiteral("subDialogTest")));
{
auto dlg = new QProgressDialog(&mainWindow);
new KWindowStateSaver(dlg, QStringLiteral("subDialogTest"));
dlg->show();
QTest::qWait(100); // give the window time to show up properly
QCOMPARE(dlg->size(), dlgSize);
}
}
QTEST_MAIN(KWindowStateSaverTest)
#include "kwindowstatesavertest.moc"