2012-07-21 03:33:14 +02:00
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
#include <mapnik/projection.hpp>
|
2014-12-02 20:21:36 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2012-07-21 03:33:14 +02:00
|
|
|
#include <mapnik/map.hpp>
|
|
|
|
#include <mapnik/save_map.hpp>
|
|
|
|
#include <mapnik/graphics.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/memory_datasource.hpp>
|
|
|
|
#include <mapnik/feature_type_style.hpp>
|
|
|
|
#include <mapnik/feature_factory.hpp>
|
|
|
|
#include <mapnik/rule.hpp>
|
|
|
|
#include <mapnik/expression.hpp>
|
|
|
|
#include <mapnik/layer.hpp>
|
|
|
|
#include <mapnik/agg_renderer.hpp>
|
|
|
|
#include <mapnik/config_error.hpp>
|
|
|
|
#include <mapnik/datasource_cache.hpp>
|
|
|
|
#include <mapnik/params.hpp>
|
2013-06-03 04:28:24 +02:00
|
|
|
#include <mapnik/util/fs.hpp>
|
2013-05-25 02:21:55 +02:00
|
|
|
#include <vector>
|
2013-05-26 01:04:40 +02:00
|
|
|
#include <algorithm>
|
2012-07-21 03:33:14 +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-07-21 03:33:14 +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();
|
|
|
|
|
2014-03-06 10:25:57 +01:00
|
|
|
BOOST_TEST(set_working_dir(args));
|
2012-07-21 03:33:14 +02:00
|
|
|
try {
|
|
|
|
mapnik::projection srs("foo");
|
|
|
|
// to avoid unused variable warning
|
|
|
|
srs.params();
|
|
|
|
BOOST_TEST(false);
|
|
|
|
} catch (...) {
|
|
|
|
BOOST_TEST(true);
|
|
|
|
}
|
|
|
|
|
2014-03-06 10:25:57 +01:00
|
|
|
// https://github.com/mapnik/mapnik/issues/2170
|
|
|
|
try {
|
|
|
|
BOOST_TEST(set_working_dir(args));
|
|
|
|
mapnik::projection srs("+proj=longlat foo",true);
|
|
|
|
BOOST_TEST(srs.is_geographic());
|
2014-07-22 23:58:12 +02:00
|
|
|
BOOST_TEST(true);
|
2014-03-06 10:25:57 +01:00
|
|
|
srs.init_proj4();
|
2014-07-22 23:58:12 +02:00
|
|
|
// oddly init_proj4 does not throw with old proj/ubuntu precise
|
|
|
|
//BOOST_TEST(false);
|
2014-03-06 10:25:57 +01:00
|
|
|
} catch (...) {
|
|
|
|
BOOST_TEST(true);
|
|
|
|
}
|
|
|
|
|
2014-12-02 20:21:36 +01:00
|
|
|
try {
|
|
|
|
mapnik::transcoder tr("bogus encoding");
|
|
|
|
BOOST_TEST(false);
|
|
|
|
} catch (...) {
|
|
|
|
BOOST_TEST(true);
|
|
|
|
}
|
|
|
|
|
2012-07-21 03:33:14 +02:00
|
|
|
mapnik::Map map(256,256);
|
|
|
|
mapnik::rule r;
|
|
|
|
r.set_filter(mapnik::parse_expression("[foo]='bar'"));
|
2013-11-28 07:50:15 +01:00
|
|
|
r.append(std::move(mapnik::markers_symbolizer()));
|
2012-07-21 03:33:14 +02:00
|
|
|
mapnik::feature_type_style style;
|
2014-04-29 02:10:00 +02:00
|
|
|
style.add_rule(std::move(r));
|
2014-09-05 07:03:54 +02:00
|
|
|
map.insert_style("style", std::move(style));
|
2012-07-21 03:33:14 +02:00
|
|
|
|
|
|
|
std::string csv_plugin("./plugins/input/csv.input");
|
2013-06-03 04:28:24 +02:00
|
|
|
if (mapnik::util::exists(csv_plugin)) {
|
2012-07-21 03:33:14 +02:00
|
|
|
try {
|
2012-09-07 17:23:03 +02:00
|
|
|
mapnik::datasource_cache::instance().register_datasource(csv_plugin);
|
2012-07-21 03:33:14 +02:00
|
|
|
mapnik::parameters p;
|
|
|
|
p["type"]="csv";
|
|
|
|
p["inline"]="x,y\n0,0";
|
2012-09-07 17:23:03 +02:00
|
|
|
mapnik::datasource_ptr ds = mapnik::datasource_cache::instance().create(p);
|
2012-07-21 03:33:14 +02:00
|
|
|
mapnik::layer l("layer");
|
|
|
|
l.set_datasource(ds);
|
|
|
|
l.add_style("style");
|
|
|
|
mapnik::Map m = map;
|
2013-11-28 07:50:15 +01:00
|
|
|
m.add_layer(l);
|
2012-07-21 03:33:14 +02:00
|
|
|
m.zoom_all();
|
|
|
|
mapnik::image_32 im(m.width(),m.height());
|
|
|
|
mapnik::agg_renderer<mapnik::image_32> ren(m,im);
|
|
|
|
//std::clog << mapnik::save_map_to_string(m) << "\n";
|
|
|
|
BOOST_TEST(true);
|
2013-01-04 01:25:14 +01:00
|
|
|
// should throw here with "CSV Plugin: no attribute 'foo'. Valid attributes are: x,y."
|
2012-07-21 03:33:14 +02:00
|
|
|
ren.apply();
|
|
|
|
BOOST_TEST(false);
|
|
|
|
} catch (...) {
|
|
|
|
BOOST_TEST(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string shape_plugin("./plugins/input/shape.input");
|
2013-06-03 04:28:24 +02:00
|
|
|
if (mapnik::util::exists(shape_plugin)) {
|
2012-07-21 03:33:14 +02:00
|
|
|
try {
|
2012-09-07 17:23:03 +02:00
|
|
|
mapnik::datasource_cache::instance().register_datasource(shape_plugin);
|
2012-07-21 03:33:14 +02:00
|
|
|
mapnik::parameters p2;
|
|
|
|
p2["type"]="shape";
|
|
|
|
p2["file"]="foo";
|
2012-09-07 17:23:03 +02:00
|
|
|
mapnik::datasource_cache::instance().create(p2);
|
2012-07-21 03:33:14 +02:00
|
|
|
BOOST_TEST(false);
|
|
|
|
} catch (...) {
|
|
|
|
BOOST_TEST(true);
|
|
|
|
}
|
|
|
|
}
|
2012-09-07 17:23:03 +02:00
|
|
|
|
2012-07-21 03:33:14 +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++ exceptions: \x1b[1;32m✓ \x1b[0m\n";
|
2012-07-21 03:33:14 +02:00
|
|
|
::boost::detail::report_errors_remind().called_report_errors_function = true;
|
|
|
|
} else {
|
|
|
|
return ::boost::report_errors();
|
|
|
|
}
|
|
|
|
}
|