mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Show character count in password generator dialog (#10940)
Displays the number of characters in the password field in the password generator dialog. This fixes #10858.
This commit is contained in:
parent
80ac50a144
commit
1f9c25cc91
5 changed files with 65 additions and 2 deletions
|
@ -895,6 +895,7 @@ void TestGui::testPasswordEntryEntropy()
|
|||
pwGeneratorWidget->findChild<PasswordWidget*>("editNewPassword")->findChild<QLineEdit*>("passwordEdit");
|
||||
auto* entropyLabel = pwGeneratorWidget->findChild<QLabel*>("entropyLabel");
|
||||
auto* strengthLabel = pwGeneratorWidget->findChild<QLabel*>("strengthLabel");
|
||||
auto* passwordLengthLabel = pwGeneratorWidget->findChild<QLabel*>("passwordLengthLabel");
|
||||
|
||||
QFETCH(QString, password);
|
||||
QFETCH(QString, expectedStrengthLabel);
|
||||
|
@ -902,10 +903,12 @@ void TestGui::testPasswordEntryEntropy()
|
|||
// Dynamically calculate entropy due to variances with zxcvbn wordlists
|
||||
PasswordHealth health(password);
|
||||
auto expectedEntropy = QString("Entropy: %1 bit").arg(QString::number(health.entropy(), 'f', 2));
|
||||
auto expectedPasswordLength = QString("Characters: %1").arg(QString::number(password.length()));
|
||||
|
||||
generatedPassword->setText(password);
|
||||
QCOMPARE(entropyLabel->text(), expectedEntropy);
|
||||
QCOMPARE(strengthLabel->text(), expectedStrengthLabel);
|
||||
QCOMPARE(passwordLengthLabel->text(), expectedPasswordLength);
|
||||
|
||||
QTest::mouseClick(generatedPassword, Qt::LeftButton);
|
||||
QTest::keyClick(generatedPassword, Qt::Key_Escape););
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue