1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
/*
* Copyright (C) 2018 Damir Porobic <damir.porobic@gmx.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "MoveCommandTest.h"
void MoveCommandTest::TestRedo_Should_MoveItemToNewPosition()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line(10, 10, 20, 20);
auto item = new AnnotationLine(line.p1(), properties);
item->addPoint(line.p2(), false);
auto oldPosition = item->position();
QPointF newPosition(50, 50);
QHash<AbstractAnnotationItem *, QPointF> itemToPosition;
itemToPosition[item] = newPosition;
MoveCommand moveCommand(itemToPosition);
QCOMPARE(item->position(), oldPosition);
moveCommand.redo();
QCOMPARE(item->position(), newPosition);
}
void MoveCommandTest::TestUndo_Should_MoveItemToInitialPosition()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line(10, 10, 20, 20);
auto item = new AnnotationLine(line.p1(), properties);
item->addPoint(line.p2(), false);
auto oldPosition = item->position();
QPointF newPosition(50, 50);
QHash<AbstractAnnotationItem *, QPointF> itemToPosition;
itemToPosition[item] = newPosition;
MoveCommand moveCommand(itemToPosition);
moveCommand.redo();
QCOMPARE(item->position(), newPosition);
moveCommand.undo();
QCOMPARE(item->position(), oldPosition);
}
void MoveCommandTest::TestMergeWith_Should_TakeNewPositionFromLastMoveCommand()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line(10, 10, 20, 20);
auto item = new AnnotationLine(line.p1(), properties);
item->addPoint(line.p2(), false);
auto oldPosition = item->position();
QPointF firstPosition(50, 50);
QPointF secondPosition(70, 70);
QHash<AbstractAnnotationItem *, QPointF> itemToPositionFirst;
QHash<AbstractAnnotationItem *, QPointF> itemToPositionSecond;
itemToPositionFirst[item] = firstPosition;
itemToPositionFirst[item] = secondPosition;
MoveCommand moveCommandFirst(itemToPositionFirst);
MoveCommand moveCommandSecond(itemToPositionSecond);
moveCommandFirst.mergeWith(&moveCommandSecond);
QCOMPARE(item->position(), oldPosition);
moveCommandFirst.redo();
QCOMPARE(item->position(), secondPosition);
}
void MoveCommandTest::TestMergeWith_Should_KeepInitialPositionFromFirstMoveCommand()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line(10, 10, 20, 20);
auto item = new AnnotationLine(line.p1(), properties);
item->addPoint(line.p2(), false);
auto oldPosition = item->position();
QPointF firstPosition(50, 50);
QPointF secondPosition(70, 70);
QHash<AbstractAnnotationItem *, QPointF> itemToPositionFirst;
QHash<AbstractAnnotationItem *, QPointF> itemToPositionSecond;
itemToPositionFirst[item] = firstPosition;
itemToPositionFirst[item] = secondPosition;
MoveCommand moveCommandFirst(itemToPositionFirst);
MoveCommand moveCommandSecond(itemToPositionSecond);
moveCommandFirst.mergeWith(&moveCommandSecond);
moveCommandFirst.redo();
QCOMPARE(item->position(), secondPosition);
moveCommandFirst.undo();
QCOMPARE(item->position(), oldPosition);
}
void MoveCommandTest::TestMergeWith_Should_NotMergeMoveCommands_When_ItemsAreNotTheSame()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line1(10, 10, 20, 20);
QLineF line2(15, 15, 25, 25);
auto item1 = new AnnotationLine(line1.p1(), properties);
auto item2 = new AnnotationLine(line2.p1(), properties);
item1->addPoint(line1.p2(), false);
item2->addPoint(line2.p2(), false);
QPointF newPosition1(50, 50);
QPointF newPosition2(60, 60);
QHash<AbstractAnnotationItem *, QPointF> item1ToPosition;
QHash<AbstractAnnotationItem *, QPointF> item2ToPosition;
item1ToPosition[item1] = newPosition1;
item2ToPosition[item2] = newPosition2;
MoveCommand moveCommand1(item1ToPosition);
MoveCommand moveCommand2(item2ToPosition);
moveCommand1.mergeWith(&moveCommand2);
moveCommand1.redo();
moveCommand2.redo();
QCOMPARE(item1->position(), newPosition1);
QCOMPARE(item2->position(), newPosition2);
}
TEST_MAIN(MoveCommandTest);
|