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