2018-09-29 13:00:47 -04:00
|
|
|
/*
|
2019-08-30 22:50:32 -04:00
|
|
|
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
|
2018-09-29 13:00:47 -04:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEEPASSXC_TESTCLI_H
|
|
|
|
#define KEEPASSXC_TESTCLI_H
|
|
|
|
|
2020-05-11 07:31:29 -04:00
|
|
|
#include <QBuffer>
|
2018-09-29 13:00:47 -04:00
|
|
|
#include <QScopedPointer>
|
2019-06-24 18:03:42 -04:00
|
|
|
#include <QSharedPointer>
|
2020-05-11 07:31:29 -04:00
|
|
|
#include <QStringList>
|
2018-10-31 23:27:38 -04:00
|
|
|
#include <QTest>
|
2019-06-24 18:03:42 -04:00
|
|
|
|
2020-05-11 07:31:29 -04:00
|
|
|
#include "util/TemporaryFile.h"
|
|
|
|
|
|
|
|
class Command;
|
|
|
|
class Database;
|
2018-09-29 13:00:47 -04:00
|
|
|
|
|
|
|
class TestCli : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
2020-05-11 07:31:29 -04:00
|
|
|
QSharedPointer<Database>
|
|
|
|
readDatabase(const QString& filename = {}, const QString& pw = {}, const QString& keyfile = {});
|
|
|
|
int execCmd(Command& cmd, const QStringList& args) const;
|
|
|
|
bool isTotp(const QString& value);
|
|
|
|
void setInput(const QString& input);
|
|
|
|
void setInput(const QStringList& input);
|
2018-09-29 13:00:47 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
|
2019-09-13 09:49:03 -04:00
|
|
|
void testBatchCommands();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testAdd();
|
2019-09-12 11:08:28 -04:00
|
|
|
void testAddGroup();
|
2019-06-24 18:03:42 -04:00
|
|
|
void testAnalyze();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testClip();
|
2019-09-13 09:49:03 -04:00
|
|
|
void testCommandParsing_data();
|
|
|
|
void testCommandParsing();
|
2018-12-19 23:10:46 -05:00
|
|
|
void testCreate();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testDiceware();
|
|
|
|
void testEdit();
|
|
|
|
void testEstimate_data();
|
|
|
|
void testEstimate();
|
2019-06-16 21:33:13 -04:00
|
|
|
void testExport();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testGenerate_data();
|
|
|
|
void testGenerate();
|
2019-10-14 08:37:26 -04:00
|
|
|
void testImport();
|
2020-01-26 23:44:31 -05:00
|
|
|
void testInfo();
|
2019-03-24 08:51:40 -04:00
|
|
|
void testKeyFileOption();
|
|
|
|
void testNoPasswordOption();
|
2019-09-13 09:49:03 -04:00
|
|
|
void testHelp();
|
|
|
|
void testInteractiveCommands();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testList();
|
|
|
|
void testLocate();
|
|
|
|
void testMerge();
|
2019-12-21 09:46:01 -05:00
|
|
|
void testMergeWithKeys();
|
2019-09-12 11:08:28 -04:00
|
|
|
void testMove();
|
2019-09-13 09:49:03 -04:00
|
|
|
void testOpen();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testRemove();
|
2019-09-12 11:08:28 -04:00
|
|
|
void testRemoveGroup();
|
2018-11-28 11:24:12 -05:00
|
|
|
void testRemoveQuiet();
|
2018-09-29 13:00:47 -04:00
|
|
|
void testShow();
|
2019-09-03 08:50:44 -04:00
|
|
|
void testInvalidDbFiles();
|
2019-09-21 12:31:44 -04:00
|
|
|
void testYubiKeyOption();
|
2018-09-29 13:00:47 -04:00
|
|
|
|
|
|
|
private:
|
2018-10-19 14:10:37 -04:00
|
|
|
QScopedPointer<TemporaryFile> m_dbFile;
|
2018-11-09 21:58:42 -05:00
|
|
|
QScopedPointer<TemporaryFile> m_dbFile2;
|
2020-07-25 00:09:36 -04:00
|
|
|
QScopedPointer<TemporaryFile> m_dbFileMulti;
|
2019-10-14 08:37:26 -04:00
|
|
|
QScopedPointer<TemporaryFile> m_xmlFile;
|
2019-03-24 08:51:40 -04:00
|
|
|
QScopedPointer<TemporaryFile> m_keyFileProtectedDbFile;
|
|
|
|
QScopedPointer<TemporaryFile> m_keyFileProtectedNoPasswordDbFile;
|
2019-09-21 12:31:44 -04:00
|
|
|
QScopedPointer<TemporaryFile> m_yubiKeyProtectedDbFile;
|
2020-05-11 07:31:29 -04:00
|
|
|
|
|
|
|
QScopedPointer<QBuffer> m_stdout;
|
|
|
|
QScopedPointer<QBuffer> m_stderr;
|
|
|
|
QScopedPointer<QBuffer> m_stdin;
|
2018-09-29 13:00:47 -04:00
|
|
|
};
|
|
|
|
|
2018-10-31 23:27:38 -04:00
|
|
|
#endif // KEEPASSXC_TESTCLI_H
|