mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Implement review feedback
This commit is contained in:
parent
bea31f9bcc
commit
0ca7fd369a
14 changed files with 59 additions and 65 deletions
|
@ -376,7 +376,7 @@ QJsonObject BrowserAction::getErrorReply(const QString& action, const int errorC
|
||||||
QJsonObject BrowserAction::buildMessage(const QString& nonce) const
|
QJsonObject BrowserAction::buildMessage(const QString& nonce) const
|
||||||
{
|
{
|
||||||
QJsonObject message;
|
QJsonObject message;
|
||||||
message["version"] = KEEPASSX_VERSION;
|
message["version"] = KEEPASSXC_VERSION;
|
||||||
message["success"] = "true";
|
message["success"] = "true";
|
||||||
message["nonce"] = nonce;
|
message["nonce"] = nonce;
|
||||||
return message;
|
return message;
|
||||||
|
|
|
@ -76,7 +76,7 @@ int Remove::removeEntry(Database* database, const QString& databasePath, const Q
|
||||||
QTextStream out(Utils::STDOUT, QIODevice::WriteOnly);
|
QTextStream out(Utils::STDOUT, QIODevice::WriteOnly);
|
||||||
QTextStream err(Utils::STDERR, QIODevice::WriteOnly);
|
QTextStream err(Utils::STDERR, QIODevice::WriteOnly);
|
||||||
|
|
||||||
Entry* entry = database->rootGroup()->findEntryByPath(entryPath);
|
QPointer<Entry> entry = database->rootGroup()->findEntryByPath(entryPath);
|
||||||
if (!entry) {
|
if (!entry) {
|
||||||
err << QObject::tr("Entry %1 not found.").arg(entryPath) << endl;
|
err << QObject::tr("Entry %1 not found.").arg(entryPath) << endl;
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
|
@ -84,7 +84,8 @@ int Remove::removeEntry(Database* database, const QString& databasePath, const Q
|
||||||
|
|
||||||
QString entryTitle = entry->title();
|
QString entryTitle = entry->title();
|
||||||
bool recycled = true;
|
bool recycled = true;
|
||||||
if (Tools::hasChild(database->metadata()->recycleBin(), entry) || !database->metadata()->recycleBinEnabled()) {
|
auto* recycleBin = database->metadata()->recycleBin();
|
||||||
|
if (!database->metadata()->recycleBinEnabled() || (recycleBin && recycleBin->findEntryByUuid(entry->uuid()))) {
|
||||||
delete entry;
|
delete entry;
|
||||||
recycled = false;
|
recycled = false;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -72,6 +72,8 @@ void setStdinEcho(bool enable = true)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace Test
|
||||||
|
{
|
||||||
QStringList nextPasswords = {};
|
QStringList nextPasswords = {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -85,6 +87,7 @@ void setNextPassword(const QString& password)
|
||||||
{
|
{
|
||||||
nextPasswords.append(password);
|
nextPasswords.append(password);
|
||||||
}
|
}
|
||||||
|
} // namespace Test
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Read a user password from STDIN or return a password previously
|
* Read a user password from STDIN or return a password previously
|
||||||
|
@ -97,8 +100,8 @@ QString getPassword()
|
||||||
QTextStream out(STDOUT, QIODevice::WriteOnly);
|
QTextStream out(STDOUT, QIODevice::WriteOnly);
|
||||||
|
|
||||||
// return preset password if one is set
|
// return preset password if one is set
|
||||||
if (!nextPasswords.isEmpty()) {
|
if (!Test::nextPasswords.isEmpty()) {
|
||||||
auto password = nextPasswords.takeFirst();
|
auto password = Test::nextPasswords.takeFirst();
|
||||||
// simulate user entering newline
|
// simulate user entering newline
|
||||||
out << endl;
|
out << endl;
|
||||||
return password;
|
return password;
|
||||||
|
|
|
@ -29,8 +29,12 @@ extern FILE* STDIN;
|
||||||
|
|
||||||
void setStdinEcho(bool enable);
|
void setStdinEcho(bool enable);
|
||||||
QString getPassword();
|
QString getPassword();
|
||||||
void setNextPassword(const QString& password);
|
|
||||||
int clipText(const QString& text);
|
int clipText(const QString& text);
|
||||||
|
|
||||||
|
namespace Test
|
||||||
|
{
|
||||||
|
void setNextPassword(const QString& password);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KEEPASSXC_UTILS_H
|
#endif // KEEPASSXC_UTILS_H
|
||||||
|
|
|
@ -40,7 +40,7 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
QCoreApplication::setApplicationVersion(KEEPASSX_VERSION);
|
QCoreApplication::setApplicationVersion(KEEPASSXC_VERSION);
|
||||||
|
|
||||||
#ifdef QT_NO_DEBUG
|
#ifdef QT_NO_DEBUG
|
||||||
Bootstrap::bootstrapApplication();
|
Bootstrap::bootstrapApplication();
|
||||||
|
@ -72,7 +72,7 @@ int main(int argc, char** argv)
|
||||||
if (parser.positionalArguments().empty()) {
|
if (parser.positionalArguments().empty()) {
|
||||||
if (parser.isSet("version")) {
|
if (parser.isSet("version")) {
|
||||||
// Switch to parser.showVersion() when available (QT 5.4).
|
// Switch to parser.showVersion() when available (QT 5.4).
|
||||||
out << KEEPASSX_VERSION << endl;
|
out << KEEPASSXC_VERSION << endl;
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
parser.showHelp();
|
parser.showHelp();
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#ifndef KEEPASSX_CONFIG_KEEPASSX_H
|
#ifndef KEEPASSX_CONFIG_KEEPASSX_H
|
||||||
#define KEEPASSX_CONFIG_KEEPASSX_H
|
#define KEEPASSX_CONFIG_KEEPASSX_H
|
||||||
|
|
||||||
#define KEEPASSX_VERSION "@KEEPASSXC_VERSION@"
|
#define KEEPASSXC_VERSION "@KEEPASSXC_VERSION@"
|
||||||
|
|
||||||
#define KEEPASSX_SOURCE_DIR "@CMAKE_SOURCE_DIR@"
|
#define KEEPASSX_SOURCE_DIR "@CMAKE_SOURCE_DIR@"
|
||||||
#define KEEPASSX_BINARY_DIR "@CMAKE_BINARY_DIR@"
|
#define KEEPASSX_BINARY_DIR "@CMAKE_BINARY_DIR@"
|
||||||
|
|
|
@ -77,21 +77,6 @@ QString humanReadableFileSize(qint64 bytes, quint32 precision)
|
||||||
return QString("%1 %2").arg(QLocale().toString(size, 'f', precision), units.at(i));
|
return QString("%1 %2").arg(QLocale().toString(size, 'f', precision), units.at(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool hasChild(const QObject* parent, const QObject* child)
|
|
||||||
{
|
|
||||||
if (!parent || !child) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QObjectList children = parent->children();
|
|
||||||
for (QObject* c : children) {
|
|
||||||
if (child == c || hasChild(c, child)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool readFromDevice(QIODevice* device, QByteArray& data, int size)
|
bool readFromDevice(QIODevice* device, QByteArray& data, int size)
|
||||||
{
|
{
|
||||||
QByteArray buffer;
|
QByteArray buffer;
|
||||||
|
|
|
@ -31,7 +31,6 @@ class QIODevice;
|
||||||
namespace Tools
|
namespace Tools
|
||||||
{
|
{
|
||||||
QString humanReadableFileSize(qint64 bytes, quint32 precision = 2);
|
QString humanReadableFileSize(qint64 bytes, quint32 precision = 2);
|
||||||
bool hasChild(const QObject* parent, const QObject* child);
|
|
||||||
bool readFromDevice(QIODevice* device, QByteArray& data, int size = 16384);
|
bool readFromDevice(QIODevice* device, QByteArray& data, int size = 16384);
|
||||||
bool readAllFromDevice(QIODevice* device, QByteArray& data);
|
bool readAllFromDevice(QIODevice* device, QByteArray& data);
|
||||||
QString imageReaderFilter();
|
QString imageReaderFilter();
|
||||||
|
|
|
@ -37,7 +37,7 @@ AboutDialog::AboutDialog(QWidget* parent)
|
||||||
setWindowFlags(Qt::Sheet);
|
setWindowFlags(Qt::Sheet);
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||||
|
|
||||||
m_ui->nameLabel->setText(m_ui->nameLabel->text().replace("${VERSION}", KEEPASSX_VERSION));
|
m_ui->nameLabel->setText(m_ui->nameLabel->text().replace("${VERSION}", KEEPASSXC_VERSION));
|
||||||
QFont nameLabelFont = m_ui->nameLabel->font();
|
QFont nameLabelFont = m_ui->nameLabel->font();
|
||||||
nameLabelFont.setPointSize(nameLabelFont.pointSize() + 4);
|
nameLabelFont.setPointSize(nameLabelFont.pointSize() + 4);
|
||||||
m_ui->nameLabel->setFont(nameLabelFont);
|
m_ui->nameLabel->setFont(nameLabelFont);
|
||||||
|
@ -52,7 +52,7 @@ AboutDialog::AboutDialog(QWidget* parent)
|
||||||
}
|
}
|
||||||
|
|
||||||
QString debugInfo = "KeePassXC - ";
|
QString debugInfo = "KeePassXC - ";
|
||||||
debugInfo.append(tr("Version %1").arg(KEEPASSX_VERSION).append("\n"));
|
debugInfo.append(tr("Version %1").arg(KEEPASSXC_VERSION).append("\n"));
|
||||||
#ifndef KEEPASSXC_BUILD_TYPE_RELEASE
|
#ifndef KEEPASSXC_BUILD_TYPE_RELEASE
|
||||||
debugInfo.append(tr("Build Type: %1").arg(KEEPASSXC_BUILD_TYPE).append("\n"));
|
debugInfo.append(tr("Build Type: %1").arg(KEEPASSXC_BUILD_TYPE).append("\n"));
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -460,7 +460,8 @@ void DatabaseWidget::deleteEntries()
|
||||||
selectedEntries.append(m_entryView->entryFromIndex(index));
|
selectedEntries.append(m_entryView->entryFromIndex(index));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool inRecycleBin = Tools::hasChild(m_db->metadata()->recycleBin(), selectedEntries.first());
|
auto* recycleBin = m_db->metadata()->recycleBin();
|
||||||
|
bool inRecycleBin = recycleBin && recycleBin->findEntryByUuid(selectedEntries.first()->uuid());
|
||||||
if (inRecycleBin || !m_db->metadata()->recycleBinEnabled()) {
|
if (inRecycleBin || !m_db->metadata()->recycleBinEnabled()) {
|
||||||
QString prompt;
|
QString prompt;
|
||||||
if (selected.size() == 1) {
|
if (selected.size() == 1) {
|
||||||
|
@ -688,9 +689,10 @@ void DatabaseWidget::deleteGroup()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool inRecycleBin = Tools::hasChild(m_db->metadata()->recycleBin(), currentGroup);
|
auto* recycleBin = m_db->metadata()->recycleBin();
|
||||||
|
bool inRecycleBin = recycleBin && recycleBin->findGroupByUuid(currentGroup->uuid());
|
||||||
bool isRecycleBin = (currentGroup == m_db->metadata()->recycleBin());
|
bool isRecycleBin = (currentGroup == m_db->metadata()->recycleBin());
|
||||||
bool isRecycleBinSubgroup = Tools::hasChild(currentGroup, m_db->metadata()->recycleBin());
|
bool isRecycleBinSubgroup = currentGroup->findGroupByUuid(m_db->metadata()->recycleBin()->uuid());
|
||||||
if (inRecycleBin || isRecycleBin || isRecycleBinSubgroup || !m_db->metadata()->recycleBinEnabled()) {
|
if (inRecycleBin || isRecycleBin || isRecycleBinSubgroup || !m_db->metadata()->recycleBinEnabled()) {
|
||||||
QMessageBox::StandardButton result = MessageBox::question(
|
QMessageBox::StandardButton result = MessageBox::question(
|
||||||
this,
|
this,
|
||||||
|
|
|
@ -29,7 +29,7 @@ WelcomeWidget::WelcomeWidget(QWidget* parent)
|
||||||
{
|
{
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
|
|
||||||
m_ui->welcomeLabel->setText(tr("Welcome to KeePassXC %1").arg(KEEPASSX_VERSION));
|
m_ui->welcomeLabel->setText(tr("Welcome to KeePassXC %1").arg(KEEPASSXC_VERSION));
|
||||||
QFont welcomeLabelFont = m_ui->welcomeLabel->font();
|
QFont welcomeLabelFont = m_ui->welcomeLabel->font();
|
||||||
welcomeLabelFont.setBold(true);
|
welcomeLabelFont.setBold(true);
|
||||||
welcomeLabelFont.setPointSize(welcomeLabelFont.pointSize() + 4);
|
welcomeLabelFont.setPointSize(welcomeLabelFont.pointSize() + 4);
|
||||||
|
|
|
@ -234,11 +234,11 @@ bool GroupModel::dropMimeData(const QMimeData* data,
|
||||||
}
|
}
|
||||||
|
|
||||||
Group* dragGroup = db->resolveGroup(groupUuid);
|
Group* dragGroup = db->resolveGroup(groupUuid);
|
||||||
if (!dragGroup || !Tools::hasChild(db, dragGroup) || dragGroup == db->rootGroup()) {
|
if (!dragGroup || !db->rootGroup()->findGroupByUuid(dragGroup->uuid()) || dragGroup == db->rootGroup()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dragGroup == parentGroup || Tools::hasChild(dragGroup, parentGroup)) {
|
if (dragGroup == parentGroup || dragGroup->findGroupByUuid(parentGroup->uuid())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -278,7 +278,7 @@ bool GroupModel::dropMimeData(const QMimeData* data,
|
||||||
}
|
}
|
||||||
|
|
||||||
Entry* dragEntry = db->resolveEntry(entryUuid);
|
Entry* dragEntry = db->resolveEntry(entryUuid);
|
||||||
if (!dragEntry || !Tools::hasChild(db, dragEntry)) {
|
if (!dragEntry || !db->rootGroup()->findEntryByUuid(dragEntry->uuid())) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
Application app(argc, argv);
|
Application app(argc, argv);
|
||||||
Application::setApplicationName("keepassxc");
|
Application::setApplicationName("keepassxc");
|
||||||
Application::setApplicationVersion(KEEPASSX_VERSION);
|
Application::setApplicationVersion(KEEPASSXC_VERSION);
|
||||||
// don't set organizationName as that changes the return value of
|
// don't set organizationName as that changes the return value of
|
||||||
// QStandardPaths::writableLocation(QDesktopServices::DataLocation)
|
// QStandardPaths::writableLocation(QDesktopServices::DataLocation)
|
||||||
Bootstrap::bootstrapApplication();
|
Bootstrap::bootstrapApplication();
|
||||||
|
|
|
@ -115,7 +115,7 @@ void TestCli::cleanupTestCase()
|
||||||
|
|
||||||
QSharedPointer<Database> TestCli::readTestDatabase() const
|
QSharedPointer<Database> TestCli::readTestDatabase() const
|
||||||
{
|
{
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
auto db = QSharedPointer<Database>(Database::unlockFromStdin(m_dbFile->fileName(), "", m_stdoutHandle));
|
auto db = QSharedPointer<Database>(Database::unlockFromStdin(m_dbFile->fileName(), "", m_stdoutHandle));
|
||||||
m_stdoutFile->seek(ftell(m_stdoutHandle)); // re-synchronize handles
|
m_stdoutFile->seek(ftell(m_stdoutHandle)); // re-synchronize handles
|
||||||
return db;
|
return db;
|
||||||
|
@ -145,7 +145,7 @@ void TestCli::testAdd()
|
||||||
QVERIFY(!addCmd.name.isEmpty());
|
QVERIFY(!addCmd.name.isEmpty());
|
||||||
QVERIFY(addCmd.getDescriptionLine().contains(addCmd.name));
|
QVERIFY(addCmd.getDescriptionLine().contains(addCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
addCmd.execute({"add", "-u", "newuser", "--url", "https://example.com/", "-g", "-l", "20", m_dbFile->fileName(), "/newuser-entry"});
|
addCmd.execute({"add", "-u", "newuser", "--url", "https://example.com/", "-g", "-l", "20", m_dbFile->fileName(), "/newuser-entry"});
|
||||||
m_stderrFile->reset();
|
m_stderrFile->reset();
|
||||||
|
|
||||||
|
@ -156,8 +156,8 @@ void TestCli::testAdd()
|
||||||
QCOMPARE(entry->url(), QString("https://example.com/"));
|
QCOMPARE(entry->url(), QString("https://example.com/"));
|
||||||
QCOMPARE(entry->password().size(), 20);
|
QCOMPARE(entry->password().size(), 20);
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
Utils::setNextPassword("newpassword");
|
Utils::Test::setNextPassword("newpassword");
|
||||||
addCmd.execute({"add", "-u", "newuser2", "--url", "https://example.net/", "-g", "-l", "20", "-p", m_dbFile->fileName(), "/newuser-entry2"});
|
addCmd.execute({"add", "-u", "newuser2", "--url", "https://example.net/", "-g", "-l", "20", "-p", m_dbFile->fileName(), "/newuser-entry2"});
|
||||||
|
|
||||||
db = readTestDatabase();
|
db = readTestDatabase();
|
||||||
|
@ -177,7 +177,7 @@ void TestCli::testClip()
|
||||||
QVERIFY(!clipCmd.name.isEmpty());
|
QVERIFY(!clipCmd.name.isEmpty());
|
||||||
QVERIFY(clipCmd.getDescriptionLine().contains(clipCmd.name));
|
QVERIFY(clipCmd.getDescriptionLine().contains(clipCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
clipCmd.execute({"clip", m_dbFile->fileName(), "/Sample Entry"});
|
clipCmd.execute({"clip", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
|
|
||||||
m_stderrFile->reset();
|
m_stderrFile->reset();
|
||||||
|
@ -190,7 +190,7 @@ void TestCli::testClip()
|
||||||
|
|
||||||
QCOMPARE(clipboard->text(), QString("Password"));
|
QCOMPARE(clipboard->text(), QString("Password"));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
QFuture<void> future = QtConcurrent::run(&clipCmd, &Clip::execute, QStringList{"clip", m_dbFile->fileName(), "/Sample Entry", "1"});
|
QFuture<void> future = QtConcurrent::run(&clipCmd, &Clip::execute, QStringList{"clip", m_dbFile->fileName(), "/Sample Entry", "1"});
|
||||||
|
|
||||||
QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString("Password"), 500);
|
QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString("Password"), 500);
|
||||||
|
@ -246,7 +246,7 @@ void TestCli::testEdit()
|
||||||
QVERIFY(!editCmd.name.isEmpty());
|
QVERIFY(!editCmd.name.isEmpty());
|
||||||
QVERIFY(editCmd.getDescriptionLine().contains(editCmd.name));
|
QVERIFY(editCmd.getDescriptionLine().contains(editCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
editCmd.execute({"edit", "-u", "newuser", "--url", "https://otherurl.example.com/", "-t", "newtitle", m_dbFile->fileName(), "/Sample Entry"});
|
editCmd.execute({"edit", "-u", "newuser", "--url", "https://otherurl.example.com/", "-t", "newtitle", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
|
|
||||||
auto db = readTestDatabase();
|
auto db = readTestDatabase();
|
||||||
|
@ -256,7 +256,7 @@ void TestCli::testEdit()
|
||||||
QCOMPARE(entry->url(), QString("https://otherurl.example.com/"));
|
QCOMPARE(entry->url(), QString("https://otherurl.example.com/"));
|
||||||
QCOMPARE(entry->password(), QString("Password"));
|
QCOMPARE(entry->password(), QString("Password"));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
editCmd.execute({"edit", "-g", m_dbFile->fileName(), "/newtitle"});
|
editCmd.execute({"edit", "-g", m_dbFile->fileName(), "/newtitle"});
|
||||||
db = readTestDatabase();
|
db = readTestDatabase();
|
||||||
entry = db->rootGroup()->findEntryByPath("/newtitle");
|
entry = db->rootGroup()->findEntryByPath("/newtitle");
|
||||||
|
@ -266,7 +266,7 @@ void TestCli::testEdit()
|
||||||
QVERIFY(!entry->password().isEmpty());
|
QVERIFY(!entry->password().isEmpty());
|
||||||
QVERIFY(entry->password() != QString("Password"));
|
QVERIFY(entry->password() != QString("Password"));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
editCmd.execute({"edit", "-g", "-l", "34", "-t", "yet another title", m_dbFile->fileName(), "/newtitle"});
|
editCmd.execute({"edit", "-g", "-l", "34", "-t", "yet another title", m_dbFile->fileName(), "/newtitle"});
|
||||||
db = readTestDatabase();
|
db = readTestDatabase();
|
||||||
entry = db->rootGroup()->findEntryByPath("/yet another title");
|
entry = db->rootGroup()->findEntryByPath("/yet another title");
|
||||||
|
@ -276,8 +276,8 @@ void TestCli::testEdit()
|
||||||
QVERIFY(entry->password() != QString("Password"));
|
QVERIFY(entry->password() != QString("Password"));
|
||||||
QCOMPARE(entry->password().size(), 34);
|
QCOMPARE(entry->password().size(), 34);
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
Utils::setNextPassword("newpassword");
|
Utils::Test::setNextPassword("newpassword");
|
||||||
editCmd.execute({"edit", "-p", m_dbFile->fileName(), "/yet another title"});
|
editCmd.execute({"edit", "-p", m_dbFile->fileName(), "/yet another title"});
|
||||||
db = readTestDatabase();
|
db = readTestDatabase();
|
||||||
entry = db->rootGroup()->findEntryByPath("/yet another title");
|
entry = db->rootGroup()->findEntryByPath("/yet another title");
|
||||||
|
@ -392,7 +392,7 @@ void TestCli::testExtract()
|
||||||
QVERIFY(!extractCmd.name.isEmpty());
|
QVERIFY(!extractCmd.name.isEmpty());
|
||||||
QVERIFY(extractCmd.getDescriptionLine().contains(extractCmd.name));
|
QVERIFY(extractCmd.getDescriptionLine().contains(extractCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
extractCmd.execute({"extract", m_dbFile->fileName()});
|
extractCmd.execute({"extract", m_dbFile->fileName()});
|
||||||
|
|
||||||
m_stdoutFile->seek(0);
|
m_stdoutFile->seek(0);
|
||||||
|
@ -471,7 +471,7 @@ void TestCli::testList()
|
||||||
QVERIFY(!listCmd.name.isEmpty());
|
QVERIFY(!listCmd.name.isEmpty());
|
||||||
QVERIFY(listCmd.getDescriptionLine().contains(listCmd.name));
|
QVERIFY(listCmd.getDescriptionLine().contains(listCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
listCmd.execute({"ls", m_dbFile->fileName()});
|
listCmd.execute({"ls", m_dbFile->fileName()});
|
||||||
m_stdoutFile->reset();
|
m_stdoutFile->reset();
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -484,7 +484,7 @@ void TestCli::testList()
|
||||||
"Homebanking/\n"));
|
"Homebanking/\n"));
|
||||||
|
|
||||||
qint64 pos = m_stdoutFile->pos();
|
qint64 pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
listCmd.execute({"ls", "-R", m_dbFile->fileName()});
|
listCmd.execute({"ls", "-R", m_dbFile->fileName()});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -503,14 +503,14 @@ void TestCli::testList()
|
||||||
" [empty]\n"));
|
" [empty]\n"));
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
listCmd.execute({"ls", m_dbFile->fileName(), "/General/"});
|
listCmd.execute({"ls", m_dbFile->fileName(), "/General/"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine();
|
m_stdoutFile->readLine();
|
||||||
QCOMPARE(m_stdoutFile->readAll(), QByteArray("[empty]\n"));
|
QCOMPARE(m_stdoutFile->readAll(), QByteArray("[empty]\n"));
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
listCmd.execute({"ls", m_dbFile->fileName(), "/DoesNotExist/"});
|
listCmd.execute({"ls", m_dbFile->fileName(), "/DoesNotExist/"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -525,14 +525,14 @@ void TestCli::testLocate()
|
||||||
QVERIFY(!locateCmd.name.isEmpty());
|
QVERIFY(!locateCmd.name.isEmpty());
|
||||||
QVERIFY(locateCmd.getDescriptionLine().contains(locateCmd.name));
|
QVERIFY(locateCmd.getDescriptionLine().contains(locateCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
locateCmd.execute({"locate", m_dbFile->fileName(), "Sample"});
|
locateCmd.execute({"locate", m_dbFile->fileName(), "Sample"});
|
||||||
m_stdoutFile->reset();
|
m_stdoutFile->reset();
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
QCOMPARE(m_stdoutFile->readAll(), QByteArray("/Sample Entry\n"));
|
QCOMPARE(m_stdoutFile->readAll(), QByteArray("/Sample Entry\n"));
|
||||||
|
|
||||||
qint64 pos = m_stdoutFile->pos();
|
qint64 pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
locateCmd.execute({"locate", m_dbFile->fileName(), "Does Not Exist"});
|
locateCmd.execute({"locate", m_dbFile->fileName(), "Does Not Exist"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -556,14 +556,14 @@ void TestCli::testLocate()
|
||||||
tmpFile.close();
|
tmpFile.close();
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
locateCmd.execute({"locate", tmpFile.fileName(), "New"});
|
locateCmd.execute({"locate", tmpFile.fileName(), "New"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
QCOMPARE(m_stdoutFile->readAll(), QByteArray("/General/New Entry\n"));
|
QCOMPARE(m_stdoutFile->readAll(), QByteArray("/General/New Entry\n"));
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
locateCmd.execute({"locate", tmpFile.fileName(), "Entry"});
|
locateCmd.execute({"locate", tmpFile.fileName(), "Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -612,7 +612,7 @@ void TestCli::testMerge()
|
||||||
sourceFile.close();
|
sourceFile.close();
|
||||||
|
|
||||||
qint64 pos = m_stdoutFile->pos();
|
qint64 pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
mergeCmd.execute({"merge", "-s", targetFile1.fileName(), sourceFile.fileName()});
|
mergeCmd.execute({"merge", "-s", targetFile1.fileName(), sourceFile.fileName()});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine();
|
m_stdoutFile->readLine();
|
||||||
|
@ -631,8 +631,8 @@ void TestCli::testMerge()
|
||||||
|
|
||||||
// try again with different passwords for both files
|
// try again with different passwords for both files
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("b");
|
Utils::Test::setNextPassword("b");
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
mergeCmd.execute({"merge", targetFile2.fileName(), sourceFile.fileName()});
|
mergeCmd.execute({"merge", targetFile2.fileName(), sourceFile.fileName()});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine();
|
m_stdoutFile->readLine();
|
||||||
|
@ -671,7 +671,7 @@ void TestCli::testRemove()
|
||||||
qint64 pos = m_stdoutFile->pos();
|
qint64 pos = m_stdoutFile->pos();
|
||||||
|
|
||||||
// delete entry and verify
|
// delete entry and verify
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
removeCmd.execute({"rm", m_dbFile->fileName(), "/Sample Entry"});
|
removeCmd.execute({"rm", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -690,7 +690,7 @@ void TestCli::testRemove()
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
|
|
||||||
// try again, this time without recycle bin
|
// try again, this time without recycle bin
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
removeCmd.execute({"rm", fileCopy.fileName(), "/Sample Entry"});
|
removeCmd.execute({"rm", fileCopy.fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -707,7 +707,7 @@ void TestCli::testRemove()
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
|
|
||||||
// finally, try deleting a non-existent entry
|
// finally, try deleting a non-existent entry
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
removeCmd.execute({"rm", fileCopy.fileName(), "/Sample Entry"});
|
removeCmd.execute({"rm", fileCopy.fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -722,7 +722,7 @@ void TestCli::testShow()
|
||||||
QVERIFY(!showCmd.name.isEmpty());
|
QVERIFY(!showCmd.name.isEmpty());
|
||||||
QVERIFY(showCmd.getDescriptionLine().contains(showCmd.name));
|
QVERIFY(showCmd.getDescriptionLine().contains(showCmd.name));
|
||||||
|
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
showCmd.execute({"show", m_dbFile->fileName(), "/Sample Entry"});
|
showCmd.execute({"show", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->reset();
|
m_stdoutFile->reset();
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -733,14 +733,14 @@ void TestCli::testShow()
|
||||||
"Notes: Notes\n"));
|
"Notes: Notes\n"));
|
||||||
|
|
||||||
qint64 pos = m_stdoutFile->pos();
|
qint64 pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
showCmd.execute({"show", "-a", "Title", m_dbFile->fileName(), "/Sample Entry"});
|
showCmd.execute({"show", "-a", "Title", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
QCOMPARE(m_stdoutFile->readAll(), QByteArray("Sample Entry\n"));
|
QCOMPARE(m_stdoutFile->readAll(), QByteArray("Sample Entry\n"));
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
showCmd.execute({"show", "-a", "Title", "-a", "URL", m_dbFile->fileName(), "/Sample Entry"});
|
showCmd.execute({"show", "-a", "Title", "-a", "URL", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
@ -748,7 +748,7 @@ void TestCli::testShow()
|
||||||
"http://www.somesite.com/\n"));
|
"http://www.somesite.com/\n"));
|
||||||
|
|
||||||
pos = m_stdoutFile->pos();
|
pos = m_stdoutFile->pos();
|
||||||
Utils::setNextPassword("a");
|
Utils::Test::setNextPassword("a");
|
||||||
showCmd.execute({"show", "-a", "DoesNotExist", m_dbFile->fileName(), "/Sample Entry"});
|
showCmd.execute({"show", "-a", "DoesNotExist", m_dbFile->fileName(), "/Sample Entry"});
|
||||||
m_stdoutFile->seek(pos);
|
m_stdoutFile->seek(pos);
|
||||||
m_stdoutFile->readLine(); // skip password prompt
|
m_stdoutFile->readLine(); // skip password prompt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue