forked from organicmaps/organicmaps-tmp
[routing] Online osrm router integration tests
This commit is contained in:
parent
8bb306996a
commit
7ee466f634
4 changed files with 34 additions and 0 deletions
|
@ -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 \
|
||||
|
|
13
integration_tests/online_cross_tests.cpp
Normal file
13
integration_tests/online_cross_tests.cpp
Normal 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
|
|
@ -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(), ());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue