0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 12:22:16 +02:00
keepassxc/tests/TestGroup.cpp

123 lines
3.2 KiB
C++
Raw Normal View History

2010-08-13 18:08:06 +02:00
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
*
* 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/>.
*/
2010-11-21 23:06:30 +01:00
#include "TestGroup.h"
2010-08-15 15:03:47 +02:00
#include <QtTest/QSignalSpy>
2010-08-13 18:08:06 +02:00
#include <QtTest/QTest>
#include "core/Database.h"
void TestGroup::initTestCase()
{
qRegisterMetaType<Group*>("Group*");
}
2010-08-13 18:08:06 +02:00
void TestGroup::testParenting()
{
Database* db = new Database();
Group* tmpRoot = new Group();
Group* g1 = new Group();
Group* g2 = new Group();
Group* g3 = new Group();
Group* g4 = new Group();
g1->setParent(tmpRoot);
g2->setParent(tmpRoot);
g3->setParent(tmpRoot);
g4->setParent(tmpRoot);
g2->setParent(g1);
g4->setParent(g3);
g3->setParent(g1);
g1->setParent(db);
QVERIFY(g1->parent() == db);
QVERIFY(g2->parent() == g1);
QVERIFY(g3->parent() == g1);
QVERIFY(g4->parent() == g3);
2010-08-14 14:26:25 +02:00
QVERIFY(g1->database() == db);
QVERIFY(g2->database() == db);
QVERIFY(g3->database() == db);
QVERIFY(g4->database() == db);
QCOMPARE(tmpRoot->children().size(), 0);
QCOMPARE(g1->children().size(), 2);
QCOMPARE(g2->children().size(), 0);
QCOMPARE(g3->children().size(), 1);
QCOMPARE(g4->children().size(), 0);
2010-08-13 18:08:06 +02:00
QVERIFY(g1->children().at(0) == g2);
QVERIFY(g1->children().at(1) == g3);
2010-08-13 18:08:06 +02:00
QVERIFY(g3->children().contains(g4));
2010-08-15 15:03:47 +02:00
QSignalSpy spy(db, SIGNAL(groupDataChanged(Group*)));
2010-08-15 15:03:47 +02:00
g2->setName("test");
g4->setName("test");
g3->setName("test");
g1->setName("test");
g3->setIcon(Uuid::random());
g1->setIcon(2);
QCOMPARE(spy.count(), 6);
2010-08-13 18:08:06 +02:00
}
void TestGroup::testSignals()
{
Database* db = new Database();
Group* root = new Group();
root->setParent(db);
Group* g1 = new Group();
Group* g2 = new Group();
g1->setParent(root);
g2->setParent(root);
QSignalSpy spyAboutToAdd(db, SIGNAL(groupAboutToAdd(Group*,int)));
QSignalSpy spyAdded(db, SIGNAL(groupAdded()));
QSignalSpy spyAboutToRemove(db, SIGNAL(groupAboutToRemove(Group*)));
QSignalSpy spyRemoved(db, SIGNAL(groupRemoved()));
g2->setParent(root, 0);
QCOMPARE(spyAboutToAdd.count(), 1);
QCOMPARE(spyAdded.count(), 1);
QCOMPARE(spyAboutToRemove.count(), 1);
QCOMPARE(spyRemoved.count(), 1);
2010-08-18 16:22:48 +02:00
delete db;
}
void TestGroup::testEntries()
{
Group* group = new Group();
Entry* entry1 = new Entry();
entry1->setGroup(group);
Entry* entry2 = new Entry();
entry2->setGroup(group);
QCOMPARE(group->entries().size(), 2);
QVERIFY(group->entries().at(0) == entry1);
QVERIFY(group->entries().at(1) == entry2);
delete group;
}
2010-08-13 18:08:06 +02:00
QTEST_MAIN(TestGroup);