mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Support opening remote databases (#10896)
* Use the import wizard to support opening a remote database --------- Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
parent
abcb1414a3
commit
d2da13da20
14 changed files with 379 additions and 62 deletions
Binary file not shown.
|
@ -30,6 +30,7 @@
|
|||
#include <QRadioButton>
|
||||
#include <QSignalSpy>
|
||||
#include <QSpinBox>
|
||||
#include <QTableWidget>
|
||||
#include <QTest>
|
||||
#include <QToolBar>
|
||||
|
||||
|
@ -397,14 +398,10 @@ void TestGui::prepareAndTriggerRemoteSync(const QString& sourceToSync)
|
|||
QVERIFY(saveSettingsButton != nullptr);
|
||||
QTest::mouseClick(saveSettingsButton, Qt::LeftButton);
|
||||
|
||||
// find and click dialog OK button
|
||||
auto buttons = dbSettingsDialog->findChild<QDialogButtonBox*>()->findChildren<QPushButton*>();
|
||||
for (QPushButton* b : buttons) {
|
||||
if (b->text() == "OK") {
|
||||
QTest::mouseClick(b, Qt::LeftButton);
|
||||
break;
|
||||
}
|
||||
}
|
||||
auto okButton = dbSettingsDialog->findChild<QDialogButtonBox*>("buttonBox")->button(QDialogButtonBox::Ok);
|
||||
QVERIFY(okButton);
|
||||
QTest::mouseClick(okButton, Qt::LeftButton);
|
||||
|
||||
QTRY_COMPARE(m_dbWidget->getRemoteParams().size(), 1);
|
||||
|
||||
// trigger aboutToShow to create remote actions
|
||||
|
@ -477,6 +474,56 @@ void TestGui::testRemoteSyncDatabaseRequiresPassword()
|
|||
QCOMPARE(m_db->rootGroup()->findChildByName("General")->entries().size(), 1);
|
||||
}
|
||||
|
||||
void TestGui::testOpenRemoteDatabase()
|
||||
{
|
||||
// close current database
|
||||
cleanup();
|
||||
|
||||
QString sourceToSync = "sftp user@server:Database.kdbx";
|
||||
RemoteHandler::setRemoteProcessFunc([sourceToSync](QObject* parent) {
|
||||
return QScopedPointer<RemoteProcess>(
|
||||
new MockRemoteProcess(parent, QString(KEEPASSX_TEST_DATA_DIR).append("/SyncDatabase.kdbx")));
|
||||
});
|
||||
auto* openRemoteButton = QApplication::activeWindow()->findChild<QPushButton*>("buttonImport");
|
||||
QVERIFY(openRemoteButton);
|
||||
QVERIFY(openRemoteButton->isVisible());
|
||||
QTest::mouseClick(openRemoteButton, Qt::LeftButton);
|
||||
QApplication::processEvents();
|
||||
|
||||
TEST_MODAL_NO_WAIT(
|
||||
ImportWizard * wizard; QTRY_VERIFY(wizard = m_tabWidget->findChild<ImportWizard*>());
|
||||
|
||||
auto* importTypeList = wizard->currentPage()->findChild<QListWidget*>("importTypeList");
|
||||
QVERIFY(importTypeList);
|
||||
importTypeList->scrollToBottom();
|
||||
|
||||
QListWidgetItem* remoteOption = importTypeList->item(importTypeList->count() - 1);
|
||||
QRect remoteOptionRect = importTypeList->visualItemRect(remoteOption);
|
||||
QTest::mouseClick(importTypeList->viewport(), Qt::LeftButton, nullptr, remoteOptionRect.center());
|
||||
|
||||
auto* downloadCommandEdit = wizard->currentPage()->findChild<QLineEdit*>("downloadCommand");
|
||||
QVERIFY(downloadCommandEdit);
|
||||
QTest::keyClicks(downloadCommandEdit, sourceToSync);
|
||||
|
||||
auto* temporaryDatabaseRadio = wizard->currentPage()->findChild<QRadioButton*>("temporaryDatabaseRadio");
|
||||
QVERIFY(temporaryDatabaseRadio);
|
||||
QTest::mouseClick(temporaryDatabaseRadio, Qt::LeftButton);
|
||||
|
||||
auto* passwordEdit = wizard->currentPage()->findChild<QLineEdit*>("passwordEdit");
|
||||
QVERIFY(passwordEdit);
|
||||
QTest::keyClicks(passwordEdit, "a");
|
||||
QTest::keyClick(passwordEdit, Qt::Key_Enter);
|
||||
|
||||
QApplication::processEvents();
|
||||
|
||||
QVERIFY(wizard->currentPage()->findChildren<QTableWidget*>().count() > 0);
|
||||
|
||||
QTest::keyClick(passwordEdit, Qt::Key_Enter););
|
||||
|
||||
// remote database has been opened
|
||||
QTRY_COMPARE(m_tabWidget->tabText(m_tabWidget->currentIndex()), QString("SyncDatabase [Temporary]"));
|
||||
}
|
||||
|
||||
void TestGui::testAutoreloadDatabase()
|
||||
{
|
||||
config()->set(Config::AutoReloadOnChange, false);
|
||||
|
|
|
@ -42,6 +42,7 @@ private slots:
|
|||
void testMergeDatabase();
|
||||
void testRemoteSyncDatabaseSameKey();
|
||||
void testRemoteSyncDatabaseRequiresPassword();
|
||||
void testOpenRemoteDatabase();
|
||||
void testAutoreloadDatabase();
|
||||
void testTabs();
|
||||
void testEditEntry();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue