/***************************************************************************** * * 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 * *****************************************************************************/ #include "catch.hpp" #include #include #include #include #include #include #include #include #include namespace detail { std::pair fetch_first_feature(std::string const& filename, bool cache_features) { mapnik::parameters params; params["type"] = "geojson"; params["file"] = filename; params["cache-features"] = cache_features; auto ds = mapnik::datasource_cache::instance().create(params); CHECK(ds->type() == mapnik::datasource::datasource_t::Vector); auto fields = ds->get_descriptor().get_descriptors(); mapnik::query query(ds->envelope()); for (auto const& field : fields) { query.add_property_name(field.get_name()); } auto features = ds->features(query); auto feature = features->next(); return std::make_pair(ds,feature); } int create_disk_index(std::string const& filename, bool silent) { std::string cmd; if (std::getenv("DYLD_LIBRARY_PATH") != nullptr) { cmd += std::string("export DYLD_LIBRARY_PATH=") + std::getenv("DYLD_LIBRARY_PATH") + " && "; } cmd += "mapnik-index " + filename; if (silent) { #ifndef _WINDOWS cmd += " 2>/dev/null"; #else cmd += "2> nul"; #endif } return std::system(cmd.c_str()); } } TEST_CASE("geojson") { std::string geojson_plugin("./plugins/input/geojson.input"); if (mapnik::util::exists(geojson_plugin)) { SECTION("GeoJSON Point") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/point.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Point); auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::Point); auto const& pt = mapnik::util::get >(geometry); REQUIRE(pt.x == 100); REQUIRE(pt.y == 0); } } SECTION("GeoJSON LineString") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/linestring.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::LineString); auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::LineString); auto const& line = mapnik::util::get >(geometry); REQUIRE(line.size() == 2); REQUIRE(mapnik::geometry::envelope(line) == mapnik::box2d(100,0,101,1)); } } SECTION("GeoJSON Polygon") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/polygon.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Polygon); auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::Polygon); auto const& poly = mapnik::util::get >(geometry); REQUIRE(poly.num_rings() == 2); REQUIRE(poly.exterior_ring.size() == 5); REQUIRE(poly.interior_rings.size() == 1); REQUIRE(poly.interior_rings[0].size() == 5); REQUIRE(mapnik::geometry::envelope(poly) == mapnik::box2d(100,0,101,1)); } } SECTION("GeoJSON MultiPoint") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/multipoint.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Point); auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::MultiPoint); auto const& multi_pt = mapnik::util::get >(geometry); REQUIRE(multi_pt.size() == 2); REQUIRE(mapnik::geometry::envelope(multi_pt) == mapnik::box2d(100,0,101,1)); } } SECTION("GeoJSON MultiLineString") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/multilinestring.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::LineString); auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::MultiLineString); auto const& multi_line = mapnik::util::get >(geometry); REQUIRE(multi_line.size() == 2); REQUIRE(multi_line[0].size() == 2); REQUIRE(multi_line[1].size() == 2); REQUIRE(mapnik::geometry::envelope(multi_line) == mapnik::box2d(100,0,103,3)); } } SECTION("GeoJSON MultiPolygon") { for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature("./test/data/json/multipolygon.json", cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Polygon); // test auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::MultiPolygon); auto const& multi_poly = mapnik::util::get >(geometry); REQUIRE(multi_poly.size() == 2); REQUIRE(multi_poly[0].num_rings() == 1); REQUIRE(multi_poly[1].num_rings() == 2); REQUIRE(mapnik::geometry::envelope(multi_poly) == mapnik::box2d(100,0,103,3)); } } SECTION("GeoJSON GeometryCollection") { std::string filename("./test/data/json/geometrycollection.json"); for (auto create_index : { true, false }) { if (create_index) { int ret = detail::create_disk_index(filename, true); int ret_posix = (ret >> 8) & 0x000000ff; INFO(ret); INFO(ret_posix); // index will not exist because this is not a featurecollection CHECK(!mapnik::util::exists(filename + ".index")); } for (auto cache_features : {true, false}) { auto result = detail::fetch_first_feature(filename, cache_features); auto feature = result.second; auto ds = result.first; CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Collection); // test auto const& geometry = feature->get_geometry(); REQUIRE(mapnik::geometry::geometry_type(geometry) == mapnik::geometry::GeometryCollection); auto const& collection = mapnik::util::get >(geometry); REQUIRE(collection.size() == 2); REQUIRE(mapnik::geometry::geometry_type(collection[0]) == mapnik::geometry::Point); REQUIRE(mapnik::geometry::geometry_type(collection[1]) == mapnik::geometry::LineString); REQUIRE(mapnik::geometry::envelope(collection) == mapnik::box2d(100,0,102,1)); } } } SECTION("GeoJSON Feature") { // Create datasource mapnik::parameters params; params["type"] = "geojson"; std::string filename("./test/data/json/feature.json"); params["file"] = filename; for (auto create_index : { true, false }) { if (create_index) { int ret = detail::create_disk_index(filename, true); int ret_posix = (ret >> 8) & 0x000000ff; INFO(ret); INFO(ret_posix); // index will not exist because this is not a featurecollection CHECK(!mapnik::util::exists(filename + ".index")); } for (auto cache_features : {true, false}) { params["cache-features"] = cache_features; auto ds = mapnik::datasource_cache::instance().create(params); REQUIRE(bool(ds)); CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Point); auto fields = ds->get_descriptor().get_descriptors(); mapnik::query query(ds->envelope()); for (auto const& field : fields) { query.add_property_name(field.get_name()); } auto features = ds->features(query); REQUIRE(features != nullptr); auto feature = features->next(); REQUIRE(feature != nullptr); } } } SECTION("GeoJSON FeatureCollection") { std::string filename("./test/data/json/featurecollection.json"); // cleanup in the case of a failed previous run if (mapnik::util::exists(filename + ".index")) { boost::filesystem::remove(filename + ".index"); } for (auto create_index : { true, false }) { if (create_index) { int ret = detail::create_disk_index(filename, true); int ret_posix = (ret >> 8) & 0x000000ff; INFO(ret); INFO(ret_posix); CHECK(mapnik::util::exists(filename + ".index")); } mapnik::parameters params; params["type"] = "geojson"; params["file"] = filename; for (auto cache_features : {true, false}) { params["cache_features"] = cache_features; auto ds = mapnik::datasource_cache::instance().create(params); CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Collection); auto fields = ds->get_descriptor().get_descriptors(); mapnik::query query(ds->envelope()); for (auto const& field : fields) { query.add_property_name(field.get_name()); } auto features = ds->features(query); auto bounding_box = ds->envelope(); mapnik::box2d bbox; mapnik::value_integer count = 0; while (true) { auto feature = features->next(); if (!feature) break; if (!bbox.valid()) bbox = feature->envelope(); else bbox.expand_to_include(feature->envelope()); ++count; REQUIRE(feature->id() == count); } REQUIRE(count == 3); REQUIRE(bounding_box == bbox); } if (mapnik::util::exists(filename + ".index")) { CHECK(mapnik::util::remove(filename + ".index")); } } } SECTION("GeoJSON extra properties") { // Create datasource mapnik::parameters params; params["type"] = "geojson"; std::string filename("./test/data/json/feature_collection_extra_properties.json"); params["file"] = filename; // cleanup in the case of a failed previous run if (mapnik::util::exists(filename + ".index")) { boost::filesystem::remove(filename + ".index"); } for (auto create_index : { true, false }) { if (create_index) { int ret = detail::create_disk_index(filename, true); int ret_posix = (ret >> 8) & 0x000000ff; INFO(ret); INFO(ret_posix); CHECK(mapnik::util::exists(filename + ".index")); } for (auto cache_features : {true, false}) { params["cache-features"] = cache_features; auto ds = mapnik::datasource_cache::instance().create(params); CHECK(ds->get_geometry_type() == mapnik::datasource_geometry_t::Point); REQUIRE(bool(ds)); auto fields = ds->get_descriptor().get_descriptors(); mapnik::query query(ds->envelope()); for (auto const& field : fields) { query.add_property_name(field.get_name()); } auto features = ds->features(query); REQUIRE(features != nullptr); auto feature = features->next(); REQUIRE(feature != nullptr); REQUIRE(feature->envelope() == mapnik::box2d(123,456,123,456)); } // cleanup if (create_index && mapnik::util::exists(filename + ".index")) { boost::filesystem::remove(filename + ".index"); } } } SECTION("GeoJSON ensure input fully consumed and throw exception otherwise") { mapnik::parameters params; params["type"] = "geojson"; std::string filename("./test/data/json/points-malformed.geojson"); params["file"] = filename; // mismatched parentheses // cleanup in the case of a failed previous run if (mapnik::util::exists(filename + ".index")) { boost::filesystem::remove(filename + ".index"); } for (auto create_index : { true, false }) { if (create_index) { CHECK(!mapnik::util::exists(filename + ".index")); int ret = detail::create_disk_index(filename, true); int ret_posix = (ret >> 8) & 0x000000ff; INFO(ret); INFO(ret_posix); CHECK(mapnik::util::exists(filename + ".index")); } for (auto cache_features : {true, false}) { std::stringstream msg; msg << "testcase: create index " << create_index << " cache-features " << cache_features; params["cache-features"] = cache_features; INFO(msg.str()); if (!create_index) CHECK_THROWS(mapnik::datasource_cache::instance().create(params)); } // cleanup if (create_index && mapnik::util::exists(filename + ".index")) { boost::filesystem::remove(filename + ".index"); } } } } }