mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Scale and center QR code on window resizing
* Also add GUI test for QR code resizing
This commit is contained in:
parent
3243243be8
commit
f703736685
5 changed files with 57 additions and 6 deletions
|
@ -895,12 +895,27 @@ void TestGui::testTotp()
|
|||
auto* editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
// Test the TOTP value
|
||||
triggerAction("actionEntryTotp");
|
||||
|
||||
auto* totpDialog = m_dbWidget->findChild<TotpDialog*>("TotpDialog");
|
||||
auto* totpLabel = totpDialog->findChild<QLabel*>("totpLabel");
|
||||
|
||||
QCOMPARE(totpLabel->text().replace(" ", ""), entry->totp());
|
||||
QTest::keyClick(totpDialog, Qt::Key_Escape);
|
||||
|
||||
// Test the QR code
|
||||
triggerAction("actionEntryTotpQRCode");
|
||||
auto* qrCodeDialog = m_mainWindow->findChild<QDialog*>("entryQrCodeWidget");
|
||||
QVERIFY(qrCodeDialog);
|
||||
QVERIFY(qrCodeDialog->isVisible());
|
||||
auto* qrCodeWidget = qrCodeDialog->findChild<QWidget*>("squareSvgWidget");
|
||||
QVERIFY2(qrCodeWidget->geometry().width() == qrCodeWidget->geometry().height(), "Initial QR code is not square");
|
||||
|
||||
// Test the QR code window resizing, make the dialog bigger.
|
||||
qrCodeDialog->setFixedSize(800, 600);
|
||||
QVERIFY2(qrCodeWidget->geometry().width() == qrCodeWidget->geometry().height(), "Resized QR code is not square");
|
||||
QTest::keyClick(qrCodeDialog, Qt::Key_Escape);
|
||||
}
|
||||
|
||||
void TestGui::testSearch()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue