mapnik/test/visual/runner.hpp

73 lines
2.6 KiB
C++
Raw Normal View History

2015-02-17 17:28:49 +01:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2015 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 VISUAL_TEST_RUNNER_HPP
#define VISUAL_TEST_RUNNER_HPP
#include "config.hpp"
#include "report.hpp"
#include "renderer.hpp"
#include "map_sizes_grammar.hpp"
namespace visual_tests
{
class runner
{
using path_type = boost::filesystem::path;
using files_iterator = std::vector<path_type>::const_iterator;
2015-02-17 17:28:49 +01:00
public:
using renderer_container = std::vector<renderer_type>;
runner(path_type const & styles_dir,
2015-07-07 14:35:28 +02:00
std::size_t iterations,
2015-07-23 16:40:00 +02:00
std::size_t fail_limit,
std::size_t jobs,
renderer_container const & renderers);
2015-02-17 17:28:49 +01:00
result_list test_all(report_type & report) const;
result_list test(std::vector<std::string> const & style_names, report_type & report) const;
private:
result_list test_parallel(std::vector<path_type> const & files, report_type & report, std::size_t jobs) const;
2015-07-23 16:40:00 +02:00
result_list test_range(files_iterator begin,
files_iterator end,
std::reference_wrapper<report_type> report,
std::reference_wrapper<std::atomic<std::size_t>> fail_limit) const;
result_list test_one(path_type const & style_path,
config cfg, report_type & report,
std::atomic<std::size_t> & fail_limit) const;
2015-02-17 17:28:49 +01:00
void parse_map_sizes(std::string const & str, std::vector<map_size> & sizes) const;
const map_sizes_grammar<std::string::const_iterator> map_sizes_parser_;
const path_type styles_dir_;
2015-02-17 17:28:49 +01:00
const std::size_t jobs_;
2015-07-07 14:35:28 +02:00
const std::size_t iterations_;
2015-07-23 16:40:00 +02:00
const std::size_t fail_limit_;
const renderer_container renderers_;
2015-02-17 17:28:49 +01:00
};
}
#endif