From ac60f7ce707fdf406173ee68dac37b6465b37b0b Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Sat, 12 Nov 2011 20:00:19 +0100 Subject: [PATCH] Add missing crypto initalization in tests. --- tests/TestGroup.cpp | 2 ++ tests/TestHashedBlockStream.cpp | 6 ++++++ tests/TestHashedBlockStream.h | 1 + tests/TestKeePass2RandomStream.cpp | 8 +++++++- tests/TestKeePass2RandomStream.h | 1 + 5 files changed, 17 insertions(+), 1 deletion(-) diff --git a/tests/TestGroup.cpp b/tests/TestGroup.cpp index 0c89652d8..dbcc050d8 100644 --- a/tests/TestGroup.cpp +++ b/tests/TestGroup.cpp @@ -23,10 +23,12 @@ #include "core/Database.h" #include "core/Group.h" +#include "crypto/Crypto.h" void TestGroup::initTestCase() { qRegisterMetaType("Group*"); + Crypto::init(); } void TestGroup::testParenting() diff --git a/tests/TestHashedBlockStream.cpp b/tests/TestHashedBlockStream.cpp index a8aedc883..b15e7870c 100644 --- a/tests/TestHashedBlockStream.cpp +++ b/tests/TestHashedBlockStream.cpp @@ -20,8 +20,14 @@ #include #include +#include "crypto/Crypto.h" #include "streams/HashedBlockStream.h" +void TestHashedBlockStream::initTestCase() +{ + Crypto::init(); +} + void TestHashedBlockStream::testWriteRead() { QByteArray data = QByteArray::fromHex("603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4"); diff --git a/tests/TestHashedBlockStream.h b/tests/TestHashedBlockStream.h index b952908bf..e3c6f36aa 100644 --- a/tests/TestHashedBlockStream.h +++ b/tests/TestHashedBlockStream.h @@ -25,6 +25,7 @@ class TestHashedBlockStream : public QObject Q_OBJECT private Q_SLOTS: + void initTestCase(); void testWriteRead(); }; diff --git a/tests/TestKeePass2RandomStream.cpp b/tests/TestKeePass2RandomStream.cpp index 58a246642..af71df863 100644 --- a/tests/TestKeePass2RandomStream.cpp +++ b/tests/TestKeePass2RandomStream.cpp @@ -17,12 +17,18 @@ #include "TestKeePass2RandomStream.h" +#include + +#include "crypto/Crypto.h" #include "crypto/CryptoHash.h" #include "crypto/SymmetricCipher.h" #include "format/KeePass2.h" #include "format/KeePass2RandomStream.h" -#include +void TestKeePass2RandomStream::initTestCase() +{ + Crypto::init(); +} void TestKeePass2RandomStream::test() { diff --git a/tests/TestKeePass2RandomStream.h b/tests/TestKeePass2RandomStream.h index d27734f85..f323dfb06 100644 --- a/tests/TestKeePass2RandomStream.h +++ b/tests/TestKeePass2RandomStream.h @@ -25,6 +25,7 @@ class TestKeePass2RandomStream : public QObject Q_OBJECT private Q_SLOTS: + void initTestCase(); void test(); };