forked from organicmaps/organicmaps
Fixing routing integration tests after stop discarding junctions if all turn candidates go straight or make only slight turns.
This commit is contained in:
parent
04fbed9f22
commit
9cf52b0368
3 changed files with 9 additions and 6 deletions
|
@ -18,13 +18,15 @@ UNIT_TEST(RussiaMoscowSevTushinoParkBicycleWayTurnTest)
|
|||
IRouter::ResultCode const result = routeResult.second;
|
||||
TEST_EQUAL(result, IRouter::NoError, ());
|
||||
|
||||
integration::TestTurnCount(route, 4 /* expectedTurnCount */);
|
||||
integration::TestTurnCount(route, 5 /* expectedTurnCount */);
|
||||
integration::GetNthTurn(route, 0).TestValid().TestOneOfDirections(
|
||||
{CarDirection::GoStraight, CarDirection::TurnSlightLeft});
|
||||
{CarDirection::TurnSlightRight});
|
||||
integration::GetNthTurn(route, 1).TestValid().TestOneOfDirections(
|
||||
{CarDirection::GoStraight, CarDirection::TurnSlightLeft});
|
||||
integration::GetNthTurn(route, 2).TestValid().TestOneOfDirections(
|
||||
{CarDirection::GoStraight, CarDirection::TurnSlightRight});
|
||||
integration::GetNthTurn(route, 2).TestValid().TestDirection(CarDirection::TurnLeft);
|
||||
integration::GetNthTurn(route, 3).TestValid().TestOneOfDirections(
|
||||
integration::GetNthTurn(route, 3).TestValid().TestDirection(CarDirection::TurnLeft);
|
||||
integration::GetNthTurn(route, 4).TestValid().TestOneOfDirections(
|
||||
{CarDirection::TurnSlightRight, CarDirection::TurnRight});
|
||||
integration::TestRouteLength(route, 753.0);
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ UNIT_TEST(RussiaTulskayaToPaveletskayaStreetNamesTest)
|
|||
TEST_EQUAL(result, IRouter::NoError, ());
|
||||
|
||||
integration::TestCurrentStreetName(route, "Большая Тульская улица");
|
||||
integration::TestNextStreetName(route, "Валовая улица");
|
||||
integration::TestNextStreetName(route, "Подольское шоссе");
|
||||
|
||||
MoveRoute(route, ms::LatLon(55.71398, 37.62443));
|
||||
|
||||
|
|
|
@ -583,7 +583,8 @@ UNIT_TEST(NetherlandsGorinchemBridgeTest)
|
|||
IRouter::ResultCode const result = routeResult.second;
|
||||
|
||||
TEST_EQUAL(result, IRouter::NoError, ());
|
||||
integration::TestTurnCount(route, 0 /* expectedTurnCount */);
|
||||
integration::TestTurnCount(route, 1 /* expectedTurnCount */);
|
||||
integration::GetNthTurn(route, 0).TestValid().TestDirection(CarDirection::TurnSlightLeft);
|
||||
}
|
||||
|
||||
UNIT_TEST(RussiaVoronigProspTrudaTest)
|
||||
|
|
Loading…
Add table
Reference in a new issue