From 5329135f9eeb1a83750075b588b1bef06af44cb8 Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Wed, 18 Sep 2019 14:55:53 +0300 Subject: [PATCH] Changed unit tests + fixed code style Changed condition only in 1 test in route_tests and --- routing/base/followed_polyline.cpp | 23 ++++++++++-------- routing/base/followed_polyline.hpp | 24 +++++++++++-------- routing/route.cpp | 23 ++++++------------ routing/route.hpp | 9 ++++--- .../street_names_test.cpp | 2 +- routing/routing_session.cpp | 5 +++- routing/routing_tests/route_tests.cpp | 22 ++++++++--------- 7 files changed, 54 insertions(+), 54 deletions(-) diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index 266ed981f3..50febccef3 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -1,5 +1,7 @@ #include "followed_polyline.hpp" +#include "base/assert.hpp" + #include #include @@ -113,7 +115,7 @@ Iter FollowedPolyline::GetBestProjection(m2::RectD const & posRect, { CHECK_EQUAL(m_segProj.size() + 1, m_poly.GetSize(), ()); // At first trying to find a projection to two closest route segments of route which is close - // enough to |posRect| center. If m_current is right before intermediate point we can get closestIter + // enough to |posRect| center. If |m_current| is right before intermediate point we can get |closestIter| // right after intermediate point (in next subroute). size_t const hoppingBorderIdx = min(m_segProj.size(), m_current.m_ind + 2); Iter const closestIter = @@ -127,27 +129,27 @@ Iter FollowedPolyline::GetBestProjection(m2::RectD const & posRect, } template - std::pair FollowedPolyline::GetBestMatchedProjection(m2::RectD const & posRect, + pair FollowedPolyline::GetBestMatchedProjection(m2::RectD const & posRect, DistanceFn const & distFn) const { CHECK_EQUAL(m_segProj.size() + 1, m_poly.GetSize(), ()); // At first trying to find a projection to two closest route segments of route which is close - // enough to |posRect| center. If m_current is right before intermediate point we can get closestIter + // enough to |posRect| center. If |m_current| is right before intermediate point we can get |closestIter| // right after intermediate point (in next subroute). size_t const hoppingBorderIdx = min(m_segProj.size(), m_current.m_ind + 3); Iter closestIter; bool nearestIsFake = false; - std::tie(closestIter, nearestIsFake) = GetClosestMatchedProjectionInInterval(posRect, distFn, m_current.m_ind, + tie(closestIter, nearestIsFake) = GetClosestMatchedProjectionInInterval(posRect, distFn, m_current.m_ind, hoppingBorderIdx); if (closestIter.IsValid()) - return std::make_pair(closestIter, nearestIsFake); + return make_pair(closestIter, nearestIsFake); // If a projection to the 3 closest route segments is not found tries to find projection to other route // segments of current subroute. return GetClosestMatchedProjectionInInterval(posRect, distFn, hoppingBorderIdx, m_nextCheckpointIndex); } -std::pair FollowedPolyline::UpdateMatchedProjection(m2::RectD const & posRect) +pair FollowedPolyline::UpdateMatchedProjection(m2::RectD const & posRect) { ASSERT(m_current.IsValid(), ()); ASSERT_LESS(m_current.m_ind, m_poly.GetSize() - 1, ()); @@ -155,13 +157,13 @@ std::pair FollowedPolyline::UpdateMatchedProjection(m2::RectD const Iter iter; bool nearestIsFake = false; m2::PointD const currPos = posRect.Center(); - std::tie(iter, nearestIsFake) = GetBestMatchedProjection(posRect, [&](Iter const &it) { + tie(iter, nearestIsFake) = GetBestMatchedProjection(posRect, [&](Iter const & it) { return MercatorBounds::DistanceOnEarth(it.m_pt, currPos); }); if (iter.IsValid()) m_current = iter; - return std::make_pair(iter.IsValid(), nearestIsFake); + return make_pair(iter.IsValid(), nearestIsFake); } Iter FollowedPolyline::UpdateProjectionByPrediction(m2::RectD const & posRect, @@ -201,9 +203,10 @@ Iter FollowedPolyline::UpdateProjection(m2::RectD const & posRect) return res; } -void FollowedPolyline::SetUnmatchedSegmentIndexes(std::vector const & unmatchedSegmentIndexes) +void FollowedPolyline::SetUnmatchedSegmentIndexes(vector && unmatchedSegmentIndexes) { - m_unmatchedSegmentIndexes = unmatchedSegmentIndexes; + ASSERT(is_sorted(unmatchedSegmentIndexes.cbegin(), unmatchedSegmentIndexes.cend()), ()); + m_unmatchedSegmentIndexes = move(unmatchedSegmentIndexes); } double FollowedPolyline::GetDistFromCurPointToRoutePointMerc() const diff --git a/routing/base/followed_polyline.hpp b/routing/base/followed_polyline.hpp index 6967bec355..a838778c16 100644 --- a/routing/base/followed_polyline.hpp +++ b/routing/base/followed_polyline.hpp @@ -4,8 +4,11 @@ #include "geometry/point2d.hpp" #include "geometry/polyline2d.hpp" +#include "geometry/rect2d.hpp" +#include #include +#include #include namespace routing @@ -73,10 +76,10 @@ public: Iter UpdateProjectionByPrediction(m2::RectD const & posRect, double predictDistance); - /// \brief set indexes of all unmatched segments on route - void SetUnmatchedSegmentIndexes(std::vector const & unmatchedSegmentIndexes); + /// \brief Sets indexes of all unmatched segments on route. + void SetUnmatchedSegmentIndexes(std::vector && unmatchedSegmentIndexes); - /// \brief Updates projection to the closest real segment if possible + /// \brief Updates projection to the closest real segment if it's possible. std::pair UpdateMatchedProjection(m2::RectD const & posRect); Iter UpdateProjection(m2::RectD const & posRect); @@ -101,7 +104,7 @@ public: Iter res; double minDist = std::numeric_limits::max(); - m2::PointD const currPos = posRect.Center(); + m2::PointD const & currPos = posRect.Center(); for (size_t i = startIdx; i < endIdx; ++i) { @@ -122,7 +125,7 @@ public: return res; } - /// \returns pair of iterator (projection point) and bool (true if nearest point is on unmatched segment) + /// \returns pair of iterator (projection point) and bool (true if nearest point is on an unmatched segment). template std::pair GetClosestMatchedProjectionInInterval(m2::RectD const & posRect, DistanceFn const & distFn, size_t startIdx, size_t endIdx) const @@ -133,7 +136,7 @@ public: double minDist = std::numeric_limits::max(); double minDistUnmatched = minDist; - m2::PointD const currPos = posRect.Center(); + m2::PointD const & currPos = posRect.Center(); for (size_t i = startIdx; i < endIdx; ++i) { @@ -144,12 +147,12 @@ public: Iter it(pt, i); double const dp = distFn(it); - if(dp >= minDistUnmatched && dp >= minDist) + if (dp >= minDistUnmatched && dp >= minDist) continue; - if (std::find(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind) == m_unmatchedSegmentIndexes.end()) + if (std::binary_search(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind)) { - if(minDist > dp) // overwrite best match for matched segment + if (minDist > dp) // overwrite best match for matched segment { minDist = dp; nearestIter = it; @@ -157,7 +160,7 @@ public: } else { - if(minDistUnmatched > dp) // overwrite best match for unmatched segment + if (minDistUnmatched > dp) // overwrite best match for unmatched segment minDistUnmatched = dp; } } @@ -179,6 +182,7 @@ private: void Update(); m2::PolylineD m_poly; + /// Indexes of all unmatched segments on route. std::vector m_unmatchedSegmentIndexes; /// Iterator with the current position. Position sets with UpdateProjection methods. diff --git a/routing/route.cpp b/routing/route.cpp index bcde2dc73c..96305ca061 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -238,28 +238,19 @@ void Route::GetCurrentDirectionPoint(m2::PointD & pt) const m_poly.GetCurrentDirectionPoint(pt, kOnEndToleranceM); } -bool Route::MoveIterator(location::GpsInfo const & info) -{ - m2::RectD const rect = MercatorBounds::MetersToXY( - info.m_longitude, info.m_latitude, - max(m_routingSettings.m_matchingThresholdM, info.m_horizontalAccuracy)); - FollowedPolyline::Iter const res = m_poly.UpdateProjectionByPrediction(rect, -1.0 /* predictDistance */); - return res.IsValid(); -} - void Route::SetFakeSegmentsOnPolyline() { - std::vector fakeSegmentIndexes{}; - auto const & segs = GetRouteSegments(); - for(size_t i = 0; i < segs.size(); ++i) + vector fakeSegmentIndexes{}; + auto const & routeSegments = GetRouteSegments(); + for (size_t i = 0; i < routeSegments.size(); ++i) { - if(!segs[i].GetSegment().IsRealSegment()) + if (!routeSegments[i].GetSegment().IsRealSegment()) fakeSegmentIndexes.push_back(i); } - m_poly.SetUnmatchedSegmentIndexes(fakeSegmentIndexes); + m_poly.SetUnmatchedSegmentIndexes(move(fakeSegmentIndexes)); } -std::pair Route::MoveIteratorToReal(location::GpsInfo const & info) +pair Route::MoveIteratorToReal(location::GpsInfo const & info) { m2::RectD const rect = MercatorBounds::MetersToXY( info.m_longitude, info.m_latitude, @@ -405,7 +396,7 @@ bool Route::CrossMwmsPartlyProhibitedForSpeedCams() const return !m_speedCamPartlyProhibitedMwms.empty(); } -std::vector const & Route::GetMwmsPartlyProhibitedForSpeedCams() const +vector const & Route::GetMwmsPartlyProhibitedForSpeedCams() const { return m_speedCamPartlyProhibitedMwms; } diff --git a/routing/route.hpp b/routing/route.hpp index 89c42c0568..472763ddb1 100644 --- a/routing/route.hpp +++ b/routing/route.hpp @@ -256,7 +256,7 @@ public: if (s.GetJunction().GetAltitude() == feature::kInvalidAltitude) { m_haveAltitudes = false; - break; + return; } } } @@ -324,10 +324,7 @@ public: void GetCurrentDirectionPoint(m2::PointD & pt) const; - /// @return true If position was updated successfully (projection within gps error radius). - bool MoveIterator(location::GpsInfo const & info); - - /// @return pair of vals: first = true if position was updated successfully to real segment, + /// \returns pair of vals: first = true if position was updated successfully to real segment, /// second = true if position is closer to the fake segment std::pair MoveIteratorToReal(location::GpsInfo const & info); @@ -396,8 +393,10 @@ public: private: friend std::string DebugPrint(Route const & r); + public: void SetFakeSegmentsOnPolyline(); + private: double GetPolySegAngle(size_t ind) const; void GetClosestTurn(size_t segIdx, turns::TurnItem & turn) const; diff --git a/routing/routing_integration_tests/street_names_test.cpp b/routing/routing_integration_tests/street_names_test.cpp index d6a61325a4..0d2e871dd6 100644 --- a/routing/routing_integration_tests/street_names_test.cpp +++ b/routing/routing_integration_tests/street_names_test.cpp @@ -17,7 +17,7 @@ void MoveRoute(Route & route, ms::LatLon const & coords) info.m_verticalAccuracy = 0.01; info.m_longitude = coords.m_lon; info.m_latitude = coords.m_lat; - route.MoveIterator(info); + route.MoveIteratorToReal(info); } UNIT_TEST(RussiaTulskayaToPaveletskayaStreetNamesTest) diff --git a/routing/routing_session.cpp b/routing/routing_session.cpp index 5ce95edb71..c21efac67e 100644 --- a/routing/routing_session.cpp +++ b/routing/routing_session.cpp @@ -15,6 +15,8 @@ #include "3party/Alohalytics/src/alohalytics.h" +#include + using namespace location; using namespace std; using namespace traffic; @@ -289,7 +291,8 @@ SessionState RoutingSession::OnLocationPositionChanged(GpsInfo const & info) ASSERT(m_route->IsValid(), ()); m_turnNotificationsMgr.SetSpeedMetersPerSecond(info.m_speedMpS); - bool movedIterator, closerToFake; + bool movedIterator = false; + bool closerToFake = false; std::tie(movedIterator, closerToFake) = m_route->MoveIteratorToReal(info); if (movedIterator) diff --git a/routing/routing_tests/route_tests.cpp b/routing/routing_tests/route_tests.cpp index 1fcfc1106d..9f5f6987d8 100644 --- a/routing/routing_tests/route_tests.cpp +++ b/routing/routing_tests/route_tests.cpp @@ -108,19 +108,19 @@ UNIT_TEST(DistanceToCurrentTurnTest) ()); TEST_EQUAL(turn, kTestTurns[0], ()); - route.MoveIterator(GetGps(0, 0.5)); + route.MoveIteratorToReal(GetGps(0, 0.5)); route.GetCurrentTurn(distance, turn); TEST(base::AlmostEqualAbs(distance, MercatorBounds::DistanceOnEarth({0, 0.5}, kTestGeometry[1]), 0.1), ()); TEST_EQUAL(turn, kTestTurns[0], ()); - route.MoveIterator(GetGps(1, 1.5)); + route.MoveIteratorToReal(GetGps(1, 1.5)); route.GetCurrentTurn(distance, turn); TEST(base::AlmostEqualAbs(distance, MercatorBounds::DistanceOnEarth({1, 1.5}, kTestGeometry[4]), 0.1), ()); TEST_EQUAL(turn, kTestTurns[2], ()); - route.MoveIterator(GetGps(1, 2.5)); + route.MoveIteratorToReal(GetGps(1, 2.5)); route.GetCurrentTurn(distance, turn); TEST(base::AlmostEqualAbs(distance, MercatorBounds::DistanceOnEarth({1, 2.5}, kTestGeometry[4]), 0.1), ()); @@ -144,13 +144,13 @@ UNIT_TEST(NextTurnTest) TEST_EQUAL(turn, kTestTurns[0], ()); TEST_EQUAL(nextTurn, kTestTurns[1], ()); - route.MoveIterator(GetGps(0.5, 1)); + route.MoveIteratorToReal(GetGps(0.5, 1)); route.GetCurrentTurn(distance, turn); route.GetNextTurn(nextDistance, nextTurn); TEST_EQUAL(turn, kTestTurns[1], ()); TEST_EQUAL(nextTurn, kTestTurns[2], ()); - route.MoveIterator(GetGps(1, 1.5)); + route.MoveIteratorToReal(GetGps(1, 1.5)); route.GetCurrentTurn(distance, turn); route.GetNextTurn(nextDistance, nextTurn); TEST_EQUAL(turn, kTestTurns[2], ()); @@ -181,7 +181,7 @@ UNIT_TEST(NextTurnsTest) { double const x = 0.; double const y = 0.5; - route.MoveIterator(GetGps(x, y)); + route.MoveIteratorToReal(GetGps(x, y)); TEST(route.GetNextTurns(turnsDist), ()); TEST_EQUAL(turnsDist.size(), 2, ()); double const firstSegLenM = MercatorBounds::DistanceOnEarth({x, y}, kTestGeometry[1]); @@ -194,7 +194,7 @@ UNIT_TEST(NextTurnsTest) { double const x = 1.; double const y = 2.5; - route.MoveIterator(GetGps(x, y)); + route.MoveIteratorToReal(GetGps(x, y)); TEST(route.GetNextTurns(turnsDist), ()); TEST_EQUAL(turnsDist.size(), 1, ()); double const firstSegLenM = MercatorBounds::DistanceOnEarth({x, y}, kTestGeometry[4]); @@ -204,7 +204,7 @@ UNIT_TEST(NextTurnsTest) { double const x = 1.; double const y = 3.5; - route.MoveIterator(GetGps(x, y)); + route.MoveIteratorToReal(GetGps(x, y)); TEST(route.GetNextTurns(turnsDist), ()); TEST_EQUAL(turnsDist.size(), 1, ()); } @@ -238,7 +238,7 @@ UNIT_TEST(SelfIntersectedRouteMatchingTest) location::GpsInfo const & expectedMatchingPos, size_t expectedIndexInRoute) { location::RouteMatchingInfo routeMatchingInfo; - route.MoveIterator(pos); + route.MoveIteratorToReal(pos); location::GpsInfo matchedPos = pos; route.MatchLocationToRoute(matchedPos, routeMatchingInfo); TEST_LESS(MercatorBounds::DistanceOnEarth( @@ -307,7 +307,7 @@ UNIT_TEST(RouteNameTest) location::GpsInfo info; info.m_longitude = 1.0; info.m_latitude = 2.0; - route.MoveIterator(info); + route.MoveIteratorToReal(info); route.GetCurrentStreetName(name); - TEST_EQUAL(name, "Street3", ()); + TEST_EQUAL(name, "Street2", ()); }