summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire350@gmail.com>2016-08-13 09:23:04 +0200
committerPaul Lemire <paul.lemire@kdab.com>2016-08-23 06:29:14 +0000
commit0dbe2cbfff8734012e11fa749ae9e3d66227fb75 (patch)
treec082c6b6b0602c4285304ba485f47cc3a7ca5c2b /tests
parentc24b556e31d48129da6f549eb5eadd496213856a (diff)
Add unit tests for QComputeCommand
Change-Id: Ia600d227a2511b15f9305b69c135dc09188fbf68 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/qcomputecommand/qcomputecommand.pro12
-rw-r--r--tests/auto/render/qcomputecommand/tst_qcomputecommand.cpp282
-rw-r--r--tests/auto/render/render.pro3
3 files changed, 296 insertions, 1 deletions
diff --git a/tests/auto/render/qcomputecommand/qcomputecommand.pro b/tests/auto/render/qcomputecommand/qcomputecommand.pro
new file mode 100644
index 000000000..92c971c51
--- /dev/null
+++ b/tests/auto/render/qcomputecommand/qcomputecommand.pro
@@ -0,0 +1,12 @@
+TEMPLATE = app
+
+TARGET = tst_qcomputecommand
+
+QT += 3dcore 3dcore-private 3drender 3drender-private testlib
+
+CONFIG += testcase
+
+SOURCES += tst_qcomputecommand.cpp
+
+include(../../core/common/common.pri)
+include(../commons/commons.pri)
diff --git a/tests/auto/render/qcomputecommand/tst_qcomputecommand.cpp b/tests/auto/render/qcomputecommand/tst_qcomputecommand.cpp
new file mode 100644
index 000000000..94609c129
--- /dev/null
+++ b/tests/auto/render/qcomputecommand/tst_qcomputecommand.cpp
@@ -0,0 +1,282 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 Paul Lemire <paul.lemire350@gmail.com>
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Qt3D 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/QTest>
+#include <Qt3DRender/qcomputecommand.h>
+#include <Qt3DRender/private/qcomputecommand_p.h>
+#include <QObject>
+#include <QSignalSpy>
+#include <Qt3DCore/qpropertyupdatedchange.h>
+#include <Qt3DCore/private/qnodecreatedchangegenerator_p.h>
+#include <Qt3DCore/qnodecreatedchange.h>
+#include "testpostmanarbiter.h"
+
+class tst_QComputeCommand : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+
+ void checkDefaultConstruction()
+ {
+ // GIVEN
+ Qt3DRender::QComputeCommand computeCommand;
+
+ // THEN
+ QCOMPARE(computeCommand.workGroupX(), 1);
+ QCOMPARE(computeCommand.workGroupY(), 1);
+ QCOMPARE(computeCommand.workGroupZ(), 1);
+ }
+
+ void checkPropertyChanges()
+ {
+ // GIVEN
+ Qt3DRender::QComputeCommand computeCommand;
+
+ {
+ // WHEN
+ QSignalSpy spy(&computeCommand, SIGNAL(workGroupXChanged()));
+ const int newValue = 128;
+ computeCommand.setWorkGroupX(newValue);
+
+ // THEN
+ QVERIFY(spy.isValid());
+ QCOMPARE(computeCommand.workGroupX(), newValue);
+ QCOMPARE(spy.count(), 1);
+
+ // WHEN
+ spy.clear();
+ computeCommand.setWorkGroupX(newValue);
+
+ // THEN
+ QCOMPARE(computeCommand.workGroupX(), newValue);
+ QCOMPARE(spy.count(), 0);
+ }
+ {
+ // WHEN
+ QSignalSpy spy(&computeCommand, SIGNAL(workGroupYChanged()));
+ const int newValue = 256;
+ computeCommand.setWorkGroupY(newValue);
+
+ // THEN
+ QVERIFY(spy.isValid());
+ QCOMPARE(computeCommand.workGroupY(), newValue);
+ QCOMPARE(spy.count(), 1);
+
+ // WHEN
+ spy.clear();
+ computeCommand.setWorkGroupY(newValue);
+
+ // THEN
+ QCOMPARE(computeCommand.workGroupY(), newValue);
+ QCOMPARE(spy.count(), 0);
+ }
+ {
+ // WHEN
+ QSignalSpy spy(&computeCommand, SIGNAL(workGroupZChanged()));
+ const int newValue = 512;
+ computeCommand.setWorkGroupZ(newValue);
+
+ // THEN
+ QVERIFY(spy.isValid());
+ QCOMPARE(computeCommand.workGroupZ(), newValue);
+ QCOMPARE(spy.count(), 1);
+
+ // WHEN
+ spy.clear();
+ computeCommand.setWorkGroupZ(newValue);
+
+ // THEN
+ QCOMPARE(computeCommand.workGroupZ(), newValue);
+ QCOMPARE(spy.count(), 0);
+ }
+ }
+
+ void checkCreationData()
+ {
+ // GIVEN
+ Qt3DRender::QComputeCommand computeCommand;
+
+ computeCommand.setWorkGroupX(128);
+ computeCommand.setWorkGroupY(512);
+ computeCommand.setWorkGroupZ(1024);
+
+ // WHEN
+ QVector<Qt3DCore::QNodeCreatedChangeBasePtr> creationChanges;
+
+ {
+ Qt3DCore::QNodeCreatedChangeGenerator creationChangeGenerator(&computeCommand);
+ creationChanges = creationChangeGenerator.creationChanges();
+ }
+
+ // THEN
+ {
+ QCOMPARE(creationChanges.size(), 1);
+
+ const auto creationChangeData = qSharedPointerCast<Qt3DCore::QNodeCreatedChange<Qt3DRender::QComputeCommandData>>(creationChanges.first());
+ const Qt3DRender::QComputeCommandData cloneData = creationChangeData->data;
+
+ QCOMPARE(computeCommand.workGroupX(), cloneData.workGroupX);
+ QCOMPARE(computeCommand.workGroupY(), cloneData.workGroupY);
+ QCOMPARE(computeCommand.workGroupZ(), cloneData.workGroupZ);
+ QCOMPARE(computeCommand.id(), creationChangeData->subjectId());
+ QCOMPARE(computeCommand.isEnabled(), true);
+ QCOMPARE(computeCommand.isEnabled(), creationChangeData->isNodeEnabled());
+ QCOMPARE(computeCommand.metaObject(), creationChangeData->metaObject());
+ }
+
+ // WHEN
+ computeCommand.setEnabled(false);
+
+ {
+ Qt3DCore::QNodeCreatedChangeGenerator creationChangeGenerator(&computeCommand);
+ creationChanges = creationChangeGenerator.creationChanges();
+ }
+
+ // THEN
+ {
+ QCOMPARE(creationChanges.size(), 1);
+
+ const auto creationChangeData = qSharedPointerCast<Qt3DCore::QNodeCreatedChange<Qt3DRender::QComputeCommandData>>(creationChanges.first());
+ const Qt3DRender::QComputeCommandData cloneData = creationChangeData->data;
+
+ QCOMPARE(computeCommand.workGroupX(), cloneData.workGroupX);
+ QCOMPARE(computeCommand.workGroupY(), cloneData.workGroupY);
+ QCOMPARE(computeCommand.workGroupZ(), cloneData.workGroupZ);
+ QCOMPARE(computeCommand.id(), creationChangeData->subjectId());
+ QCOMPARE(computeCommand.isEnabled(), false);
+ QCOMPARE(computeCommand.isEnabled(), creationChangeData->isNodeEnabled());
+ QCOMPARE(computeCommand.metaObject(), creationChangeData->metaObject());
+ }
+ }
+
+ void checkWorkGroupXUpdate()
+ {
+ // GIVEN
+ TestArbiter arbiter;
+ Qt3DRender::QComputeCommand computeCommand;
+ arbiter.setArbiterOnNode(&computeCommand);
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupX(256);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ auto change = arbiter.events.first().staticCast<Qt3DCore::QPropertyUpdatedChange>();
+ QCOMPARE(change->propertyName(), "workGroupX");
+ QCOMPARE(change->value().value<int>(), computeCommand.workGroupX());
+ QCOMPARE(change->type(), Qt3DCore::PropertyUpdated);
+
+ arbiter.events.clear();
+ }
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupX(256);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 0);
+ }
+
+ }
+
+ void checkWorkGroupYUpdate()
+ {
+ // GIVEN
+ TestArbiter arbiter;
+ Qt3DRender::QComputeCommand computeCommand;
+ arbiter.setArbiterOnNode(&computeCommand);
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupY(512);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ auto change = arbiter.events.first().staticCast<Qt3DCore::QPropertyUpdatedChange>();
+ QCOMPARE(change->propertyName(), "workGroupY");
+ QCOMPARE(change->value().value<int>(), computeCommand.workGroupY());
+ QCOMPARE(change->type(), Qt3DCore::PropertyUpdated);
+
+ arbiter.events.clear();
+ }
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupY(512);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 0);
+ }
+
+ }
+
+ void checkWorkGroupZUpdate()
+ {
+ // GIVEN
+ TestArbiter arbiter;
+ Qt3DRender::QComputeCommand computeCommand;
+ arbiter.setArbiterOnNode(&computeCommand);
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupZ(64);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 1);
+ auto change = arbiter.events.first().staticCast<Qt3DCore::QPropertyUpdatedChange>();
+ QCOMPARE(change->propertyName(), "workGroupZ");
+ QCOMPARE(change->value().value<int>(), computeCommand.workGroupZ());
+ QCOMPARE(change->type(), Qt3DCore::PropertyUpdated);
+
+ arbiter.events.clear();
+ }
+
+ {
+ // WHEN
+ computeCommand.setWorkGroupZ(64);
+ QCoreApplication::processEvents();
+
+ // THEN
+ QCOMPARE(arbiter.events.size(), 0);
+ }
+
+ }
+
+};
+
+QTEST_MAIN(tst_QComputeCommand)
+
+#include "tst_qcomputecommand.moc"
diff --git a/tests/auto/render/render.pro b/tests/auto/render/render.pro
index b43ecb166..1c1ca4d68 100644
--- a/tests/auto/render/render.pro
+++ b/tests/auto/render/render.pro
@@ -56,5 +56,6 @@ contains(QT_CONFIG, private_tests) {
sceneloader \
qsceneloader \
qrendertargetoutput \
- qcameralens
+ qcameralens \
+ qcomputecommand
}