blob: 94994886a1c7e85cac4f7e6c08af9cd8966a6ae0 [file] [log] [blame]
/****************************************************************************
**
** 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 <QtTest/QTest>
#include <Qt3DInput/qlogicaldevice.h>
#include <Qt3DInput/qaction.h>
#include <Qt3DInput/qaxis.h>
#include <Qt3DInput/private/qlogicaldevice_p.h>
#include <Qt3DInput/private/logicaldevice_p.h>
#include "qbackendnodetester.h"
class tst_LogicalDevice : public Qt3DCore::QBackendNodeTester
{
Q_OBJECT
private Q_SLOTS:
void checkInitialState()
{
// GIVEN
Qt3DInput::Input::LogicalDevice backendLogicalDevice;
// THEN
QVERIFY(backendLogicalDevice.peerId().isNull());
QCOMPARE(backendLogicalDevice.isEnabled(), false);
QVERIFY(backendLogicalDevice.axes().empty());
QVERIFY(backendLogicalDevice.actions().empty());
}
void checkCleanupState()
{
// GIVEN
Qt3DInput::QLogicalDevice logicalDevice;
Qt3DInput::Input::LogicalDevice backendLogicalDevice;
simulateInitializationSync(&logicalDevice, &backendLogicalDevice);
// WHEN
backendLogicalDevice.setEnabled(true);
// WHEN
Qt3DInput::QAxis newAxisValue;
Qt3DInput::QAction newActionValue;
logicalDevice.addAxis(&newAxisValue);
logicalDevice.addAction(&newActionValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.axes().size(), 1);
QCOMPARE(backendLogicalDevice.actions().size(), 1);
// WHEN
backendLogicalDevice.cleanup();
// THEN
QCOMPARE(backendLogicalDevice.isEnabled(), false);
QCOMPARE(backendLogicalDevice.axes().size(), 0);
QCOMPARE(backendLogicalDevice.actions().size(), 0);
}
void checkInitializeFromPeer()
{
// GIVEN
Qt3DInput::QLogicalDevice logicalDevice;
Qt3DInput::QAction *action = new Qt3DInput::QAction(&logicalDevice);
Qt3DInput::QAxis *axis = new Qt3DInput::QAxis(&logicalDevice);
logicalDevice.addAction(action);
logicalDevice.addAxis(axis);
{
// WHEN
Qt3DInput::Input::LogicalDevice backendLogicalDevice;
simulateInitializationSync(&logicalDevice, &backendLogicalDevice);
// THEN
QCOMPARE(backendLogicalDevice.isEnabled(), true);
QCOMPARE(backendLogicalDevice.axes().size(), 1);
QCOMPARE(backendLogicalDevice.axes().first(), axis->id());
QCOMPARE(backendLogicalDevice.actions().size(), 1);
QCOMPARE(backendLogicalDevice.actions().first(), action->id());
QCOMPARE(backendLogicalDevice.peerId(), logicalDevice.id());
}
{
// WHEN
Qt3DInput::Input::LogicalDevice backendLogicalDevice;
logicalDevice.setEnabled(false);
simulateInitializationSync(&logicalDevice, &backendLogicalDevice);
// THEN
QCOMPARE(backendLogicalDevice.isEnabled(), false);
}
}
void checkSceneChangeEvents()
{
// GIVEN
Qt3DInput::QLogicalDevice logicalDevice;
Qt3DInput::Input::LogicalDevice backendLogicalDevice;
simulateInitializationSync(&logicalDevice, &backendLogicalDevice);
{
// WHEN
const bool newValue = false;
logicalDevice.setEnabled(newValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.isEnabled(), newValue);
}
{
// WHEN
Qt3DInput::QAxis newValue;
logicalDevice.addAxis(&newValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.axes().size(), 1);
QCOMPARE(backendLogicalDevice.axes().first(), newValue.id());
// WHEN
logicalDevice.removeAxis(&newValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.axes().size(), 0);
}
{
// WHEN
Qt3DInput::QAction newValue;
logicalDevice.addAction(&newValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.actions().size(), 1);
QCOMPARE(backendLogicalDevice.actions().first(), newValue.id());
// WHEN
logicalDevice.removeAction(&newValue);
backendLogicalDevice.syncFromFrontEnd(&logicalDevice, false);
// THEN
QCOMPARE(backendLogicalDevice.actions().size(), 0);
}
}
};
QTEST_APPLESS_MAIN(tst_LogicalDevice)
#include "tst_logicaldevice.moc"