summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-12-01 10:55:51 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-12-01 15:19:18 +0000
commit7e1f68d2954de3f8e9b8513c4b1e0002020a6e90 (patch)
treeab0937599feff72d78d1dbddd99192b71087a9c8 /tests
parenta3d1142a54e7995c1e021b2dfc3c76f9ad2143d1 (diff)
Unit tests for QAction
Change-Id: Ib72f56c57ef6e7ff1c9996c141a813c6e10b7ba6 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/qaction/qaction.pro11
-rw-r--r--tests/auto/input/qaction/tst_qaction.cpp163
3 files changed, 176 insertions, 1 deletions
diff --git a/tests/auto/input/input.pro b/tests/auto/input/input.pro
index ab9b11ca4..672c8741e 100644
--- a/tests/auto/input/input.pro
+++ b/tests/auto/input/input.pro
@@ -2,5 +2,6 @@ TEMPLATE = subdirs
contains(QT_CONFIG, private_tests) {
SUBDIRS += \
- qaxis
+ qaxis \
+ qaction
}
diff --git a/tests/auto/input/qaction/qaction.pro b/tests/auto/input/qaction/qaction.pro
new file mode 100644
index 000000000..c743e0ffc
--- /dev/null
+++ b/tests/auto/input/qaction/qaction.pro
@@ -0,0 +1,11 @@
+TEMPLATE = app
+
+TARGET = tst_qaction
+
+QT += core-private 3dcore 3dcore-private 3dinput 3dinput-private testlib
+
+CONFIG += testcase
+
+SOURCES += tst_qaction.cpp
+
+include(../../render/commons/commons.pri)
diff --git a/tests/auto/input/qaction/tst_qaction.cpp b/tests/auto/input/qaction/tst_qaction.cpp
new file mode 100644
index 000000000..379749476
--- /dev/null
+++ b/tests/auto/input/qaction/tst_qaction.cpp
@@ -0,0 +1,163 @@
+/****************************************************************************
+**
+** 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/QAction>
+#include <Qt3DInput/QActionInput>
+
+#include "testpostmanarbiter.h"
+
+// We need to call QNode::clone which is protected
+// So we sublcass QNode instead of QObject
+class tst_QAction: public Qt3DCore::QNode
+{
+ Q_OBJECT
+public:
+ tst_QAction()
+ {
+ }
+
+ ~tst_QAction()
+ {
+ QNode::cleanup();
+ }
+
+private Q_SLOTS:
+
+ void checkCloning_data()
+ {
+ QTest::addColumn<Qt3DInput::QAction *>("action");
+
+ Qt3DInput::QAction *defaultConstructed = new Qt3DInput::QAction();
+ QTest::newRow("defaultConstructed") << defaultConstructed;
+
+ Qt3DInput::QAction *namedaction = new Qt3DInput::QAction();
+ namedaction->setName(QStringLiteral("fire"));
+ QTest::newRow("namedAction") << namedaction;
+
+ Qt3DInput::QAction *namedactionWithInputs = new Qt3DInput::QAction();
+ Qt3DInput::QActionInput *actionInput1 = new Qt3DInput::QActionInput();
+ Qt3DInput::QActionInput *actionInput2 = new Qt3DInput::QActionInput();
+ Qt3DInput::QActionInput *actionInput3 = new Qt3DInput::QActionInput();
+ namedactionWithInputs->setName("accelerate");
+ namedactionWithInputs->addInput(actionInput1);
+ namedactionWithInputs->addInput(actionInput2);
+ namedactionWithInputs->addInput(actionInput3);
+ QTest::newRow("namedActionWithInputs") << namedactionWithInputs;
+ }
+
+ void checkCloning()
+ {
+ // GIVEN
+ QFETCH(Qt3DInput::QAction *, action);
+
+ // WHEN
+ Qt3DInput::QAction *clone = static_cast<Qt3DInput::QAction *>(QNode::clone(action));
+ QCoreApplication::processEvents();
+
+ // THEN
+ QVERIFY(clone != Q_NULLPTR);
+ QCOMPARE(action->id(), clone->id());
+ QCOMPARE(action->name(), clone->name());
+ QCOMPARE(action->inputs().count(), clone->inputs().count());
+
+ for (int i = 0, m = action->inputs().count(); i < m; ++i) {
+ QCOMPARE(action->inputs().at(i)->id(), clone->inputs().at(i)->id());
+ }
+
+ }
+
+ void checkPropertyUpdates()
+ {
+ // GIVEN
+ QScopedPointer<Qt3DInput::QAction> action(new Qt3DInput::QAction());
+ TestArbiter arbiter(action.data());
+
+ // WHEN
+ action->setName(QStringLiteral("454"));
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ Qt3DCore::QScenePropertyChangePtr change = arbiter.events.first().staticCast<Qt3DCore::QScenePropertyChange>();
+ QCOMPARE(change->propertyName(), "name");
+ QCOMPARE(change->value().toString(), QStringLiteral("454"));
+ QCOMPARE(change->type(), Qt3DCore::NodeUpdated);
+
+ arbiter.events.clear();
+
+ // WHEN
+ Qt3DInput::QActionInput *input = new Qt3DInput::QActionInput();
+ action->addInput(input);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ change = arbiter.events.first().staticCast<Qt3DCore::QScenePropertyChange>();
+ QCOMPARE(change->propertyName(), "input");
+ QCOMPARE(change->value().value<Qt3DCore::QNodeId>(), input->id());
+ QCOMPARE(change->type(), Qt3DCore::NodeAdded);
+
+ arbiter.events.clear();
+
+ // WHEN
+ action->removeInput(input);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ change = arbiter.events.first().staticCast<Qt3DCore::QScenePropertyChange>();
+ QCOMPARE(change->propertyName(), "input");
+ QCOMPARE(change->value().value<Qt3DCore::QNodeId>(), input->id());
+ QCOMPARE(change->type(), Qt3DCore::NodeRemoved);
+
+ arbiter.events.clear();
+ }
+
+protected:
+ Qt3DCore::QNode *doClone() const Q_DECL_OVERRIDE
+ {
+ return Q_NULLPTR;
+ }
+
+};
+
+QTEST_MAIN(tst_QAction)
+
+#include "tst_qaction.moc"