summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/qclipblendvalue/tst_qclipblendvalue.cpp
blob: 04fddc2df34d490ad437b2a3607c0e0391722b65 (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
// Copyright (C) 2017 Paul Lemire <paul.lemire350@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only


#include <QtTest/QTest>
#include <Qt3DAnimation/qclipblendvalue.h>
#include <Qt3DAnimation/qanimationcliploader.h>
#include <Qt3DAnimation/private/qclipblendvalue_p.h>
#include <QObject>
#include <QSignalSpy>
#include <testarbiter.h>

class tst_QClipBlendValue : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void initTestCase()
    {
        qRegisterMetaType<Qt3DAnimation::QAbstractAnimationClip*>();
    }

    void checkDefaultConstruction()
    {
        // GIVEN
        Qt3DAnimation::QClipBlendValue clipBlendNode;

        // THEN;
        QCOMPARE(clipBlendNode.clip(), static_cast<Qt3DAnimation::QAbstractAnimationClip *>(nullptr));
    }

    void checkPropertyChanges()
    {
        // GIVEN
        Qt3DAnimation::QClipBlendValue clipBlendNode;

        {
            // WHEN
            QSignalSpy spy(&clipBlendNode, SIGNAL(clipChanged(Qt3DAnimation::QAbstractAnimationClip*)));
            auto newValue = new Qt3DAnimation::QAnimationClipLoader();
            clipBlendNode.setClip(newValue);

            // THEN
            QVERIFY(spy.isValid());
            QCOMPARE(clipBlendNode.clip(), newValue);
            QCOMPARE(spy.size(), 1);

            // WHEN
            spy.clear();
            clipBlendNode.setClip(newValue);

            // THEN
            QCOMPARE(clipBlendNode.clip(), newValue);
            QCOMPARE(spy.size(), 0);
        }
    }

    void checkClipUpdate()
    {
        // GIVEN
        TestArbiter arbiter;
        Qt3DAnimation::QClipBlendValue clipBlendNode;
        arbiter.setArbiterOnNode(&clipBlendNode);
        auto clip = new Qt3DAnimation::QAnimationClipLoader();

        {
            // WHEN
            clipBlendNode.setClip(clip);

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

            arbiter.clear();
        }

        {
            // WHEN
            clipBlendNode.setClip(clip);

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

    void checkStartClipBookkeeping()
    {
        // GIVEN
        QScopedPointer<Qt3DAnimation::QClipBlendValue> clipBlendNode(new Qt3DAnimation::QClipBlendValue);
        {
            // WHEN
            Qt3DAnimation::QAnimationClipLoader clip;
            clipBlendNode->setClip(&clip);

            // THEN
            QCOMPARE(clip.parent(), clipBlendNode.data());
            QCOMPARE(clipBlendNode->clip(), &clip);
        }
        // THEN (Should not crash and clip be unset)
        QVERIFY(clipBlendNode->clip() == nullptr);

        {
            // WHEN
            Qt3DAnimation::QClipBlendValue someOtherNode;
            QScopedPointer<Qt3DAnimation::QAnimationClipLoader> clip(new Qt3DAnimation::QAnimationClipLoader(&someOtherNode));
            clipBlendNode->setClip(clip.data());

            // THEN
            QCOMPARE(clip->parent(), &someOtherNode);
            QCOMPARE(clipBlendNode->clip(), clip.data());

            // WHEN
            clipBlendNode.reset();
            clip.reset();

            // THEN Should not crash when the effect is destroyed (tests for failed removal of destruction helper)
        }
    }
};

QTEST_MAIN(tst_QClipBlendValue)

#include "tst_qclipblendvalue.moc"