2018-05-14 15:26:26 -04:00
|
|
|
/*
|
2021-09-06 11:38:25 -04:00
|
|
|
* Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
|
2018-05-14 15:26:26 -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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "TestTools.h"
|
|
|
|
|
2021-11-07 17:41:17 -05:00
|
|
|
#include "core/Clock.h"
|
|
|
|
|
2021-12-30 09:19:07 -05:00
|
|
|
#include <QRegularExpression>
|
2018-05-14 15:26:26 -04:00
|
|
|
#include <QTest>
|
2021-11-24 22:36:31 -05:00
|
|
|
#include <QUuid>
|
2018-05-14 15:26:26 -04:00
|
|
|
|
|
|
|
QTEST_GUILESS_MAIN(TestTools)
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
QString createDecimal(QString wholes, QString fractions, QString unit)
|
|
|
|
{
|
|
|
|
return wholes + QLocale().decimalPoint() + fractions + " " + unit;
|
|
|
|
}
|
2018-10-31 23:27:38 -04:00
|
|
|
} // namespace
|
2018-05-14 15:26:26 -04:00
|
|
|
|
|
|
|
void TestTools::testHumanReadableFileSize()
|
|
|
|
{
|
|
|
|
constexpr auto kibibyte = 1024u;
|
|
|
|
using namespace Tools;
|
|
|
|
|
|
|
|
QCOMPARE(createDecimal("1", "00", "B"), humanReadableFileSize(1));
|
|
|
|
QCOMPARE(createDecimal("1", "00", "KiB"), humanReadableFileSize(kibibyte));
|
|
|
|
QCOMPARE(createDecimal("1", "00", "MiB"), humanReadableFileSize(kibibyte * kibibyte));
|
|
|
|
QCOMPARE(createDecimal("1", "00", "GiB"), humanReadableFileSize(kibibyte * kibibyte * kibibyte));
|
|
|
|
|
|
|
|
QCOMPARE(QString("100 B"), humanReadableFileSize(100, 0));
|
|
|
|
QCOMPARE(createDecimal("1", "10", "KiB"), humanReadableFileSize(kibibyte + 100));
|
|
|
|
QCOMPARE(createDecimal("1", "001", "KiB"), humanReadableFileSize(kibibyte + 1, 3));
|
|
|
|
QCOMPARE(createDecimal("15", "00", "KiB"), humanReadableFileSize(kibibyte * 15));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestTools::testIsHex()
|
|
|
|
{
|
|
|
|
QVERIFY(Tools::isHex("0123456789abcdefABCDEF"));
|
2021-10-09 11:22:44 -04:00
|
|
|
QVERIFY(!Tools::isHex(QByteArray("0xnothex")));
|
2018-05-14 15:26:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestTools::testIsBase64()
|
|
|
|
{
|
|
|
|
QVERIFY(Tools::isBase64(QByteArray("1234")));
|
|
|
|
QVERIFY(Tools::isBase64(QByteArray("123=")));
|
|
|
|
QVERIFY(Tools::isBase64(QByteArray("12==")));
|
|
|
|
QVERIFY(Tools::isBase64(QByteArray("abcd9876MN==")));
|
|
|
|
QVERIFY(Tools::isBase64(QByteArray("abcd9876DEFGhijkMNO=")));
|
2019-03-25 08:40:55 -04:00
|
|
|
QVERIFY(Tools::isBase64(QByteArray("abcd987/DEFGh+jk/NO=")));
|
2021-10-09 11:22:44 -04:00
|
|
|
QVERIFY(!Tools::isBase64(QByteArray("abcd123==")));
|
|
|
|
QVERIFY(!Tools::isBase64(QByteArray("abc_")));
|
|
|
|
QVERIFY(!Tools::isBase64(QByteArray("123")));
|
2018-05-14 15:26:26 -04:00
|
|
|
}
|
2019-11-02 05:25:13 -04:00
|
|
|
|
|
|
|
void TestTools::testEnvSubstitute()
|
|
|
|
{
|
|
|
|
QProcessEnvironment environment;
|
|
|
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
environment.insert("HOMEDRIVE", "C:");
|
|
|
|
environment.insert("HOMEPATH", "\\Users\\User");
|
2020-07-17 12:36:24 -04:00
|
|
|
environment.insert("USERPROFILE", "C:\\Users\\User");
|
2019-11-02 05:25:13 -04:00
|
|
|
|
|
|
|
QCOMPARE(Tools::envSubstitute("%HOMEDRIVE%%HOMEPATH%\\.ssh\\id_rsa", environment),
|
|
|
|
QString("C:\\Users\\User\\.ssh\\id_rsa"));
|
|
|
|
QCOMPARE(Tools::envSubstitute("start%EMPTY%%EMPTY%%%HOMEDRIVE%%end", environment), QString("start%C:%end"));
|
2020-07-17 12:36:24 -04:00
|
|
|
QCOMPARE(Tools::envSubstitute("%USERPROFILE%\\.ssh\\id_rsa", environment),
|
|
|
|
QString("C:\\Users\\User\\.ssh\\id_rsa"));
|
|
|
|
QCOMPARE(Tools::envSubstitute("~\\.ssh\\id_rsa", environment), QString("C:\\Users\\User\\.ssh\\id_rsa"));
|
2019-11-02 05:25:13 -04:00
|
|
|
#else
|
|
|
|
environment.insert("HOME", QString("/home/user"));
|
|
|
|
environment.insert("USER", QString("user"));
|
|
|
|
|
|
|
|
QCOMPARE(Tools::envSubstitute("~/.ssh/id_rsa", environment), QString("/home/user/.ssh/id_rsa"));
|
|
|
|
QCOMPARE(Tools::envSubstitute("$HOME/.ssh/id_rsa", environment), QString("/home/user/.ssh/id_rsa"));
|
|
|
|
QCOMPARE(Tools::envSubstitute("start/$EMPTY$$EMPTY$HOME/end", environment), QString("start/$/home/user/end"));
|
|
|
|
#endif
|
|
|
|
}
|
2021-09-06 11:38:25 -04:00
|
|
|
|
|
|
|
void TestTools::testValidUuid()
|
|
|
|
{
|
|
|
|
auto validUuid = Tools::uuidToHex(QUuid::createUuid());
|
2021-10-09 11:22:44 -04:00
|
|
|
auto nonRfc4122Uuid = "1234567890abcdef1234567890abcdef";
|
2021-09-06 11:38:25 -04:00
|
|
|
auto emptyUuid = QString();
|
|
|
|
auto shortUuid = validUuid.left(10);
|
|
|
|
auto longUuid = validUuid + "baddata";
|
|
|
|
auto nonHexUuid = Tools::uuidToHex(QUuid::createUuid()).replace(0, 1, 'p');
|
|
|
|
|
|
|
|
QVERIFY(Tools::isValidUuid(validUuid));
|
2021-10-09 11:22:44 -04:00
|
|
|
/* Before https://github.com/keepassxreboot/keepassxc/pull/1770/, entry
|
|
|
|
* UUIDs are simply random 16-byte strings. Such older entries should be
|
|
|
|
* accepted as well. */
|
|
|
|
QVERIFY(Tools::isValidUuid(nonRfc4122Uuid));
|
|
|
|
QVERIFY(!Tools::isValidUuid(emptyUuid));
|
|
|
|
QVERIFY(!Tools::isValidUuid(shortUuid));
|
|
|
|
QVERIFY(!Tools::isValidUuid(longUuid));
|
|
|
|
QVERIFY(!Tools::isValidUuid(nonHexUuid));
|
2021-09-06 11:38:25 -04:00
|
|
|
}
|
2021-11-07 17:41:17 -05:00
|
|
|
|
|
|
|
void TestTools::testBackupFilePatternSubstitution_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("pattern");
|
|
|
|
QTest::addColumn<QString>("dbFilePath");
|
|
|
|
QTest::addColumn<QString>("expectedSubstitution");
|
|
|
|
|
|
|
|
static const auto DEFAULT_DB_FILE_NAME = QStringLiteral("KeePassXC");
|
|
|
|
static const auto DEFAULT_DB_FILE_PATH = QStringLiteral("/tmp/") + DEFAULT_DB_FILE_NAME + QStringLiteral(".kdbx");
|
|
|
|
static const auto NOW = Clock::currentDateTime();
|
|
|
|
auto DEFAULT_FORMATTED_TIME = NOW.toString("dd_MM_yyyy_hh-mm-ss");
|
|
|
|
|
|
|
|
QTest::newRow("Null pattern") << QString() << DEFAULT_DB_FILE_PATH << QString();
|
|
|
|
QTest::newRow("Empty pattern") << QString("") << DEFAULT_DB_FILE_PATH << QString("");
|
|
|
|
QTest::newRow("Null database path") << "valid_pattern" << QString() << QString();
|
|
|
|
QTest::newRow("Empty database path") << "valid_pattern" << QString("") << QString();
|
|
|
|
QTest::newRow("Unclosed/invalid pattern") << "{DB_FILENAME" << DEFAULT_DB_FILE_PATH << "{DB_FILENAME";
|
|
|
|
QTest::newRow("Unknown pattern") << "{NO_MATCH}" << DEFAULT_DB_FILE_PATH << "{NO_MATCH}";
|
|
|
|
QTest::newRow("Do not replace escaped patterns (filename)")
|
|
|
|
<< "\\{DB_FILENAME\\}" << DEFAULT_DB_FILE_PATH << "{DB_FILENAME}";
|
|
|
|
QTest::newRow("Do not replace escaped patterns (time)")
|
|
|
|
<< "\\{TIME:dd.MM.yyyy\\}" << DEFAULT_DB_FILE_PATH << "{TIME:dd.MM.yyyy}";
|
|
|
|
QTest::newRow("Multiple patterns should be replaced")
|
|
|
|
<< "{DB_FILENAME} {TIME} {DB_FILENAME}" << DEFAULT_DB_FILE_PATH
|
|
|
|
<< DEFAULT_DB_FILE_NAME + QStringLiteral(" ") + DEFAULT_FORMATTED_TIME + QStringLiteral(" ")
|
|
|
|
+ DEFAULT_DB_FILE_NAME;
|
|
|
|
QTest::newRow("Default time pattern") << "{TIME}" << DEFAULT_DB_FILE_PATH << DEFAULT_FORMATTED_TIME;
|
|
|
|
QTest::newRow("Default time pattern (empty formatter)")
|
|
|
|
<< "{TIME:}" << DEFAULT_DB_FILE_PATH << DEFAULT_FORMATTED_TIME;
|
|
|
|
QTest::newRow("Custom time pattern") << "{TIME:dd-ss}" << DEFAULT_DB_FILE_PATH << NOW.toString("dd-ss");
|
|
|
|
QTest::newRow("Invalid custom time pattern") << "{TIME:dd/-ss}" << DEFAULT_DB_FILE_PATH << NOW.toString("dd/-ss");
|
|
|
|
QTest::newRow("Recursive substitution") << "{TIME:'{TIME}'}" << DEFAULT_DB_FILE_PATH << DEFAULT_FORMATTED_TIME;
|
|
|
|
QTest::newRow("{DB_FILENAME} substitution")
|
|
|
|
<< "some {DB_FILENAME} thing" << DEFAULT_DB_FILE_PATH
|
|
|
|
<< QStringLiteral("some ") + DEFAULT_DB_FILE_NAME + QStringLiteral(" thing");
|
|
|
|
QTest::newRow("{DB_FILENAME} substitution with multiple extensions") << "some {DB_FILENAME} thing"
|
|
|
|
<< "/tmp/KeePassXC.kdbx.ext"
|
|
|
|
<< "some KeePassXC.kdbx thing";
|
|
|
|
// Not relevant right now, added test anyway
|
|
|
|
QTest::newRow("There should be no substitution loops") << "{DB_FILENAME}"
|
|
|
|
<< "{TIME:'{DB_FILENAME}'}.ext"
|
|
|
|
<< "{DB_FILENAME}";
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestTools::testBackupFilePatternSubstitution()
|
|
|
|
{
|
|
|
|
QFETCH(QString, pattern);
|
|
|
|
QFETCH(QString, dbFilePath);
|
|
|
|
QFETCH(QString, expectedSubstitution);
|
|
|
|
|
|
|
|
QCOMPARE(Tools::substituteBackupFilePath(pattern, dbFilePath), expectedSubstitution);
|
|
|
|
}
|
2021-12-30 09:19:07 -05:00
|
|
|
|
2022-05-21 10:21:33 -04:00
|
|
|
void TestTools::testEscapeRegex_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("input");
|
|
|
|
QTest::addColumn<QString>("expected");
|
|
|
|
|
|
|
|
QString all_regular_characters = "0123456789";
|
|
|
|
for (char c = 'a'; c != 'z'; ++c) {
|
|
|
|
all_regular_characters += QChar::fromLatin1(c);
|
|
|
|
}
|
|
|
|
for (char c = 'A'; c != 'Z'; ++c) {
|
|
|
|
all_regular_characters += QChar::fromLatin1(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTest::newRow("Regular characters should not be escaped") << all_regular_characters << all_regular_characters;
|
|
|
|
QTest::newRow("Special characters should be escaped") << R"(.^$*+-?()[]{}|\)"
|
|
|
|
<< R"(\.\^\$\*\+\-\?\(\)\[\]\{\}\|\\)";
|
|
|
|
QTest::newRow("Null character") << QString::fromLatin1("ab\0c", 4) << "ab\\0c";
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestTools::testEscapeRegex()
|
|
|
|
{
|
|
|
|
QFETCH(QString, input);
|
|
|
|
QFETCH(QString, expected);
|
|
|
|
|
|
|
|
auto actual = Tools::escapeRegex(input);
|
|
|
|
QCOMPARE(actual, expected);
|
|
|
|
}
|
|
|
|
|
2021-12-30 09:19:07 -05:00
|
|
|
void TestTools::testConvertToRegex()
|
|
|
|
{
|
|
|
|
QFETCH(QString, input);
|
|
|
|
QFETCH(int, options);
|
|
|
|
QFETCH(QString, expected);
|
|
|
|
|
|
|
|
auto regex = Tools::convertToRegex(input, options).pattern();
|
|
|
|
QCOMPARE(regex, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestTools::testConvertToRegex_data()
|
|
|
|
{
|
|
|
|
const QString input = R"(te|st*t?[5]^(test);',.)";
|
|
|
|
|
|
|
|
QTest::addColumn<QString>("input");
|
|
|
|
QTest::addColumn<int>("options");
|
|
|
|
QTest::addColumn<QString>("expected");
|
|
|
|
|
|
|
|
QTest::newRow("No Options") << input << static_cast<int>(Tools::RegexConvertOpts::DEFAULT)
|
|
|
|
<< QString(R"(te|st*t?[5]^(test);',.)");
|
2022-05-21 10:21:33 -04:00
|
|
|
// Escape regex
|
|
|
|
QTest::newRow("Escape Regex") << input << static_cast<int>(Tools::RegexConvertOpts::ESCAPE_REGEX)
|
|
|
|
<< Tools::escapeRegex(input);
|
|
|
|
QTest::newRow("Escape Regex and exact match")
|
|
|
|
<< input << static_cast<int>(Tools::RegexConvertOpts::ESCAPE_REGEX | Tools::RegexConvertOpts::EXACT_MATCH)
|
|
|
|
<< "^(?:" + Tools::escapeRegex(input) + ")$";
|
|
|
|
|
|
|
|
// Exact match does not escape the pattern
|
2021-12-30 09:19:07 -05:00
|
|
|
QTest::newRow("Exact Match") << input << static_cast<int>(Tools::RegexConvertOpts::EXACT_MATCH)
|
2022-05-21 10:21:33 -04:00
|
|
|
<< QString(R"(^(?:te|st*t?[5]^(test);',.)$)");
|
|
|
|
|
|
|
|
// Exact match with improper regex
|
|
|
|
QTest::newRow("Exact Match") << ")av(" << static_cast<int>(Tools::RegexConvertOpts::EXACT_MATCH)
|
|
|
|
<< QString(R"(^(?:)av()$)");
|
|
|
|
|
2021-12-30 09:19:07 -05:00
|
|
|
QTest::newRow("Exact Match & Wildcard")
|
|
|
|
<< input << static_cast<int>(Tools::RegexConvertOpts::EXACT_MATCH | Tools::RegexConvertOpts::WILDCARD_ALL)
|
2022-05-21 10:21:33 -04:00
|
|
|
<< QString(R"(^(?:te|st.*t.\[5\]\^\(test\)\;\'\,\.)$)");
|
2021-12-30 09:19:07 -05:00
|
|
|
QTest::newRow("Wildcard Single Match") << input << static_cast<int>(Tools::RegexConvertOpts::WILDCARD_SINGLE_MATCH)
|
2022-05-21 10:21:33 -04:00
|
|
|
<< QString(R"(te\|st\*t.\[5\]\^\(test\)\;\'\,\.)");
|
2021-12-30 09:19:07 -05:00
|
|
|
QTest::newRow("Wildcard OR") << input << static_cast<int>(Tools::RegexConvertOpts::WILDCARD_LOGICAL_OR)
|
2022-05-21 10:21:33 -04:00
|
|
|
<< QString(R"(te|st\*t\?\[5\]\^\(test\)\;\'\,\.)");
|
2021-12-30 09:19:07 -05:00
|
|
|
QTest::newRow("Wildcard Unlimited Match")
|
|
|
|
<< input << static_cast<int>(Tools::RegexConvertOpts::WILDCARD_UNLIMITED_MATCH)
|
2022-05-21 10:21:33 -04:00
|
|
|
<< QString(R"(te\|st.*t\?\[5\]\^\(test\)\;\'\,\.)");
|
2021-12-30 09:19:07 -05:00
|
|
|
}
|