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
|
|
|
|
|
2013-10-03 15:18:16 +02:00
|
|
|
#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;
|
2013-10-08 22:36:27 +02:00
|
|
|
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 Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void testOpenDatabase();
|
2011-12-29 20:10:19 +01:00
|
|
|
void testTabs();
|
2012-04-14 20:31:35 +02:00
|
|
|
void testEditEntry();
|
2012-05-10 10:29:25 +02:00
|
|
|
void testAddEntry();
|
2012-05-16 09:56:40 +02:00
|
|
|
void testSearch();
|
2013-10-08 22:36:27 +02:00
|
|
|
void testDeleteEntry();
|
2012-07-22 00:00:44 +02:00
|
|
|
void testCloneEntry();
|
2012-07-17 23:29:25 +02:00
|
|
|
void testDragAndDropEntry();
|
|
|
|
void testDragAndDropGroup();
|
2012-07-06 19:21:19 +02:00
|
|
|
void testSaveAs();
|
|
|
|
void testSave();
|
2012-07-17 10:35:17 +02:00
|
|
|
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
|
|
|
void cleanupTestCase();
|
|
|
|
|
|
|
|
private:
|
2012-07-17 23:29:25 +02:00
|
|
|
void checkDatabase();
|
|
|
|
void triggerAction(const QString& name);
|
|
|
|
void dragAndDropGroup(const QModelIndex& sourceIndex, const QModelIndex& targetIndex, int row,
|
|
|
|
bool expectedResult, const QString& expectedParentName, int expectedPos);
|
2013-10-08 22:36:27 +02:00
|
|
|
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;
|
2012-10-22 17:52:08 +02:00
|
|
|
QString m_tmpFileName;
|
2012-07-17 10:16:59 +02:00
|
|
|
Database* m_db;
|
2011-12-26 19:18:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_TESTGUI_H
|