16#ifndef QGSRENDERCHECKER_H
17#define QGSRENDERCHECKER_H
27#include <QRegularExpression>
30using namespace Qt::StringLiterals;
34#define DUMP_BASE64_IMAGES 0
93 QString
report(
bool ignoreSuccess =
true )
const;
111 return static_cast<float>( mMismatchCount ) /
140 void setControlName(
const QString &name );
154 void setControlPathSuffix(
const QString &name );
157 QString imageToHash(
const QString &imageFile );
193 void setSizeTolerance(
int xTolerance,
int yTolerance ) { mMaxSizeDifferenceX = xTolerance; mMaxSizeDifferenceY = yTolerance; }
202 AvoidExportingRenderedImage = 1 << 0,
298 static QString sourcePath();
315#if DUMP_BASE64_IMAGES
316 void dumpRenderedImageAsBase64();
319 void performPostTestActions(
Flags flags );
321 bool mResult =
false;
322 bool mExpectFail =
false;
326 QString mControlName;
327 unsigned int mMismatchCount = 0;
328 unsigned int mColorTolerance = 0;
329 int mMaxSizeDifferenceX = 0;
330 int mMaxSizeDifferenceY = 0;
331 int mElapsedTimeTarget = 0;
333 QString mControlExtension = u
"png"_s;
334 QString mControlPathPrefix;
335 QString mControlPathSuffix;
336 bool mIsCiRun =
false;
337 QVector<QgsDartMeasurement> mDashMessages;
338 bool mBufferDashMessages =
false;
339 QString mDiffImageFile;
354inline
bool compareWkt( const QString &a, const QString &b,
double tolerance = 0.000001 )
357 const thread_local QRegularExpression re(
"-?\\d+(?:\\.\\d+)?(?:[eE]\\d+)?" );
359 QString a0( a ), b0( b );
360 a0.replace( re, u
"#"_s );
361 b0.replace( re, u
"#"_s );
368 QList<double> al, bl;
371 QRegularExpressionMatch match = re.match( a );
372 while ( match.hasMatch() )
374 al << match.captured( 0 ).toDouble();
375 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
376 match = re.match( a, pos );
378 match = re.match( b );
379 while ( match.hasMatch() )
381 bl << match.captured( 0 ).toDouble();
382 pos = match.capturedStart( 0 ) + match.capturedLength( 0 );
383 match = re.match( b, pos );
386 if ( al.size() != bl.size() )
389 for (
int i = 0; i < al.size(); i++ )
Emits dart measurements for display in CDash reports.
Contains configuration for rendering maps.
Q_DECL_DEPRECATED bool isKnownAnomaly(const QString &diffImageFile)
Gets a list of all the anomalies.
static QDir testReportDir()
Returns the directory to use for generating a test report.
QString markdownReport(bool ignoreSuccess=true) const
Returns the markdown report describing the results of the test run.
void setControlExtension(const QString &extension)
Sets file extension for the control image.
friend class QgsMultiRenderChecker
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.
static bool shouldGenerateReport()
Returns true if a test report should be generated given the current environment.
unsigned int mMatchTarget
void setControlImagePath(const QString &path)
Sets the base path containing the reference images.
bool runTest(const QString &testName, unsigned int mismatchCount=0, QgsRenderChecker::Flags flags=QgsRenderChecker::Flags())
Test using renderer to generate the image to be compared.
QFlags< Flag > Flags
Render checker flags.
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.
QString report(bool ignoreSuccess=true) const
Returns the HTML report describing the results of the test run.
static void drawBackground(QImage *image)
Draws a checkboard pattern for image backgrounds, so that opacity is visible without requiring a tran...
bool compareImages(const QString &testName, unsigned int mismatchCount=0, const QString &renderedImageFile=QString(), QgsRenderChecker::Flags flags=QgsRenderChecker::Flags())
Test using two arbitrary images (map renderer will not be used).
void setRenderedImage(const QString &imageFileName)
Sets the file name of the rendered image generated by the test.
QgsRenderChecker()
Constructor for QgsRenderChecker.
QString mExpectedImageFile
QString controlImagePath() const
Returns the base path containing the reference images.
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.