[routing] Online osrm router integration tests

This commit is contained in:
Lev Dragunov 2015-05-13 16:48:16 +03:00 committed by Alex Zolotarev
parent 8bb306996a
commit 7ee466f634
4 changed files with 34 additions and 0 deletions

View file

@ -24,6 +24,7 @@ win32* : LIBS *= -lShell32
SOURCES += \
../testing/testingmain.cpp \
online_cross_tests.cpp \
osrm_route_test.cpp \
osrm_turn_test.cpp \
osrm_test_tools.cpp \

View file

@ -0,0 +1,13 @@
#include "testing/testing.hpp"
#include "integration_tests/osrm_test_tools.hpp"
namespace
{
UNIT_TEST(OnlineRussiaNorthToSouthTest)
{
shared_ptr<integration::OsrmRouterComponents> routerComponents = integration::GetAllMaps();
TestOnlineCrosses({34.45, 61.76}, {38.94, 45.07},
{"Russia_Central", "Russia_Southern", "Russia_Northwestern"}, routerComponents);
}
} // namespace

View file

@ -6,6 +6,7 @@
#include "geometry/distance_on_sphere.hpp"
#include "routing/online_cross_fetcher.hpp"
#include "routing/route.hpp"
#include "map/feature_vec_model.hpp"
@ -97,6 +98,7 @@ namespace integration
m_searchEngine(CreateSearchEngine(m_featuresFetcher)),
m_osrmRouter(CreateOsrmRouter(m_featuresFetcher, m_searchEngine)) {}
OsrmRouter * GetOsrmRouter() const { return m_osrmRouter.get(); }
search::Engine * GetSearchEngine() const { return m_searchEngine.get(); }
private:
shared_ptr<model::FeaturesFetcher> m_featuresFetcher;
@ -248,4 +250,18 @@ namespace integration
}
return TestTurn();
}
void TestOnlineCrosses(m2::PointD const & startPoint, m2::PointD const & finalPoint,
vector<string> const & expected,
shared_ptr<OsrmRouterComponents> & routerComponents)
{
routing::OnlineCrossFetcher fetcher(OSRM_ONLINE_SERVER_URL, startPoint, finalPoint);
vector<m2::PointD> const & points = fetcher.GetMwmPoints();
TEST_EQUAL(points.size(), expected.size(), ());
for (m2::PointD const & point : points)
{
string const mwmName = routerComponents->GetSearchEngine()->GetCountryFile(point);
TEST(find(expected.begin(), expected.end(), mwmName) != expected.end(), ());
}
}
}

View file

@ -37,6 +37,10 @@ namespace integration
{
class OsrmRouterComponents;
void TestOnlineCrosses(m2::PointD const & startPoint, m2::PointD const & finalPoint,
vector<string> const & expected,
shared_ptr<OsrmRouterComponents> & routerComponents);
shared_ptr<OsrmRouterComponents> GetAllMaps();
shared_ptr<OsrmRouterComponents> LoadMaps(vector<string> const & mapNames);
RouteResultT CalculateRoute(shared_ptr<OsrmRouterComponents> routerComponents,