mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-01 00:05:25 -04:00
223 lines
7.0 KiB
C++
223 lines
7.0 KiB
C++
/***************************************************************************
|
|
testqgsrasterfill.cpp
|
|
---------------------
|
|
Date : November 2014
|
|
Copyright : (C) 2014 Nyall Dawson
|
|
Email : nyall dot dawson 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 <qgsmapsettings.h>
|
|
#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 "qgsmultirenderchecker.h"
|
|
|
|
/**
|
|
* \ingroup UnitTests
|
|
* This is a unit test for raster fill types.
|
|
*/
|
|
class TestQgsRasterFill : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestQgsRasterFill() = 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 rasterFillSymbol();
|
|
void coordinateMode();
|
|
void alpha();
|
|
void offset();
|
|
void width();
|
|
|
|
private:
|
|
bool mTestHasError = false ;
|
|
bool setQml( const QString &type );
|
|
bool imageCheck( const QString &type );
|
|
QgsMapSettings mMapSettings;
|
|
QgsVectorLayer *mpPolysLayer = nullptr;
|
|
QgsRasterFillSymbolLayer *mRasterFill = nullptr;
|
|
QgsFillSymbol *mFillSymbol = nullptr;
|
|
QgsSingleSymbolRenderer *mSymbolRenderer = nullptr;
|
|
QString mTestDataDir;
|
|
QString mReport;
|
|
};
|
|
|
|
|
|
void TestQgsRasterFill::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 );
|
|
|
|
// Register the layer with the registry
|
|
QgsProject::instance()->addMapLayers(
|
|
QList<QgsMapLayer *>() << mpPolysLayer );
|
|
|
|
//setup raster fill
|
|
mRasterFill = new QgsRasterFillSymbolLayer();
|
|
mFillSymbol = new QgsFillSymbol();
|
|
mFillSymbol->changeSymbolLayer( 0, mRasterFill );
|
|
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>Raster Fill Renderer Tests</h1>\n" );
|
|
|
|
}
|
|
void TestQgsRasterFill::cleanupTestCase()
|
|
{
|
|
QString myReportFile = QDir::tempPath() + "/qgistest.html";
|
|
QFile myFile( myReportFile );
|
|
if ( myFile.open( QIODevice::WriteOnly | QIODevice::Append ) )
|
|
{
|
|
QTextStream myQTextStream( &myFile );
|
|
myQTextStream << mReport;
|
|
myFile.close();
|
|
}
|
|
|
|
QgsApplication::exitQgis();
|
|
}
|
|
|
|
void TestQgsRasterFill::init()
|
|
{
|
|
mRasterFill->setImageFilePath( mTestDataDir + QStringLiteral( "sample_image.png" ) );
|
|
mRasterFill->setWidth( 30.0 );
|
|
mRasterFill->setWidthUnit( QgsUnitTypes::RenderPixels );
|
|
mRasterFill->setCoordinateMode( QgsRasterFillSymbolLayer::Feature );
|
|
mRasterFill->setOpacity( 1.0 );
|
|
mRasterFill->setOffset( QPointF( 0, 0 ) );
|
|
}
|
|
|
|
void TestQgsRasterFill::cleanup()
|
|
{
|
|
|
|
}
|
|
|
|
void TestQgsRasterFill::rasterFillSymbol()
|
|
{
|
|
mReport += QLatin1String( "<h2>Raster fill symbol renderer test</h2>\n" );
|
|
bool result = imageCheck( QStringLiteral( "rasterfill" ) );
|
|
QVERIFY( result );
|
|
}
|
|
|
|
void TestQgsRasterFill::coordinateMode()
|
|
{
|
|
mReport += QLatin1String( "<h2>Raster fill viewport mode</h2>\n" );
|
|
mRasterFill->setCoordinateMode( QgsRasterFillSymbolLayer::Viewport );
|
|
bool result = imageCheck( QStringLiteral( "rasterfill_viewport" ) );
|
|
QVERIFY( result );
|
|
}
|
|
|
|
void TestQgsRasterFill::alpha()
|
|
{
|
|
mReport += QLatin1String( "<h2>Raster fill alpha</h2>\n" );
|
|
mRasterFill->setOpacity( 0.5 );
|
|
bool result = imageCheck( QStringLiteral( "rasterfill_alpha" ) );
|
|
QVERIFY( result );
|
|
}
|
|
|
|
void TestQgsRasterFill::offset()
|
|
{
|
|
mReport += QLatin1String( "<h2>Raster fill offset</h2>\n" );
|
|
mRasterFill->setOffset( QPointF( 5, 10 ) );
|
|
bool result = imageCheck( QStringLiteral( "rasterfill_offset" ) );
|
|
QVERIFY( result );
|
|
}
|
|
|
|
void TestQgsRasterFill::width()
|
|
{
|
|
mReport += QLatin1String( "<h2>Raster fill width</h2>\n" );
|
|
mRasterFill->setWidthUnit( QgsUnitTypes::RenderMillimeters );
|
|
mRasterFill->setWidth( 5.0 );
|
|
bool result = imageCheck( QStringLiteral( "rasterfill_width" ) );
|
|
QVERIFY( result );
|
|
}
|
|
|
|
//
|
|
// Private helper functions not called directly by CTest
|
|
//
|
|
|
|
bool TestQgsRasterFill::setQml( const QString &type )
|
|
{
|
|
//load a qml style and apply to our layer
|
|
//the style will correspond to the renderer
|
|
//type we are testing
|
|
QString myFileName = mTestDataDir + "polys_" + type + "_symbol.qml";
|
|
bool myStyleFlag = false;
|
|
QString error = mpPolysLayer->loadNamedStyle( myFileName, myStyleFlag );
|
|
if ( !myStyleFlag )
|
|
{
|
|
qDebug( "%s", error.toLocal8Bit().constData() );
|
|
}
|
|
return myStyleFlag;
|
|
}
|
|
|
|
bool TestQgsRasterFill::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 );
|
|
QgsMultiRenderChecker myChecker;
|
|
myChecker.setControlPathPrefix( QStringLiteral( "symbol_rasterfill" ) );
|
|
myChecker.setControlName( "expected_" + testType );
|
|
myChecker.setMapSettings( mMapSettings );
|
|
myChecker.setColorTolerance( 20 );
|
|
bool myResultFlag = myChecker.runTest( testType, 500 );
|
|
mReport += myChecker.report();
|
|
return myResultFlag;
|
|
}
|
|
|
|
QGSTEST_MAIN( TestQgsRasterFill )
|
|
#include "testqgsrasterfill.moc"
|