[search] Add RemoveDauplicatingStreets test.

This commit is contained in:
tatiana-yan 2019-04-23 14:06:13 +03:00 committed by mpimenov
parent 980d407d50
commit e77592b68e
5 changed files with 39 additions and 3 deletions

View file

@ -206,12 +206,12 @@ string TestVillage::ToDebugString() const
// TestStreet --------------------------------------------------------------------------------------
TestStreet::TestStreet(vector<m2::PointD> const & points, string const & name, string const & lang)
: TestFeature(name, lang), m_points(points)
: TestFeature(name, lang), m_points(points), m_highwayType("living_street")
{
}
TestStreet::TestStreet(vector<m2::PointD> const & points, StringUtf8Multilang const & name)
: TestFeature(name), m_points(points)
: TestFeature(name), m_points(points), m_highwayType("living_street")
{
}
@ -220,7 +220,7 @@ void TestStreet::Serialize(FeatureBuilder1 & fb) const
TestFeature::Serialize(fb);
auto const & classificator = classif();
fb.SetType(classificator.GetTypeByPath({"highway", "living_street"}));
fb.SetType(classificator.GetTypeByPath({"highway", m_highwayType}));
for (auto const & point : m_points)
fb.AddPoint(point);

View file

@ -122,12 +122,15 @@ public:
TestStreet(std::vector<m2::PointD> const & points, std::string const & name, std::string const & lang);
TestStreet(std::vector<m2::PointD> const & points, StringUtf8Multilang const & name);
void SetHighwayType(std::string const & type) { m_highwayType = type; }
// TestFeature overrides:
void Serialize(FeatureBuilder1 & fb) const override;
std::string ToDebugString() const override;
private:
std::vector<m2::PointD> m_points;
std::string m_highwayType;
};
class TestSquare : public TestFeature

View file

@ -1837,5 +1837,29 @@ UNIT_CLASS_TEST(ProcessorTest, StreetNameLocaleTest)
TEST(ResultsMatch("default 3", rules), ());
}
}
UNIT_CLASS_TEST(ProcessorTest, RemoveDuplicatingStreets)
{
string const countryName = "Wonderland";
string const streetName = "Октябрьский проспект";
// Distance between centers should be less than 5km.
TestStreet street1(vector<m2::PointD>{m2::PointD(0.0, 0.0), m2::PointD(0.0, 0.01)},
streetName, "ru");
street1.SetHighwayType("primary");
TestStreet street2(vector<m2::PointD>{m2::PointD(0.0, 0.01), m2::PointD(0.0, 0.02)},
streetName, "ru");
street1.SetHighwayType("secondary");
auto wonderlandId = BuildCountry(countryName, [&](TestMwmBuilder & builder) {
builder.Add(street1);
builder.Add(street2);
});
SetViewport(m2::RectD(-1, -1, 1, 1));
{
TEST_EQUAL(GetResultsNumber(streetName, "ru"), 1, ());
}
}
} // namespace
} // namespace search

View file

@ -64,6 +64,13 @@ bool SearchTest::ResultMatches(search::Result const & result, Rule const & rule)
return tests_support::ResultMatches(m_dataSource, rule, result);
}
size_t SearchTest::GetResultsNumber(string const & query, string const & locale)
{
tests_support::TestSearchRequest request(m_engine, query, locale, Mode::Everywhere, m_viewport);
request.Run();
return request.Results().size();
}
unique_ptr<tests_support::TestSearchRequest> SearchTest::MakeRequest(
string const & query, string const & locale /* = "en" */)
{

View file

@ -43,6 +43,8 @@ public:
bool ResultMatches(search::Result const & result, Rule const & rule);
size_t GetResultsNumber(std::string const & query, std::string const & locale);
std::unique_ptr<tests_support::TestSearchRequest> MakeRequest(std::string const & query,
std::string const & locale = "en");