From e20cecf7aa01658b84a3ee74c3a2860a09580b93 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Thu, 18 Jan 2018 01:21:02 +0100 Subject: [PATCH] Remove obsolete ToDbExporter tests --- tests/TestExporter.cpp | 78 ------------------------------------------ tests/TestExporter.h | 33 ------------------ 2 files changed, 111 deletions(-) delete mode 100644 tests/TestExporter.cpp delete mode 100644 tests/TestExporter.h diff --git a/tests/TestExporter.cpp b/tests/TestExporter.cpp deleted file mode 100644 index 656b76c58..000000000 --- a/tests/TestExporter.cpp +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (C) 2014 Felix Geyer - * Copyright (C) 2014 Florian Geyer - * - * 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 . - */ - -#include "TestExporter.h" - -#include - -#include "core/ToDbExporter.h" -#include "core/Group.h" -#include "core/Metadata.h" -#include "crypto/Crypto.h" - -QTEST_GUILESS_MAIN(TestExporter) - -void TestExporter::initTestCase() -{ - QVERIFY(Crypto::init()); -} - -void TestExporter::testToDbExporter() -{ - QImage iconImage(1, 1, QImage::Format_RGB32); - iconImage.setPixel(0, 0, qRgb(1, 2, 3)); - Uuid iconUuid = Uuid::random(); - - QImage iconUnusedImage(1, 1, QImage::Format_RGB32); - iconUnusedImage.setPixel(0, 0, qRgb(1, 2, 3)); - Uuid iconUnusedUuid = Uuid::random(); - - Database* dbOrg = new Database(); - Group* groupOrg = new Group(); - groupOrg->setParent(dbOrg->rootGroup()); - groupOrg->setName("GTEST"); - Entry* entryOrg = new Entry(); - entryOrg->setGroup(groupOrg); - entryOrg->setTitle("ETEST"); - dbOrg->metadata()->addCustomIcon(iconUuid, iconImage); - dbOrg->metadata()->addCustomIcon(iconUnusedUuid, iconUnusedImage); - entryOrg->setIcon(iconUuid); - entryOrg->beginUpdate(); - entryOrg->setIcon(Entry::DefaultIconNumber); - entryOrg->endUpdate(); - - Database* dbExp = ToDbExporter().exportGroup(groupOrg); - - QCOMPARE(dbExp->rootGroup()->children().size(), 1); - Group* groupExp = dbExp->rootGroup()->children().at(0); - QVERIFY(groupExp != groupOrg); - QCOMPARE(groupExp->name(), groupOrg->name()); - QCOMPARE(groupExp->entries().size(), 1); - - Entry* entryExp = groupExp->entries().at(0); - QCOMPARE(entryExp->title(), entryOrg->title()); - QCOMPARE(dbExp->metadata()->customIcons().size(), 1); - QVERIFY(dbExp->metadata()->containsCustomIcon(iconUuid)); - QCOMPARE(entryExp->iconNumber(), entryOrg->iconNumber()); - - QCOMPARE(entryExp->historyItems().size(), 1); - QCOMPARE(entryExp->historyItems().at(0)->iconUuid(), iconUuid); - - delete dbOrg; - delete dbExp; -} diff --git a/tests/TestExporter.h b/tests/TestExporter.h deleted file mode 100644 index 8c9945252..000000000 --- a/tests/TestExporter.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) 2014 Felix Geyer - * Copyright (C) 2014 Florian Geyer - * - * 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 . - */ - -#ifndef KEEPASSX_TESTEXPORTER_H -#define KEEPASSX_TESTEXPORTER_H - -#include - -class TestExporter : public QObject -{ - Q_OBJECT - -private slots: - void initTestCase(); - void testToDbExporter(); -}; - -#endif // KEEPASSX_TESTEXPORTER_H