summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-12-01 11:43:19 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-12-01 15:19:23 +0000
commite7cd5a6599b1fbf52dec0ef15f1005af71db3a7a (patch)
tree43a53aea4bcee41d8d00053feeeafa747d3ab121 /tests
parent04004d36616bade85a0d20049a92aeae8633f845 (diff)
Unit tests for QActionInput
Change-Id: I6c7388352fd615d1a596b406dff63d783dbb14c3 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/input/input.pro3
-rw-r--r--tests/auto/input/qactioninput/qactioninput.pro11
-rw-r--r--tests/auto/input/qactioninput/tst_qactioninput.cpp177
3 files changed, 190 insertions, 1 deletions
diff --git a/tests/auto/input/input.pro b/tests/auto/input/input.pro
index 87eb2c9c3..cfd85e12d 100644
--- a/tests/auto/input/input.pro
+++ b/tests/auto/input/input.pro
@@ -4,5 +4,6 @@ contains(QT_CONFIG, private_tests) {
SUBDIRS += \
qaxis \
qaction \
- qaxisinput
+ qaxisinput \
+ qactioninput
}
diff --git a/tests/auto/input/qactioninput/qactioninput.pro b/tests/auto/input/qactioninput/qactioninput.pro
new file mode 100644
index 000000000..a110e85f7
--- /dev/null
+++ b/tests/auto/input/qactioninput/qactioninput.pro
@@ -0,0 +1,11 @@
+TEMPLATE = app
+
+TARGET = tst_qactioninput
+
+QT += core-private 3dcore 3dcore-private 3dinput 3dinput-private testlib
+
+CONFIG += testcase
+
+SOURCES += tst_qactioninput.cpp
+
+include(../../render/commons/commons.pri)
diff --git a/tests/auto/input/qactioninput/tst_qactioninput.cpp b/tests/auto/input/qactioninput/tst_qactioninput.cpp
new file mode 100644
index 000000000..3f0f353f0
--- /dev/null
+++ b/tests/auto/input/qactioninput/tst_qactioninput.cpp
@@ -0,0 +1,177 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** 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 http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtTest/QTest>
+#include <Qt3DCore/private/qnode_p.h>
+#include <Qt3DCore/private/qscene_p.h>
+
+#include <Qt3DInput/QActionInput>
+#include <Qt3DInput/QAbstractPhysicalDevice>
+
+#include "testpostmanarbiter.h"
+
+class TestDevice : public Qt3DInput::QAbstractPhysicalDevice
+{
+ Q_OBJECT
+public:
+ explicit TestDevice(Qt3DCore::QNode *parent = Q_NULLPTR)
+ : Qt3DInput::QAbstractPhysicalDevice(parent)
+ {}
+
+ ~TestDevice()
+ {
+ QNode::cleanup();
+ }
+
+ int axisCount() const Q_DECL_FINAL { return 0; }
+ int buttonCount() const Q_DECL_FINAL { return 0; }
+ QStringList axisNames() const Q_DECL_FINAL { return QStringList(); }
+ QStringList buttonNames() const Q_DECL_FINAL { return QStringList(); }
+ int axisIdentifier(const QString &name) Q_DECL_FINAL { Q_UNUSED(name) return 0; }
+ int buttonIdentifier(const QString &name) Q_DECL_FINAL { Q_UNUSED(name) return 0; }
+ float axis(int axisIdentifier) const Q_DECL_FINAL { Q_UNUSED(axisIdentifier) return 0.0f; }
+ bool button(int buttonIdentifier) const Q_DECL_FINAL { Q_UNUSED(buttonIdentifier) return false; }
+
+protected:
+ void copy(const Qt3DCore::QNode *ref) Q_DECL_FINAL
+ {
+ QAbstractPhysicalDevice::copy(ref);
+ }
+
+private:
+ QT3D_CLONEABLE(TestDevice)
+};
+
+// We need to call QNode::clone which is protected
+// So we sublcass QNode instead of QObject
+class tst_QActionInput: public Qt3DCore::QNode
+{
+ Q_OBJECT
+public:
+ tst_QActionInput()
+ {
+ qRegisterMetaType<Qt3DInput::QAbstractPhysicalDevice*>("Qt3DInput::QAbstractPhysicalDevice*");
+ }
+
+ ~tst_QActionInput()
+ {
+ QNode::cleanup();
+ }
+
+private Q_SLOTS:
+ void checkCloning_data()
+ {
+ QTest::addColumn<Qt3DInput::QActionInput *>("actionInput");
+
+ Qt3DInput::QActionInput *defaultConstructed = new Qt3DInput::QActionInput();
+ QTest::newRow("defaultConstructed") << defaultConstructed;
+
+ Qt3DInput::QActionInput *actionInputWithKeys = new Qt3DInput::QActionInput();
+ actionInputWithKeys->setKeys((1 << 1) | (1 << 5));
+ QTest::newRow("actionInputWithKeys") << actionInputWithKeys;
+
+ Qt3DInput::QActionInput *actionInputWithKeysAndSourceDevice = new Qt3DInput::QActionInput();
+ TestDevice *device = new TestDevice();
+ actionInputWithKeysAndSourceDevice->setKeys((1 << 1) | (1 << 5));
+ actionInputWithKeysAndSourceDevice->setSourceDevice(device);
+ QTest::newRow("actionInputWithKeysAndSourceDevice") << actionInputWithKeysAndSourceDevice;
+ }
+
+ void checkCloning()
+ {
+ // GIVEN
+ QFETCH(Qt3DInput::QActionInput *, actionInput);
+
+ // WHEN
+ Qt3DInput::QActionInput *clone = static_cast<Qt3DInput::QActionInput *>(QNode::clone(actionInput));
+ QCoreApplication::processEvents();
+
+ // THEN
+ QVERIFY(clone != Q_NULLPTR);
+ QCOMPARE(actionInput->id(), clone->id());
+ QCOMPARE(actionInput->keys(), clone->keys());
+
+ if (actionInput->sourceDevice() != Q_NULLPTR) {
+ QVERIFY(clone->sourceDevice() != Q_NULLPTR);
+ QCOMPARE(clone->sourceDevice()->id(), actionInput->sourceDevice()->id());
+ }
+ }
+
+ void checkPropertyUpdates()
+ {
+ // GIVEN
+ QScopedPointer<Qt3DInput::QActionInput> actionInput(new Qt3DInput::QActionInput());
+ TestArbiter arbiter(actionInput.data());
+
+ // WHEN
+ actionInput->setKeys(555);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ Qt3DCore::QScenePropertyChangePtr change = arbiter.events.first().staticCast<Qt3DCore::QScenePropertyChange>();
+ QCOMPARE(change->propertyName(), "keys");
+ QCOMPARE(change->value().toInt(), 555);
+ QCOMPARE(change->type(), Qt3DCore::NodeUpdated);
+
+ arbiter.events.clear();
+
+ // WHEN
+ TestDevice *device = new TestDevice(actionInput.data());
+ actionInput->setSourceDevice(device);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ change = arbiter.events.first().staticCast<Qt3DCore::QScenePropertyChange>();
+ QCOMPARE(change->propertyName(), "sourceDevice");
+ QCOMPARE(change->value().value<Qt3DCore::QNodeId>(), device->id());
+ QCOMPARE(change->type(), Qt3DCore::NodeUpdated);
+
+ arbiter.events.clear();
+ }
+
+protected:
+ Qt3DCore::QNode *doClone() const Q_DECL_OVERRIDE
+ {
+ return Q_NULLPTR;
+ }
+
+};
+
+QTEST_MAIN(tst_QActionInput)
+
+#include "tst_qactioninput.moc"