2010-09-19 18:16:30 -04:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-11-21 17:06:30 -05:00
|
|
|
#include "TestKeePass2Reader.h"
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QTest>
|
2010-09-19 18:16:30 -04:00
|
|
|
|
|
|
|
#include "config-keepassx-tests.h"
|
|
|
|
#include "core/Database.h"
|
2011-07-08 07:57:02 -04:00
|
|
|
#include "core/Group.h"
|
2010-09-19 18:16:30 -04:00
|
|
|
#include "core/Metadata.h"
|
|
|
|
#include "crypto/Crypto.h"
|
|
|
|
#include "format/KeePass2Reader.h"
|
|
|
|
#include "keys/PasswordKey.h"
|
|
|
|
|
2014-05-16 06:32:52 -04:00
|
|
|
QTEST_GUILESS_MAIN(TestKeePass2Reader)
|
|
|
|
|
2010-09-19 18:16:30 -04:00
|
|
|
void TestKeePass2Reader::initTestCase()
|
|
|
|
{
|
2014-06-15 05:17:40 -04:00
|
|
|
QVERIFY(Crypto::init());
|
2010-09-19 18:16:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestKeePass2Reader::testNonAscii()
|
|
|
|
{
|
2011-11-20 05:10:01 -05:00
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/NonAscii.kdbx");
|
2010-09-19 18:16:30 -04:00
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey(QString::fromUtf8("\xce\x94\xc3\xb6\xd8\xb6")));
|
2012-04-22 17:09:52 -04:00
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
2010-09-19 18:16:30 -04:00
|
|
|
QVERIFY(db);
|
2012-04-22 17:09:52 -04:00
|
|
|
QVERIFY(!reader.hasError());
|
2010-09-19 18:16:30 -04:00
|
|
|
QCOMPARE(db->metadata()->name(), QString("NonAsciiTest"));
|
2012-09-25 16:33:36 -04:00
|
|
|
QCOMPARE(db->compressionAlgo(), Database::CompressionNone);
|
2011-06-29 12:40:26 -04:00
|
|
|
|
|
|
|
delete db;
|
2010-09-19 18:16:30 -04:00
|
|
|
}
|
|
|
|
|
2010-09-23 16:27:59 -04:00
|
|
|
void TestKeePass2Reader::testCompressed()
|
|
|
|
{
|
2011-11-20 05:10:01 -05:00
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/Compressed.kdbx");
|
2010-09-23 16:27:59 -04:00
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey(""));
|
2012-04-22 17:09:52 -04:00
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
2010-09-23 16:27:59 -04:00
|
|
|
QVERIFY(db);
|
2012-04-22 17:09:52 -04:00
|
|
|
QVERIFY(!reader.hasError());
|
2010-09-23 16:27:59 -04:00
|
|
|
QCOMPARE(db->metadata()->name(), QString("Compressed"));
|
2012-09-25 16:33:36 -04:00
|
|
|
QCOMPARE(db->compressionAlgo(), Database::CompressionGZip);
|
2011-06-29 12:40:26 -04:00
|
|
|
|
|
|
|
delete db;
|
2010-09-23 16:27:59 -04:00
|
|
|
}
|
|
|
|
|
2011-07-06 18:15:52 -04:00
|
|
|
void TestKeePass2Reader::testProtectedStrings()
|
|
|
|
{
|
2011-11-20 05:10:01 -05:00
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/ProtectedStrings.kdbx");
|
2011-07-06 18:15:52 -04:00
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey("masterpw"));
|
2012-04-22 17:09:52 -04:00
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
2011-07-06 18:15:52 -04:00
|
|
|
QVERIFY(db);
|
2012-04-22 17:09:52 -04:00
|
|
|
QVERIFY(!reader.hasError());
|
2011-07-06 18:15:52 -04:00
|
|
|
QCOMPARE(db->metadata()->name(), QString("Protected Strings Test"));
|
|
|
|
|
|
|
|
Entry* entry = db->rootGroup()->entries().at(0);
|
|
|
|
|
|
|
|
QCOMPARE(entry->title(), QString("Sample Entry"));
|
|
|
|
QCOMPARE(entry->username(), QString("Protected User Name"));
|
|
|
|
QCOMPARE(entry->password(), QString("ProtectedPassword"));
|
2012-04-14 09:38:20 -04:00
|
|
|
QCOMPARE(entry->attributes()->value("TestProtected"), QString("ABC"));
|
|
|
|
QCOMPARE(entry->attributes()->value("TestUnprotected"), QString("DEF"));
|
2011-07-06 18:15:52 -04:00
|
|
|
|
|
|
|
QVERIFY(db->metadata()->protectPassword());
|
2012-04-14 09:38:20 -04:00
|
|
|
QVERIFY(entry->attributes()->isProtected("TestProtected"));
|
|
|
|
QVERIFY(!entry->attributes()->isProtected("TestUnprotected"));
|
2011-07-06 18:15:52 -04:00
|
|
|
|
|
|
|
delete db;
|
|
|
|
}
|
|
|
|
|
2012-09-25 16:33:36 -04:00
|
|
|
void TestKeePass2Reader::testBrokenHeaderHash()
|
|
|
|
{
|
|
|
|
// The protected stream key has been modified in the header.
|
|
|
|
// Make sure the database won't open.
|
|
|
|
|
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/BrokenHeaderHash.kdbx");
|
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey(""));
|
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
|
|
|
QVERIFY(!db);
|
|
|
|
QVERIFY(reader.hasError());
|
|
|
|
|
|
|
|
delete db;
|
|
|
|
}
|
|
|
|
|
2012-04-21 10:45:46 -04:00
|
|
|
void TestKeePass2Reader::testFormat200()
|
|
|
|
{
|
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/Format200.kdbx");
|
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey("a"));
|
2012-04-22 17:09:52 -04:00
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
2012-04-21 10:45:46 -04:00
|
|
|
QVERIFY(db);
|
2012-04-22 17:09:52 -04:00
|
|
|
QVERIFY(!reader.hasError());
|
2012-04-21 10:45:46 -04:00
|
|
|
|
|
|
|
QCOMPARE(db->rootGroup()->name(), QString("Format200"));
|
|
|
|
QVERIFY(!db->metadata()->protectTitle());
|
|
|
|
QVERIFY(db->metadata()->protectUsername());
|
|
|
|
QVERIFY(!db->metadata()->protectPassword());
|
|
|
|
QVERIFY(db->metadata()->protectUrl());
|
|
|
|
QVERIFY(!db->metadata()->protectNotes());
|
|
|
|
|
|
|
|
QCOMPARE(db->rootGroup()->entries().size(), 1);
|
|
|
|
Entry* entry = db->rootGroup()->entries().at(0);
|
|
|
|
|
|
|
|
QCOMPARE(entry->title(), QString("Sample Entry"));
|
|
|
|
QCOMPARE(entry->username(), QString("User Name"));
|
|
|
|
QCOMPARE(entry->attachments()->keys().size(), 2);
|
|
|
|
QCOMPARE(entry->attachments()->value("myattach.txt"), QByteArray("abcdefghijk"));
|
|
|
|
QCOMPARE(entry->attachments()->value("test.txt"), QByteArray("this is a test"));
|
|
|
|
|
|
|
|
QCOMPARE(entry->historyItems().size(), 2);
|
|
|
|
QCOMPARE(entry->historyItems().at(0)->attachments()->keys().size(), 0);
|
|
|
|
QCOMPARE(entry->historyItems().at(1)->attachments()->keys().size(), 1);
|
|
|
|
QCOMPARE(entry->historyItems().at(1)->attachments()->value("myattach.txt"), QByteArray("abcdefghijk"));
|
2012-04-22 17:09:52 -04:00
|
|
|
|
|
|
|
delete db;
|
2012-04-21 10:45:46 -04:00
|
|
|
}
|
|
|
|
|
2012-09-25 16:33:36 -04:00
|
|
|
void TestKeePass2Reader::testFormat300()
|
|
|
|
{
|
|
|
|
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/Format300.kdbx");
|
|
|
|
CompositeKey key;
|
|
|
|
key.addKey(PasswordKey("a"));
|
|
|
|
KeePass2Reader reader;
|
|
|
|
Database* db = reader.readDatabase(filename, key);
|
|
|
|
QVERIFY(db);
|
|
|
|
QVERIFY(!reader.hasError());
|
|
|
|
|
|
|
|
QCOMPARE(db->rootGroup()->name(), QString("Format300"));
|
|
|
|
QCOMPARE(db->metadata()->name(), QString("Test Database Format 0x00030000"));
|
|
|
|
|
|
|
|
delete db;
|
|
|
|
}
|