Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
(cherry picked from commit 4de67a9)
  • Loading branch information
roya0045 authored and nyalldawson committed Jan 12, 2021
1 parent 62753f5 commit ef76333
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 33 deletions.
6 changes: 3 additions & 3 deletions src/app/qgsmaptoolscalefeature.cpp
@@ -1,9 +1,9 @@
/***************************************************************************
qgsmaptoolscalefeature.cpp - map tool for scaling features by mouse drag
---------------------
begin :
copyright :
email :
Date : December 2020
Copyright : (C) 2020 by roya0045
Contact : ping me on github
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand Down
6 changes: 3 additions & 3 deletions src/app/qgsmaptoolscalefeature.h
@@ -1,9 +1,9 @@
/***************************************************************************
qgsmaptoolscalefeature.h - map tool for scaling features by mouse drag
---------------------
begin :
copyright :
email :
Date : December 2020
Copyright : (C) 2020 by roya0045
Contact : ping me on github
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand Down
1 change: 1 addition & 0 deletions tests/src/app/CMakeLists.txt
Expand Up @@ -129,6 +129,7 @@ ADD_QGIS_TEST(maptoollabel testqgsmaptoollabel.cpp)
ADD_QGIS_TEST(maptoolselect testqgsmaptoolselect.cpp)
ADD_QGIS_TEST(maptoolreshape testqgsmaptoolreshape.cpp)
ADD_QGIS_TEST(maptoolrotatefeature testqgsmaptoolrotatefeature.cpp)
ADD_QGIS_TEST(maptoolscalefeature testqgsmaptoolscalefeature.cpp)
ADD_QGIS_TEST(maptoolcircularstringtest testqgsmaptoolcircularstring.cpp)
ADD_QGIS_TEST(maptoolcircletest testqgsmaptoolcircle.cpp)
ADD_QGIS_TEST(maptoolmovefeaturetest testqgsmaptoolmovefeature.cpp)
Expand Down
59 changes: 32 additions & 27 deletions tests/src/app/testqgsmaptoolscalefeature.cpp
@@ -1,9 +1,9 @@
/***************************************************************************
testqgsmaptoolrotatefeature.cpp
testqgsmaptoolscalefeature.cpp
--------------------------------
Date : November 2019
Copyright : (C) 2019 by Nyall Dawson
Email : nyall dot dawson at gmail dot com
Date : December 2020
Copyright : (C) 2020 by roya0045
Contact : ping me on github
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand Down Expand Up @@ -33,30 +33,30 @@
* \ingroup UnitTests
* This is a unit test for the vertex tool
*/
class TestQgsMapToolRotateFeature: public QObject
class TestQgsMapToolScaleFeature: public QObject
{
Q_OBJECT
public:
TestQgsMapToolRotateFeature();
TestQgsMapToolScaleFeature();

private slots:
void initTestCase();// will be called before the first testfunction is executed.
void cleanupTestCase();// will be called after the last testfunction was executed.

void testRotateFeature();
void testScaleFeature();

private:
QgisApp *mQgisApp = nullptr;
QgsMapCanvas *mCanvas = nullptr;
QgsMapToolRotateFeature *mRotateTool = nullptr;
QgsMapToolScaleFeature *mScaleTool = nullptr;
QgsVectorLayer *mLayerBase = nullptr;
};

TestQgsMapToolRotateFeature::TestQgsMapToolRotateFeature() = default;
TestQgsMapToolScaleFeature::TestQgsMapToolScaleFeature() = default;


