keepassxc/tests/gui/TestGui.h

79 lines
2.2 KiB
C++
Raw Normal View History

2011-12-26 18:18:21 +00: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 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
class MainWindow;
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 testMergeDatabase();
void testAutoreloadDatabase();
2011-12-29 19:10:19 +00:00
void testTabs();
void testEditEntry();
void testAddEntry();
void testEntryEntropy();
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 testSave();
void testDatabaseSettings();
2012-06-29 13:54:34 +00:00
void testKeePass1Import();
2012-10-12 10:12:00 +00:00
void testDatabaseLocking();
2011-12-29 19:10:19 +00:00
private:
void checkDatabase(QString dbFileName = "");
2012-07-17 21:29:25 +00: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 08:16:59 +00:00
2011-12-29 19:10:19 +00:00
MainWindow* m_mainWindow;
2012-07-06 17:21:19 +00:00
DatabaseTabWidget* m_tabWidget;
2012-07-17 08:16:59 +00:00
DatabaseWidget* m_dbWidget;
QByteArray m_dbData;
TemporaryFile m_dbFile;
QString m_dbFileName;
QString m_dbFilePath;
2012-07-17 08:16:59 +00:00
Database* m_db;
2011-12-26 18:18:21 +00:00
};
#endif // KEEPASSX_TESTGUI_H