mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-10 00:05:25 -04:00
162 lines
5.2 KiB
C++
162 lines
5.2 KiB
C++
/***************************************************************************
|
|
TestQgsCentroidFillSymbol.cpp
|
|
-------------------------
|
|
Date : Apr 2015
|
|
Copyright : (C) 2015 by Mathieu Pellerin
|
|
Email : nirvn dot asia at gmail dot com
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
#include "qgstest.h"
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QApplication>
|
|
#include <QFileInfo>
|
|
#include <QDir>
|
|
#include <QDesktopServices>
|
|
|
|
//qgis includes...
|
|
#include <qgsmaplayer.h>
|
|
#include <qgsvectorlayer.h>
|
|
#include <qgsapplication.h>
|
|
#include <qgsproviderregistry.h>
|
|
#include <qgsproject.h>
|
|
#include <qgssymbol.h>
|
|
#include <qgssinglesymbolrenderer.h>
|
|
#include <qgsfillsymbollayer.h>
|
|
|
|
//qgis test includes
|
|
#include "qgsrenderchecker.h"
|
|
|
|
/**
|
|
* \ingroup UnitTests
|
|
* This is a unit test for line fill symbol types.
|
|
*/
|
|
class TestQgsCentroidFillSymbol : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestQgsCentroidFillSymbol() = default;
|
|
|
|
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 init() {} // will be called before each testfunction is executed.
|
|
void cleanup() {} // will be called after every testfunction.
|
|
|
|
void centroidFillSymbol();
|
|
void centroidFillSymbolPartBiggest();
|
|
|
|
private:
|
|
bool mTestHasError = false ;
|
|
|
|
bool imageCheck( const QString &type );
|
|
QgsMapSettings mMapSettings;
|
|
QgsVectorLayer *mpPolysLayer = nullptr;
|
|
QgsCentroidFillSymbolLayer *mCentroidFill = nullptr;
|
|
QgsFillSymbol *mFillSymbol = nullptr;
|
|
QgsSingleSymbolRenderer *mSymbolRenderer = nullptr;
|
|
QString mTestDataDir;
|
|
QString mReport;
|
|
};
|
|
|
|
|
|
void TestQgsCentroidFillSymbol::initTestCase()
|
|
{
|
|
mTestHasError = false;
|
|
// init QGIS's paths - true means that all path will be inited from prefix
|
|
QgsApplication::init();
|
|
QgsApplication::initQgis();
|
|
QgsApplication::showSettings();
|
|
|
|
//create some objects that will be used in all tests...
|
|
QString myDataDir( TEST_DATA_DIR ); //defined in CmakeLists.txt
|
|
mTestDataDir = myDataDir + '/';
|
|
|
|
//
|
|
//create a poly layer that will be used in all tests...
|
|
//
|
|
QString myPolysFileName = mTestDataDir + "polys.shp";
|
|
QFileInfo myPolyFileInfo( myPolysFileName );
|
|
mpPolysLayer = new QgsVectorLayer( myPolyFileInfo.filePath(),
|
|
myPolyFileInfo.completeBaseName(), QStringLiteral( "ogr" ) );
|
|
|
|
QgsVectorSimplifyMethod simplifyMethod;
|
|
simplifyMethod.setSimplifyHints( QgsVectorSimplifyMethod::NoSimplification );
|
|
mpPolysLayer->setSimplifyMethod( simplifyMethod );
|
|
|
|
//setup gradient fill
|
|
mCentroidFill = new QgsCentroidFillSymbolLayer();
|
|
mFillSymbol = new QgsFillSymbol();
|
|
mFillSymbol->changeSymbolLayer( 0, mCentroidFill );
|
|
mSymbolRenderer = new QgsSingleSymbolRenderer( mFillSymbol );
|
|
mpPolysLayer->setRenderer( mSymbolRenderer );
|
|
|
|
// We only need maprender instead of mapcanvas
|
|
// since maprender does not require a qui
|
|
// and is more light weight
|
|
//
|
|
mMapSettings.setLayers( QList<QgsMapLayer *>() << mpPolysLayer );
|
|
mReport += QLatin1String( "<h1>Centroid Fill Symbol Tests</h1>\n" );
|
|
|
|
}
|
|
void TestQgsCentroidFillSymbol::cleanupTestCase()
|
|
{
|
|
QString myReportFile = QDir::tempPath() + "/qgistest.html";
|
|
QFile myFile( myReportFile );
|
|
if ( myFile.open( QIODevice::WriteOnly | QIODevice::Append ) )
|
|
{
|
|
QTextStream myQTextStream( &myFile );
|
|
myQTextStream << mReport;
|
|
myFile.close();
|
|
}
|
|
|
|
delete mpPolysLayer;
|
|
|
|
QgsApplication::exitQgis();
|
|
}
|
|
|
|
void TestQgsCentroidFillSymbol::centroidFillSymbol()
|
|
{
|
|
mReport += QLatin1String( "<h2>Line fill symbol renderer test</h2>\n" );
|
|
|
|
QVERIFY( imageCheck( "symbol_centroidfill" ) );
|
|
}
|
|
|
|
void TestQgsCentroidFillSymbol::centroidFillSymbolPartBiggest()
|
|
{
|
|
mCentroidFill->setPointOnAllParts( false );
|
|
|
|
QVERIFY( imageCheck( "symbol_centroidfill_part_biggest" ) );
|
|
}
|
|
|
|
//
|
|
// Private helper functions not called directly by CTest
|
|
//
|
|
|
|
|
|
bool TestQgsCentroidFillSymbol::imageCheck( const QString &testType )
|
|
{
|
|
//use the QgsRenderChecker test utility class to
|
|
//ensure the rendered output matches our control image
|
|
mMapSettings.setExtent( mpPolysLayer->extent() );
|
|
mMapSettings.setOutputDpi( 96 );
|
|
QgsRenderChecker myChecker;
|
|
myChecker.setControlPathPrefix( QStringLiteral( "symbol_centroidfill" ) );
|
|
myChecker.setControlName( "expected_" + testType );
|
|
myChecker.setMapSettings( mMapSettings );
|
|
bool myResultFlag = myChecker.runTest( testType );
|
|
mReport += myChecker.report();
|
|
return myResultFlag;
|
|
}
|
|
|
|
QGSTEST_MAIN( TestQgsCentroidFillSymbol )
|
|
#include "testqgscentroidfillsymbol.moc"
|