forked from organicmaps/organicmaps
[search] Allow empty strings in search.
This commit is contained in:
parent
115bc67bd5
commit
4ee2f30852
3 changed files with 9 additions and 2 deletions
|
@ -242,7 +242,11 @@ void Engine::DoSearch(SearchParams const & params, m2::RectD const & viewport,
|
|||
{
|
||||
Results results;
|
||||
results.SetEndMarker(true /* isCancelled */);
|
||||
params.m_onResults(results);
|
||||
|
||||
if (params.m_onResults)
|
||||
params.m_onResults(results);
|
||||
else
|
||||
LOG(LERROR, ("OnResults is not set."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -409,7 +409,6 @@ void Processor::Search(SearchParams const & params, m2::RectD const & viewport)
|
|||
|
||||
SetInputLocale(params.m_inputLocale);
|
||||
|
||||
ASSERT(!params.m_query.empty(), ());
|
||||
SetQuery(params.m_query);
|
||||
SetViewport(viewport, true /* forceUpdate */);
|
||||
SetOnResults(params.m_onResults);
|
||||
|
|
|
@ -172,6 +172,10 @@ UNIT_CLASS_TEST(ProcessorTest, Smoke)
|
|||
});
|
||||
|
||||
SetViewport(m2::RectD(m2::PointD(-1.0, -1.0), m2::PointD(1.0, 1.0)));
|
||||
{
|
||||
TRules rules = {};
|
||||
TEST(ResultsMatch("", rules), ());
|
||||
}
|
||||
{
|
||||
TRules rules = {ExactMatch(wonderlandId, busStop)};
|
||||
TEST(ResultsMatch("Bus stop", rules), ());
|
||||
|
|
Loading…
Add table
Reference in a new issue