summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/qfilterkey/tst_qfilterkey.cpp
blob: 2c9f7b36f95ec0c69b67d698e10e2bb7385d2ce9 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Copyright (C) 2016 Paul Lemire <paul.lemire350@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0


#include <QtTest/QTest>
#include <Qt3DRender/qfilterkey.h>
#include <Qt3DRender/private/qfilterkey_p.h>
#include <QObject>
#include <QSignalSpy>
#include "testarbiter.h"

class tst_QFilterKey : public QObject
{
    Q_OBJECT

private Q_SLOTS:

    void checkDefaultConstruction()
    {
        // GIVEN
        Qt3DRender::QFilterKey filterKey;

        // THEN
        QCOMPARE(filterKey.value(), QVariant());
        QCOMPARE(filterKey.name(), QString());
    }

    void checkPropertyChanges()
    {
        // GIVEN
        Qt3DRender::QFilterKey filterKey;

        {
            // WHEN
            QSignalSpy spy(&filterKey, SIGNAL(valueChanged(QVariant)));
            const QVariant newValue = QVariant("Tim");
            filterKey.setValue(newValue);

            // THEN
            QVERIFY(spy.isValid());
            QCOMPARE(filterKey.value(), newValue);
            QCOMPARE(spy.size(), 1);

            // WHEN
            spy.clear();
            filterKey.setValue(newValue);

            // THEN
            QCOMPARE(filterKey.value(), newValue);
            QCOMPARE(spy.size(), 0);
        }
        {
            // WHEN
            QSignalSpy spy(&filterKey, SIGNAL(nameChanged(QString)));
            const QString newValue = QStringLiteral("Darius");
            filterKey.setName(newValue);

            // THEN
            QVERIFY(spy.isValid());
            QCOMPARE(filterKey.name(), newValue);
            QCOMPARE(spy.size(), 1);

            // WHEN
            spy.clear();
            filterKey.setName(newValue);

            // THEN
            QCOMPARE(filterKey.name(), newValue);
            QCOMPARE(spy.size(), 0);
        }
    }

    void checkValueUpdate()
    {
        // GIVEN
        TestArbiter arbiter;
        Qt3DRender::QFilterKey filterKey;
        arbiter.setArbiterOnNode(&filterKey);

        {
            // WHEN
            filterKey.setValue(QVariant(427));
            QCoreApplication::processEvents();

            // THEN
            QCOMPARE(arbiter.dirtyNodes().size(), 1);
            QCOMPARE(arbiter.dirtyNodes().front(), &filterKey);

            arbiter.clear();
        }

        {
            // WHEN
            filterKey.setValue(QVariant(427));
            QCoreApplication::processEvents();

            // THEN
            QCOMPARE(arbiter.dirtyNodes().size(), 0);
        }

    }

    void checkNameUpdate()
    {
        // GIVEN
        TestArbiter arbiter;
        Qt3DRender::QFilterKey filterKey;
        arbiter.setArbiterOnNode(&filterKey);

        {
            // WHEN
            filterKey.setName(QStringLiteral("Easton"));
            QCoreApplication::processEvents();

            // THEN
            QCOMPARE(arbiter.dirtyNodes().size(), 1);
            QCOMPARE(arbiter.dirtyNodes().front(), &filterKey);

            arbiter.clear();
        }

        {
            // WHEN
            filterKey.setName(QStringLiteral("Easton"));
            QCoreApplication::processEvents();

            // THEN
            QCOMPARE(arbiter.dirtyNodes().size(), 0);
        }

    }

};

QTEST_MAIN(tst_QFilterKey)

#include "tst_qfilterkey.moc"