1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#ifndef TestSDKHelpers_h
#define TestSDKHelpers_h
#include <image.h>
#include <window.h>
#include <fstream>
#include <iostream>
namespace TestSDKHelpers
{
static bool RenderTest(const f3d::image& img, const std::string& baselinePath,
const std::string& outputPath, const std::string& name, double threshold = 0.05)
{
if (baselinePath.empty() || outputPath.empty() || name.empty())
{
std::cerr << "A path or name is empty, aborting" << std::endl;
return false;
}
std::string baseline = baselinePath + name + ".png";
std::string output = outputPath + name + ".png";
{
std::ifstream file(baseline.c_str());
if (!file.good())
{
img.save(output);
std::cerr << "Reference image "
<< baseline + " does not exist, current rendering has been outputted to " << output
<< std::endl;
return false;
}
}
f3d::image reference(baseline);
double error = img.compare(reference);
if (error > threshold)
{
std::cerr << "Current rendering difference with reference image " << baseline << " : " << error
<< " is higher than the threshold of " << threshold << std::endl;
std::cerr << "Result resolution: " << img.getWidth() << "x" << img.getHeight() << std::endl;
std::cerr << "Reference resolution: " << reference.getWidth() << "x" << reference.getHeight()
<< std::endl;
std::cerr << "Result image saved to " << output << std::endl;
img.save(output);
return false;
}
std::cout << "Successful render test against " << baseline + " with an error of " << error
<< std::endl;
return true;
}
static bool RenderTest(f3d::window& win, const std::string& baselinePath,
const std::string& outputPath, const std::string& name, double threshold = 0.05,
bool noBackground = false)
{
return TestSDKHelpers::RenderTest(
win.renderToImage(noBackground), baselinePath, outputPath, name, threshold);
}
}
#endif
|