mapnik/tests/cpp_tests/fontset_runtime_test.cpp

92 lines
3.7 KiB
C++
Raw Normal View History

2012-10-05 01:35:46 +02:00
#include <boost/version.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <iostream>
#include <mapnik/memory_datasource.hpp>
#include <mapnik/feature.hpp>
#include <mapnik/feature_factory.hpp>
#include <mapnik/unicode.hpp>
#include <mapnik/geometry.hpp>
#include <mapnik/map.hpp>
#include <mapnik/params.hpp>
#include <mapnik/expression.hpp>
#include <mapnik/layer.hpp>
#include <mapnik/rule.hpp>
#include <mapnik/feature_type_style.hpp>
#include <mapnik/agg_renderer.hpp>
#include <mapnik/graphics.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/color_factory.hpp>
#include <mapnik/save_map.hpp>
#include <mapnik/value_types.hpp>
#include <mapnik/symbolizer.hpp>
2013-05-25 02:21:55 +02:00
#include <vector>
2013-05-26 01:04:40 +02:00
#include <algorithm>
2012-10-05 01:35:46 +02:00
2013-05-26 03:16:18 +02:00
#include "utils.hpp"
2013-05-25 02:21:55 +02:00
int main(int argc, char** argv)
2012-10-05 01:35:46 +02:00
{
2013-05-25 02:21:55 +02:00
std::vector<std::string> args;
for (int i=1;i<argc;++i)
{
args.push_back(argv[i]);
}
bool quiet = std::find(args.begin(), args.end(), "-q")!=args.end();
2012-10-05 01:35:46 +02:00
try {
2013-05-26 03:16:18 +02:00
BOOST_TEST(set_working_dir(args));
// create a renderable map with a fontset and a text symbolizer
// and do not register any fonts, to ensure the error thrown is reasonable
mapnik::context_ptr ctx = std::make_shared<mapnik::context_type>();
2013-05-26 03:16:18 +02:00
ctx->push("name");
mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx,1));
mapnik::transcoder tr("utf-8");
mapnik::value_unicode_string ustr = tr.transcode("hello world!");
2013-05-26 03:16:18 +02:00
feature->put("name",ustr);
mapnik::geometry_type * pt = new mapnik::geometry_type(mapnik::geometry_type::types::Point);
2013-05-26 03:16:18 +02:00
pt->move_to(128,128);
feature->add_geometry(pt);
std::shared_ptr<mapnik::memory_datasource> ds = std::make_shared<mapnik::memory_datasource>();
2013-07-04 20:27:33 +02:00
ds->push(feature);
2013-05-26 03:16:18 +02:00
mapnik::Map m(256,256);
mapnik::font_set fontset("fontset");
// NOTE: this is a valid font, but will fail because none are registered
fontset.add_face_name("DejaVu Sans Book");
m.insert_fontset("fontset", fontset);
mapnik::layer lyr("layer");
2013-07-04 20:27:33 +02:00
lyr.set_datasource(ds);
2013-05-26 03:16:18 +02:00
lyr.add_style("style");
m.add_layer(lyr);
2013-05-26 03:16:18 +02:00
mapnik::feature_type_style the_style;
mapnik::rule r;
mapnik::text_symbolizer text_sym;
mapnik::text_placements_ptr placement_finder = std::make_shared<mapnik::text_placements_dummy>();
placement_finder->defaults.format->face_name = "DejaVu Sans Book";
placement_finder->defaults.format->text_size = 10;
placement_finder->defaults.format->fill = mapnik::color(0,0,0);
placement_finder->defaults.format->fontset = fontset;
placement_finder->defaults.set_old_style_expression(mapnik::parse_expression("[name]"));
mapnik::put<mapnik::text_placements_ptr>(text_sym, mapnik::keys::text_placements_, placement_finder);
r.append(std::move(text_sym));
the_style.add_rule(r);
2013-05-26 03:16:18 +02:00
m.insert_style("style",the_style );
m.zoom_to_box(mapnik::box2d<double>(-256,-256,
256,256));
mapnik::image_32 buf(m.width(),m.height());
mapnik::agg_renderer<mapnik::image_32> ren(m,buf);
2012-10-05 01:35:46 +02:00
ren.apply();
} catch (std::exception const& ex) {
BOOST_TEST_EQ(std::string(ex.what()),std::string("Unable to find specified font face 'DejaVu Sans Book' in font set: 'fontset'"));
2012-10-05 01:35:46 +02:00
}
if (!::boost::detail::test_errors()) {
2013-05-25 02:21:55 +02:00
if (quiet) std::clog << "\x1b[1;32m.\x1b[0m";
else std::clog << "C++ fontset runtime: \x1b[1;32m✓ \x1b[0m\n";
2012-10-05 01:35:46 +02:00
#if BOOST_VERSION >= 104600
::boost::detail::report_errors_remind().called_report_errors_function = true;
#endif
} else {
return ::boost::report_errors();
}
}