From 5729b6e6c565ae3cd083c92bba109b0d7339700b Mon Sep 17 00:00:00 2001 From: tatiana-yan Date: Thu, 24 Jan 2019 17:39:43 +0300 Subject: [PATCH] [search] Add SquareAsStreetTest. --- editor/editor_tests/osm_editor_test.cpp | 2 +- .../generator_tests_support/test_feature.cpp | 28 +++++++++++++++++++ .../generator_tests_support/test_feature.hpp | 16 ++++++++++- .../processor_test.cpp | 25 ++++++++++++++++- .../search_integration_tests/smoke_test.cpp | 2 +- 5 files changed, 69 insertions(+), 4 deletions(-) diff --git a/editor/editor_tests/osm_editor_test.cpp b/editor/editor_tests/osm_editor_test.cpp index 9516ab7dbd..4660e672aa 100644 --- a/editor/editor_tests/osm_editor_test.cpp +++ b/editor/editor_tests/osm_editor_test.cpp @@ -291,7 +291,7 @@ void EditorTest::SetIndexTest() { TestCafe cafe({1.0, 1.0}, "London Cafe", "en"); TestStreet street({{0.0, 0.0}, {1.0, 1.0}, {2.0, 2.0}}, "Test street", "en"); - cafe.SetStreet(street); + cafe.SetStreetName(street.GetName()); builder.Add(street); builder.Add(cafe); builder.Add(TestCafe({3.0, 3.0}, "London Cafe", "en")); diff --git a/generator/generator_tests_support/test_feature.cpp b/generator/generator_tests_support/test_feature.cpp index 74899a2ae2..731b3fb81d 100644 --- a/generator/generator_tests_support/test_feature.cpp +++ b/generator/generator_tests_support/test_feature.cpp @@ -220,6 +220,34 @@ string TestStreet::ToString() const return os.str(); } +// TestSquare -------------------------------------------------------------------------------------- +TestSquare::TestSquare(m2::RectD const & rect, string const & name, string const & lang) + : TestFeature(name, lang), m_rect(rect) +{ +} + +void TestSquare::Serialize(FeatureBuilder1 & fb) const +{ + TestFeature::Serialize(fb); + + auto const & classificator = classif(); + fb.SetType(classificator.GetTypeByPath({"place", "square"})); + + fb.AddPoint(m_rect.LeftBottom()); + fb.AddPoint(m_rect.RightBottom()); + fb.AddPoint(m_rect.RightTop()); + fb.AddPoint(m_rect.LeftTop()); + fb.AddPoint(m_rect.LeftBottom()); + fb.SetArea(); +} + +string TestSquare::ToString() const +{ + ostringstream os; + os << "TestSquare [" << m_name << ", " << m_lang << ", " << m_rect << "]"; + return os.str(); +} + // TestPOI ----------------------------------------------------------------------------------------- TestPOI::TestPOI(m2::PointD const & center, string const & name, string const & lang) : TestFeature(center, name, lang) diff --git a/generator/generator_tests_support/test_feature.hpp b/generator/generator_tests_support/test_feature.hpp index eddcc61889..196e24c4e5 100644 --- a/generator/generator_tests_support/test_feature.hpp +++ b/generator/generator_tests_support/test_feature.hpp @@ -5,6 +5,7 @@ #include "indexer/mwm_set.hpp" #include "geometry/point2d.hpp" +#include "geometry/rect2d.hpp" #include #include @@ -117,6 +118,19 @@ private: std::vector m_points; }; +class TestSquare : public TestFeature +{ +public: + TestSquare(m2::RectD const & rect, std::string const & name, std::string const & lang); + + // TestFeature overrides: + void Serialize(FeatureBuilder1 & fb) const override; + std::string ToString() const override; + +private: + m2::RectD m_rect; +}; + class TestPOI : public TestFeature { public: @@ -132,7 +146,7 @@ public: std::string ToString() const override; inline void SetHouseNumber(std::string const & houseNumber) { m_houseNumber = houseNumber; } - inline void SetStreet(TestStreet const & street) { m_streetName = street.GetName(); } + inline void SetStreetName(std::string const & name) { m_streetName = name; } inline void SetTypes(std::vector> const & types) { m_types = types; } protected: diff --git a/search/search_integration_tests/processor_test.cpp b/search/search_integration_tests/processor_test.cpp index 057b326d49..2550fa6d5e 100644 --- a/search/search_integration_tests/processor_test.cpp +++ b/search/search_integration_tests/processor_test.cpp @@ -200,7 +200,7 @@ UNIT_CLASS_TEST(ProcessorTest, Smoke) TestPOI quantumTeleport2(m2::PointD(10, 10), "Quantum teleport 2", "en"); quantumTeleport2.SetHouseNumber("3"); - quantumTeleport2.SetStreet(feynmanStreet); + quantumTeleport2.SetStreetName(feynmanStreet.GetName()); TestPOI quantumCafe(m2::PointD(-0.0002, -0.0002), "Quantum cafe", "en"); TestPOI lantern1(m2::PointD(10.0005, 10.0005), "lantern 1", "en"); @@ -1656,5 +1656,28 @@ UNIT_CLASS_TEST(ProcessorTest, BrandTest) TEST(ResultsMatch("サブウェイ", "ja", rules), ()); } } + +UNIT_CLASS_TEST(ProcessorTest, SquareAsStreetTest) +{ + string const countryName = "Wonderland"; + + TestSquare square(m2::RectD(0.0, 0.0, 1.0, 1.0), "revolution square", "en"); + + TestPOI nonameHouse(m2::PointD(1.0, 1.0), "", "en"); + nonameHouse.SetHouseNumber("3"); + nonameHouse.SetStreetName(square.GetName()); + + auto countryId = BuildCountry(countryName, [&](TestMwmBuilder & builder) + { + builder.Add(square); + builder.Add(nonameHouse); + }); + + SetViewport(m2::RectD(m2::PointD(0.0, 0.0), m2::PointD(1.0, 2.0))); + { + TRules rules = {ExactMatch(countryId, nonameHouse)}; + TEST(ResultsMatch("revolution square 3", rules), ()); + } +} } // namespace } // namespace search diff --git a/search/search_integration_tests/smoke_test.cpp b/search/search_integration_tests/smoke_test.cpp index 5abf9a5ef8..bad6e03270 100644 --- a/search/search_integration_tests/smoke_test.cpp +++ b/search/search_integration_tests/smoke_test.cpp @@ -284,7 +284,7 @@ UNIT_CLASS_TEST(SmokeTest, PoiWithAddress) TestStreet mainStreet({m2::PointD(0.0, 0.0), m2::PointD(1.0, 1.0), m2::PointD(2.0, 2.0)}, "Main Street", "en"); TestCafe cafe(m2::PointD(1.0, 1.0), "Starbucks", "en"); - cafe.SetStreet(mainStreet); + cafe.SetStreetName(mainStreet.GetName()); cafe.SetHouseNumber("27"); auto id = BuildMwm(kCountryName, feature::DataHeader::country, [&](TestMwmBuilder & builder) {