forked from organicmaps/organicmaps-tmp
[search] Disable CategoriesTest for natural-glacier due to it's not visible as point.
This commit is contained in:
parent
36aeb8dbba
commit
d7a198aedf
1 changed files with 42 additions and 41 deletions
|
@ -142,48 +142,49 @@ UNIT_CLASS_TEST(SmokeTest, DeepCategoryTest)
|
|||
UNIT_CLASS_TEST(SmokeTest, CategoriesTest)
|
||||
{
|
||||
// todo(@t.yan): fix some or delete category.
|
||||
vector<vector<string>> const invisibleTags = {{"amenity", "driving_school"},
|
||||
{"military", "bunker"},
|
||||
{"waterway", "canal"},
|
||||
{"waterway", "river"},
|
||||
{"waterway", "riverbank"},
|
||||
{"waterway", "stream"},
|
||||
{"landuse", "basin"},
|
||||
{"place", "county"},
|
||||
{"place", "islet"},
|
||||
{"power", "pole"},
|
||||
{"highway", "footway"},
|
||||
{"highway", "living_street"},
|
||||
{"highway", "motorway"},
|
||||
{"highway", "motorway_link"},
|
||||
{"highway", "path"},
|
||||
{"highway", "pedestrian"},
|
||||
{"highway", "primary"},
|
||||
{"highway", "primary_link"},
|
||||
{"highway", "raceway"},
|
||||
{"highway", "residential"},
|
||||
{"highway", "road"},
|
||||
{"highway", "secondary"},
|
||||
{"highway", "secondary_link"},
|
||||
{"highway", "service"},
|
||||
{"highway", "steps"},
|
||||
{"area:highway", "steps"},
|
||||
{"highway", "tertiary"},
|
||||
{"highway", "tertiary_link"},
|
||||
{"highway", "track"},
|
||||
{"highway", "traffic_signals"},
|
||||
{"highway", "trunk"},
|
||||
{"highway", "trunk_link"},
|
||||
{"highway", "unclassified"},
|
||||
{"man_made", "surveillance"},
|
||||
{"man_made", "tower"},
|
||||
{"man_made", "water_tower"},
|
||||
{"man_made", "water_well"},
|
||||
{"natural", "pond"},
|
||||
{"natural", "tree"},
|
||||
{"natural", "wood"}};
|
||||
vector<vector<string>> const invisibleAsPointTags = {{"amenity", "driving_school"},
|
||||
{"military", "bunker"},
|
||||
{"waterway", "canal"},
|
||||
{"waterway", "river"},
|
||||
{"waterway", "riverbank"},
|
||||
{"waterway", "stream"},
|
||||
{"landuse", "basin"},
|
||||
{"place", "county"},
|
||||
{"place", "islet"},
|
||||
{"power", "pole"},
|
||||
{"highway", "footway"},
|
||||
{"highway", "living_street"},
|
||||
{"highway", "motorway"},
|
||||
{"highway", "motorway_link"},
|
||||
{"highway", "path"},
|
||||
{"highway", "pedestrian"},
|
||||
{"highway", "primary"},
|
||||
{"highway", "primary_link"},
|
||||
{"highway", "raceway"},
|
||||
{"highway", "residential"},
|
||||
{"highway", "road"},
|
||||
{"highway", "secondary"},
|
||||
{"highway", "secondary_link"},
|
||||
{"highway", "service"},
|
||||
{"highway", "steps"},
|
||||
{"area:highway", "steps"},
|
||||
{"highway", "tertiary"},
|
||||
{"highway", "tertiary_link"},
|
||||
{"highway", "track"},
|
||||
{"highway", "traffic_signals"},
|
||||
{"highway", "trunk"},
|
||||
{"highway", "trunk_link"},
|
||||
{"highway", "unclassified"},
|
||||
{"man_made", "surveillance"},
|
||||
{"man_made", "tower"},
|
||||
{"man_made", "water_tower"},
|
||||
{"man_made", "water_well"},
|
||||
{"natural", "glacier"},
|
||||
{"natural", "pond"},
|
||||
{"natural", "tree"},
|
||||
{"natural", "wood"}};
|
||||
set<uint32_t> invisibleTypes;
|
||||
for (auto const & tags : invisibleTags)
|
||||
for (auto const & tags : invisibleAsPointTags)
|
||||
invisibleTypes.insert(classif().GetTypeByPath(tags));
|
||||
|
||||
vector<vector<string>> const notSupportedTags = {// Not visible because excluded by TypesSkipper.
|
||||
|
|
Loading…
Add table
Reference in a new issue