mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Disable entry level Auto-Type
This commit is contained in:
parent
b8f9ac85ec
commit
3f78e5f7a2
8 changed files with 58 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* Copyright (C) 2023 KeePassXC Team <team@keepassxc.org>
|
||||
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
||||
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -1293,3 +1293,29 @@ void TestGroup::testPreviousParentGroup()
|
|||
QVERIFY(group1->previousParentGroupUuid() == group2->uuid());
|
||||
QVERIFY(group1->previousParentGroup() == group2);
|
||||
}
|
||||
|
||||
void TestGroup::testAutoTypeState()
|
||||
{
|
||||
Database db;
|
||||
auto* root = db.rootGroup();
|
||||
|
||||
auto* entry1 = new Entry();
|
||||
entry1->setGroup(root);
|
||||
|
||||
auto subGroup = new Group();
|
||||
subGroup->setParent(root);
|
||||
auto* entry2 = new Entry();
|
||||
entry2->setGroup(subGroup);
|
||||
|
||||
// Disable Auto-Type from root group
|
||||
root->setAutoTypeEnabled(Group::TriState::Disable);
|
||||
QVERIFY(!entry1->groupAutoTypeEnabled());
|
||||
QVERIFY(!entry2->groupAutoTypeEnabled());
|
||||
|
||||
// Enable Auto-Type for sub group
|
||||
subGroup->setAutoTypeEnabled(Group::TriState::Enable);
|
||||
QVERIFY(root->autoTypeEnabled() == Group::TriState::Disable);
|
||||
QVERIFY(subGroup->autoTypeEnabled() == Group::TriState::Enable);
|
||||
QVERIFY(!entry1->groupAutoTypeEnabled());
|
||||
QVERIFY(entry2->groupAutoTypeEnabled());
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* Copyright (C) 2023 KeePassXC Team <team@keepassxc.org>
|
||||
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
||||
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -49,6 +49,7 @@ private slots:
|
|||
void testUsernamesRecursive();
|
||||
void testMoveUpDown();
|
||||
void testPreviousParentGroup();
|
||||
void testAutoTypeState();
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_TESTGROUP_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue