keepassxc/tests/gui/TestGui.h

68 lines
2.0 KiB
C
Raw Normal View History

2011-12-26 13:18:21 -05: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 <QAbstractItemModel>
#include <QObject>
2011-12-26 13:18:21 -05:00
2012-07-17 04:16:59 -04:00
class Database;
2012-07-06 13:21:19 -04:00
class DatabaseTabWidget;
2012-07-17 04:16:59 -04:00
class DatabaseWidget;
class QAbstractItemView;
2011-12-29 14:10:19 -05:00
class MainWindow;
2011-12-26 13:18:21 -05:00
class TestGui : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void testOpenDatabase();
2011-12-29 14:10:19 -05:00
void testTabs();
void testEditEntry();
void testAddEntry();
2012-05-16 03:56:40 -04:00
void testSearch();
void testDeleteEntry();
2012-07-21 18:00:44 -04:00
void testCloneEntry();
2012-07-17 17:29:25 -04:00
void testDragAndDropEntry();
void testDragAndDropGroup();
2012-07-06 13:21:19 -04:00
void testSaveAs();
void testSave();
void testDatabaseSettings();
2012-06-29 09:54:34 -04:00
void testKeePass1Import();
2012-10-12 06:12:00 -04:00
void testDatabaseLocking();
2011-12-29 14:10:19 -05:00
void cleanupTestCase();
private:
2012-07-17 17:29:25 -04: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);
void clickIndex(const QModelIndex& index, QAbstractItemView* view, Qt::MouseButton button,
Qt::KeyboardModifiers stateKey = 0);
2012-07-17 04:16:59 -04:00
2011-12-29 14:10:19 -05:00
MainWindow* m_mainWindow;
2012-07-06 13:21:19 -04:00
DatabaseTabWidget* m_tabWidget;
2012-07-17 04:16:59 -04:00
DatabaseWidget* m_dbWidget;
QString m_tmpFileName;
2012-07-17 04:16:59 -04:00
Database* m_db;
2011-12-26 13:18:21 -05:00
};
#endif // KEEPASSX_TESTGUI_H