From 9fd25a33111274787de3e22d8a15573a4e920c83 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sat, 11 Jan 2025 12:07:16 -0300 Subject: [PATCH] [search][tests] Fixed search integration tests. Signed-off-by: Viktor Govako --- .../search_quality_tests/real_mwm_tests.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/search/search_quality/search_quality_tests/real_mwm_tests.cpp b/search/search_quality/search_quality_tests/real_mwm_tests.cpp index 333d6df84d..0b4175cc2f 100644 --- a/search/search_quality/search_quality_tests/real_mwm_tests.cpp +++ b/search/search_quality/search_quality_tests/real_mwm_tests.cpp @@ -197,12 +197,13 @@ UNIT_CLASS_TEST(MwmTestsFixture, TopPOIs_Smoke) auto const & results = request->Results(); TEST_GREATER(results.size(), kTopPoiResultsCount, ()); - Range const range(results, 0, 5); - EqualClassifType(range, GetClassifTypes({{"shop"}})); - TEST_LESS(SortedByDistance(range, center).first, 5000, ()); + Range const range(results, 0, 6); + EqualClassifType(range, GetClassifTypes({{"shop"}, {"highway", "bus_stop"}})); + // highway=bus_stop is closer, but has less rank compared to the shop. + TEST_LESS(SortedByDistance(Range(results, 0, 3), center).first, 5000, ()); // parking (< 6km) should be on top. - EqualClassifType(Range(results, 5, 7), GetClassifTypes({{"leisure", "playground"}, {"amenity", "parking"}})); + EqualClassifType(Range(results, 6, 8), GetClassifTypes({{"leisure", "playground"}, {"amenity", "parking"}})); } // https://github.com/organicmaps/organicmaps/issues/2470 @@ -1245,7 +1246,7 @@ UNIT_CLASS_TEST(MwmTestsFixture, Opfikon_Viewport) TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"tourism"})), 2, ()); TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"highway", "bus_stop"})), 3, ()); - TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"leisure"})), 3, ()); + TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"leisure"})), 5, ()); TEST_GREATER(CountClassifType(allRange, cl.GetTypeByPath({"highway"})), 8, ()); TEST_GREATER(CountClassifType(allRange, cl.GetTypeByPath({"amenity"})), 12, ());