[tests] Check obsolete osm tags generation.

This commit is contained in:
vng 2016-04-01 20:30:10 +03:00
parent 4e4de435fc
commit b5e4d7124c
2 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,75 @@
#include "testing/testing.hpp"
#include "search/search_tests_support/test_mwm_builder.hpp"
#include "generator/feature_builder.hpp"
#include "generator/osm_element.hpp"
#include "generator/osm2type.hpp"
#include "indexer/classificator.hpp"
#include "indexer/feature_data.hpp"
#include "indexer/feature.hpp"
#include "indexer/index.hpp"
#include "platform/local_country_file.hpp"
namespace
{
using TBuilder = search::tests_support::TestMwmBuilder;
void MakeFeature(TBuilder & builder, pair<string, string> const & tag, m2::PointD const & pt)
{
OsmElement e;
e.AddTag(tag.first, tag.second);
FeatureParams params;
ftype::GetNameAndType(&e, params);
params.AddName("en", "xxx");
FeatureBuilder1 fb;
fb.SetParams(params);
fb.SetCenter(pt);
TEST(builder.Add(fb), (fb));
}
}
UNIT_TEST(Generate_DeprecatedTypes)
{
auto file = platform::LocalCountryFile::MakeForTesting("testCountry");
TBuilder builder(file, feature::DataHeader::country);
// Deprecated types.
MakeFeature(builder, {"office", "travel_agent"}, {0, 0});
MakeFeature(builder, {"shop", "tailor"}, {1, 1});
MakeFeature(builder, {"shop", "estate_agent"}, {2, 2});
builder.Finish();
Index index;
TEST_EQUAL(index.Register(file).second, MwmSet::RegResult::Success, ());
// New types.
StringIL arr[] = { {"shop"}, {"office"} };
Classificator const & cl = classif();
set<uint32_t> types;
for (auto const & s : arr)
types.insert(cl.GetTypeByPath(s));
int count = 0;
auto const fn = [&](FeatureType & ft)
{
++count;
ft.ForEachType([&](uint32_t t)
{
TEST(types.count(t) > 0, (cl.GetReadableObjectName(t)));
});
};
index.ForEachInScale(fn, scales::GetUpperScale());
TEST_EQUAL(count, 3, ());
file.DeleteFromDisk(MapOptions::Map);
}

View file

@ -24,6 +24,7 @@ SOURCES += \
helpers.cpp \
search_query_v2_test.cpp \
smoke_test.cpp \
generate_tests.cpp \
HEADERS += \
helpers.hpp \