Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/TestDatabase.cpp4
-rw-r--r--tests/TestKeys.cpp2
-rw-r--r--tests/gui/TestGui.cpp13
-rw-r--r--tests/gui/TestGui.h2
4 files changed, 9 insertions, 12 deletions
diff --git a/tests/TestDatabase.cpp b/tests/TestDatabase.cpp
index c3a3a8c42..8ec4a1bd7 100644
--- a/tests/TestDatabase.cpp
+++ b/tests/TestDatabase.cpp
@@ -23,6 +23,7 @@
#include "config-keepassx-tests.h"
#include "core/Metadata.h"
+#include "core/Tools.h"
#include "crypto/Crypto.h"
#include "format/KeePass2Writer.h"
#include "keys/PasswordKey.h"
@@ -118,6 +119,9 @@ void TestDatabase::testSignals()
QVERIFY(db->save(&error));
QCOMPARE(spySaved.count(), 1);
+ // Short delay to allow file system settling to reduce test failures
+ Tools::wait(100);
+
QSignalSpy spyFileChanged(db.data(), SIGNAL(databaseFileChanged()));
QVERIFY(tempFile.copyFromFile(dbFileName));
QTRY_COMPARE(spyFileChanged.count(), 1);
diff --git a/tests/TestKeys.cpp b/tests/TestKeys.cpp
index cbbaae398..9fa75f795 100644
--- a/tests/TestKeys.cpp
+++ b/tests/TestKeys.cpp
@@ -235,7 +235,7 @@ void TestKeys::benchmarkTransformKey()
QBENCHMARK
{
- Q_UNUSED(compositeKey->transform(kdf, result));
+ Q_UNUSED(!compositeKey->transform(kdf, result));
};
}
diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp
index 65ca319bc..0de8be359 100644
--- a/tests/gui/TestGui.cpp
+++ b/tests/gui/TestGui.cpp
@@ -853,7 +853,7 @@ void TestGui::testTotp()
void TestGui::testSearch()
{
// Add canned entries for consistent testing
- Q_UNUSED(addCannedEntries());
+ addCannedEntries();
auto* toolBar = m_mainWindow->findChild<QToolBar*>("toolBar");
@@ -1007,7 +1007,7 @@ void TestGui::testSearch()
void TestGui::testDeleteEntry()
{
// Add canned entries for consistent testing
- Q_UNUSED(addCannedEntries());
+ addCannedEntries();
auto* groupView = m_dbWidget->findChild<GroupView*>("groupView");
auto* entryView = m_dbWidget->findChild<EntryView*>("entryView");
@@ -1673,10 +1673,8 @@ void TestGui::testAutoType()
entryView->selectionModel()->clearSelection();
}
-int TestGui::addCannedEntries()
+void TestGui::addCannedEntries()
{
- int entries_added = 0;
-
// Find buttons
auto* toolBar = m_mainWindow->findChild<QToolBar*>("toolBar");
QWidget* entryNewWidget = toolBar->widgetForAction(m_mainWindow->findChild<QAction*>("actionEntryNew"));
@@ -1689,22 +1687,17 @@ int TestGui::addCannedEntries()
QTest::keyClicks(titleEdit, "test");
auto* editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
- ++entries_added;
// Add entry "something 2"
QTest::mouseClick(entryNewWidget, Qt::LeftButton);
QTest::keyClicks(titleEdit, "something 2");
QTest::keyClicks(passwordEdit, "something 2");
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
- ++entries_added;
// Add entry "something 3"
QTest::mouseClick(entryNewWidget, Qt::LeftButton);
QTest::keyClicks(titleEdit, "something 3");
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
- ++entries_added;
-
- return entries_added;
}
void TestGui::checkDatabase(QString dbFileName)
diff --git a/tests/gui/TestGui.h b/tests/gui/TestGui.h
index 5bfc04265..b41e22227 100644
--- a/tests/gui/TestGui.h
+++ b/tests/gui/TestGui.h
@@ -72,7 +72,7 @@ private slots:
void testTrayRestoreHide();
private:
- int addCannedEntries();
+ void addCannedEntries();
void checkDatabase(QString dbFileName = "");
void triggerAction(const QString& name);
void dragAndDropGroup(const QModelIndex& sourceIndex,