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
|
/*
* 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 "ResizeCommandTest.h"
void ResizeCommandTest::TestRedo_Should_MoveProvidedHandleToNewPosition()
{
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);
QPointF newPosition(50, 50);
ResizeCommand resize(item, 1, newPosition, false);
QCOMPARE(item->line().p2(), line.p2());
resize.redo();
QCOMPARE(item->line().p2(), newPosition);
}
void ResizeCommandTest::TestUndo_Should_MoveProvidedHandleToInitialPosition()
{
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);
QPointF newPosition(50, 50);
ResizeCommand resize(item, 1, newPosition, false);
resize.redo();
QCOMPARE(item->line().p2(), newPosition);
resize.undo();
QCOMPARE(item->line().p2(), line.p2());
}
void ResizeCommandTest::TestMergeWith_Should_TakeNewHandlePositionFromLastResizeCommand()
{
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);
QPointF newPosition1(50, 50);
QPointF newPosition2(60, 60);
ResizeCommand resize1(item, 1, newPosition1, false);
ResizeCommand resize2(item, 1, newPosition2, false);
QCOMPARE(item->line().p2(), line.p2());
resize1.mergeWith(&resize2);
resize1.redo();
QCOMPARE(item->line().p2(), newPosition2);
}
void ResizeCommandTest::TestMergeWith_Should_KeepInitialPositionFromFirstResizeCommand()
{
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);
QPointF newPosition1(50, 50);
QPointF newPosition2(60, 60);
ResizeCommand resize1(item, 1, newPosition1, false);
ResizeCommand resize2(item, 1, newPosition2, false);
resize1.mergeWith(&resize2);
resize1.redo();
QCOMPARE(item->line().p2(), newPosition2);
resize1.undo();
QCOMPARE(item->line().p2(), line.p2());
}
void ResizeCommandTest::TestMergeWith_Should_NotMergeResizeCommands_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);
ResizeCommand resize1(item1, 1, newPosition1, false);
ResizeCommand resize2(item2, 1, newPosition2, false);
QCOMPARE(item1->line().p2(), line1.p2());
resize1.mergeWith(&resize2);
resize1.redo();
QCOMPARE(item1->line().p2(), newPosition1);
}
void ResizeCommandTest::TestMergeWith_Should_NotMergeResizeCommands_When_HandlesAreNotTheSame()
{
auto properties = PropertiesPtr(new AnnotationProperties(Qt::red, 1));
QLineF line1(10, 10, 20, 20);
auto item1 = new AnnotationLine(line1.p1(), properties);
item1->addPoint(line1.p2(), false);
QPointF newPosition1(50, 50);
QPointF newPosition2(60, 60);
ResizeCommand resize1(item1, 1, newPosition1, false);
ResizeCommand resize2(item1, 3, newPosition2, false);
QCOMPARE(item1->line().p2(), line1.p2());
resize1.mergeWith(&resize2);
resize1.redo();
QCOMPARE(item1->line().p2(), newPosition1);
}
TEST_MAIN(ResizeCommandTest);
|