summaryrefslogtreecommitdiffstats
path: root/tests/auto/input/action/tst_action.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-12-01 13:38:47 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-12-01 15:19:36 +0000
commit96e7e1fd1d05d334276b6c5df2f856871ff7eb1c (patch)
treeefad59c436d12f4d06c06f3e668fdb4c37b3ab40 /tests/auto/input/action/tst_action.cpp
parentf5c3a8149d1498f904df267b0224394e18e7d84a (diff)
Unit tests for Action
Change-Id: I463d0b469aa78e42c2671b6d3798546328898786 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests/auto/input/action/tst_action.cpp')
-rw-r--r--tests/auto/input/action/tst_action.cpp156
1 files changed, 156 insertions, 0 deletions
diff --git a/tests/auto/input/action/tst_action.cpp b/tests/auto/input/action/tst_action.cpp
new file mode 100644
index 000000000..5a05002b8
--- /dev/null
+++ b/tests/auto/input/action/tst_action.cpp
@@ -0,0 +1,156 @@
+/****************************************************************************
+**
+** 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 <Qt3DCore/qscenepropertychange.h>
+#include <Qt3DInput/private/action_p.h>
+#include <Qt3DInput/QActionInput>
+#include <Qt3DInput/QAction>
+
+class tst_Action: public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+
+ void checkPeerPropertyMirroring()
+ {
+ // GIVEN
+ Qt3DInput::Input::Action backendAction;
+ Qt3DInput::QAction action;
+ Qt3DInput::QActionInput actionInput;
+
+ action.addInput(&actionInput);
+ action.setName(QStringLiteral("L88"));
+
+ // WHEN
+ backendAction.setPeer(&action);
+
+ // THEN
+ QCOMPARE(backendAction.peerUuid(), action.id());
+ QCOMPARE(backendAction.isEnabled(), action.isEnabled());
+ QCOMPARE(backendAction.name(), action.name());
+ QCOMPARE(backendAction.inputs().size(), action.inputs().size());
+
+ const int inputsCount = backendAction.inputs().size();
+ if (inputsCount > 0) {
+ for (int i = 0; i < inputsCount; ++i)
+ QCOMPARE(backendAction.inputs().at(i), action.inputs().at(i)->id());
+ }
+ }
+
+ void checkInitialAndCleanedUpState()
+ {
+ // GIVEN
+ Qt3DInput::Input::Action backendAction;
+
+ // THEN
+ QVERIFY(backendAction.peerUuid().isNull());
+ QVERIFY(backendAction.name().isEmpty());
+ QCOMPARE(backendAction.actionTriggered(), false);
+ QCOMPARE(backendAction.isEnabled(), false);
+ QCOMPARE(backendAction.inputs().size(), 0);
+
+ // GIVEN
+ Qt3DInput::QAction axis;
+ Qt3DInput::QActionInput axisInput;
+
+ axis.addInput(&axisInput);
+ axis.setName(QStringLiteral("L88"));
+
+ // WHEN
+ backendAction.updateFromPeer(&axis);
+ backendAction.setActionTriggered(true);
+ backendAction.cleanup();
+
+ // THEN
+ QVERIFY(backendAction.peerUuid().isNull());
+ QVERIFY(backendAction.name().isEmpty());
+ QCOMPARE(backendAction.actionTriggered(), false);
+ QCOMPARE(backendAction.isEnabled(), false);
+ QCOMPARE(backendAction.inputs().size(), 0);
+ }
+
+ void checkPropertyChanges()
+ {
+ // GIVEN
+ Qt3DInput::Input::Action backendAction;
+
+ // WHEN
+ Qt3DCore::QScenePropertyChangePtr updateChange(new Qt3DCore::QScenePropertyChange(Qt3DCore::NodeUpdated, Qt3DCore::QSceneChange::Node, Qt3DCore::QNodeId()));
+ updateChange->setValue(QStringLiteral("LT1"));
+ updateChange->setPropertyName("name");
+ backendAction.sceneChangeEvent(updateChange);
+
+ // THEN
+ QCOMPARE(backendAction.name(), QStringLiteral("LT1"));
+
+ // WHEN
+ updateChange.reset(new Qt3DCore::QScenePropertyChange(Qt3DCore::NodeUpdated, Qt3DCore::QSceneChange::Node, Qt3DCore::QNodeId()));
+ updateChange->setPropertyName("enabled");
+ updateChange->setValue(true);
+ backendAction.sceneChangeEvent(updateChange);
+
+ // THEN
+ QCOMPARE(backendAction.isEnabled(), true);
+
+ // WHEN
+ Qt3DCore::QNodeId inputId = Qt3DCore::QNodeId::createId();
+ updateChange.reset(new Qt3DCore::QScenePropertyChange(Qt3DCore::NodeAdded, Qt3DCore::QSceneChange::Node, Qt3DCore::QNodeId()));
+ updateChange->setPropertyName("input");
+ updateChange->setValue(QVariant::fromValue(inputId));
+ backendAction.sceneChangeEvent(updateChange);
+
+ // THEN
+ QCOMPARE(backendAction.inputs().size(), 1);
+ QCOMPARE(backendAction.inputs().first(), inputId);
+
+ // WHEN
+ updateChange.reset(new Qt3DCore::QScenePropertyChange(Qt3DCore::NodeRemoved, Qt3DCore::QSceneChange::Node, Qt3DCore::QNodeId()));
+ updateChange->setPropertyName("input");
+ updateChange->setValue(QVariant::fromValue(inputId));
+ backendAction.sceneChangeEvent(updateChange);
+
+ // THEN
+ QCOMPARE(backendAction.inputs().size(), 0);
+ }
+};
+
+QTEST_APPLESS_MAIN(tst_Action)
+
+#include "tst_action.moc"