//runs before all tests
void TestQgsMapToolRotateFeature::initTestCase()
void TestQgsMapToolScaleFeature::initTestCase()
{
qDebug() << "TestMapToolCapture::initTestCase()";
// init QGIS's paths - true means that all path will be inited from prefix
Expand All @@ -76,7 +76,7 @@ void TestQgsMapToolRotateFeature::initTestCase()

mCanvas->setFrameStyle( QFrame::NoFrame );
mCanvas->resize( 512, 512 );
mCanvas->setExtent( QgsRectangle( 0, 0, 8, 8 ) );
mCanvas->setExtent( QgsRectangle( -4, -4, 4, 4 ) );
mCanvas->show(); // to make the canvas resize
mCanvas->hide();

Expand All @@ -86,10 +86,10 @@ void TestQgsMapToolRotateFeature::initTestCase()
QgsProject::instance()->addMapLayers( QList<QgsMapLayer *>() << mLayerBase );

mLayerBase->startEditing();
QString wkt1 = QStringLiteral( "Polygon ((0 0, 0 1, 1 1, 1 0))" );
QString wkt1 = QStringLiteral( "Polygon ((-2 -2, -2 -1, -1 -1, -1 -2))" );
QgsFeature f1;
f1.setGeometry( QgsGeometry::fromWkt( wkt1 ) );
QString wkt2 = QStringLiteral( "Polygon ((1.1 0, 1.1 5, 2.1 5, 2.1 0))" );
QString wkt2 = QStringLiteral( "Polygon ((1.1 0.8, 1.1 5, 2.1 5, 2.1 0.8))" );
QgsFeature f2;
f2.setGeometry( QgsGeometry::fromWkt( wkt2 ) );

Expand All @@ -111,35 +111,40 @@ void TestQgsMapToolRotateFeature::initTestCase()
mCanvas->setCurrentLayer( mLayerBase );

// create the tool
mRotateTool = new QgsMapToolRotateFeature( mCanvas );
mCanvas->setMapTool( mRotateTool );
mScaleTool = new QgsMapToolScaleFeature( mCanvas );
mCanvas->setMapTool( mScaleTool );

QCOMPARE( mCanvas->mapSettings().outputSize(), QSize( 512, 512 ) );
QCOMPARE( mCanvas->mapSettings().visibleExtent(), QgsRectangle( 0, 0, 8, 8 ) );
QCOMPARE( mCanvas->mapSettings().visibleExtent(), QgsRectangle( -4, -4, 4, 4 ) );
}

//runs after all tests
void TestQgsMapToolRotateFeature::cleanupTestCase()
void TestQgsMapToolScaleFeature::cleanupTestCase()
{
delete mRotateTool;
delete mScaleTool;
delete mCanvas;
QgsApplication::exitQgis();
}

void TestQgsMapToolRotateFeature::testRotateFeature()
void TestQgsMapToolScaleFeature::testScaleFeature()
{
TestQgsMapToolUtils utils( mRotateTool );
TestQgsMapToolUtils utils( mScaleTool );

utils.mouseClick( 1, 1, Qt::LeftButton, Qt::KeyboardModifiers(), true );
utils.mouseMove( 2, 1 );
utils.mouseClick( 2, 1, Qt::LeftButton, Qt::KeyboardModifiers(), true );
//scale up
utils.mouseClick( -2, -1, Qt::LeftButton, Qt::KeyboardModifiers(), true );
utils.mouseMove( -2.5, -0.5 );
utils.mouseClick( -2.5, -0.5, Qt::LeftButton, Qt::KeyboardModifiers(), true );
//scale down
utils.mouseClick( 1.1, 0.8, Qt::LeftButton, Qt::KeyboardModifiers(), true );
utils.mouseMove( 1.35, 1.85 );
utils.mouseClick( 1.35, 1.85, Qt::LeftButton, Qt::KeyboardModifiers(), true );

QCOMPARE( mLayerBase->getFeature( 1 ).geometry().asWkt( 2 ), QStringLiteral( "Polygon ((0.72 -0.17, 0.28 1.17, 1.17 0.72, 0.72 -0.17))" ) );
QCOMPARE( mLayerBase->getFeature( 2 ).geometry().asWkt( 2 ), QStringLiteral( "Polygon ((1.1 0, 1.1 5, 2.1 5, 2.1 0))" ) );
QCOMPARE( mLayerBase->getFeature( 1 ).geometry().asWkt( 2 ), QStringLiteral( "Polygon ((-2.5 -2.5, -2.5 -0.5, -0.5 -0.5, -0.5 -2.5))" ) );
QCOMPARE( mLayerBase->getFeature( 2 ).geometry().asWkt( 2 ), QStringLiteral( "Polygon ((1.35 1.85, 1.35 3.95, 1.85 3.95, 1.85 1.85))" ) );

mLayerBase->undoStack()->undo();
}


QGSTEST_MAIN( TestQgsMapToolRotateFeature )
#include "testqgsmaptoolrotatefeature.moc"
QGSTEST_MAIN( TestQgsMapToolScaleFeature )
#include "testqgsmaptoolscalefeature.moc"

0 comments on commit ef76333

Please sign in to comment.