summaryrefslogtreecommitdiffstats
path: root/tests/manual/corelib/time/zonechange/tst_zonechange.cpp
blob: 5ca33f1396a201b45024cb1825ec9daf102de995 (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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtCore/qcoreapplication.h>

#include <QtCore/qdatetime.h>
#if QT_CONFIG(timezone)
#include <QtCore/qtimezone.h>
#endif

#include <chrono>
#include <thread>

using namespace std::chrono;

bool distinct(const QDateTime &left, const QDateTime &right)
{
    if (left == right)
        return false;

    qInfo() << "  Actual:" << left << "\nExpected:" << right;
    return true;
}

// Exit status: 0 success, 1 test failed, 2 test not viable.
int main(int argc, char **argv)
{
    // Other things may need this indirectly, so make sure it exists:
    QCoreApplication ignored(argc, argv);
    if (!qEnvironmentVariableIsEmpty("TZ")) {
        qInfo("Environment variable TZ over-rides system setting; you need to clear it.");
        return 2;
    }

    QDateTime date = QDateTime(QDate(2020, 2, 20), QTime(20, 20, 20));
    QDateTime copy = date;
    if (distinct(date, copy))
        return 1;
#if QT_CONFIG(timezone)
    const auto prior = QTimeZone::systemTimeZoneId();
#endif

    qInfo("You have two minutes in which to change the system time-zone setting.");
    std::this_thread::sleep_for(120s);
#if QT_CONFIG(timezone)
    if (QTimeZone::systemTimeZoneId() == prior) {
        qInfo("Too slow.");
        return 2;
    }
#endif

    if (distinct(copy, date))
        return 1;
    QDateTime copy2 = copy.addMSecs(2);
    QDateTime date2 = date.addMSecs(2);
    if (distinct(copy2, date2))
        return 1;

    return 0;
}