Add unit test TestKeePass2Reader.

This commit is contained in:
Felix Geyer 2010-09-20 00:16:30 +02:00
parent 8835565fe3
commit 537ffafefd
6 changed files with 70 additions and 0 deletions

View File

@ -74,6 +74,7 @@ Database* KeePass2Reader::readDatabase(QIODevice* device, const CompositeKey& ke
if (realStart != m_streamStartBytes) {
raiseError("4");
return 0;
}
HashedBlockStream hashedStream(&cipherStream);

View File

@ -19,6 +19,15 @@
#include "crypto/CryptoHash.h"
PasswordKey::PasswordKey()
{
}
PasswordKey::PasswordKey(const QString& password)
{
setPassword(password);
}
QByteArray PasswordKey::rawKey() const
{
return m_key;

View File

@ -25,6 +25,8 @@
class PasswordKey : public Key
{
public:
PasswordKey();
PasswordKey(const QString& password);
QByteArray rawKey() const;
void setPassword(const QString& password);
PasswordKey* clone() const;

View File

@ -71,6 +71,9 @@ target_link_libraries( testgroup keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_L
add_unit_test( testkeepass2xmlreader TestKeePass2XmlReader.cpp )
target_link_libraries( testkeepass2xmlreader keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTTEST_LIBRARY} ${LIBGCRYPT_LIBS} )
add_unit_test( testkeepass2reader TestKeePass2Reader.cpp )
target_link_libraries( testkeepass2reader keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTTEST_LIBRARY} ${LIBGCRYPT_LIBS} )
add_unit_test( testgroupmodel TestGroupModel.cpp modeltest.cpp )
target_link_libraries( testgroupmodel keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTTEST_LIBRARY} ${LIBGCRYPT_LIBS} )

BIN
tests/NonAscii.kdbx Normal file

Binary file not shown.

View File

@ -0,0 +1,55 @@
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
*
* 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 <QtTest/QTest>
#include "config-keepassx-tests.h"
#include "core/Database.h"
#include "core/Metadata.h"
#include "crypto/Crypto.h"
#include "format/KeePass2Reader.h"
#include "keys/PasswordKey.h"
class TestKeePass2Reader : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void testNonAscii();
};
void TestKeePass2Reader::initTestCase()
{
Crypto::init();
}
void TestKeePass2Reader::testNonAscii()
{
QString filename = QString(KEEPASSX_TEST_DIR).append("/NonAscii.kdbx");
CompositeKey key;
key.addKey(PasswordKey(QString::fromUtf8("\xce\x94\xc3\xb6\xd8\xb6")));
KeePass2Reader* reader = new KeePass2Reader();
Database* db = reader->readDatabase(filename, key);
QVERIFY(db);
QVERIFY(!reader->error());
QCOMPARE(db->metadata()->name(), QString("NonAsciiTest"));
}
QTEST_MAIN(TestKeePass2Reader);
#include "TestKeePass2Reader.moc"