/** * Copyright 2015 Vineet Garg * * 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 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of 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 . */ #include "../core/kdeconnectconfig.h" #include /* * This class tests the working of kdeconnect config that certificate and key is generated and saved properly */ class KdeConnectConfigTest : public QObject { Q_OBJECT private Q_SLOTS: void addTrustedDevice(); /* void remoteCertificateTest(); */ void removeTrustedDevice(); }; void KdeConnectConfigTest::addTrustedDevice() { KdeConnectConfig::instance().addTrustedDevice(QStringLiteral("testdevice"), QStringLiteral("Test Device"), QStringLiteral("phone")); KdeConnectConfig::DeviceInfo devInfo = KdeConnectConfig::instance().getTrustedDevice(QStringLiteral("testdevice")); QCOMPARE(devInfo.deviceName, QStringLiteral("Test Device")); QCOMPARE(devInfo.deviceType, QStringLiteral("phone")); } /* // This checks whether certificate is generated correctly and stored correctly or not void KdeConnectConfigTest::remoteCertificateTest() { QSslCertificate certificate = kcc->certificate(); // Using same certificate as of device QCOMPARE(certificate.serialNumber().toInt(0,16), 10); QCOMPARE(certificate.subjectInfo(QSslCertificate::SubjectInfo::CommonName).first(), kcc->deviceId()); QCOMPARE(certificate.subjectInfo(QSslCertificate::SubjectInfo::Organization).first(), QString("KDE")); QCOMPARE(certificate.subjectInfo(QSslCertificate::OrganizationalUnitName).first(), QString("Kde connect")); kcc->setDeviceProperty("testdevice","certificate", QString::fromLatin1(certificate.toPem())); KdeConnectConfig::DeviceInfo devInfo = kcc->getTrustedDevice("testdevice"); QSslCertificate devCertificate = QSslCertificate::fromData(devInfo.certificate.toLatin1()).first(); QCOMPARE(devCertificate.serialNumber().toInt(0,16), 10); QCOMPARE(devCertificate.subjectInfo(QSslCertificate::SubjectInfo::CommonName).first(), kcc->deviceId()); QCOMPARE(devCertificate.subjectInfo(QSslCertificate::SubjectInfo::Organization).first(), QString("KDE")); QCOMPARE(devCertificate.subjectInfo(QSslCertificate::OrganizationalUnitName).first(), QString("Kde connect")); } */ void KdeConnectConfigTest::removeTrustedDevice() { KdeConnectConfig::instance().removeTrustedDevice(QStringLiteral("testdevice")); KdeConnectConfig::DeviceInfo devInfo = KdeConnectConfig::instance().getTrustedDevice(QStringLiteral("testdevice")); QCOMPARE(devInfo.deviceName, QStringLiteral("unnamed")); QCOMPARE(devInfo.deviceType, QStringLiteral("unknown")); } QTEST_GUILESS_MAIN(KdeConnectConfigTest) #include "kdeconnectconfigtest.moc"