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
|
/* 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/>.
*/
#inlude "addeditautoprofiledialog.h"
#include <QtTest/QtTest>
/*
AutoProfileInfo* getAutoProfile() const; // if not empty then
1) profileLineEdit must be equal to getAutoProfile()->getProfileLocation()
2) devicesComboBox must be equal to getAutoProfile()->getDeviceName()
3) winClassLineEdit must be equal to getAutoProfile()->getWindowClass()
4) if getAutoProfile()->isPartialState() then should be setPartialCheckBox->checked()
5) if getAutoProfile()->isCurrentDefault() then should be asDefaultCheckBox->checked()
6) if getAutoProfile()->getWindowName() is not empty then should be winNameLineEdit->text() == getAutoProfile()->getWindowName()
7) if getAutoProfile()->getExe() is not empty then should be applicationLineEdit->text() == getAutoProfile()->getExe()
//QString getOriginalGUID() const;
QString getOriginalUniqueID() const;
QString getOriginalExe() const;
QString getOriginalWindowClass() const;
QString getOriginalWindowName() const;
QList<InputDevice*> *getDevices() const; // cannot be empty
AntiMicroSettings *getSettings() const; // cannot be empty
bool getEditForm() const;
bool getDefaultInfo() const;
// QList<QString> const& getReservedGUIDs();
QList<QString> const& getReservedUniques(); // cannot be empty
profileBrowsePushButton not disabled
detectWinPropsSelectWindowPushButton not disabled
devicesComboBox not disabled and not empty
asDefaultCheckBox not disabled if devicesComboBox first element is not -1
asDefaultCheckBox disabled if devicesComboBox first element is -1
buttonBox Cancel not disabled
applicationPushButton not disabled
selectWindowPushButton not disabled
profileLineEdit not disabled
winClassLineEdit not disabled
winNameLineEdit not disabled
applicationLineEdit not disabled
buttonBox Ok disabled if profileLineEdit is empty and doesn't exist and devicesComboBox first element is empty and winClassLineEdit is empty
buttonBox Ok enabled if profileLineEdit isn't empty and exist and devicesComboBox first element is not empty and winClassLineEdit is not empty
test keyClick on profileBrowsePushButton
test keyClick on detectWinPropsSelectWindowPushButton
test keyClick on buttonBox->cancel
test keyClick on applicationPushButton
test keyClick on selectWindowPushButton
test mouseClick on profileBrowsePushButton
test mouseClick on detectWinPropsSelectWindowPushButton
test mouseClick on buttonBox->cancel
test mouseClick on applicationPushButton
test mouseClick on selectWindowPushButton
*/
class TestAddEditAutoProfileDialog: public QObject
{
Q_OBJECT
public:
TestAddEditAutoProfileDialog(QObject* parent = 0);
void checkAutoProfile();
void checkOriginalUniqueIDs();
private slots:
private:
AddEditAutoProfileDialog addEditAutoProfileDialog;
};
TestAddEditAutoProfileDialog::TestAddEditAutoProfileDialog(QObject* parent) :
QObject(parent),
addEditAutoProfileDialog()
{
QTestEventLoop::instance().enterLoop(1);
}
// QTEST_MAIN(TestAddEditAutoProfileDialog)
#include "testaddeditautoprofiledialog.moc"
|