/**************************************************************************** ** ** Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB). ** 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 #include #include #include #include #include #include #include #include "testpostmanarbiter.h" class tst_QDispatchCompute : public QObject { Q_OBJECT private Q_SLOTS: void checkDefaultConstruction() { // GIVEN Qt3DRender::QDispatchCompute dispatchCompute; // THEN QCOMPARE(dispatchCompute.workGroupX(), 1); QCOMPARE(dispatchCompute.workGroupY(), 1); QCOMPARE(dispatchCompute.workGroupZ(), 1); } void checkPropertyChanges() { // GIVEN Qt3DRender::QDispatchCompute dispatchCompute; { // WHEN QSignalSpy spy(&dispatchCompute, SIGNAL(workGroupXChanged())); const int newValue = 128; dispatchCompute.setWorkGroupX(newValue); // THEN QVERIFY(spy.isValid()); QCOMPARE(dispatchCompute.workGroupX(), newValue); QCOMPARE(spy.count(), 1); // WHEN spy.clear(); dispatchCompute.setWorkGroupX(newValue); // THEN QCOMPARE(dispatchCompute.workGroupX(), newValue); QCOMPARE(spy.count(), 0); } { // WHEN QSignalSpy spy(&dispatchCompute, SIGNAL(workGroupYChanged())); const int newValue = 1024; dispatchCompute.setWorkGroupY(newValue); // THEN QVERIFY(spy.isValid()); QCOMPARE(dispatchCompute.workGroupY(), newValue); QCOMPARE(spy.count(), 1); // WHEN spy.clear(); dispatchCompute.setWorkGroupY(newValue); // THEN QCOMPARE(dispatchCompute.workGroupY(), newValue); QCOMPARE(spy.count(), 0); } { // WHEN QSignalSpy spy(&dispatchCompute, SIGNAL(workGroupZChanged())); const int newValue = 32; dispatchCompute.setWorkGroupZ(newValue); // THEN QVERIFY(spy.isValid()); QCOMPARE(dispatchCompute.workGroupZ(), newValue); QCOMPARE(spy.count(), 1); // WHEN spy.clear(); dispatchCompute.setWorkGroupZ(newValue); // THEN QCOMPARE(dispatchCompute.workGroupZ(), newValue); QCOMPARE(spy.count(), 0); } } void checkCreationData() { // GIVEN Qt3DRender::QDispatchCompute dispatchCompute; dispatchCompute.setWorkGroupX(427); dispatchCompute.setWorkGroupY(454); dispatchCompute.setWorkGroupZ(383); // WHEN QVector creationChanges; { Qt3DCore::QNodeCreatedChangeGenerator creationChangeGenerator(&dispatchCompute); creationChanges = creationChangeGenerator.creationChanges(); } // THEN { QCOMPARE(creationChanges.size(), 1); const auto creationChangeData = qSharedPointerCast>(creationChanges.first()); const Qt3DRender::QDispatchComputeData cloneData = creationChangeData->data; QCOMPARE(dispatchCompute.workGroupX(), cloneData.workGroupX); QCOMPARE(dispatchCompute.workGroupY(), cloneData.workGroupY); QCOMPARE(dispatchCompute.workGroupZ(), cloneData.workGroupZ); QCOMPARE(dispatchCompute.id(), creationChangeData->subjectId()); QCOMPARE(dispatchCompute.isEnabled(), true); QCOMPARE(dispatchCompute.isEnabled(), creationChangeData->isNodeEnabled()); QCOMPARE(dispatchCompute.metaObject(), creationChangeData->metaObject()); } // WHEN dispatchCompute.setEnabled(false); { Qt3DCore::QNodeCreatedChangeGenerator creationChangeGenerator(&dispatchCompute); creationChanges = creationChangeGenerator.creationChanges(); } // THEN { QCOMPARE(creationChanges.size(), 1); const auto creationChangeData = qSharedPointerCast>(creationChanges.first()); const Qt3DRender::QDispatchComputeData cloneData = creationChangeData->data; QCOMPARE(dispatchCompute.workGroupX(), cloneData.workGroupX); QCOMPARE(dispatchCompute.workGroupY(), cloneData.workGroupY); QCOMPARE(dispatchCompute.workGroupZ(), cloneData.workGroupZ); QCOMPARE(dispatchCompute.id(), creationChangeData->subjectId()); QCOMPARE(dispatchCompute.isEnabled(), false); QCOMPARE(dispatchCompute.isEnabled(), creationChangeData->isNodeEnabled()); QCOMPARE(dispatchCompute.metaObject(), creationChangeData->metaObject()); } } void checkWorkGroupXUpdate() { // GIVEN TestArbiter arbiter; Qt3DRender::QDispatchCompute dispatchCompute; arbiter.setArbiterOnNode(&dispatchCompute); { // WHEN dispatchCompute.setWorkGroupX(883); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 1); auto change = arbiter.events.first().staticCast(); QCOMPARE(change->propertyName(), "workGroupX"); QCOMPARE(change->value().value(), dispatchCompute.workGroupX()); QCOMPARE(change->type(), Qt3DCore::PropertyUpdated); arbiter.events.clear(); } { // WHEN dispatchCompute.setWorkGroupX(883); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 0); } } void checkWorkGroupYUpdate() { // GIVEN TestArbiter arbiter; Qt3DRender::QDispatchCompute dispatchCompute; arbiter.setArbiterOnNode(&dispatchCompute); { // WHEN dispatchCompute.setWorkGroupY(1340); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 1); auto change = arbiter.events.first().staticCast(); QCOMPARE(change->propertyName(), "workGroupY"); QCOMPARE(change->value().value(), dispatchCompute.workGroupY()); QCOMPARE(change->type(), Qt3DCore::PropertyUpdated); arbiter.events.clear(); } { // WHEN dispatchCompute.setWorkGroupY(1340); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 0); } } void checkWorkGroupZUpdate() { // GIVEN TestArbiter arbiter; Qt3DRender::QDispatchCompute dispatchCompute; arbiter.setArbiterOnNode(&dispatchCompute); { // WHEN dispatchCompute.setWorkGroupZ(1584); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 1); auto change = arbiter.events.first().staticCast(); QCOMPARE(change->propertyName(), "workGroupZ"); QCOMPARE(change->value().value(), dispatchCompute.workGroupZ()); QCOMPARE(change->type(), Qt3DCore::PropertyUpdated); arbiter.events.clear(); } { // WHEN dispatchCompute.setWorkGroupZ(1584); QCoreApplication::processEvents(); // THEN QCOMPARE(arbiter.events.size(), 0); } } }; QTEST_MAIN(tst_QDispatchCompute) #include "tst_qdispatchcompute.moc"