b823747c3b
* speeds up incremental builds as changes to a header will not always need the full mocs_compilation.cpp for all the target's headers rebuild, while having a moc file sourced into a source file only adds minor extra costs, due to small own code and the used headers usually already covered by the source file, being for the same class/struct * seems to not slow down clean builds, due to empty mocs_compilation.cpp resulting in those quickly processed, while the minor extra cost of the sourced moc files does not outweigh that in summary. Measured times actually improved by some percent points. (ideally CMake would just skip empty mocs_compilation.cpp & its object file one day) * enables compiler to see all methods of a class in same compilation unit to do some sanity checks * potentially more inlining in general, due to more in the compilation unit * allows to keep using more forward declarations in the header, as with the moc code being sourced into the cpp file there definitions can be ensured and often are already for the needs of the normal class methods
124 lines
3.9 KiB
C++
124 lines
3.9 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2016 Martin Graesslin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
|
|
|
#include "onscreennotificationtest.h"
|
|
|
|
#include "input.h"
|
|
#include "onscreennotification.h"
|
|
|
|
#include <KConfigGroup>
|
|
#include <KSharedConfig>
|
|
|
|
#include <QQmlEngine>
|
|
#include <QSignalSpy>
|
|
#include <QTest>
|
|
|
|
QTEST_MAIN(OnScreenNotificationTest);
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
void InputRedirection::installInputEventSpy(InputEventSpy *spy)
|
|
{
|
|
}
|
|
|
|
void InputRedirection::uninstallInputEventSpy(InputEventSpy *spy)
|
|
{
|
|
}
|
|
|
|
InputRedirection *InputRedirection::s_self = nullptr;
|
|
|
|
}
|
|
|
|
using KWin::OnScreenNotification;
|
|
|
|
void OnScreenNotificationTest::show()
|
|
{
|
|
OnScreenNotification notification;
|
|
auto config = KSharedConfig::openConfig(QString(), KSharedConfig::SimpleConfig);
|
|
KConfigGroup group = config->group("OnScreenNotification");
|
|
group.writeEntry(QStringLiteral("QmlPath"), QString("/does/not/exist.qml"));
|
|
group.sync();
|
|
notification.setConfig(config);
|
|
notification.setEngine(new QQmlEngine(¬ification));
|
|
notification.setMessage(QStringLiteral("Some text so that we see it in the test"));
|
|
|
|
QSignalSpy visibleChangedSpy(¬ification, &OnScreenNotification::visibleChanged);
|
|
QCOMPARE(notification.isVisible(), false);
|
|
notification.setVisible(true);
|
|
QCOMPARE(notification.isVisible(), true);
|
|
QCOMPARE(visibleChangedSpy.count(), 1);
|
|
|
|
// show again should not trigger
|
|
notification.setVisible(true);
|
|
QCOMPARE(visibleChangedSpy.count(), 1);
|
|
|
|
// timer should not have hidden
|
|
QTest::qWait(500);
|
|
QCOMPARE(notification.isVisible(), true);
|
|
|
|
// hide again
|
|
notification.setVisible(false);
|
|
QCOMPARE(notification.isVisible(), false);
|
|
QCOMPARE(visibleChangedSpy.count(), 2);
|
|
|
|
// now show with timer
|
|
notification.setTimeout(250);
|
|
notification.setVisible(true);
|
|
QCOMPARE(notification.isVisible(), true);
|
|
QCOMPARE(visibleChangedSpy.count(), 3);
|
|
QVERIFY(visibleChangedSpy.wait());
|
|
QCOMPARE(notification.isVisible(), false);
|
|
QCOMPARE(visibleChangedSpy.count(), 4);
|
|
}
|
|
|
|
void OnScreenNotificationTest::timeout()
|
|
{
|
|
OnScreenNotification notification;
|
|
QSignalSpy timeoutChangedSpy(¬ification, &OnScreenNotification::timeoutChanged);
|
|
QCOMPARE(notification.timeout(), 0);
|
|
notification.setTimeout(1000);
|
|
QCOMPARE(notification.timeout(), 1000);
|
|
QCOMPARE(timeoutChangedSpy.count(), 1);
|
|
notification.setTimeout(1000);
|
|
QCOMPARE(timeoutChangedSpy.count(), 1);
|
|
notification.setTimeout(0);
|
|
QCOMPARE(notification.timeout(), 0);
|
|
QCOMPARE(timeoutChangedSpy.count(), 2);
|
|
}
|
|
|
|
void OnScreenNotificationTest::iconName()
|
|
{
|
|
OnScreenNotification notification;
|
|
QSignalSpy iconNameChangedSpy(¬ification, &OnScreenNotification::iconNameChanged);
|
|
QCOMPARE(notification.iconName(), QString());
|
|
notification.setIconName(QStringLiteral("foo"));
|
|
QCOMPARE(notification.iconName(), QStringLiteral("foo"));
|
|
QCOMPARE(iconNameChangedSpy.count(), 1);
|
|
notification.setIconName(QStringLiteral("foo"));
|
|
QCOMPARE(iconNameChangedSpy.count(), 1);
|
|
notification.setIconName(QStringLiteral("bar"));
|
|
QCOMPARE(notification.iconName(), QStringLiteral("bar"));
|
|
QCOMPARE(iconNameChangedSpy.count(), 2);
|
|
}
|
|
|
|
void OnScreenNotificationTest::message()
|
|
{
|
|
OnScreenNotification notification;
|
|
QSignalSpy messageChangedSpy(¬ification, &OnScreenNotification::messageChanged);
|
|
QCOMPARE(notification.message(), QString());
|
|
notification.setMessage(QStringLiteral("foo"));
|
|
QCOMPARE(notification.message(), QStringLiteral("foo"));
|
|
QCOMPARE(messageChangedSpy.count(), 1);
|
|
notification.setMessage(QStringLiteral("foo"));
|
|
QCOMPARE(messageChangedSpy.count(), 1);
|
|
notification.setMessage(QStringLiteral("bar"));
|
|
QCOMPARE(notification.message(), QStringLiteral("bar"));
|
|
QCOMPARE(messageChangedSpy.count(), 2);
|
|
}
|
|
|
|
#include "moc_onscreennotificationtest.cpp"
|