2011-12-26 13:18:21 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-12-26 13:18:21 -05: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
|
|
|
|
|
2017-01-03 22:27:41 -05:00
|
|
|
#include "TemporaryFile.h"
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#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;
|
2013-10-08 16:36:27 -04:00
|
|
|
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
|
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
private slots:
|
2011-12-26 13:18:21 -05:00
|
|
|
void initTestCase();
|
2016-11-02 21:01:02 -04:00
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
void cleanupTestCase();
|
|
|
|
|
2016-11-07 22:37:42 -05:00
|
|
|
void testMergeDatabase();
|
2016-11-11 17:58:47 -05:00
|
|
|
void testAutoreloadDatabase();
|
2011-12-29 14:10:19 -05:00
|
|
|
void testTabs();
|
2012-04-14 14:31:35 -04:00
|
|
|
void testEditEntry();
|
2012-05-10 04:29:25 -04:00
|
|
|
void testAddEntry();
|
2017-03-04 13:24:08 -05:00
|
|
|
void testPasswordEntryEntropy();
|
|
|
|
void testDicewareEntryEntropy();
|
2017-04-13 06:05:36 -04:00
|
|
|
void testTotp();
|
2012-05-16 03:56:40 -04:00
|
|
|
void testSearch();
|
2013-10-08 16:36:27 -04:00
|
|
|
void testDeleteEntry();
|
2012-07-21 18:00:44 -04:00
|
|
|
void testCloneEntry();
|
2017-03-16 15:31:14 -04:00
|
|
|
void testEntryPlaceholders();
|
2012-07-17 17:29:25 -04:00
|
|
|
void testDragAndDropEntry();
|
|
|
|
void testDragAndDropGroup();
|
2012-07-06 13:21:19 -04:00
|
|
|
void testSaveAs();
|
|
|
|
void testSave();
|
2012-07-17 04:35:17 -04:00
|
|
|
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
|
|
|
|
|
|
|
private:
|
2016-11-02 21:01:02 -04:00
|
|
|
void checkDatabase(QString dbFileName = "");
|
2012-07-17 17:29:25 -04:00
|
|
|
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 16:36:27 -04:00
|
|
|
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;
|
2016-11-11 17:58:47 -05:00
|
|
|
QByteArray m_dbData;
|
2017-01-03 22:27:41 -05:00
|
|
|
TemporaryFile m_dbFile;
|
2016-11-02 21:01:02 -04:00
|
|
|
QString m_dbFileName;
|
2017-01-03 22:27:41 -05:00
|
|
|
QString m_dbFilePath;
|
2012-07-17 04:16:59 -04:00
|
|
|
Database* m_db;
|
2011-12-26 13:18:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_TESTGUI_H
|