mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
[CLI] Add Option to show all attributes (Show command) (#8256)
* Adding --all option to Show
This commit is contained in:
parent
aa839e2619
commit
15b9e82f93
5 changed files with 50 additions and 7 deletions
|
@ -2049,6 +2049,21 @@ void TestCli::testShow()
|
|||
execCmd(showCmd, {"show", m_dbFile->fileName(), "-a", "Testattribute1", "/Sample Entry"});
|
||||
QCOMPARE(m_stdout->readAll(), QByteArray());
|
||||
QVERIFY(m_stderr->readAll().contains("ERROR: attribute Testattribute1 is ambiguous"));
|
||||
|
||||
setInput("a");
|
||||
execCmd(showCmd, {"show", "--all", m_dbFile->fileName(), "/Sample Entry"});
|
||||
QCOMPARE(m_stdout->readAll(),
|
||||
QByteArray("Title: Sample Entry\n"
|
||||
"UserName: User Name\n"
|
||||
"Password: PROTECTED\n"
|
||||
"URL: http://www.somesite.com/\n"
|
||||
"Notes: Notes\n"
|
||||
"Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n"
|
||||
"Tags: \n"
|
||||
"TOTP Seed: PROTECTED\n"
|
||||
"TOTP Settings: 30;6\n"
|
||||
"TestAttribute1: b\n"
|
||||
"testattribute1: a\n"));
|
||||
}
|
||||
|
||||
void TestCli::testInvalidDbFiles()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue