[search] Fixed airport search with empty names.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2023-06-04 18:18:36 -03:00
parent 2df3cb338d
commit fe8b552d36
2 changed files with 31 additions and 2 deletions

View file

@ -374,8 +374,8 @@ public:
}, Delimiters());
// Factor is a number of the rest, not common matched tokens in Feature' name. Bigger is worse.
info.m_commonTokensFactor = min(3, count - int(info.m_tokenRanges[info.m_type].Size()));
ASSERT_GREATER_OR_EQUAL(info.m_commonTokensFactor, 0, ());
// Example when count == 0: UTH airport has empty name, but "ut" is a _common_ token.
info.m_commonTokensFactor = min(3, std::max(0, count - int(info.m_tokenRanges[info.m_type].Size())));
}
res.SetRankingInfo(info);

View file

@ -530,4 +530,33 @@ UNIT_CLASS_TEST(MwmTestsFixture, Generic_Buildings_Rank)
TEST_LESS(SortedByDistance(range, center), 1000.0, ());
}
}
UNIT_CLASS_TEST(MwmTestsFixture, UTH_Airport)
{
auto const aeroportType = classif().GetTypeByPath({"aeroway", "aerodrome", "international"});
// Under UTH airport.
ms::LatLon const center(17.3867863, 102.7775625);
SetViewportAndLoadMaps(center);
// "ut" query is _common_
auto request = MakeRequest("ut", "en");
auto const & results = request->Results();
bool found = false;
// The first 5 will be cities suggestions.
for (size_t i = 0; i < 10; ++i)
{
auto const & r = results[i];
if (r.GetResultType() == search::Result::Type::Feature &&
EqualClassifType(r.GetFeatureType(), aeroportType))
{
found = true;
break;
}
}
TEST(found, (results));
}
} // namespace real_mwm_tests