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
|
/****************************************************************************
**
** Copyright (C) 2016 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$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QtTest/QSignalSpy>
#include <QtCore/QDebug>
#include "../../../src/imports/sensors/qmlsensorgesture.h"
#include "qtemplategestureplugin.h"
#include "qtemplaterecognizer.h"
#include <qsensorgesturemanager.h>
#include "qsensormanager.h"
QT_USE_NAMESPACE
QT_BEGIN_NAMESPACE
class tst_Sensors2QMLAPI : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void testGesture();
};
void tst_Sensors2QMLAPI::initTestCase()
{
qputenv("QT_SENSORS_LOAD_PLUGINS", "0"); // Do not load plugins
}
void tst_Sensors2QMLAPI::testGesture()
{
QTemplateGesturePlugin* plugin = new QTemplateGesturePlugin();
QList <QSensorGestureRecognizer *> recognizers = plugin->createRecognizers();
QSensorGestureManager manager;
QmlSensorGesture* gs = new QmlSensorGesture(this);
gs->componentComplete();
QSignalSpy spy_availableGesturesChanged(gs, SIGNAL(availableGesturesChanged()));
QSignalSpy spy_detected(gs, SIGNAL(detected(QString)));
QSignalSpy spy_gesturesChanged(gs, SIGNAL(gesturesChanged()));
QSignalSpy spy_validGesturesChanged(gs, SIGNAL(validGesturesChanged()));
QSignalSpy spy_invalidGesturesChanged(gs, SIGNAL(invalidGesturesChanged()));
QSignalSpy spy_enabledChanged(gs, SIGNAL(enabledChanged()));
//This flag is needed if you run this unit test with an alread installed template plugin
bool registered = false;
for (int i = 0; i < recognizers.count(); i++){
registered = manager.registerSensorGestureRecognizer(recognizers[i]);
}
if (registered) {
QCOMPARE(spy_availableGesturesChanged.count(), 2);
}
//check creation of a not known plugin
QCOMPARE(spy_invalidGesturesChanged.count(), 0);
QCOMPARE(spy_gesturesChanged.count(), 0);
gs->setGestures(QStringList() << "lollipop");
QCOMPARE(spy_gesturesChanged.count(), 1);
QCOMPARE(spy_invalidGesturesChanged.count(), 1);
//check creation of a known plugin
QCOMPARE(spy_validGesturesChanged.count(), 0);
QCOMPARE(spy_gesturesChanged.count(), 1);
spy_invalidGesturesChanged.clear();
spy_validGesturesChanged.clear();
gs->setGestures(QStringList() << "QtSensors.template");
QCOMPARE(spy_gesturesChanged.count(), 2);
QCOMPARE(spy_invalidGesturesChanged.count(), 1);
QCOMPARE(spy_validGesturesChanged.count(), 1);
//enable "QtSensors.template"
QCOMPARE(spy_enabledChanged.count(), 0);
QCOMPARE(spy_detected.count(), 0);
gs->setEnabled(true);
QCOMPARE(spy_enabledChanged.count(), 1);
QCOMPARE(spy_detected.count(), 1);
//set gesture during running sensor should not emit gesture changed
spy_gesturesChanged.clear();
gs->setGestures(QStringList() << "QtSensors.template2");
QCOMPARE(spy_gesturesChanged.count(), 0);
gs->setEnabled(false);
QmlSensorGesture* gs1 = new QmlSensorGesture(this);
QSignalSpy spy1_detected(gs1, SIGNAL(detected(QString)));
QSignalSpy spy1_gesturesChanged(gs1, SIGNAL(gesturesChanged()));
QSignalSpy spy1_validGesturesChanged(gs1, SIGNAL(validGesturesChanged()));
QSignalSpy spy1_invalidGesturesChanged(gs1, SIGNAL(invalidGesturesChanged()));
QSignalSpy spy1_enabledChanged(gs1, SIGNAL(enabledChanged()));
gs1->componentComplete();
//set enable = true without gesture should
gs1->setEnabled(true);
QCOMPARE(spy1_enabledChanged.count(), 1);
gs1->setEnabled(false);
spy1_enabledChanged.clear();
//reding gestures check if we get back an empty string list
QStringList gestures = gs1->gestures();
QCOMPARE(gestures.count(), 0);
QStringList validgestures = gs1->validGestures();
QCOMPARE(validgestures.count(), 0);
QStringList invalidgestures = gs1->invalidGestures();
QCOMPARE(invalidgestures.count(), 0);
//check types "QtSensors.template" "QtSensors.template1" "lollipop"
//expect valid 2 not available 1
gestures << "QtSensors.template" << "QtSensors.template1" << "lollipop";
gs1->setGestures(gestures);
gestures = gs1->gestures();
QCOMPARE(gestures.count(), 3);
QCOMPARE(spy1_validGesturesChanged.count(), 1);
QCOMPARE(spy1_invalidGesturesChanged.count(), 1);
QCOMPARE(spy1_gesturesChanged.count(), 1);
//set same gesture again should not emit gesture changed
gs1->setGestures(gestures);
QCOMPARE(spy1_gesturesChanged.count(), 1);
spy1_gesturesChanged.clear();
gestures.clear();
gs1->setGestures(gestures);
QCOMPARE(spy1_gesturesChanged.count(), 1);
//enable "QtSensors.template" and "QtSensors.template1"
gestures << "QtSensors.template" << "QtSensors.template1";
gs1->setEnabled(false);
gs1->setGestures(gestures);
spy1_enabledChanged.clear();
spy1_detected.clear();
gs1->setEnabled(true);
QCOMPARE(spy1_enabledChanged.count(), 1);
QCOMPARE(spy1_detected.count(), 2);
gs1->setEnabled(false);
//check sensor shouldn't run until the componentComplete gets called
QmlSensorGesture* gs2 = new QmlSensorGesture(this);
QSignalSpy spy2_detected(gs2, SIGNAL(detected(QString)));
gs2->setGestures(QStringList() << "QtSensors.template");
gs2->setEnabled(true);
QCOMPARE(spy2_detected.count(), 0);
gs2->componentComplete();
QCOMPARE(spy2_detected.count(), 1);
}
QT_END_NAMESPACE
QTEST_MAIN(tst_Sensors2QMLAPI)
#include "tst_sensors2qmlapi.moc"
|