summaryrefslogtreecommitdiffstats
path: root/tests/auto/extras/qfirstpersoncameracontroller/tst_qfirstpersoncameracontroller.cpp
blob: 96fd5450aa210de91fd95dcc51c175064984d661 (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
138
139
140
141
142
143
144
// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only


#include <QtTest/QTest>
#include <Qt3DExtras/qfirstpersoncameracontroller.h>
#include <Qt3DRender/qcamera.h>
#include <QObject>
#include <QSignalSpy>

class tst_QFirstPersonCameraController : public QObject
{
    Q_OBJECT

private Q_SLOTS:

    void checkDefaultConstruction()
    {
        // GIVEN
        Qt3DExtras::QFirstPersonCameraController firstPersonCameraController;

        // THEN
        QVERIFY(firstPersonCameraController.camera() == nullptr);
        QCOMPARE(firstPersonCameraController.linearSpeed(), 10.0f);
        QCOMPARE(firstPersonCameraController.lookSpeed(), 180.0f);
        QCOMPARE(firstPersonCameraController.acceleration(), -1.0f);
        QCOMPARE(firstPersonCameraController.deceleration(), -1.0f);
    }

    void checkPropertyChanges()
    {
        // GIVEN
        Qt3DExtras::QFirstPersonCameraController firstPersonCameraController;

        {
            // WHEN
            QSignalSpy spy(&firstPersonCameraController, SIGNAL(cameraChanged()));
            Qt3DRender::QCamera *newValue = new Qt3DRender::QCamera(&firstPersonCameraController);
            firstPersonCameraController.setCamera(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.camera(), newValue);
            QCOMPARE(spy.count(), 1);

            // WHEN
            spy.clear();
            firstPersonCameraController.setCamera(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.camera(), newValue);
            QCOMPARE(spy.count(), 0);

            // WHEN
            spy.clear();
            // Check node bookeeping
            delete newValue;

            // THEN
            QCOMPARE(spy.count(), 1);
            QVERIFY(firstPersonCameraController.camera() == nullptr);
        }
        {
            // WHEN
            QSignalSpy spy(&firstPersonCameraController, SIGNAL(linearSpeedChanged()));
            const float newValue = 300.0f;
            firstPersonCameraController.setLinearSpeed(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.linearSpeed(), newValue);
            QCOMPARE(spy.count(), 1);

            // WHEN
            spy.clear();
            firstPersonCameraController.setLinearSpeed(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.linearSpeed(), newValue);
            QCOMPARE(spy.count(), 0);

        }
        {
            // WHEN
            QSignalSpy spy(&firstPersonCameraController, SIGNAL(lookSpeedChanged()));
            const float newValue = 0.001f;
            firstPersonCameraController.setLookSpeed(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.lookSpeed(), newValue);
            QCOMPARE(spy.count(), 1);

            // WHEN
            spy.clear();
            firstPersonCameraController.setLookSpeed(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.lookSpeed(), newValue);
            QCOMPARE(spy.count(), 0);

        }
        {
            // WHEN
            QSignalSpy spy(&firstPersonCameraController, SIGNAL(accelerationChanged(float)));
            const float newValue = 0.001f;
            firstPersonCameraController.setAcceleration(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.acceleration(), newValue);
            QCOMPARE(spy.count(), 1);

            // WHEN
            spy.clear();
            firstPersonCameraController.setAcceleration(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.acceleration(), newValue);
            QCOMPARE(spy.count(), 0);

        }
        {
            // WHEN
            QSignalSpy spy(&firstPersonCameraController, SIGNAL(decelerationChanged(float)));
            const float newValue = 0.001f;
            firstPersonCameraController.setDeceleration(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.deceleration(), newValue);
            QCOMPARE(spy.count(), 1);

            // WHEN
            spy.clear();
            firstPersonCameraController.setDeceleration(newValue);

            // THEN
            QCOMPARE(firstPersonCameraController.deceleration(), newValue);
            QCOMPARE(spy.count(), 0);

        }
    }

};

QTEST_APPLESS_MAIN(tst_QFirstPersonCameraController)

#include "tst_qfirstpersoncameracontroller.moc"