keepassxc/tests/TestBrowser.h

60 lines
1.7 KiB
C++
Raw Normal View History

2018-12-10 12:20:58 +00: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 12:20:58 +00:00
void testChangePublicKeys();
void testEncryptMessage();
void testDecryptMessage();
void testGetBase64FromKey();
void testIncrementNonce();
void testBaseDomain();
void testSortPriority();
void testSearchEntries();
void testSearchEntriesWithPort();
void testSearchEntriesWithAdditionalURLs();
2019-11-01 18:13:12 +00:00
void testInvalidEntries();
void testSubdomainsAndPaths();
2018-12-10 12:20:58 +00:00
void testSortEntries();
2019-11-22 11:54:28 +00:00
void testValidURLs();
void testBestMatchingCredentials();
2018-12-10 12:20:58 +00:00
private:
2019-11-12 20:38:20 +00:00
QList<Entry*> createEntries(QStringList& urls, Group* root) const;
2018-12-10 12:20:58 +00:00
QScopedPointer<BrowserAction> m_browserAction;
QPointer<BrowserService> m_browserService;
2018-12-10 12:20:58 +00:00
};
#endif // KEEPASSXC_TESTBROWSER_H