summaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qml_quick/tst_sensors_basic.qml
blob: b5cab08b646d0961bf62ace52f7b26cfc5acc209 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtSensors module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtTest
import QtSensors

TestCase {
    id: testCase
    name: "SensorTest"

    SignalSpy {
        id: sensorActiveSpy
        signalName: "activeChanged"
    }

    SignalSpy {
        id: sensorReadingSpy
        signalName: "readingChanged"
    }

    SignalSpy {
        id: sensorBusySpy
        signalName: "busyChanged"
    }

    SignalSpy {
        id: sensorIdentifierSpy
        signalName: "identifierChanged"
    }

    function init() {
        TestControl.registerTestBackends()
    }

    function cleanup() {
        TestControl.unregisterTestBackends()
        sensorBusySpy.clear()
        sensorActiveSpy.clear()
        sensorReadingSpy.clear()
        sensorIdentifierSpy.clear()
    }

    function test_activate() {

        // create sensor without proper identifier and verify activation fails
        var sensor = Qt.createQmlObject("import QtSensors; Accelerometer {identifier: \"nonexistent\"}",testCase);
        sensorActiveSpy.target = sensor
        sensorIdentifierSpy.target = sensor
        verify(!sensor.active)
        compare(sensor.identifier, "nonexistent")
        sensor.active = true
        verify(!sensor.active)
        compare(sensorActiveSpy.count, 0)

        // set proper identifier and verify activation succeeds
        sensor.identifier = "QAccelerometer"
        compare(sensor.identifier, "QAccelerometer")
        compare(sensorIdentifierSpy.count, 1)
        sensor.active = true
        compare(sensorActiveSpy.count, 1)
        verify(sensor.active)
        compare(sensor.reading.x, 1.0)

        // set identifier again, verify no impact
        sensor.identifier = "QAccelerometer"
        compare(sensor.identifier, "QAccelerometer")
        compare(sensorIdentifierSpy.count, 1)

        // set activate again, verify no impact
        sensor.active = true
        sensor.start()
        compare(sensorActiveSpy.count, 1)
        verify(sensor.active)

        // deactivate
        sensor.active = false
        compare(sensorActiveSpy.count, 2)
        verify(!sensor.active)

        // reactivate and stop
        sensor.active = true
        compare(sensorActiveSpy.count, 3)
        verify(sensor.active)
        sensor.stop()
        compare(sensorActiveSpy.count, 4)
        verify(!sensor.active)

        // create sensor with proper id and active 'true' on creation time
        var sensor2 = Qt.createQmlObject("import QtSensors; Accelerometer {identifier: \"QAccelerometer\"; active: true}", testCase);
        verify(sensor2.active)

        // create sensor with nonexistent id and active 'true' on creation time
        var sensor3 = Qt.createQmlObject("import QtSensors; Accelerometer {identifier: \"nonexistent\"; active: true}", testCase);
        verify(!sensor3.active)
        sensor3.identifier = "QAccelerometer"
        sensor3.start()
        verify(sensor3.active)

        // create sensor with empty id, and check that a default is used
        var sensor4 = Qt.createQmlObject("import QtSensors; Accelerometer {active: true}", testCase);
        verify(sensor4.active)
        compare(sensor4.identifier, QmlSensors.defaultSensorForType("QAccelerometer"));

        // same as previous but with delayed activation
        var sensor5 = Qt.createQmlObject("import QtSensors; Accelerometer {}", testCase);
        verify(!sensor5.active)
        sensor5.active = true
        verify(sensor5.active)
        compare(sensor5.identifier, QmlSensors.defaultSensorForType("QAccelerometer"));

        // tidy up
        sensor.destroy()
        sensor2.destroy()
        sensor3.destroy()
        sensor4.destroy()
        sensor5.destroy()
    }

    function test_busy() {
        var sensor = Qt.createQmlObject("import QtSensors; Accelerometer {identifier: \"QAccelerometer\"}", testCase);
        sensorBusySpy.target = sensor
        compare(sensor.busy, false)
        verify(sensor.start())

        // set sensor busy and verify 'busy' property and its signaling
        TestControl.setSensorBusy(sensor, true)
        compare(sensorBusySpy.count, 1)
        TestControl.setSensorBusy(sensor, false)
        compare(sensorBusySpy.count, 2)
        TestControl.setSensorBusy(sensor, false)
        compare(sensorBusySpy.count, 2)

        // tidy up
        sensor.destroy()
    }

    function test_reading(data) {

        var sensor = Qt.createQmlObject(
                    "import QtSensors; "
                    + data.tag + "{"
                    + "identifier: " + "\"Q" + data.tag + "\""
                    + "}"
                    ,testCase)
        sensorActiveSpy.target = sensor
        sensorReadingSpy.target = sensor

        // verify initial values of sensor
        // note: 'reading' values are 'undefined by design' before activation, and therefore aren't tested
        compare(sensor.type, "Q" + data.tag)
        compare(sensor.active, false)
        compare(sensor.alwaysOn, false )
        compare(sensor.busy, false)
        compare(sensor.description, "")
        compare(sensor.error, 0)
        compare(sensor.skipDuplicates, false)

        // start the sensor and verify activation
        sensor.start()
        compare(sensor.active, true)
        compare(sensorActiveSpy.count, 1)
        compare(sensorReadingSpy.count, 1)

        // verify the initial reading values
        for (var prop in data.initialReading)
            fuzzyCompare(sensor.reading[prop], data.initialReading[prop], 0.0001, data.tag + "::" + prop)

        // change reading values and verify them
        TestControl.setSensorReading(sensor, data.newReading)
        compare(sensorReadingSpy.count, 2)
        for (prop in data.newReading)
            fuzzyCompare(sensor.reading[prop], data.newReading[prop], 0.0001, data.tag + "::" + prop)

        // stop the sensor and verify deactivation
        sensor.stop()
        compare(sensor.active, false)
        compare(sensorActiveSpy.count, 2)
        compare(sensorReadingSpy.count, 2)

        // tidy up
        sensor.destroy()
    }

    function test_reading_data() {
        return [
                    {tag: "Accelerometer", initialReading: {timestamp: 1, x: 1.0, y: 1.0, z: 1.0}, newReading: {timestamp: 2, x: 2.0, y: 3.0, z: 4.0}},
                    {tag: "PressureSensor", initialReading: {pressure: 1.0, temperature: 1.0}, newReading: {pressure: 2.0, temperature: 3.0}},
                    {tag: "Gyroscope", initialReading: {x : 1.0, y: 1.0, z: 1.0}, newReading: {x : 2.0, y: 3.0, z: 4.0}},
                    {tag: "TapSensor", initialReading: {doubleTap: true, tapDirection: TapReading.Z_Both}, newReading: {doubleTap: false, tapDirection: TapReading.X_Both}},
                    {tag: "Compass", initialReading: {azimuth: 1.0, calibrationLevel: 1.0}, newReading: {azimuth: 2.0, calibrationLevel: 3.0}},
                    {tag: "ProximitySensor", initialReading: {near: true}, newReading: {near: false}},
                    {tag: "OrientationSensor", initialReading: {orientation: OrientationReading.LeftUp}, newReading: {orientation: OrientationReading.RightUp}},
                    {tag: "AmbientLightSensor", initialReading: {lightLevel: AmbientLightReading.Twilight}, newReading: {lightLevel: AmbientLightReading.Sunny}},
                    {tag: "Magnetometer", initialReading: {x : 1.0, y: 1.0, z: 1.0, calibrationLevel: 1.0}, newReading:  {x : 2.0, y: 3.0, z: 4.0, calibrationLevel: 5.0}},
                    {tag: "LidSensor", initialReading: {backLidClosed:true, frontLidClosed: true}, newReading:  {backLidClosed:false, frontLidClosed: false}},
                    {tag: "TiltSensor", initialReading: {yRotation: 1.0, xRotation: 1.0}, newReading: {yRotation: 2.0, xRotation: 3.0}},
                    {tag: "RotationSensor", initialReading: {x: 1.0, y: 1.0, z: 1.0}, newReading: {x: 2.0, y: 3.0, z: 4.0}},
                    {tag: "HumiditySensor", initialReading: {relativeHumidity: 1.0, absoluteHumidity: 1.0}, newReading: {relativeHumidity: 2.0, absoluteHumidity: 3.0}},
                    {tag: "AmbientTemperatureSensor", initialReading: {temperature: 30.0}, newReading: {temperature: 40.0}},
                    {tag: "LightSensor", initialReading: {illuminance: 1.0}, newReading: {illuminance: 2.0}},
                    {tag: "IRProximitySensor", initialReading: {reflectance: 0.5}, newReading: {reflectance: 0.6}}
               ];
    }
}