summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global/qcomparehelpers/tst_qcomparehelpers1.cpp
blob: a3b8200a63f582f5b9b6357c0f045c1d3693d809 (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
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "tst_qcomparehelpers.h"

#define DECLARE_TYPE(Name, Type, RetType, Constexpr, Suffix) \
class Deprecated ## Name \
{ \
public: \
    Constexpr Deprecated ## Name () {} \
\
private: \
    friend Constexpr bool \
    comparesEqual(const Deprecated ## Name &lhs, int rhs) noexcept; \
    friend Constexpr RetType \
    compareThreeWay(const Deprecated ## Name &lhs, int rhs) noexcept; \
    Q_DECLARE_ ## Type ## _ORDERED ## Suffix (Deprecated ## Name, int, \
                                              Q_DECL_DEPRECATED_X("This op is deprecated")) \
}; \
\
Constexpr bool comparesEqual(const Deprecated ## Name &lhs, int rhs) noexcept \
{ Q_UNUSED(lhs); Q_UNUSED(rhs); return true; } \
Constexpr RetType compareThreeWay(const Deprecated ## Name &lhs, int rhs) noexcept \
{ Q_UNUSED(lhs); Q_UNUSED(rhs); return RetType::equivalent; }

DECLARE_TYPE(PartialConst, PARTIALLY, Qt::partial_ordering, constexpr, _LITERAL_TYPE)
DECLARE_TYPE(Partial, PARTIALLY, Qt::partial_ordering, , )
DECLARE_TYPE(WeakConst, WEAKLY, Qt::weak_ordering, constexpr, _LITERAL_TYPE)
DECLARE_TYPE(Weak, WEAKLY, Qt::weak_ordering, , )
DECLARE_TYPE(StrongConst, STRONGLY, Qt::strong_ordering, constexpr, _LITERAL_TYPE)
DECLARE_TYPE(Strong, STRONGLY, Qt::strong_ordering, , )

#undef DECLARE_TYPE

void tst_QCompareHelpers::compareWithAttributes()
{
    // All these comparisons would trigger deprecation warnings.
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED

#define COMPARE(ClassName) \
    do { \
        ClassName c; \
        QCOMPARE_EQ(c, 0); \
        QCOMPARE_LE(c, 0); \
        QCOMPARE_GE(0, c); \
    } while (false)

    COMPARE(DeprecatedPartialConst);
    COMPARE(DeprecatedPartial);
    COMPARE(DeprecatedWeakConst);
    COMPARE(DeprecatedWeak);
    COMPARE(DeprecatedStrongConst);
    COMPARE(DeprecatedStrong);

#undef COMPARE

QT_WARNING_POP
}