2012-09-04 20:31:59 +02:00
|
|
|
|
|
|
|
/** Render checker for tests in python */
|
|
|
|
|
|
|
|
class QgsRenderChecker
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgsrenderchecker.h>
|
|
|
|
%End
|
|
|
|
public:
|
|
|
|
|
|
|
|
QgsRenderChecker();
|
|
|
|
|
2012-09-24 02:28:15 +02:00
|
|
|
//! Destructor
|
2012-09-04 20:31:59 +02:00
|
|
|
~QgsRenderChecker();
|
|
|
|
|
|
|
|
QString controlImagePath() const;
|
|
|
|
|
|
|
|
QString report();
|
|
|
|
|
|
|
|
float matchPercent();
|
|
|
|
|
|
|
|
unsigned int mismatchCount();
|
|
|
|
|
|
|
|
unsigned int matchTarget();
|
|
|
|
|
|
|
|
int elapsedTime();
|
|
|
|
|
|
|
|
void setControlName( const QString theName );
|
|
|
|
|
|
|
|
void setControlPathPrefix( const QString theName );
|
|
|
|
|
|
|
|
QString imageToHash( QString theImageFile );
|
|
|
|
|
|
|
|
void setRenderedImage( QString theImageFileName );
|
|
|
|
void setMapRenderer( QgsMapRenderer * thepMapRenderer );
|
|
|
|
bool runTest( QString theTestName, unsigned int theMismatchCount = 0 );
|
|
|
|
|
|
|
|
bool compareImages( QString theTestName, unsigned int theMismatchCount = 0, QString theRenderedImageFile = "" );
|
|
|
|
|
|
|
|
bool isKnownAnomaly( QString theDiffImageFile );
|
|
|
|
};
|