mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Add a best option to CLI command clip (#4489)
The best option copy the password from the best match if only one matching entry exists. Adding clip best option documentation Adding unit tests on the new clip --best option
This commit is contained in:
parent
bbdfbe64da
commit
f49f62d3be
6 changed files with 49 additions and 1 deletions
|
@ -86,6 +86,9 @@ void TestCli::init()
|
|||
m_dbFile2.reset(new TemporaryFile());
|
||||
m_dbFile2->copyFromFile(file.arg("NewDatabase2.kdbx"));
|
||||
|
||||
m_dbFileMulti.reset(new TemporaryFile());
|
||||
m_dbFileMulti->copyFromFile(file.arg("NewDatabaseMulti.kdbx"));
|
||||
|
||||
m_xmlFile.reset(new TemporaryFile());
|
||||
m_xmlFile->copyFromFile(file.arg("NewDatabase.xml"));
|
||||
|
||||
|
@ -115,6 +118,7 @@ void TestCli::cleanup()
|
|||
{
|
||||
m_dbFile.reset();
|
||||
m_dbFile2.reset();
|
||||
m_dbFileMulti.reset();
|
||||
m_keyFileProtectedDbFile.reset();
|
||||
m_keyFileProtectedNoPasswordDbFile.reset();
|
||||
m_yubiKeyProtectedDbFile.reset();
|
||||
|
@ -504,6 +508,17 @@ void TestCli::testClip()
|
|||
setInput("a");
|
||||
execCmd(clipCmd, {"clip", m_dbFile2->fileName(), "--attribute", "Username", "--totp", "/Sample Entry"});
|
||||
QVERIFY(m_stderr->readAll().contains("ERROR: Please specify one of --attribute or --totp, not both.\n"));
|
||||
|
||||
// Best option
|
||||
setInput("a");
|
||||
execCmd(clipCmd, {"clip", m_dbFileMulti->fileName(), "Multi", "-b"});
|
||||
QByteArray errorChoices = m_stderr->readAll();
|
||||
QVERIFY(errorChoices.contains("Multi Entry 1"));
|
||||
QVERIFY(errorChoices.contains("Multi Entry 2"));
|
||||
|
||||
setInput("a");
|
||||
execCmd(clipCmd, {"clip", m_dbFileMulti->fileName(), "Entry 2", "-b"});
|
||||
QTRY_COMPARE(clipboard->text(), QString("Password2"));
|
||||
}
|
||||
|
||||
void TestCli::testCreate()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue