[generator:tests] Increase code coverage: relation intermediate data generation tests
This commit is contained in:
parent
0d68e7699e
commit
2fcf2e4632
2 changed files with 80 additions and 50 deletions
|
@ -208,3 +208,32 @@ UNIT_TEST(IntermediateData_WaysGenerationTest)
|
|||
TEST_EQUAL(intermediateWay.nodes.size(), ways[0].Nodes().size(), ());
|
||||
});
|
||||
}
|
||||
|
||||
UNIT_TEST(IntermediateData_RelationsGenerationTest)
|
||||
{
|
||||
auto const osmSamples = std::map<std::string, std::string>{
|
||||
{"xml", relation_xml_data},
|
||||
{"o5m", {std::begin(relation_o5m_data), std::end(relation_o5m_data)}}};
|
||||
|
||||
TestIntermediateDataGeneration(
|
||||
osmSamples, [](auto && osmElements, auto && intermediateData)
|
||||
{
|
||||
auto relations = std::vector<OsmElement>{};
|
||||
std::copy_if(
|
||||
osmElements.begin(), osmElements.end(), std::back_inserter(relations), [](auto && e)
|
||||
{
|
||||
return e.m_type == OsmElement::EntityType::Relation;
|
||||
});
|
||||
TEST_EQUAL(relations.size(), 1, ());
|
||||
TEST_EQUAL(relations[0].m_id, 273177, ());
|
||||
|
||||
auto intermediateWay = WayElement{273163};
|
||||
TEST(intermediateData.GetWay(273163, intermediateWay), ());
|
||||
|
||||
auto relationTesting = [](auto && relationId, auto && /* reader */) {
|
||||
TEST_EQUAL(relationId, 273177, ());
|
||||
return base::ControlFlow::Continue;
|
||||
};
|
||||
intermediateData.ForEachRelationByWayCached(273163, relationTesting);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -68,7 +68,8 @@ char const way_xml_data[] = R"#(<?xml version='1.0' encoding='UTF-8'?>
|
|||
<tag k='name:ru' v='Юкон' />
|
||||
<tag k='waterway' v='river' />
|
||||
</way>
|
||||
</osm>)#";
|
||||
</osm>
|
||||
)#";
|
||||
|
||||
|
||||
// binary data: way.o5m
|
||||
|
@ -87,56 +88,56 @@ unsigned char const way_o5m_data[/* 175 */] = {
|
|||
static_assert(sizeof(way_o5m_data) == 175, "Size check failed");
|
||||
|
||||
|
||||
char const relation_xml_data[] = "<?xml version='1.0' encoding='UTF-8'?>\
|
||||
<osm version='0.6' upload='true' generator='JOSM'>\
|
||||
<node id='-273196' action='modify' visible='true' lat='60.71960512058' lon='-135.0538199763'>\
|
||||
<tag k='name' v='Whitehorse' />\
|
||||
<tag k='place' v='town' />\
|
||||
</node>\
|
||||
<node id='-273174' action='modify' visible='true' lat='60.71893500205' lon='-135.02422504237' />\
|
||||
<node id='-273172' action='modify' visible='true' lat='60.70097061781' lon='-134.99915155667' />\
|
||||
<node id='-273170' action='modify' visible='true' lat='60.68655163161' lon='-135.03409002034' />\
|
||||
<node id='-273168' action='modify' visible='true' lat='60.68836274296' lon='-135.1128728306' />\
|
||||
<node id='-273166' action='modify' visible='true' lat='60.70090356772' lon='-135.1290404334' />\
|
||||
<node id='-273164' action='modify' visible='true' lat='60.72181641257' lon='-135.11246178985' />\
|
||||
<node id='-273162' action='modify' visible='true' lat='60.74043883115' lon='-135.08451101891' />\
|
||||
<node id='-273161' action='modify' visible='true' lat='60.73997005387' lon='-135.06327391353' />\
|
||||
<way id='-273163' action='modify' visible='true'>\
|
||||
<nd ref='-273161' />\
|
||||
<nd ref='-273162' />\
|
||||
<nd ref='-273164' />\
|
||||
<nd ref='-273166' />\
|
||||
<nd ref='-273168' />\
|
||||
<nd ref='-273170' />\
|
||||
<nd ref='-273172' />\
|
||||
<nd ref='-273174' />\
|
||||
<nd ref='-273161' />\
|
||||
</way>\
|
||||
<relation id='-273177' action='modify' visible='true'>\
|
||||
<member type='way' ref='-273163' role='outer' />\
|
||||
<member type='node' ref='-273196' role='' />\
|
||||
<tag k='name' v='Whitehorse' />\
|
||||
<tag k='place' v='town' />\
|
||||
<tag k='type' v='multipolygon' />\
|
||||
</relation>\
|
||||
</osm>";
|
||||
char const relation_xml_data[] = R"#(<?xml version='1.0' encoding='UTF-8'?>
|
||||
<osm version='0.6'>
|
||||
<node id='273161' visible='true' lat='60.73997005387' lon='135.06327391353' />
|
||||
<node id='273162' visible='true' lat='60.74043883115' lon='135.08451101891' />
|
||||
<node id='273164' visible='true' lat='60.72181641257' lon='135.11246178985' />
|
||||
<node id='273166' visible='true' lat='60.70090356772' lon='135.1290404334' />
|
||||
<node id='273168' visible='true' lat='60.68836274296' lon='135.1128728306' />
|
||||
<node id='273170' visible='true' lat='60.68655163161' lon='135.03409002034' />
|
||||
<node id='273172' visible='true' lat='60.70097061781' lon='134.99915155667' />
|
||||
<node id='273174' visible='true' lat='60.71893500205' lon='135.02422504237' />
|
||||
<node id='273196' visible='true' lat='60.71960512058' lon='135.0538199763'>
|
||||
<tag k='name' v='Whitehorse' />
|
||||
<tag k='place' v='town' />
|
||||
</node>
|
||||
<way id='273163' visible='true'>
|
||||
<nd ref='273161' />
|
||||
<nd ref='273162' />
|
||||
<nd ref='273164' />
|
||||
<nd ref='273166' />
|
||||
<nd ref='273168' />
|
||||
<nd ref='273170' />
|
||||
<nd ref='273172' />
|
||||
<nd ref='273174' />
|
||||
<nd ref='273161' />
|
||||
</way>
|
||||
<relation id='273177' visible='true'>
|
||||
<member type='way' ref='273163' role='outer' />
|
||||
<member type='node' ref='273196' role='' />
|
||||
<tag k='name' v='Whitehorse' />
|
||||
<tag k='place' v='town' />
|
||||
<tag k='type' v='multipolygon' />
|
||||
</relation>
|
||||
</osm>
|
||||
)#";
|
||||
|
||||
|
||||
// binary data: relation.o5m
|
||||
unsigned char const relation_o5m_data[] = /* 224 */
|
||||
{0xFF, 0xE0, 0x04, 0x6F, 0x35, 0x6D, 0x32, 0xFF, 0x10, 0x2B, 0xD7, 0xAC, 0x21, 0x00, 0xAD,
|
||||
0xCF, 0xFC, 0x87, 0x0A, 0xA6, 0xCE, 0x88, 0xC3, 0x04, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x00,
|
||||
0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6F, 0x72, 0x73, 0x65, 0x00, 0x00, 0x70, 0x6C, 0x61,
|
||||
0x63, 0x65, 0x00, 0x74, 0x6F, 0x77, 0x6E, 0x00, 0x10, 0x07, 0x2C, 0x00, 0x9A, 0x90, 0x24,
|
||||
0xD9, 0x68, 0x10, 0x08, 0x04, 0x00, 0xDE, 0xCD, 0x1E, 0xF7, 0xF6, 0x15, 0x10, 0x08, 0x04,
|
||||
0x00, 0x91, 0xD3, 0x2A, 0xFB, 0xCC, 0x11, 0x10, 0x08, 0x04, 0x00, 0xE7, 0x95, 0x60, 0xFE,
|
||||
0x9A, 0x02, 0x10, 0x08, 0x04, 0x00, 0x97, 0xDE, 0x13, 0xC0, 0xA7, 0x0F, 0x10, 0x08, 0x04,
|
||||
0x00, 0xB6, 0x9E, 0x14, 0xD2, 0xC3, 0x19, 0x10, 0x08, 0x04, 0x00, 0xA6, 0x8F, 0x22, 0xE0,
|
||||
0xDD, 0x16, 0x10, 0x07, 0x02, 0x00, 0xA6, 0xF6, 0x19, 0x9F, 0x49, 0xFF, 0x11, 0x10, 0x95,
|
||||
0xAC, 0x21, 0x00, 0x0B, 0x91, 0xAC, 0x21, 0x01, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x1A,
|
||||
0xFF, 0x12, 0x46, 0xB1, 0xAC, 0x21, 0x00, 0x11, 0x95, 0xAC, 0x21, 0x00, 0x31, 0x6F, 0x75,
|
||||
0x74, 0x65, 0x72, 0x00, 0xD7, 0xAC, 0x21, 0x00, 0x30, 0x00, 0x00, 0x6E, 0x61, 0x6D, 0x65,
|
||||
0x00, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6F, 0x72, 0x73, 0x65, 0x00, 0x00, 0x70, 0x6C,
|
||||
0x61, 0x63, 0x65, 0x00, 0x74, 0x6F, 0x77, 0x6E, 0x00, 0x00, 0x74, 0x79, 0x70, 0x65, 0x00,
|
||||
0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6F, 0x6C, 0x79, 0x67, 0x6F, 0x6E, 0x00, 0xFE};
|
||||
unsigned char const relation_o5m_data[/* 224 */] = {
|
||||
0xFF, 0xE0, 0x04, 0x6F, 0x35, 0x6D, 0x32, 0xFF, 0x10, 0x0E, 0x92, 0xAC, 0x21, 0x00, 0xC6, 0x94,
|
||||
0x88, 0x88, 0x0A, 0xA8, 0xBC, 0xA1, 0xC3, 0x04, 0x10, 0x07, 0x02, 0x00, 0xA6, 0xF6, 0x19, 0xA0,
|
||||
0x49, 0x10, 0x08, 0x04, 0x00, 0xA6, 0x8F, 0x22, 0xDF, 0xDD, 0x16, 0x10, 0x08, 0x04, 0x00, 0xB6,
|
||||
0x9E, 0x14, 0xD1, 0xC3, 0x19, 0x10, 0x08, 0x04, 0x00, 0x97, 0xDE, 0x13, 0xBF, 0xA7, 0x0F, 0x10,
|
||||
0x08, 0x04, 0x00, 0xE7, 0x95, 0x60, 0xFD, 0x9A, 0x02, 0x10, 0x08, 0x04, 0x00, 0x91, 0xD3, 0x2A,
|
||||
0xFC, 0xCC, 0x11, 0x10, 0x08, 0x04, 0x00, 0xDE, 0xCD, 0x1E, 0xF8, 0xF6, 0x15, 0x10, 0x24, 0x2C,
|
||||
0x00, 0x9A, 0x90, 0x24, 0xDA, 0x68, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x00, 0x57, 0x68, 0x69, 0x74,
|
||||
0x65, 0x68, 0x6F, 0x72, 0x73, 0x65, 0x00, 0x00, 0x70, 0x6C, 0x61, 0x63, 0x65, 0x00, 0x74, 0x6F,
|
||||
0x77, 0x6E, 0x00, 0xFF, 0x11, 0x10, 0x96, 0xAC, 0x21, 0x00, 0x0B, 0x92, 0xAC, 0x21, 0x02, 0x04,
|
||||
0x04, 0x04, 0x04, 0x04, 0x04, 0x19, 0xFF, 0x12, 0x46, 0xB2, 0xAC, 0x21, 0x00, 0x11, 0x96, 0xAC,
|
||||
0x21, 0x00, 0x31, 0x6F, 0x75, 0x74, 0x65, 0x72, 0x00, 0xD8, 0xAC, 0x21, 0x00, 0x30, 0x00, 0x00,
|
||||
0x6E, 0x61, 0x6D, 0x65, 0x00, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6F, 0x72, 0x73, 0x65, 0x00,
|
||||
0x00, 0x70, 0x6C, 0x61, 0x63, 0x65, 0x00, 0x74, 0x6F, 0x77, 0x6E, 0x00, 0x00, 0x74, 0x79, 0x70,
|
||||
0x65, 0x00, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6F, 0x6C, 0x79, 0x67, 0x6F, 0x6E, 0x00, 0xFE};
|
||||
static_assert(sizeof(relation_o5m_data) == 224, "Size check failed");
|
||||
|
|
Loading…
Add table
Reference in a new issue