16#ifndef QGSRENDERCHECKER_H
17#define QGSRENDERCHECKER_H
28#include <QRegularExpression>
33#define DUMP_BASE64_IMAGES 0
57 static QDir testReportDir();
65 static bool shouldGenerateReport();
74 QString controlImagePath()
const;
82 void setControlImagePath(
const QString &path );
92 QString report(
bool ignoreSuccess =
true )
const;
103 QString markdownReport(
bool ignoreSuccess =
true )
const;
110 return static_cast<float>( mMismatchCount ) /
111 static_cast<float>( mMatchTarget ) * 100;
139 void setControlName(
const QString &name );
153 void setControlPathSuffix(
const QString &name );
156 QString imageToHash(
const QString &imageFile );
161 void setRenderedImage(
const QString &imageFileName ) { mRenderedImageFile = imageFileName; }
195 void setSizeTolerance(
int xTolerance,
int yTolerance ) { mMaxSizeDifferenceX = xTolerance; mMaxSizeDifferenceY = yTolerance; }
204 AvoidExportingRenderedImage = 1 << 0,
213 Q_DECLARE_FLAGS( Flags, Flag )
227 bool runTest(
const QString &testName,
unsigned int mismatchCount = 0, QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
241 bool compareImages(
const QString &testName,
unsigned int mismatchCount = 0,
const QString &renderedImageFile = QString(), QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
248 bool compareImages(
const QString &testName,
const QString &referenceImageFile,
const QString &renderedImageFile,
unsigned int mismatchCount = 0, QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
260 Q_DECL_DEPRECATED
bool isKnownAnomaly(
const QString &diffImageFile )
SIP_DEPRECATED;
266 static void drawBackground( QImage *image );
297 unsigned int mMatchTarget = 0;
298 int mElapsedTime = 0;
306#if DUMP_BASE64_IMAGES
307 void dumpRenderedImageAsBase64();
310 void performPostTestActions( Flags flags );
312 bool mResult =
false;
313 bool mExpectFail =
false;
317 QString mControlName;
318 unsigned int mMismatchCount = 0;
319 unsigned int mColorTolerance = 0;
320 int mMaxSizeDifferenceX = 0;
321 int mMaxSizeDifferenceY = 0;
322 int mElapsedTimeTarget = 0;
324 QString mControlExtension = QStringLiteral(
"png" );
325 QString mControlPathPrefix;
326 QString mControlPathSuffix;
327 bool mIsCiRun =
false;
328 QVector<QgsDartMeasurement> mDashMessages;
329 bool mBufferDashMessages =
false;
330 QString mDiffImageFile;
345inline
bool compareWkt( const QString &a, const QString &b,
double tolerance = 0.000001 )
347 QgsDebugMsgLevel( QStringLiteral(
"a:%1 b:%2 tol:%3" ).arg( a, b ).arg( tolerance ), 2 );
348 const thread_local QRegularExpression re(
"-?\\d+(?:\\.\\d+)?(?:[eE]\\d+)?" );
350 QString a0( a ), b0( b );
351 a0.replace( re, QStringLiteral(
"#" ) );
352 b0.replace( re, QStringLiteral(
"#" ) );
359 QList<double> al, bl;
362 QRegularExpressionMatch match = re.match( a );
363 while ( match.hasMatch() )
365 al << match.captured( 0 ).toDouble();
366 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
367 match = re.match( a, pos );
369 match = re.match( b );
370 while ( match.hasMatch() )
372 bl << match.captured( 0 ).toDouble();
373 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
374 match = re.match( b, pos );
377 if ( al.size() != bl.size() )
380 for (
int i = 0; i < al.size(); i++ )
The QgsMapSettings class contains configuration for rendering of the map.
This class allows checking rendered images against comparison images.
This is a helper class for unit tests that need to write an image and compare it to an expected resul...
void setControlExtension(const QString &extension)
Sets file extension for the control image.
float matchPercent() const
Returns the percent of pixels which matched the control image.
unsigned int matchTarget() const
Returns the total number of pixels in the control image.
QString mReport
HTML format report.
Flag
Render checker flags.
int elapsedTime() const
Returns the total elapsed time for the rendering test.
QString mRenderedImageFile
QString mMarkdownReport
Markdown report.
QString renderedImage() const
Returns the path of the rendered image generated by the test.
void setElapsedTimeTarget(int target)
QVector< QgsDartMeasurement > dartMeasurements() const
Gets access to buffered dash messages.
void setControlPathPrefix(const QString &name)
Sets the path prefix where the control images are kept.
void setRenderedImage(const QString &imageFileName)
Sets the file name of the rendered image generated by the test.
QString mExpectedImageFile
void setSizeTolerance(int xTolerance, int yTolerance)
Sets the largest allowable difference in size between the rendered and the expected image.
void enableDashBuffering(bool enable)
Call this to enable internal buffering of dash messages.
unsigned int mismatchCount() const
Returns the number of pixels which did not match the control image.
void setExpectFail(bool expectFail)
Sets whether the comparison is expected to fail.
void setColorTolerance(unsigned int colorTolerance)
Set tolerance for color components used by runTest() and compareImages().
QString expectedImageFile() const
Returns the path to the expected image file.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
#define QgsDebugMsgLevel(str, level)
bool compareWkt(const QString &a, const QString &b, double tolerance=0.000001)
Compare two WKT strings with some tolerance.
Q_DECLARE_OPERATORS_FOR_FLAGS(QgsTextRendererUtils::CurvedTextFlags)