2018-10-01 10:26:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 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 "TestSharing.h"
|
|
|
|
#include "TestGlobal.h"
|
|
|
|
#include "stub/TestRandom.h"
|
|
|
|
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QSignalSpy>
|
|
|
|
#include <QTemporaryFile>
|
|
|
|
#include <QXmlStreamReader>
|
|
|
|
#include <QXmlStreamWriter>
|
|
|
|
|
|
|
|
#include "config-keepassx-tests.h"
|
|
|
|
#include "core/Metadata.h"
|
|
|
|
#include "crypto/Crypto.h"
|
|
|
|
#include "crypto/Random.h"
|
|
|
|
#include "crypto/ssh/OpenSSHKey.h"
|
|
|
|
#include "format/KeePass2Writer.h"
|
|
|
|
#include "keeshare/KeeShareSettings.h"
|
|
|
|
#include "keys/PasswordKey.h"
|
|
|
|
|
|
|
|
#include <format/KeePass2Reader.h>
|
|
|
|
|
|
|
|
QTEST_GUILESS_MAIN(TestSharing)
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(KeeShareSettings::Type)
|
|
|
|
Q_DECLARE_METATYPE(KeeShareSettings::Key)
|
|
|
|
Q_DECLARE_METATYPE(KeeShareSettings::Certificate)
|
2019-01-03 12:22:41 -05:00
|
|
|
Q_DECLARE_METATYPE(KeeShareSettings::Trust)
|
2019-01-03 11:50:36 -05:00
|
|
|
Q_DECLARE_METATYPE(KeeShareSettings::ScopedCertificate)
|
|
|
|
Q_DECLARE_METATYPE(QList<KeeShareSettings::ScopedCertificate>)
|
2018-10-01 10:26:24 -04:00
|
|
|
|
|
|
|
void TestSharing::initTestCase()
|
|
|
|
{
|
|
|
|
QVERIFY(Crypto::init());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::cleanupTestCase()
|
|
|
|
{
|
|
|
|
TestRandom::teardown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testIdempotentDatabaseWriting()
|
|
|
|
{
|
|
|
|
QScopedPointer<Database> db(new Database());
|
|
|
|
auto key = QSharedPointer<CompositeKey>::create();
|
|
|
|
key->addKey(QSharedPointer<PasswordKey>::create("password"));
|
|
|
|
db->setKey(key);
|
|
|
|
|
|
|
|
Group* sharingGroup = new Group();
|
|
|
|
sharingGroup->setName("SharingGroup");
|
|
|
|
sharingGroup->setUuid(QUuid::createUuid());
|
|
|
|
sharingGroup->setParent(db->rootGroup());
|
|
|
|
|
|
|
|
Entry* entry1 = new Entry();
|
|
|
|
entry1->setUuid(QUuid::createUuid());
|
|
|
|
entry1->beginUpdate();
|
|
|
|
entry1->setTitle("Entry1");
|
|
|
|
entry1->endUpdate();
|
|
|
|
entry1->setGroup(sharingGroup);
|
|
|
|
|
|
|
|
Entry* entry2 = new Entry();
|
|
|
|
entry2->setUuid(QUuid::createUuid());
|
|
|
|
entry2->beginUpdate();
|
|
|
|
entry2->setTitle("Entry2");
|
|
|
|
entry2->endUpdate();
|
|
|
|
entry2->setGroup(sharingGroup);
|
|
|
|
|
|
|
|
// prevent from changes introduced by randomization
|
|
|
|
TestRandom::setup(new RandomBackendNull());
|
|
|
|
|
|
|
|
QByteArray bufferOriginal;
|
|
|
|
{
|
|
|
|
QBuffer device(&bufferOriginal);
|
|
|
|
device.open(QIODevice::ReadWrite);
|
|
|
|
KeePass2Writer writer;
|
|
|
|
writer.writeDatabase(&device, db.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray bufferCopy;
|
|
|
|
{
|
|
|
|
QBuffer device(&bufferCopy);
|
|
|
|
device.open(QIODevice::ReadWrite);
|
|
|
|
KeePass2Writer writer;
|
|
|
|
writer.writeDatabase(&device, db.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
QCOMPARE(bufferCopy, bufferOriginal);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testNullObjects()
|
|
|
|
{
|
|
|
|
const QString empty;
|
|
|
|
QXmlStreamReader reader(empty);
|
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto nullKey = KeeShareSettings::Key();
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(nullKey.isNull());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlKey = KeeShareSettings::Key::deserialize(reader);
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(xmlKey.isNull());
|
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto certificate = KeeShareSettings::Certificate();
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(certificate.isNull());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlCertificate = KeeShareSettings::Certificate::deserialize(reader);
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(xmlCertificate.isNull());
|
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto own = KeeShareSettings::Own();
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(own.isNull());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlOwn = KeeShareSettings::Own::deserialize(empty);
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(xmlOwn.isNull());
|
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto active = KeeShareSettings::Active();
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(active.isNull());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlActive = KeeShareSettings::Active::deserialize(empty);
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(xmlActive.isNull());
|
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto foreign = KeeShareSettings::Foreign();
|
2019-01-03 11:50:36 -05:00
|
|
|
QVERIFY(foreign.certificates.isEmpty());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlForeign = KeeShareSettings::Foreign::deserialize(empty);
|
2019-01-03 11:50:36 -05:00
|
|
|
QVERIFY(xmlForeign.certificates.isEmpty());
|
2018-10-01 10:26:24 -04:00
|
|
|
|
2019-01-04 06:38:34 -05:00
|
|
|
const auto reference = KeeShareSettings::Reference();
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(reference.isNull());
|
2019-01-04 06:28:36 -05:00
|
|
|
const auto xmlReference = KeeShareSettings::Reference::deserialize(empty);
|
2018-10-01 10:26:24 -04:00
|
|
|
QVERIFY(xmlReference.isNull());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testCertificateSerialization()
|
|
|
|
{
|
2019-01-03 12:22:41 -05:00
|
|
|
QFETCH(KeeShareSettings::Trust, trusted);
|
2018-10-01 10:26:24 -04:00
|
|
|
const OpenSSHKey& key = stubkey();
|
2019-01-03 11:50:36 -05:00
|
|
|
KeeShareSettings::ScopedCertificate original;
|
|
|
|
original.path = "/path";
|
|
|
|
original.certificate = KeeShareSettings::Certificate
|
|
|
|
{
|
|
|
|
OpenSSHKey::serializeToBinary(OpenSSHKey::Public, key),
|
|
|
|
"Some <!> &#_\"\" weird string"
|
|
|
|
};
|
2019-01-03 12:22:41 -05:00
|
|
|
original.trust = trusted;
|
2018-10-01 10:26:24 -04:00
|
|
|
|
|
|
|
QString buffer;
|
|
|
|
QXmlStreamWriter writer(&buffer);
|
|
|
|
writer.writeStartDocument();
|
|
|
|
writer.writeStartElement("Certificate");
|
2019-01-03 11:50:36 -05:00
|
|
|
KeeShareSettings::ScopedCertificate::serialize(writer, original);
|
2018-10-01 10:26:24 -04:00
|
|
|
writer.writeEndElement();
|
|
|
|
writer.writeEndDocument();
|
|
|
|
QXmlStreamReader reader(buffer);
|
|
|
|
reader.readNextStartElement();
|
|
|
|
QVERIFY(reader.name() == "Certificate");
|
2019-01-03 11:50:36 -05:00
|
|
|
KeeShareSettings::ScopedCertificate restored = KeeShareSettings::ScopedCertificate::deserialize(reader);
|
2018-10-01 10:26:24 -04:00
|
|
|
|
2019-01-03 11:50:36 -05:00
|
|
|
QCOMPARE(restored.certificate.key, original.certificate.key);
|
|
|
|
QCOMPARE(restored.certificate.signer, original.certificate.signer);
|
2019-01-03 12:22:41 -05:00
|
|
|
QCOMPARE(restored.trust, original.trust);
|
2019-01-03 11:50:36 -05:00
|
|
|
QCOMPARE(restored.path, original.path);
|
2018-10-01 10:26:24 -04:00
|
|
|
|
2019-01-03 11:50:36 -05:00
|
|
|
QCOMPARE(restored.certificate.sshKey().publicParts(), key.publicParts());
|
2018-10-01 10:26:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testCertificateSerialization_data()
|
|
|
|
{
|
2019-01-03 12:22:41 -05:00
|
|
|
QTest::addColumn<KeeShareSettings::Trust>("trusted");
|
|
|
|
QTest::newRow("Ask") << KeeShareSettings::Trust::Ask;
|
|
|
|
QTest::newRow("Trusted") << KeeShareSettings::Trust::Trusted;
|
|
|
|
QTest::newRow("Untrusted") << KeeShareSettings::Trust::Untrusted;
|
2018-10-01 10:26:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testKeySerialization()
|
|
|
|
{
|
|
|
|
const OpenSSHKey& key = stubkey();
|
|
|
|
KeeShareSettings::Key original;
|
|
|
|
original.key = OpenSSHKey::serializeToBinary(OpenSSHKey::Private, key);
|
|
|
|
|
|
|
|
QString buffer;
|
|
|
|
QXmlStreamWriter writer(&buffer);
|
|
|
|
writer.writeStartDocument();
|
|
|
|
writer.writeStartElement("Key");
|
|
|
|
KeeShareSettings::Key::serialize(writer, original);
|
|
|
|
writer.writeEndElement();
|
|
|
|
writer.writeEndDocument();
|
|
|
|
QXmlStreamReader reader(buffer);
|
|
|
|
reader.readNextStartElement();
|
|
|
|
QVERIFY(reader.name() == "Key");
|
|
|
|
KeeShareSettings::Key restored = KeeShareSettings::Key::deserialize(reader);
|
|
|
|
|
|
|
|
QCOMPARE(restored.key, original.key);
|
|
|
|
QCOMPARE(restored.sshKey().privateParts(), key.privateParts());
|
|
|
|
QCOMPARE(restored.sshKey().type(), key.type());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testReferenceSerialization()
|
|
|
|
{
|
|
|
|
QFETCH(QString, password);
|
|
|
|
QFETCH(QString, path);
|
|
|
|
QFETCH(QUuid, uuid);
|
|
|
|
QFETCH(int, type);
|
|
|
|
KeeShareSettings::Reference original;
|
|
|
|
original.password = password;
|
|
|
|
original.path = path;
|
|
|
|
original.uuid = uuid;
|
|
|
|
original.type = static_cast<KeeShareSettings::Type>(type);
|
|
|
|
|
|
|
|
const QString serialized = KeeShareSettings::Reference::serialize(original);
|
|
|
|
const KeeShareSettings::Reference restored = KeeShareSettings::Reference::deserialize(serialized);
|
|
|
|
|
|
|
|
QCOMPARE(restored.password, original.password);
|
|
|
|
QCOMPARE(restored.path, original.path);
|
|
|
|
QCOMPARE(restored.uuid, original.uuid);
|
|
|
|
QCOMPARE(int(restored.type), int(original.type));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testReferenceSerialization_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("password");
|
|
|
|
QTest::addColumn<QString>("path");
|
|
|
|
QTest::addColumn<QUuid>("uuid");
|
|
|
|
QTest::addColumn<int>("type");
|
|
|
|
QTest::newRow("1") << "Password" << "/some/path" << QUuid::createUuid() << int(KeeShareSettings::Inactive);
|
|
|
|
QTest::newRow("2") << "" << "" << QUuid() << int(KeeShareSettings::SynchronizeWith);
|
|
|
|
QTest::newRow("3") << "" << "/some/path" << QUuid() << int(KeeShareSettings::ExportTo);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testSettingsSerialization()
|
|
|
|
{
|
|
|
|
QFETCH(bool, importing);
|
|
|
|
QFETCH(bool, exporting);
|
|
|
|
QFETCH(KeeShareSettings::Certificate, ownCertificate);
|
|
|
|
QFETCH(KeeShareSettings::Key, ownKey);
|
2019-01-03 11:50:36 -05:00
|
|
|
QFETCH(QList<KeeShareSettings::ScopedCertificate>, foreignCertificates);
|
2018-10-01 10:26:24 -04:00
|
|
|
|
|
|
|
KeeShareSettings::Own originalOwn;
|
|
|
|
KeeShareSettings::Foreign originalForeign;
|
|
|
|
KeeShareSettings::Active originalActive;
|
|
|
|
originalActive.in = importing;
|
|
|
|
originalActive.out = exporting;
|
|
|
|
originalOwn.certificate = ownCertificate;
|
|
|
|
originalOwn.key = ownKey;
|
|
|
|
originalForeign.certificates = foreignCertificates;
|
|
|
|
|
|
|
|
const QString serializedActive = KeeShareSettings::Active::serialize(originalActive);
|
|
|
|
KeeShareSettings::Active restoredActive = KeeShareSettings::Active::deserialize(serializedActive);
|
|
|
|
|
|
|
|
const QString serializedOwn = KeeShareSettings::Own::serialize(originalOwn);
|
|
|
|
KeeShareSettings::Own restoredOwn = KeeShareSettings::Own::deserialize(serializedOwn);
|
|
|
|
|
|
|
|
const QString serializedForeign = KeeShareSettings::Foreign::serialize(originalForeign);
|
|
|
|
KeeShareSettings::Foreign restoredForeign = KeeShareSettings::Foreign::deserialize(serializedForeign);
|
|
|
|
|
|
|
|
QCOMPARE(restoredActive.in, importing);
|
|
|
|
QCOMPARE(restoredActive.out, exporting);
|
|
|
|
QCOMPARE(restoredOwn.certificate.key, ownCertificate.key);
|
|
|
|
QCOMPARE(restoredOwn.key.key, ownKey.key);
|
|
|
|
QCOMPARE(restoredForeign.certificates.count(), foreignCertificates.count());
|
|
|
|
for (int i = 0; i < foreignCertificates.count(); ++i) {
|
2019-01-03 11:50:36 -05:00
|
|
|
QCOMPARE(restoredForeign.certificates[i].certificate.key, foreignCertificates[i].certificate.key);
|
2018-10-01 10:26:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestSharing::testSettingsSerialization_data()
|
|
|
|
{
|
|
|
|
const OpenSSHKey& sshKey0 = stubkey(0);
|
2019-01-03 11:50:36 -05:00
|
|
|
KeeShareSettings::ScopedCertificate certificate0;
|
|
|
|
certificate0.path = "/path/0";
|
|
|
|
certificate0.certificate = KeeShareSettings::Certificate
|
|
|
|
{
|
|
|
|
OpenSSHKey::serializeToBinary(OpenSSHKey::Public, sshKey0),
|
|
|
|
"Some <!> &#_\"\" weird string"
|
|
|
|
};
|
2019-01-03 12:22:41 -05:00
|
|
|
certificate0.trust = KeeShareSettings::Trust::Trusted;
|
2018-10-01 10:26:24 -04:00
|
|
|
|
|
|
|
KeeShareSettings::Key key0;
|
|
|
|
key0.key = OpenSSHKey::serializeToBinary(OpenSSHKey::Private, sshKey0);
|
|
|
|
|
|
|
|
const OpenSSHKey& sshKey1 = stubkey(1);
|
2019-01-03 11:50:36 -05:00
|
|
|
KeeShareSettings::ScopedCertificate certificate1;
|
|
|
|
certificate1.path = "/path/1";
|
|
|
|
certificate1.certificate = KeeShareSettings::Certificate
|
|
|
|
{
|
|
|
|
OpenSSHKey::serializeToBinary(OpenSSHKey::Public, sshKey1),
|
|
|
|
"Another "
|
|
|
|
};
|
2019-01-03 12:22:41 -05:00
|
|
|
certificate1.trust = KeeShareSettings::Trust::Untrusted;
|
2018-10-01 10:26:24 -04:00
|
|
|
|
|
|
|
QTest::addColumn<bool>("importing");
|
|
|
|
QTest::addColumn<bool>("exporting");
|
|
|
|
QTest::addColumn<KeeShareSettings::Certificate>("ownCertificate");
|
|
|
|
QTest::addColumn<KeeShareSettings::Key>("ownKey");
|
2019-01-04 06:04:46 -05:00
|
|
|
QTest::addColumn<QList<KeeShareSettings::ScopedCertificate>>("foreignCertificates");
|
2019-01-03 11:50:36 -05:00
|
|
|
QTest::newRow("1") << false << false << KeeShareSettings::Certificate() << KeeShareSettings::Key() << QList<KeeShareSettings::ScopedCertificate>();
|
|
|
|
QTest::newRow("2") << true << false << KeeShareSettings::Certificate() << KeeShareSettings::Key() << QList<KeeShareSettings::ScopedCertificate>();
|
|
|
|
QTest::newRow("3") << true << true << KeeShareSettings::Certificate() << KeeShareSettings::Key() << QList<KeeShareSettings::ScopedCertificate>({ certificate0, certificate1 });
|
2019-01-04 06:04:46 -05:00
|
|
|
QTest::newRow("4") << false << true << certificate0.certificate << key0 << QList<KeeShareSettings::ScopedCertificate>();
|
|
|
|
QTest::newRow("5") << false << false << certificate0.certificate << key0 << QList<KeeShareSettings::ScopedCertificate>({ certificate1 });
|
2018-10-01 10:26:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const OpenSSHKey& TestSharing::stubkey(int index)
|
|
|
|
{
|
|
|
|
static QMap<int, OpenSSHKey*> keys;
|
|
|
|
if (!keys.contains(index)) {
|
|
|
|
OpenSSHKey* key = new OpenSSHKey(OpenSSHKey::generate(false));
|
|
|
|
key->setParent(this);
|
|
|
|
keys[index] = key;
|
|
|
|
}
|
|
|
|
return *keys[index];
|
|
|
|
}
|