16#ifndef QGSMULTIRENDERCHECKER_H
17#define QGSMULTIRENDERCHECKER_H
87 void setRenderedImage(
const QString &renderedImagePath ) { mRenderedImage = renderedImagePath; }
119 mMaxSizeDifferenceX = xTolerance;
120 mMaxSizeDifferenceY = yTolerance;
136 bool runTest(
const QString &testName,
unsigned int mismatchCount = 0 );
145 QString report()
const;
155 QString markdownReport()
const;
160 QString controlImagePath()
const;
170 QString mSourceFunction;
171 int mSourceLine = -1;
173 bool mResult =
false;
175 QString mReportHeader;
178 QString mMarkdownReportHeader;
179 QString mMarkdownReport;
181 QString mRenderedImage;
182 QString mControlName;
183 QString mControlPathPrefix;
184 unsigned int mColorTolerance = 0;
185 int mMaxSizeDifferenceX = 0;
186 int mMaxSizeDifferenceY = 0;
188 bool mExpectFail =
false;
190 bool mIsCiRun =
false;
206 QgsLayoutChecker(
const QString &testName, QgsLayout *layout );
211 void setSize( QSize size ) { mSize = size; }
232 bool testLayout( QString &report
SIP_OUT,
int page = 0,
int pixelDiff = 0,
bool createReferenceImage =
false );
235 QgsLayoutChecker() =
delete;
238 QgsLayout *mLayout =
nullptr;
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Contains configuration for rendering maps.
Allows checking rendered images against comparison images.
void setControlName(const QString &name)
Base directory name for the control image (with control image path suffixed) the path to the image wi...
void setRenderedImage(const QString &renderedImagePath)
Set the path to the rendered image.
static void drawBackground(QImage *image)
Draws a checkboard pattern for image backgrounds, so that opacity is visible without requiring a tran...
void setControlPathPrefix(const QString &prefix)
Sets the path prefix where the control images are kept.
virtual ~QgsMultiRenderChecker()=default
void setColorTolerance(unsigned int colorTolerance)
Set tolerance for color components used by runTest() Default value is 0.
void setFileFunctionLine(const QString &file, const QString &function, int line)
Sets the source file, function and line from where the test originates.
void setExpectFail(bool expectFail)
Sets whether the comparison is expected to fail.
void setSizeTolerance(int xTolerance, int yTolerance)
Sets the largest allowable difference in size between the rendered and the expected image.
QgsMultiRenderChecker()
Constructor for QgsMultiRenderChecker.
static void drawBackground(QImage *image)
Draws a checkboard pattern for image backgrounds, so that opacity is visible without requiring a tran...