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
|
/*
* 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 "PasteCommandTest.h"
#include "src/annotations/undo/PasteCommand.h"
#include "src/annotations/core/AnnotationArea.h"
#include "src/annotations/items/AnnotationLine.h"
#include "src/annotations/core/AnnotationPropertiesFactory.h"
#include "tests/mocks/MockDefaultParameters.h"
using kImageAnnotator::PasteCommand;
using kImageAnnotator::AnnotationArea;
using kImageAnnotator::AbstractAnnotationItem;
using kImageAnnotator::AnnotationLine;
using kImageAnnotator::AnnotationProperties;
using kImageAnnotator::Config;
using kImageAnnotator::AnnotationItemFactory;
using kImageAnnotator::PropertiesPtr;
using kImageAnnotator::AnnotationPropertiesFactory;
void PasteCommandTest::TestRedo_Should_AddPastedItemsToAnnotationAreaAtGivenPosition()
{
// arrange
auto offset = QPointF(10, 10);
auto position = QPointF(50, 50);
MockDefaultParameters mockParameters;
auto scalerMock = new MockDevicePixelRatioScaler();
AnnotationPropertiesFactory propertiesFactory(&mockParameters.config, &mockParameters.settingsProvider);
AnnotationArea annotationArea(&mockParameters.config, &mockParameters.settingsProvider, scalerMock, &mockParameters.zoomValueProvider, nullptr, nullptr);
AnnotationItemFactory itemFactory(&propertiesFactory, &mockParameters.settingsProvider, &mockParameters.config);
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);
QHash<AbstractAnnotationItem *, QPointF> itemsWithOffset;
itemsWithOffset[item] = offset;
PasteCommand pasteCommand(itemsWithOffset, position, &itemFactory, &annotationArea);
QVERIFY(dynamic_cast<AnnotationLine *>(annotationArea.items().last()) == nullptr);
// act
pasteCommand.redo();
// assert
auto lastItem = dynamic_cast<AnnotationLine *>(annotationArea.items().last());
QVERIFY(lastItem != nullptr);
QCOMPARE(lastItem->position(), position + offset);
}
void PasteCommandTest::TestUndo_Should_RemovePastedItemsFromAnnotationArea()
{
// arrange
auto offset = QPointF(10, 10);
auto position = QPointF(50, 50);
MockDefaultParameters mockParameters;
auto scalerMock = new MockDevicePixelRatioScaler();
AnnotationPropertiesFactory propertiesFactory(&mockParameters.config, &mockParameters.settingsProvider);
AnnotationArea annotationArea(&mockParameters.config, &mockParameters.settingsProvider, scalerMock, &mockParameters.zoomValueProvider, nullptr, nullptr);
AnnotationItemFactory itemFactory(&propertiesFactory, &mockParameters.settingsProvider, &mockParameters.config);
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);
QHash<AbstractAnnotationItem *, QPointF> itemsWithOffset;
itemsWithOffset[item] = offset;
PasteCommand pasteCommand(itemsWithOffset, position, &itemFactory, &annotationArea);
pasteCommand.redo();
QVERIFY(dynamic_cast<AnnotationLine *>(annotationArea.items().last()) != nullptr);
// act
pasteCommand.undo();
// arrange
QVERIFY(dynamic_cast<AnnotationLine *>(annotationArea.items().last()) == nullptr);
}
TEST_MAIN(PasteCommandTest);
|