mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
parent
0592218fa3
commit
338fe553ba
5 changed files with 37 additions and 2 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "TestEntrySearcher.h"
|
||||
#include "core/Group.h"
|
||||
#include "core/Tools.h"
|
||||
|
||||
#include <QTest>
|
||||
|
||||
|
@ -372,3 +373,24 @@ void TestEntrySearcher::testSkipProtected()
|
|||
m_entrySearcher.search("_testAttribute:testE1 _testProtected:apple _testAttribute:testE2", m_rootGroup);
|
||||
QCOMPARE(m_searchResult, {});
|
||||
}
|
||||
|
||||
void TestEntrySearcher::testUUIDSearch()
|
||||
{
|
||||
auto entry1 = new Entry();
|
||||
entry1->setGroup(m_rootGroup);
|
||||
entry1->setTitle("testTitle");
|
||||
auto uuid1 = QUuid::createUuid();
|
||||
entry1->setUuid(uuid1);
|
||||
|
||||
auto entry2 = new Entry();
|
||||
entry2->setGroup(m_rootGroup);
|
||||
entry2->setTitle("testTitle2");
|
||||
auto uuid2 = QUuid::createUuid();
|
||||
entry2->setUuid(uuid2);
|
||||
|
||||
m_searchResult = m_entrySearcher.search("uuid:", m_rootGroup);
|
||||
QCOMPARE(m_searchResult.count(), 2);
|
||||
|
||||
m_searchResult = m_entrySearcher.search("uuid:" + Tools::uuidToHex(uuid1), m_rootGroup);
|
||||
QCOMPARE(m_searchResult.count(), 1);
|
||||
}
|
||||
|
|
|
@ -38,6 +38,7 @@ private slots:
|
|||
void testCustomAttributesAreSearched();
|
||||
void testGroup();
|
||||
void testSkipProtected();
|
||||
void testUUIDSearch();
|
||||
|
||||
private:
|
||||
Group* m_rootGroup;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue