blob: ca442bd2b6d7dceda5107ad1192462ba7eb23e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTESTEVENTLOOP_H
#define QTESTEVENTLOOP_H
#include <QtTest/qttestglobal.h>
#include <QtTest/qtestcase.h>
#include <QtCore/qbasictimer.h>
#include <QtCore/qcoreapplication.h>
#include <QtCore/qeventloop.h>
#include <QtCore/qobject.h>
#include <QtCore/qpointer.h>
#include <QtCore/qthread.h>
QT_BEGIN_NAMESPACE
class Q_TESTLIB_EXPORT QTestEventLoop : public QObject
{
Q_OBJECT
public:
QTestEventLoop(QObject *parent = nullptr)
: QObject(parent), _timeout(false)
{}
void enterLoopMSecs(int ms) { enterLoop(std::chrono::milliseconds{ms}); }
void enterLoop(int secs) { enterLoop(std::chrono::seconds{secs}); }
inline void enterLoop(std::chrono::milliseconds msecs);
inline void changeInterval(int secs)
{ changeInterval(std::chrono::seconds{secs}); }
void changeInterval(std::chrono::nanoseconds nsecs)
{ timer.start(nsecs, this); }
inline bool timeout() const
{ return _timeout; }
inline static QTestEventLoop &instance()
{
Q_CONSTINIT static QPointer<QTestEventLoop> testLoop;
if (testLoop.isNull())
testLoop = new QTestEventLoop(QCoreApplication::instance());
return *static_cast<QTestEventLoop *>(testLoop);
}
public Q_SLOTS:
inline void exitLoop();
protected:
inline void timerEvent(QTimerEvent *e) override;
private:
QEventLoop *loop = nullptr;
QBasicTimer timer;
uint _timeout :1;
Q_DECL_UNUSED_MEMBER uint reserved :31;
};
inline void QTestEventLoop::enterLoop(std::chrono::milliseconds msecs)
{
Q_ASSERT(!loop);
_timeout = false;
if (QTest::runningTest() && QTest::currentTestResolved())
return;
using namespace std::chrono_literals;
QEventLoop l;
// if tests want to measure sub-second precision, use a precise timer
timer.start(msecs, msecs < 1s ? Qt::PreciseTimer : Qt::CoarseTimer, this);
loop = &l;
l.exec();
loop = nullptr;
}
inline void QTestEventLoop::exitLoop()
{
if (thread() != QThread::currentThread())
{
QMetaObject::invokeMethod(this, "exitLoop", Qt::QueuedConnection);
return;
}
timer.stop();
if (loop)
loop->exit();
}
inline void QTestEventLoop::timerEvent(QTimerEvent *e)
{
if (e->id() != timer.id())
return;
_timeout = true;
exitLoop();
}
QT_END_NAMESPACE
#endif
|