mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix tests on macOS and update coverage config (#6945)
Simplifies coverage generation and uses llvm-cov instead of gcov if compiler is clang.
This commit is contained in:
parent
eeba485f95
commit
a46231a39a
5 changed files with 186 additions and 235 deletions
|
@ -658,7 +658,11 @@ void TestGui::testPasswordEntryEntropy()
|
|||
QVERIFY(passwordEdit);
|
||||
QTest::mouseClick(passwordEdit, Qt::LeftButton);
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
QTest::keyClick(passwordEdit, Qt::Key_G, Qt::MetaModifier);
|
||||
#else
|
||||
QTest::keyClick(passwordEdit, Qt::Key_G, Qt::ControlModifier);
|
||||
#endif
|
||||
|
||||
TEST_MODAL(PasswordGeneratorWidget * pwGeneratorWidget;
|
||||
QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild<PasswordGeneratorWidget*>());
|
||||
|
@ -739,7 +743,11 @@ void TestGui::testDicewareEntryEntropy()
|
|||
QVERIFY(passwordEdit);
|
||||
QTest::mouseClick(passwordEdit, Qt::LeftButton);
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
QTest::keyClick(passwordEdit, Qt::Key_G, Qt::MetaModifier);
|
||||
#else
|
||||
QTest::keyClick(passwordEdit, Qt::Key_G, Qt::ControlModifier);
|
||||
#endif
|
||||
|
||||
TEST_MODAL(PasswordGeneratorWidget * pwGeneratorWidget;
|
||||
QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild<PasswordGeneratorWidget*>());
|
||||
|
@ -854,6 +862,7 @@ void TestGui::testSearch()
|
|||
QTRY_VERIFY(helpPanel->isVisible());
|
||||
QTest::mouseClick(searchTextEdit, Qt::LeftButton);
|
||||
QTRY_VERIFY(helpPanel->isVisible());
|
||||
QApplication::processEvents();
|
||||
helpButton->trigger();
|
||||
QTRY_VERIFY(!helpPanel->isVisible());
|
||||
// Search for "ZZZ"
|
||||
|
@ -1480,6 +1489,7 @@ void TestGui::testTrayRestoreHide()
|
|||
QSKIP("QSystemTrayIcon::isSystemTrayAvailable() = false, skipping tray restore/hide test…");
|
||||
}
|
||||
|
||||
#ifndef Q_OS_MACOS
|
||||
m_mainWindow->hideWindow();
|
||||
QVERIFY(!m_mainWindow->isVisible());
|
||||
|
||||
|
@ -1507,6 +1517,7 @@ void TestGui::testTrayRestoreHide()
|
|||
// Ensure window is visible at the end
|
||||
trayIcon->activated(QSystemTrayIcon::DoubleClick);
|
||||
QTRY_VERIFY(m_mainWindow->isVisible());
|
||||
#endif
|
||||
}
|
||||
|
||||
void TestGui::testAutoType()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue