File: testjoycontrolstickeditdialog.cpp

package info (click to toggle)
antimicro 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,532 kB
  • sloc: cpp: 50,526; makefile: 59; xml: 9
file content (120 lines) | stat: -rw-r--r-- 4,122 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* antimicrox Gamepad to KB+M event mapper
 * Copyright (C) 2015 Travis Nickles <nickles.travis@gmail.com>
 * Copyright (C) 2020 Jagoda Górska <juliagoda.pl@protonmail>
 * Copyright (C) 2020 Paweł Kotiuk <kotiuk@zohomail.eu>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "joycontrolstickeditdialog.h"

#include <QtTest/QtTest>

/*
presetsComboBox->count should be 12
joyModeComboBox->count should be 4
deadZoneSlider->value == stick->getDeadZone()
deadZoneSpinBox->value == stick->getDeadZone()
maxZoneSlider->value == stick->getMaxZone()
maxZoneSpinBox->value == stick->getMaxZone()
diagonalRangeSlider->value == stick->getDiagonalRange()
diagonalRangeSpinBox->value == stick->getDiagonalRange()
squareStickSlider->value == stick->getCircleAdjust() * 100
squareStickSpinBox->value == stick->getCircleAdjust() * 100
stickDelaySlider->value == stick->getStickDelay() * .1
stickDelayDoubleSpinBox->value == stick->getStickDelay() * .001
modifierPushButton->text == stick->getModifierButton()->getSlotsSummary()
stickNameLineEdit->text == stick->getStickName()

QString xCoorString = QString::number(stick->getXCoordinate());
    if (stick->getCircleAdjust() > 0.0)
    {
        xCoorString.append(QString(" (%1)").arg(stick->getCircleXCoordinate()));
    }

xCoordinateLabel->text == xCoorString

QString yCoorString = QString::number(stick->getYCoordinate());
    if (stick->getCircleAdjust() > 0.0)
    {
        yCoorString.append(QString(" (%1)").arg(stick->getCircleYCoordinate()));
    }

yCoordinateLabel->text() == yCoorString

distanceLabel->text() == QString::number(stick->getAbsoluteRawDistance())
diagonalLabel->text() == QString::number(stick->calculateBearing())
fromSafeZoneValueLabel->text() == QString::number(stick->getDistanceFromDeadZone() * 100.0)
stickStatusBoxWidget->getStick() == stick
stickStatusBoxWidget has to be visible
mouseSettingsPushButton runs new window
mouseSettingsPushButton is never disabled
presetsComboBox is not disabled
joyModeComboBox is not disabled
deadZoneSlider is not disabled
maxZoneSlider is not disabled
diagonalRangeSlider is not disabled
squareStickSlider is not disabled
stickDelaySlider is not disabled
stickNameLineEdit is not disabled

deadZoneSlider->setValue(int)
deadZoneSlider->value() == deadZoneSpinBox->value()
stickStatusBoxWidget->getStick()->getDeadZone()

maxZoneSlider->setValue(int)
maxZoneSlider->value() == maxZoneSlider->value()
stickStatusBoxWidget->getStick()->getMaxZone()

diagonalRangeSlider->setValue(int)
diagonalRangeSlider->value() == diagonalRangeSlider->value()
stickStatusBoxWidget->getStick()->getDiagonalRange()

squareStickSlider->setValue(int)
squareStickSlider->value() == squareStickSpinBox->value()
stickStatusBoxWidget->getStick()->getCircleAdjust() == squareStickSpinBox->value() / 100

stickDelaySlider->setValue(int)
stickDelaySlider->value() == stickDelayDoubleSpinBox->value()
stickStatusBoxWidget->getStick()->getStickDelay() == stickDelayDoubleSpinBox->value() / .001

window->title() == Set + stick->getStickName()

*/


class TestJoyControlStickEditDialog: public QObject
{
    Q_OBJECT

public:
    TestJoyControlStickEditDialog(QObject* parent = 0);

private slots:

private:
    JoyControlStickEditDialog axisEditDialog;
};

TestJoyControlStickEditDialog::TestJoyControlStickEditDialog(QObject* parent) :
    QObject(parent),
    JoyControlStickEditDialog()
{
    QTestEventLoop::instance().enterLoop(1);
}

// QTEST_MAIN(TestJoyControlStickEditDialog)
#include "testjoycontrolstickeditdialog.moc"