keepassxc/tests/gui/TestGui.h

98 lines
2.9 KiB
C++
Raw Normal View History

2011-12-26 18:18:21 +00:00
/*
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
2017-06-09 21:40:36 +00:00
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
2011-12-26 18:18:21 +00:00
*
* 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 "gui/MainWindow.h"
2018-10-19 18:10:37 +00:00
#include "util/TemporaryFile.h"
#include <QAbstractItemModel>
#include <QObject>
2018-01-06 23:30:18 +00:00
#include <QPointer>
#include <QScopedPointer>
#include <QSharedPointer>
2011-12-26 18:18:21 +00:00
2012-07-17 08:16:59 +00:00
class Database;
2012-07-06 17:21:19 +00:00
class DatabaseTabWidget;
2012-07-17 08:16:59 +00:00
class DatabaseWidget;
class QAbstractItemView;
2011-12-29 19:10:19 +00:00
2011-12-26 18:18:21 +00:00
class TestGui : public QObject
{
Q_OBJECT
private slots:
2011-12-26 18:18:21 +00:00
void initTestCase();
void init();
void cleanup();
void cleanupTestCase();
void testSettingsDefaultTabOrder();
2017-10-29 14:04:46 +00:00
void testCreateDatabase();
void testMergeDatabase();
void testAutoreloadDatabase();
2011-12-29 19:10:19 +00:00
void testTabs();
void testEditEntry();
2018-02-17 04:30:24 +00:00
void testSearchEditEntry();
void testAddEntry();
2017-03-04 18:24:08 +00:00
void testPasswordEntryEntropy();
void testDicewareEntryEntropy();
2017-04-13 10:05:36 +00:00
void testTotp();
2012-05-16 07:56:40 +00:00
void testSearch();
void testDeleteEntry();
2012-07-21 22:00:44 +00:00
void testCloneEntry();
void testEntryPlaceholders();
2012-07-17 21:29:25 +00:00
void testDragAndDropEntry();
void testDragAndDropGroup();
2012-07-06 17:21:19 +00:00
void testSaveAs();
void testSaveBackup();
2012-07-06 17:21:19 +00:00
void testSave();
void testDatabaseSettings();
2012-06-29 13:54:34 +00:00
void testKeePass1Import();
2012-10-12 10:12:00 +00:00
void testDatabaseLocking();
void testDragAndDropKdbxFiles();
void testSortGroups();
void testTrayRestoreHide();
2011-12-29 19:10:19 +00:00
private:
int addCannedEntries();
void checkDatabase(QString dbFileName = "");
2012-07-17 21:29:25 +00:00
void triggerAction(const QString& name);
2018-03-31 20:01:30 +00:00
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 08:16:59 +00:00
QScopedPointer<MainWindow> m_mainWindow;
2018-01-06 23:30:18 +00:00
QPointer<DatabaseTabWidget> m_tabWidget;
QPointer<DatabaseWidget> m_dbWidget;
QSharedPointer<Database> m_db;
2019-10-20 22:23:11 +00:00
TemporaryFile m_dbFile;
QString m_dbFileName;
QString m_dbFilePath;
2011-12-26 18:18:21 +00:00
};
#endif // KEEPASSX_TESTGUI_H