add osrm-routed and node-osrm flags to configure mapmatching radius limit (#4721)
This commit is contained in:
@@ -104,7 +104,7 @@ BOOST_AUTO_TEST_CASE(test_table_limits)
|
||||
BOOST_CHECK(code == "TooBig"); // per the New-Server API spec
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_match_limits)
|
||||
BOOST_AUTO_TEST_CASE(test_match_coordinate_limits)
|
||||
{
|
||||
using namespace osrm;
|
||||
|
||||
@@ -131,6 +131,38 @@ BOOST_AUTO_TEST_CASE(test_match_limits)
|
||||
BOOST_CHECK(code == "TooBig"); // per the New-Server API spec
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_match_radiuses_limits)
|
||||
{
|
||||
using namespace osrm;
|
||||
|
||||
EngineConfig config;
|
||||
config.storage_config = {OSRM_TEST_DATA_DIR "/ch/monaco.osrm"};
|
||||
config.use_shared_memory = false;
|
||||
config.max_radius_map_matching = 2.0;
|
||||
|
||||
OSRM osrm{config};
|
||||
|
||||
MatchParameters params;
|
||||
osrm::util::Coordinate coord1 = {osrm::util::FloatLongitude{7.41748809814453},
|
||||
osrm::util::FloatLatitude{43.73558473009846}};
|
||||
osrm::util::Coordinate coord2 = {osrm::util::FloatLongitude{7.417193055152893},
|
||||
osrm::util::FloatLatitude{43.735162245104775}};
|
||||
params.coordinates.emplace_back(coord1);
|
||||
params.coordinates.emplace_back(coord2);
|
||||
params.radiuses.emplace_back(3.0);
|
||||
params.radiuses.emplace_back(2.0);
|
||||
|
||||
json::Object result;
|
||||
|
||||
const auto rc = osrm.Match(params, result);
|
||||
|
||||
BOOST_CHECK(rc == Status::Error);
|
||||
|
||||
// Make sure we're not accidentally hitting a guard code path before
|
||||
const auto code = result.values["code"].get<json::String>().value;
|
||||
BOOST_CHECK(code == "TooBig"); // per the New-Server API spec
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_nearest_limits)
|
||||
{
|
||||
using namespace osrm;
|
||||
|
||||
Reference in New Issue
Block a user