From f15ee904298d62ef5bda0cd8eda9ace45d7288ff Mon Sep 17 00:00:00 2001 From: Carlo Teubner Date: Mon, 18 Apr 2022 18:40:10 +0100 Subject: [PATCH] TestKdbx4Format: use MockClock Otherwise, assertions in TestKdbx4::testCustomData() may fail on rare occasions, because the customData in a cloned entry won't be identical to its original, because of its potentially-updated LastModified property. Originally noticed in https://github.com/keepassxreboot/keepassxc/pull/7783#issuecomment-1101404487. --- tests/TestKdbx4.cpp | 12 ++++++++++++ tests/TestKdbx4.h | 2 ++ 2 files changed, 14 insertions(+) diff --git a/tests/TestKdbx4.cpp b/tests/TestKdbx4.cpp index a40bd1cdf..ff5b63b6d 100644 --- a/tests/TestKdbx4.cpp +++ b/tests/TestKdbx4.cpp @@ -27,6 +27,7 @@ #include "keys/FileKey.h" #include "keys/PasswordKey.h" #include "mock/MockChallengeResponseKey.h" +#include "mock/MockClock.h" #include int main(int argc, char* argv[]) @@ -113,6 +114,17 @@ void TestKdbx4AesKdf::initTestCaseImpl() } Q_DECLARE_METATYPE(QUuid) + +void TestKdbx4Format::init() +{ + MockClock::setup(new MockClock()); +} + +void TestKdbx4Format::cleanup() +{ + MockClock::teardown(); +} + void TestKdbx4Format::testFormat400() { QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/Format400.kdbx"); diff --git a/tests/TestKdbx4.h b/tests/TestKdbx4.h index 5d7f6cc50..0955fcb60 100644 --- a/tests/TestKdbx4.h +++ b/tests/TestKdbx4.h @@ -56,6 +56,8 @@ class TestKdbx4Format : public QObject Q_OBJECT private slots: + void init(); + void cleanup(); void testFormat400(); void testFormat400Upgrade(); void testFormat400Upgrade_data();