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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2025 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef CONSOLE_REPORT_HPP
#define CONSOLE_REPORT_HPP
// stl
#include <iostream>
#include <mapnik/util/variant.hpp>
#include "config.hpp"
namespace visual_tests {
class console_report
{
public:
console_report(bool _show_duration)
: s(std::clog),
show_duration(_show_duration)
{}
console_report(std::ostream& _s)
: s(_s)
{}
void report(result const& r);
unsigned summary(result_list const& results);
protected:
void report_state(result const& r);
void report_failures(result_list const& results);
std::ostream& s;
bool show_duration;
};
class console_short_report : public console_report
{
public:
console_short_report(bool _show_duration)
: console_report(_show_duration)
{}
console_short_report(std::ostream& _s)
: console_report(_s)
{}
void report(result const& r);
};
class html_report
{
public:
html_report(std::ostream& _s)
: s(_s)
{}
void report(result const& r, mapnik::fs::path const& output_dir);
void summary(result_list const& results, mapnik::fs::path const& output_dir);
protected:
std::ostream& s;
};
using report_type = mapnik::util::variant<console_report, console_short_report>;
class report_visitor
{
public:
report_visitor(result const& r)
: result_(r)
{}
template<typename T>
void operator()(T& report) const
{
return report.report(result_);
}
private:
result const& result_;
};
class summary_visitor
{
public:
summary_visitor(result_list const& r)
: result_(r)
{}
template<typename T>
unsigned operator()(T& report) const
{
return report.summary(result_);
}
private:
result_list const& result_;
};
void html_summary(result_list const& results, mapnik::fs::path output_dir);
} // namespace visual_tests
#endif
|