mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Introduce Group::aboutToMove() and moved() signals.
Emit them instead of remove/add when groups are moved within a database.
This commit is contained in:
parent
6340ed8993
commit
bddc29101c
10 changed files with 239 additions and 37 deletions
|
@ -61,11 +61,6 @@ void TestGroupModel::test()
|
|||
group121->setName("group121");
|
||||
group121->setParent(group12);
|
||||
|
||||
Group* group2 = new Group();
|
||||
group1->setObjectName("group2");
|
||||
group2->setName("group2");
|
||||
group2->setParent(groupRoot);
|
||||
|
||||
GroupModel* model = new GroupModel(db, this);
|
||||
|
||||
ModelTest* modelTest = new ModelTest(model, this);
|
||||
|
@ -73,33 +68,78 @@ void TestGroupModel::test()
|
|||
QModelIndex indexRoot = model->index(0, 0);
|
||||
QModelIndex index1 = model->index(0, 0, indexRoot);
|
||||
QModelIndex index11 = model->index(0, 0, index1);
|
||||
QModelIndex index12 = model->index(1, 0, index1);
|
||||
QPersistentModelIndex index12 = model->index(1, 0, index1);
|
||||
QModelIndex index121 = model->index(0, 0, index12);
|
||||
QModelIndex index2 = model->index(1, 0, indexRoot);
|
||||
|
||||
QCOMPARE(model->data(indexRoot).toString(), QString("groupRoot"));
|
||||
QCOMPARE(model->data(index1).toString(), QString("group1"));
|
||||
QCOMPARE(model->data(index11).toString(), QString("group11"));
|
||||
QCOMPARE(model->data(index12).toString(), QString("group12"));
|
||||
QCOMPARE(model->data(index121).toString(), QString("group121"));
|
||||
QCOMPARE(model->data(index2).toString(), QString("group2"));
|
||||
|
||||
QSignalSpy spy1(model, SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)));
|
||||
QSignalSpy spy1(model, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
|
||||
group11->setName("test");
|
||||
group121->setIcon(4);
|
||||
QCOMPARE(spy1.count(), 2);
|
||||
QCOMPARE(model->data(index11).toString(), QString("test"));
|
||||
|
||||
QSignalSpy spyAboutToAdd(model, SIGNAL(rowsAboutToBeInserted(const QModelIndex&,int,int)));
|
||||
QSignalSpy spyAdded(model, SIGNAL(rowsInserted(const QModelIndex&,int,int)));
|
||||
QSignalSpy spyAboutToRemove(model, SIGNAL(rowsAboutToBeRemoved(const QModelIndex&,int,int)));
|
||||
QSignalSpy spyRemoved(model, SIGNAL(rowsRemoved(const QModelIndex&,int,int)));
|
||||
QSignalSpy spyAboutToAdd(model, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
|
||||
QSignalSpy spyAdded(model, SIGNAL(rowsInserted(QModelIndex,int,int)));
|
||||
QSignalSpy spyAboutToRemove(model, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
|
||||
QSignalSpy spyRemoved(model, SIGNAL(rowsRemoved(QModelIndex,int,int)));
|
||||
QSignalSpy spyAboutToMove(model, SIGNAL(rowsAboutToBeMoved(QModelIndex,int,int,QModelIndex,int)));
|
||||
QSignalSpy spyMoved(model, SIGNAL(rowsMoved(QModelIndex,int,int,QModelIndex,int)));
|
||||
|
||||
Group* group2 = new Group();
|
||||
group1->setObjectName("group2");
|
||||
group2->setName("group2");
|
||||
group2->setParent(groupRoot);
|
||||
QModelIndex index2 = model->index(1, 0, indexRoot);
|
||||
QCOMPARE(spyAboutToAdd.count(), 1);
|
||||
QCOMPARE(spyAdded.count(), 1);
|
||||
QCOMPARE(spyAboutToRemove.count(), 0);
|
||||
QCOMPARE(spyRemoved.count(), 0);
|
||||
QCOMPARE(spyAboutToMove.count(), 0);
|
||||
QCOMPARE(spyMoved.count(), 0);
|
||||
QCOMPARE(model->data(index2).toString(), QString("group2"));
|
||||
|
||||
group12->setParent(group1, 0);
|
||||
QCOMPARE(spyAboutToAdd.count(), 1);
|
||||
QCOMPARE(spyAdded.count(), 1);
|
||||
QCOMPARE(spyAboutToRemove.count(), 0);
|
||||
QCOMPARE(spyRemoved.count(), 0);
|
||||
QCOMPARE(spyAboutToMove.count(), 1);
|
||||
QCOMPARE(spyMoved.count(), 1);
|
||||
QCOMPARE(model->data(index12).toString(), QString("group12"));
|
||||
|
||||
group12->setParent(group1, 1);
|
||||
QCOMPARE(spyAboutToAdd.count(), 1);
|
||||
QCOMPARE(spyAdded.count(), 1);
|
||||
QCOMPARE(spyAboutToRemove.count(), 0);
|
||||
QCOMPARE(spyRemoved.count(), 0);
|
||||
QCOMPARE(spyAboutToMove.count(), 2);
|
||||
QCOMPARE(spyMoved.count(), 2);
|
||||
QCOMPARE(model->data(index12).toString(), QString("group12"));
|
||||
|
||||
group12->setParent(group2);
|
||||
QCOMPARE(spyAboutToAdd.count(), 1);
|
||||
QCOMPARE(spyAdded.count(), 1);
|
||||
QCOMPARE(spyAboutToRemove.count(), 0);
|
||||
QCOMPARE(spyRemoved.count(), 0);
|
||||
QCOMPARE(spyAboutToMove.count(), 3);
|
||||
QCOMPARE(spyMoved.count(), 3);
|
||||
QVERIFY(index12.isValid());
|
||||
QCOMPARE(model->data(index12).toString(), QString("group12"));
|
||||
QCOMPARE(model->data(index12.child(0, 0)).toString(), QString("group121"));
|
||||
|
||||
delete group12;
|
||||
QCOMPARE(spyAboutToAdd.count(), 1);
|
||||
QCOMPARE(spyAdded.count(), 1);
|
||||
QCOMPARE(spyAboutToRemove.count(), 1);
|
||||
QCOMPARE(spyRemoved.count(), 1);
|
||||
QCOMPARE(spyAboutToMove.count(), 3);
|
||||
QCOMPARE(spyMoved.count(), 3);
|
||||
QVERIFY(!index12.isValid());
|
||||
|
||||
// test removing a group that has children
|
||||
delete group1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue