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; }
192 void setSizeTolerance(
int xTolerance,
int yTolerance ) { mMaxSizeDifferenceX = xTolerance; mMaxSizeDifferenceY = yTolerance; }
201 AvoidExportingRenderedImage = 1 << 0,
210 Q_DECLARE_FLAGS( Flags, Flag )
224 bool runTest(
const QString &testName,
unsigned int mismatchCount = 0, QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
238 bool compareImages(
const QString &testName,
unsigned int mismatchCount = 0,
const QString &renderedImageFile = QString(), QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
245 bool compareImages(
const QString &testName,
const QString &referenceImageFile,
const QString &renderedImageFile,
unsigned int mismatchCount = 0, QgsRenderChecker::Flags flags = QgsRenderChecker::Flags() );
257 Q_DECL_DEPRECATED
bool isKnownAnomaly(
const QString &diffImageFile )
SIP_DEPRECATED;
263 static void drawBackground( QImage *image );
294 static QString sourcePath();
301 unsigned int mMatchTarget = 0;
302 int mElapsedTime = 0;
310#if DUMP_BASE64_IMAGES
311 void dumpRenderedImageAsBase64();
314 void performPostTestActions( Flags flags );
316 bool mResult =
false;
317 bool mExpectFail =
false;
321 QString mControlName;
322 unsigned int mMismatchCount = 0;
323 unsigned int mColorTolerance = 0;
324 int mMaxSizeDifferenceX = 0;
325 int mMaxSizeDifferenceY = 0;
326 int mElapsedTimeTarget = 0;
328 QString mControlExtension = QStringLiteral(
"png" );
329 QString mControlPathPrefix;
330 QString mControlPathSuffix;
331 bool mIsCiRun =
false;
332 QVector<QgsDartMeasurement> mDashMessages;
333 bool mBufferDashMessages =
false;
334 QString mDiffImageFile;
349inline
bool compareWkt( const QString &a, const QString &b,
double tolerance = 0.000001 )
351 QgsDebugMsgLevel( QStringLiteral(
"a:%1 b:%2 tol:%3" ).arg( a, b ).arg( tolerance ), 2 );
352 const thread_local QRegularExpression re(
"-?\\d+(?:\\.\\d+)?(?:[eE]\\d+)?" );
354 QString a0( a ), b0( b );
355 a0.replace( re, QStringLiteral(
"#" ) );
356 b0.replace( re, QStringLiteral(
"#" ) );
363 QList<double> al, bl;
366 QRegularExpressionMatch match = re.match( a );
367 while ( match.hasMatch() )
369 al << match.captured( 0 ).toDouble();
370 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
371 match = re.match( a, pos );
373 match = re.match( b );
374 while ( match.hasMatch() )
376 bl << match.captured( 0 ).toDouble();
377 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
378 match = re.match( b, pos );
381 if ( al.size() != bl.size() )
384 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 SIP_ENUM_BASETYPE(type)
#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)