keepassxc/tests/TestBrowser.h

63 lines
1.9 KiB
C++
Raw Normal View History

2018-12-10 07:20:58 -05:00
/*
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
*
* 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 KEEPASSXC_TESTBROWSER_H
#define KEEPASSXC_TESTBROWSER_H
#include <QObject>
#include "browser/BrowserAction.h"
#include "browser/BrowserService.h"
#include "core/Group.h"
class TestBrowser : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void init();
2018-12-10 07:20:58 -05:00
void testChangePublicKeys();
void testEncryptMessage();
void testDecryptMessage();
void testGetBase64FromKey();
void testIncrementNonce();
void testBaseDomain();
void testSortPriority();
void testSortPriority_data();
2018-12-10 07:20:58 -05:00
void testSearchEntries();
2020-10-17 10:05:02 -04:00
void testSearchEntriesByPath();
void testSearchEntriesByUUID();
2018-12-10 07:20:58 -05:00
void testSearchEntriesWithPort();
void testSearchEntriesWithAdditionalURLs();
2019-11-01 14:13:12 -04:00
void testInvalidEntries();
void testSubdomainsAndPaths();
2019-11-22 06:54:28 -05:00
void testValidURLs();
void testBestMatchingCredentials();
void testBestMatchingWithAdditionalURLs();
2018-12-10 07:20:58 -05:00
private:
2019-11-12 15:38:20 -05:00
QList<Entry*> createEntries(QStringList& urls, Group* root) const;
2020-10-17 10:05:02 -04:00
void compareEntriesByPath(QSharedPointer<Database> db, QList<Entry*> entries, QString path);
2019-11-12 15:38:20 -05:00
2018-12-10 07:20:58 -05:00
QScopedPointer<BrowserAction> m_browserAction;
QPointer<BrowserService> m_browserService;
2018-12-10 07:20:58 -05:00
};
#endif // KEEPASSXC_TESTBROWSER_H