2016-03-16 06:58:39 -04:00
|
|
|
#include <boost/test/test_case_template.hpp>
|
2016-04-13 11:23:03 -04:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2016-03-16 06:58:39 -04:00
|
|
|
|
2016-03-16 09:53:14 -04:00
|
|
|
#include "args.hpp"
|
2016-04-13 11:23:03 -04:00
|
|
|
#include "coordinates.hpp"
|
2016-03-24 16:02:55 -04:00
|
|
|
#include "fixture.hpp"
|
2016-03-16 07:42:26 -04:00
|
|
|
|
|
|
|
#include "osrm/trip_parameters.hpp"
|
|
|
|
|
|
|
|
#include "osrm/coordinate.hpp"
|
|
|
|
#include "osrm/engine_config.hpp"
|
|
|
|
#include "osrm/json_container.hpp"
|
|
|
|
#include "osrm/osrm.hpp"
|
2016-04-13 11:23:03 -04:00
|
|
|
#include "osrm/status.hpp"
|
2016-03-16 07:42:26 -04:00
|
|
|
|
2016-03-16 06:58:39 -04:00
|
|
|
BOOST_AUTO_TEST_SUITE(trip)
|
|
|
|
|
2016-04-13 11:23:03 -04:00
|
|
|
BOOST_AUTO_TEST_CASE(test_trip_response_for_locations_in_small_component)
|
2016-03-16 07:42:26 -04:00
|
|
|
{
|
|
|
|
const auto args = get_args();
|
2016-04-13 11:23:03 -04:00
|
|
|
auto osrm = getOSRM(args.at(0));
|
2016-03-16 07:42:26 -04:00
|
|
|
|
|
|
|
using namespace osrm;
|
|
|
|
|
2016-04-13 11:23:03 -04:00
|
|
|
const auto locations = get_locations_in_small_component();
|
2016-03-16 07:42:26 -04:00
|
|
|
|
|
|
|
TripParameters params;
|
2016-04-13 11:23:03 -04:00
|
|
|
params.coordinates.push_back(locations.at(0));
|
|
|
|
params.coordinates.push_back(locations.at(1));
|
|
|
|
params.coordinates.push_back(locations.at(2));
|
2016-03-16 07:42:26 -04:00
|
|
|
|
|
|
|
json::Object result;
|
|
|
|
const auto rc = osrm.Trip(params, result);
|
2016-04-13 11:23:03 -04:00
|
|
|
BOOST_CHECK(rc == Status::Ok);
|
|
|
|
|
|
|
|
const auto code = result.values.at("code").get<json::String>().value;
|
|
|
|
BOOST_CHECK_EQUAL(code, "Ok");
|
|
|
|
|
|
|
|
const auto &waypoints = result.values.at("waypoints").get<json::Array>().values;
|
2016-04-14 05:27:26 -04:00
|
|
|
BOOST_CHECK_EQUAL(waypoints.size(), params.coordinates.size());
|
|
|
|
|
|
|
|
const auto &trips = result.values.at("trips").get<json::Array>().values;
|
|
|
|
BOOST_CHECK_EQUAL(trips.size(), 1);
|
|
|
|
|
|
|
|
for (const auto &waypoint : waypoints)
|
|
|
|
{
|
|
|
|
const auto &waypoint_object = waypoint.get<json::Object>();
|
|
|
|
|
|
|
|
const auto location = waypoint_object.values.at("location").get<json::Array>().values;
|
|
|
|
const auto longitude = location[0].get<json::Number>().value;
|
|
|
|
const auto latitude = location[1].get<json::Number>().value;
|
|
|
|
BOOST_CHECK(longitude >= -180. && longitude <= 180.);
|
|
|
|
BOOST_CHECK(latitude >= -90. && latitude <= 90.);
|
|
|
|
|
|
|
|
const auto trip = waypoint_object.values.at("trips_index").get<json::Number>().value;
|
|
|
|
const auto pos = waypoint_object.values.at("waypoint_index").get<json::Number>().value;
|
|
|
|
BOOST_CHECK(trip >= 0 && trip < trips.size());
|
|
|
|
BOOST_CHECK(pos >= 0 && pos < waypoints.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(test_trip_response_for_locations_in_big_component)
|
|
|
|
{
|
|
|
|
const auto args = get_args();
|
|
|
|
auto osrm = getOSRM(args.at(0));
|
|
|
|
|
|
|
|
using namespace osrm;
|
|
|
|
|
|
|
|
const auto locations = get_locations_in_big_component();
|
|
|
|
|
|
|
|
TripParameters params;
|
|
|
|
params.coordinates.push_back(locations.at(0));
|
|
|
|
params.coordinates.push_back(locations.at(1));
|
|
|
|
params.coordinates.push_back(locations.at(2));
|
|
|
|
|
|
|
|
json::Object result;
|
|
|
|
const auto rc = osrm.Trip(params, result);
|
|
|
|
BOOST_CHECK(rc == Status::Ok);
|
|
|
|
|
|
|
|
const auto code = result.values.at("code").get<json::String>().value;
|
|
|
|
BOOST_CHECK_EQUAL(code, "Ok");
|
|
|
|
|
|
|
|
const auto &waypoints = result.values.at("waypoints").get<json::Array>().values;
|
2016-04-13 11:23:03 -04:00
|
|
|
BOOST_CHECK_EQUAL(waypoints.size(), params.coordinates.size());
|
|
|
|
|
|
|
|
const auto &trips = result.values.at("trips").get<json::Array>().values;
|
|
|
|
BOOST_CHECK_EQUAL(trips.size(), 1);
|
|
|
|
|
|
|
|
for (const auto &waypoint : waypoints)
|
|
|
|
{
|
|
|
|
const auto &waypoint_object = waypoint.get<json::Object>();
|
|
|
|
|
|
|
|
const auto location = waypoint_object.values.at("location").get<json::Array>().values;
|
|
|
|
const auto longitude = location[0].get<json::Number>().value;
|
|
|
|
const auto latitude = location[1].get<json::Number>().value;
|
|
|
|
BOOST_CHECK(longitude >= -180. && longitude <= 180.);
|
|
|
|
BOOST_CHECK(latitude >= -90. && latitude <= 90.);
|
2016-03-16 07:42:26 -04:00
|
|
|
|
2016-04-13 11:23:03 -04:00
|
|
|
const auto trip = waypoint_object.values.at("trips_index").get<json::Number>().value;
|
|
|
|
const auto pos = waypoint_object.values.at("waypoint_index").get<json::Number>().value;
|
|
|
|
BOOST_CHECK(trip >= 0 && trip < trips.size());
|
|
|
|
BOOST_CHECK(pos >= 0 && pos < waypoints.size());
|
|
|
|
}
|
2016-03-16 07:42:26 -04:00
|
|
|
}
|
2016-03-16 06:58:39 -04:00
|
|
|
|
2016-04-14 06:16:42 -04:00
|
|
|
BOOST_AUTO_TEST_CASE(test_trip_response_for_locations_across_components)
|
|
|
|
{
|
|
|
|
const auto args = get_args();
|
|
|
|
auto osrm = getOSRM(args.at(0));
|
|
|
|
|
|
|
|
using namespace osrm;
|
|
|
|
|
|
|
|
const auto small = get_locations_in_small_component();
|
|
|
|
const auto big = get_locations_in_big_component();
|
|
|
|
|
|
|
|
TripParameters params;
|
|
|
|
params.coordinates.push_back(small.at(0));
|
|
|
|
params.coordinates.push_back(big.at(0));
|
|
|
|
params.coordinates.push_back(small.at(1));
|
|
|
|
params.coordinates.push_back(big.at(1));
|
|
|
|
|
|
|
|
json::Object result;
|
|
|
|
const auto rc = osrm.Trip(params, result);
|
|
|
|
BOOST_CHECK(rc == Status::Ok);
|
|
|
|
|
|
|
|
const auto code = result.values.at("code").get<json::String>().value;
|
|
|
|
BOOST_CHECK_EQUAL(code, "Ok");
|
|
|
|
|
|
|
|
const auto &waypoints = result.values.at("waypoints").get<json::Array>().values;
|
|
|
|
BOOST_CHECK_EQUAL(waypoints.size(), params.coordinates.size());
|
|
|
|
|
|
|
|
const auto &trips = result.values.at("trips").get<json::Array>().values;
|
|
|
|
BOOST_CHECK_EQUAL(trips.size(), 1);
|
|
|
|
// ^ First snapping, then SCC decomposition (see plugins/trip.cpp). Therefore only a single trip.
|
|
|
|
|
|
|
|
for (const auto &waypoint : waypoints)
|
|
|
|
{
|
|
|
|
const auto &waypoint_object = waypoint.get<json::Object>();
|
|
|
|
|
|
|
|
const auto location = waypoint_object.values.at("location").get<json::Array>().values;
|
|
|
|
const auto longitude = location[0].get<json::Number>().value;
|
|
|
|
const auto latitude = location[1].get<json::Number>().value;
|
|
|
|
BOOST_CHECK(longitude >= -180. && longitude <= 180.);
|
|
|
|
BOOST_CHECK(latitude >= -90. && latitude <= 90.);
|
|
|
|
|
|
|
|
const auto trip = waypoint_object.values.at("trips_index").get<json::Number>().value;
|
|
|
|
const auto pos = waypoint_object.values.at("waypoint_index").get<json::Number>().value;
|
|
|
|
BOOST_CHECK(trip >= 0 && trip < trips.size());
|
|
|
|
BOOST_CHECK(pos >= 0 && pos < waypoints.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-16 06:58:39 -04:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|