aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/processevents-utilities.cpp
blob: 12559d6a59f9c31fa0a25224d69b72782710dced (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "processevents-utilities.h"

#include <QCoreApplication>
#include <QElapsedTimer>
#include <QThread>

#include <QDebug>

namespace ProcessEventUtilities
{
bool processEventsUntilTrue(std::function<bool ()> condition, int timeOutInMs)
{
    if (condition())
        return true;

    QElapsedTimer time;
    time.start();

    forever {
        if (condition())
            return true;

        if (time.elapsed() > timeOutInMs) {
            qWarning() << "Timeout of" << timeOutInMs
                       << "reached in processEventsAndWaitUntilTrue()";
            return false;
        }

        QCoreApplication::processEvents();
    }
}
}