[generator][tests] Added MaxspeedsMwmCollector links test.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2022-05-01 16:12:45 +03:00
parent edde3fc607
commit 0260b2eb98
4 changed files with 9828 additions and 0 deletions

File diff suppressed because it is too large Load diff

View file

@ -4,6 +4,8 @@
#include "search/cities_boundaries_table.hpp"
#include "routing/maxspeeds.hpp"
#include "indexer/classificator.hpp"
#include "indexer/data_source.hpp"
@ -96,4 +98,66 @@ UNIT_CLASS_TEST(TestRawGenerator, Towns)
TEST_EQUAL(count, 2, ());
}
// https://github.com/organicmaps/organicmaps/issues/2475
UNIT_CLASS_TEST(TestRawGenerator, HighwayLinks)
{
std::string const mwmName = "Highways";
BuildFB("./data/osm_test_data/highway_links.osm", mwmName);
BuildFeatures(mwmName);
BuildRouting(mwmName, "Spain");
auto const fid2osm = LoadFID2OsmID(mwmName);
using namespace routing;
MaxspeedType from120 = 104; // like SpeedMacro::Speed104KmPH
std::unordered_map<uint64_t, uint16_t> osmID2Speed = {
{ 23011515, from120 }, { 23011492, from120 }, { 10689329, from120 }, { 371581901, from120 },
{ 1017695671, from120 }, { 577365212, from120 }, { 23011612, from120 }, { 1017695670, from120 },
{ 304871606, from120 }, { 1017695669, from120 }, { 577365213, from120 }, { 369541035, from120 },
{ 1014336646, from120 }, { 466365947, from120 }, { 23011511, from120 }
};
/// @todo Actually, better to assign speed for this way too.
std::unordered_set<uint64_t> osmNoSpeed = { 23691193, 1017695668 };
FrozenDataSource dataSource;
platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeTemporary(GetMwmPath(mwmName)));
auto const res = dataSource.RegisterMap(localFile);
CHECK_EQUAL(res.second, MwmSet::RegResult::Success, ());
auto const speeds = routing::LoadMaxspeeds(dataSource.GetMwmHandleById(res.first));
CHECK(speeds, ());
size_t speedChecked = 0, noSpeed = 0;
FeaturesLoaderGuard guard(dataSource, res.first);
uint32_t const count = guard.GetNumFeatures();
for (uint32_t id = 0; id < count; ++id)
{
auto const iOsmID = fid2osm.find(id);
if (iOsmID == fid2osm.end())
continue;
auto const osmID = iOsmID->second.GetSerialId();
auto const iSpeed = osmID2Speed.find(osmID);
if (iSpeed != osmID2Speed.end())
{
++speedChecked;
auto const speed = speeds->GetMaxspeed(id);
TEST(speed.IsValid(), ());
TEST_EQUAL(speed.GetForward(), iSpeed->second, ());
}
auto const iNoSpeed = osmNoSpeed.find(osmID);
if (iNoSpeed != osmNoSpeed.end())
{
++noSpeed;
TEST(!speeds->GetMaxspeed(id).IsValid(), ());
}
}
TEST_EQUAL(speedChecked, osmID2Speed.size(), ());
TEST_EQUAL(noSpeed, osmNoSpeed.size(), ());
}
} // namespace raw_generator_tests

View file

@ -4,6 +4,11 @@
#include "generator/feature_sorter.hpp"
#include "generator/osm_source.hpp"
#include "generator/raw_generator.hpp"
#include "generator/maxspeeds_builder.hpp"
#include "generator/restriction_generator.hpp"
#include "generator/road_access_generator.hpp"
#include "generator/routing_index_generator.hpp"
#include "generator/search_index_builder.hpp"
#include "indexer/classificator_loader.hpp"
@ -101,6 +106,37 @@ void TestRawGenerator::BuildSearch(std::string const & mwmName)
}
}
void TestRawGenerator::BuildRouting(std::string const & mwmName, std::string const & countryName)
{
using namespace routing_builder;
CountryParentNameGetterFn const parentGetter = [&countryName](std::string const & name)
{
return (name != countryName ? countryName : std::string());
};
std::string const filePath = GetMwmPath(mwmName);
routing_builder::BuildRoutingIndex(filePath, countryName, parentGetter);
auto routingGraph = CreateIndexGraph(filePath, countryName, parentGetter);
CHECK(routingGraph, ());
/// @todo Laod OsmID2FeatureID map once and pass it to generator functions.
std::string const osmToFeatureFilename = filePath + OSM2FEATURE_FILE_EXTENSION;
BuildRoadRestrictions(*routingGraph, filePath, m_genInfo.GetIntermediateFileName(RESTRICTIONS_FILENAME),
osmToFeatureFilename);
BuildRoadAccessInfo(filePath, m_genInfo.GetIntermediateFileName(ROAD_ACCESS_FILENAME),
osmToFeatureFilename);
BuildMaxspeedsSection(routingGraph.get(), filePath, osmToFeatureFilename,
m_genInfo.GetIntermediateFileName(MAXSPEEDS_FILENAME));
}
routing::FeatureIdToOsmId TestRawGenerator::LoadFID2OsmID(std::string const & mwmName)
{
routing::FeatureIdToOsmId ids;
CHECK(routing::ParseWaysFeatureIdToOsmIdMapping(GetMwmPath(mwmName) + OSM2FEATURE_FILE_EXTENSION, ids), ());
return ids;
}
std::string TestRawGenerator::GetMwmPath(std::string const & mwmName) const
{
return m_genInfo.GetTargetFileName(mwmName, DATA_FILE_EXTENSION);

View file

@ -2,6 +2,7 @@
#include "generator/feature_builder.hpp"
#include "generator/generate_info.hpp"
#include "generator/routing_helpers.hpp"
namespace generator
{
@ -24,6 +25,9 @@ public:
void BuildFB(std::string const & osmFilePath, std::string const & mwmName);
void BuildFeatures(std::string const & mwmName);
void BuildSearch(std::string const & mwmName);
void BuildRouting(std::string const & mwmName, std::string const & countryName);
routing::FeatureIdToOsmId LoadFID2OsmID(std::string const & mwmName);
template <class FnT> void ForEachFB(std::string const & mwmName, FnT && fn)
{