0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 12:22:16 +02:00
keepassxc/tests/gui/TestGui.h

81 lines
2.3 KiB
C++
Raw Normal View History

2011-12-26 19:18:21 +01:00
/*
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
*
* 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 2 or (at your option)
* version 3 of the License.
*
* 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/>.
*/
#ifndef KEEPASSX_TESTGUI_H
#define KEEPASSX_TESTGUI_H
#include "TemporaryFile.h"
#include <QAbstractItemModel>
#include <QObject>
2011-12-26 19:18:21 +01:00
2012-07-17 10:16:59 +02:00
class Database;
2012-07-06 19:21:19 +02:00
class DatabaseTabWidget;
2012-07-17 10:16:59 +02:00
class DatabaseWidget;
class QAbstractItemView;
2011-12-29 20:10:19 +01:00
class MainWindow;
2011-12-26 19:18:21 +01:00
class TestGui : public QObject
{
Q_OBJECT
private slots:
2011-12-26 19:18:21 +01:00
void initTestCase();
void init();
void cleanup();
void cleanupTestCase();
void testMergeDatabase();
void testAutoreloadDatabase();
2011-12-29 20:10:19 +01:00
void testTabs();
void testEditEntry();
void testAddEntry();
2017-03-04 19:24:08 +01:00
void testPasswordEntryEntropy();
void testDicewareEntryEntropy();
2017-04-13 12:05:36 +02:00
void testTotp();
2012-05-16 09:56:40 +02:00
void testSearch();
void testDeleteEntry();
2012-07-22 00:00:44 +02:00
void testCloneEntry();
void testEntryPlaceholders();
2012-07-17 23:29:25 +02:00
void testDragAndDropEntry();
void testDragAndDropGroup();
2012-07-06 19:21:19 +02:00
void testSaveAs();
void testSave();
void testDatabaseSettings();
2012-06-29 15:54:34 +02:00
void testKeePass1Import();
2012-10-12 12:12:00 +02:00
void testDatabaseLocking();
2011-12-29 20:10:19 +01:00
private:
void checkDatabase(QString dbFileName = "");
2012-07-17 23:29:25 +02:00
void triggerAction(const QString& name);
void dragAndDropGroup(const QModelIndex& sourceIndex, const QModelIndex& targetIndex, int row,
bool expectedResult, const QString& expectedParentName, int expectedPos);
void clickIndex(const QModelIndex& index, QAbstractItemView* view, Qt::MouseButton button,
Qt::KeyboardModifiers stateKey = 0);
2012-07-17 10:16:59 +02:00
2011-12-29 20:10:19 +01:00
MainWindow* m_mainWindow;
2012-07-06 19:21:19 +02:00
DatabaseTabWidget* m_tabWidget;
2012-07-17 10:16:59 +02:00
DatabaseWidget* m_dbWidget;
QByteArray m_dbData;
TemporaryFile m_dbFile;
QString m_dbFileName;
QString m_dbFilePath;
2012-07-17 10:16:59 +02:00
Database* m_db;
2011-12-26 19:18:21 +01:00
};
#endif // KEEPASSX_TESTGUI_H