mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Show a clear error if no slots on hardware key(s) are configured (#11609)
Fixes #11543 Also fix delayed polling on window activation --------- Co-authored-by: w15dev <w15developer@proton.me> Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
parent
2afec91e87
commit
9e29b5c7b6
13 changed files with 89 additions and 58 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "keys/ChallengeResponseKey.h"
|
||||
|
||||
#include <QCryptographicHash>
|
||||
#include <QRegularExpression>
|
||||
#include <QSignalSpy>
|
||||
#include <QTest>
|
||||
|
||||
|
@ -45,9 +46,12 @@ void TestYubiKeyChallengeResponse::testDetectDevices()
|
|||
|
||||
// Look at the information retrieved from the key(s)
|
||||
const auto foundKeys = YubiKey::instance()->foundKeys();
|
||||
QRegularExpression exp{"\\w+\\s+\\[\\d+\\]\\s+-\\s+Slot\\s+\\d"};
|
||||
|
||||
for (auto i = foundKeys.cbegin(); i != foundKeys.cend(); ++i) {
|
||||
const auto& displayName = i.value();
|
||||
QVERIFY(displayName.contains("Challenge-Response - Slot") || displayName.contains("Configured Slot -"));
|
||||
auto match = exp.match(displayName);
|
||||
QVERIFY(match.hasMatch());
|
||||
QVERIFY(displayName.contains(QString::number(i.key().first)));
|
||||
QVERIFY(displayName.contains(QString::number(i.key().second)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue