keepassxc/tests/TestDatabase.cpp

104 lines
3.6 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2017 Vladimir Svyatski <v.unreal@gmail.com>
2017-06-09 21:40:36 +00:00
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
*
* 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 "TestDatabase.h"
#include "TestGlobal.h"
2017-04-22 11:35:01 +00:00
#include <QSignalSpy>
#include <QTemporaryFile>
2017-04-22 11:35:01 +00:00
#include "config-keepassx-tests.h"
#include "core/Metadata.h"
2018-03-31 20:01:30 +00:00
#include "crypto/Crypto.h"
#include "format/KeePass2Writer.h"
2018-03-31 20:01:30 +00:00
#include "keys/PasswordKey.h"
QTEST_GUILESS_MAIN(TestDatabase)
void TestDatabase::initTestCase()
{
QVERIFY(Crypto::init());
}
void TestDatabase::testEmptyRecycleBinOnDisabled()
{
2017-04-22 11:35:01 +00:00
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/RecycleBinDisabled.kdbx");
auto key = QSharedPointer<CompositeKey>::create();
key->addKey(QSharedPointer<PasswordKey>::create("123"));
QScopedPointer<Database> db(Database::openDatabaseFile(filename, key));
2017-04-22 11:35:01 +00:00
QVERIFY(db);
QSignalSpy spyModified(db.data(), SIGNAL(modifiedImmediate()));
2017-04-22 11:35:01 +00:00
db->emptyRecycleBin();
2018-03-31 20:01:30 +00:00
// The database must be unmodified in this test after emptying the recycle bin.
2017-04-22 11:35:01 +00:00
QCOMPARE(spyModified.count(), 0);
}
void TestDatabase::testEmptyRecycleBinOnNotCreated()
{
2017-04-22 11:35:01 +00:00
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/RecycleBinNotYetCreated.kdbx");
auto key = QSharedPointer<CompositeKey>::create();
key->addKey(QSharedPointer<PasswordKey>::create("123"));
QScopedPointer<Database> db(Database::openDatabaseFile(filename, key));
2017-04-22 11:35:01 +00:00
QVERIFY(db);
QSignalSpy spyModified(db.data(), SIGNAL(modifiedImmediate()));
2017-04-22 11:35:01 +00:00
db->emptyRecycleBin();
2018-03-31 20:01:30 +00:00
// The database must be unmodified in this test after emptying the recycle bin.
2017-04-22 11:35:01 +00:00
QCOMPARE(spyModified.count(), 0);
}
void TestDatabase::testEmptyRecycleBinOnEmpty()
{
2017-04-22 11:35:01 +00:00
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/RecycleBinEmpty.kdbx");
auto key = QSharedPointer<CompositeKey>::create();
key->addKey(QSharedPointer<PasswordKey>::create("123"));
QScopedPointer<Database> db(Database::openDatabaseFile(filename, key));
2017-04-22 11:35:01 +00:00
QVERIFY(db);
QSignalSpy spyModified(db.data(), SIGNAL(modifiedImmediate()));
2017-04-22 11:35:01 +00:00
db->emptyRecycleBin();
2018-03-31 20:01:30 +00:00
// The database must be unmodified in this test after emptying the recycle bin.
2017-04-22 11:35:01 +00:00
QCOMPARE(spyModified.count(), 0);
}
void TestDatabase::testEmptyRecycleBinWithHierarchicalData()
{
QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/RecycleBinWithData.kdbx");
auto key = QSharedPointer<CompositeKey>::create();
key->addKey(QSharedPointer<PasswordKey>::create("123"));
QScopedPointer<Database> db(Database::openDatabaseFile(filename, key));
QVERIFY(db);
QFile originalFile(filename);
qint64 initialSize = originalFile.size();
db->emptyRecycleBin();
QVERIFY(db->metadata()->recycleBin());
QVERIFY(db->metadata()->recycleBin()->entries().empty());
QVERIFY(db->metadata()->recycleBin()->children().empty());
QTemporaryFile afterCleanup;
KeePass2Writer writer;
writer.writeDatabase(&afterCleanup, db.data());
QVERIFY(afterCleanup.size() < initialSize);
}