From 01caae5272e82b3e49bb320f20bf66780d35b42a Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Thu, 20 Sep 2018 15:51:54 +0300 Subject: [PATCH] Tests on vehicle model on speeds in city and out of cities. --- routing/city_roads.cpp | 5 +- .../vehicle_model_test.cpp | 64 +++++++++++-------- 2 files changed, 39 insertions(+), 30 deletions(-) diff --git a/routing/city_roads.cpp b/routing/city_roads.cpp index 623b37fb24..a631244f38 100644 --- a/routing/city_roads.cpp +++ b/routing/city_roads.cpp @@ -14,10 +14,7 @@ namespace routing { bool CityRoads::IsCityRoad(uint32_t fid) const { - if (fid < m_cityRoads.size()) - return m_cityRoads[fid]; - - return false; + return fid < m_cityRoads.size() ? m_cityRoads[fid] : false; } void LoadCityRoads(std::string const & fileName, FilesContainerR::TReader const & reader, diff --git a/routing_common/routing_common_tests/vehicle_model_test.cpp b/routing_common/routing_common_tests/vehicle_model_test.cpp index 0a7d4c6633..afd10d077b 100644 --- a/routing_common/routing_common_tests/vehicle_model_test.cpp +++ b/routing_common/routing_common_tests/vehicle_model_test.cpp @@ -13,12 +13,17 @@ using namespace std; namespace { using SpeedKMpH = routing::VehicleModel::SpeedKMpH; +using InOutCitySpeedKMpH = routing::VehicleModel::InOutCitySpeedKMpH; + +InOutCitySpeedKMpH const speedSecondaryExpected = { + {80.0 /* weight */, 70.0 /* eta */} /* in city */, + {80.0 /* weight */, 70.0 /* eta */} /* out of city */}; routing::VehicleModel::LimitsInitList const s_testLimits = { // In city weight and eta speeds. Out of city weight and eta speeds. {{"highway", "trunk"}, {SpeedKMpH(100.0, 100.0), SpeedKMpH(150.0, 150.0)}, true}, {{"highway", "primary"}, {SpeedKMpH(90.0, 90.0), SpeedKMpH(120.0, 120.0)}, true}, - {{"highway", "secondary"}, {SpeedKMpH(80.0, 70.0), SpeedKMpH(80.0, 70.0)}, true}, + {{"highway", "secondary"}, speedSecondaryExpected, true}, {{"highway", "residential"}, {SpeedKMpH(45.0, 55.0), SpeedKMpH(50.0, 60.0)}, true}, {{"highway", "service"}, {SpeedKMpH(47.0, 36.0), SpeedKMpH(50.0, 40.0)}, false}}; @@ -39,7 +44,7 @@ class TestVehicleModel : public routing::VehicleModel { friend void CheckOneWay(initializer_list const & types, bool expectedValue); friend void CheckPassThroughAllowed(initializer_list const & types, bool expectedValue); - friend void CheckSpeed(initializer_list const & types, SpeedKMpH && expectedSpeed); + friend void CheckSpeed(initializer_list const & types, InOutCitySpeedKMpH const & expectedSpeed); public: TestVehicleModel() : VehicleModel(classif(), s_testLimits, g_carSurface) {} @@ -60,14 +65,15 @@ uint32_t GetOnewayType() return GetType("hwtag", "oneway"); } -void CheckSpeed(initializer_list const & types, SpeedKMpH && expectedSpeed) +void CheckSpeed(initializer_list const & types, InOutCitySpeedKMpH const & expectedSpeed) { TestVehicleModel vehicleModel; feature::TypesHolder h; for (uint32_t t : types) h.Add(t); - TEST_EQUAL(vehicleModel.GetMinTypeSpeed(h, false /* in city */), expectedSpeed, ()); + TEST_EQUAL(vehicleModel.GetMinTypeSpeed(h, true /* in city */), expectedSpeed.m_inCity, ()); + TEST_EQUAL(vehicleModel.GetMinTypeSpeed(h, false /* in city */), expectedSpeed.m_outCity, ()); } void CheckOneWay(initializer_list const & types, bool expectedValue) @@ -99,13 +105,18 @@ UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_MaxSpeed) UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_Speed) { - CheckSpeed({GetType("highway", "secondary", "bridge")}, {80.0 /* weightSpeed KMpH */, 70.0 /* etaSpeed KMpH */}); - CheckSpeed({GetType("highway", "secondary", "tunnel")}, {80.0, 70.0}); - CheckSpeed({GetType("highway", "secondary")}, {80.0, 70.0}); + { - CheckSpeed({GetType("highway", "trunk")}, {150.0, 150.0}); - CheckSpeed({GetType("highway", "primary")}, {120.0, 120.0}); - CheckSpeed({GetType("highway", "residential")}, {50.0, 60.0}); + CheckSpeed({GetType("highway", "secondary", "bridge")}, speedSecondaryExpected); + CheckSpeed({GetType("highway", "secondary", "tunnel")}, speedSecondaryExpected); + CheckSpeed({GetType("highway", "secondary")}, speedSecondaryExpected); + } + + CheckSpeed({GetType("highway", "trunk")}, + {{100.0 /* weight */, 100.0 /* eta */} /* in city */, + {150.0 /* weight */, 150.0 /* eta */} /* out of city */}); + CheckSpeed({GetType("highway", "primary")}, {{90.0, 90.0}, {120.0, 120.0}}); + CheckSpeed({GetType("highway", "residential")}, {{45.0, 55.0}, {50.0, 60.0}}); } UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_Speed_MultiTypes) @@ -114,9 +125,9 @@ UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_Speed_MultiTypes) uint32_t const typeSecondary = GetType("highway", "secondary"); uint32_t const typeHighway = GetType("highway"); - CheckSpeed({typeTunnel, typeSecondary}, {80.0 /* weightSpeed KMpH */, 70.0 /* etaSpeed, KMpH */}); - CheckSpeed({typeTunnel, typeHighway}, {80.0, 70.0}); - CheckSpeed({typeHighway, typeTunnel}, {80.0, 70.0}); + CheckSpeed({typeTunnel, typeSecondary}, speedSecondaryExpected); + CheckSpeed({typeTunnel, typeHighway}, speedSecondaryExpected); + CheckSpeed({typeHighway, typeTunnel}, speedSecondaryExpected); } UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_OneWay) @@ -124,9 +135,9 @@ UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_OneWay) uint32_t const typeBridge = GetType("highway", "secondary", "bridge"); uint32_t const typeOneway = GetOnewayType(); - CheckSpeed({typeBridge, typeOneway}, {80.0 /* weightSpeed KMpH */, 70.0 /* etaSpeed KMpH */}); + CheckSpeed({typeBridge, typeOneway}, speedSecondaryExpected); CheckOneWay({typeBridge, typeOneway}, true); - CheckSpeed({typeOneway, typeBridge}, {80.0, 70.0}); + CheckSpeed({typeOneway, typeBridge}, speedSecondaryExpected); CheckOneWay({typeOneway, typeBridge}, true); CheckOneWay({typeOneway}, true); @@ -138,10 +149,10 @@ UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_DifferentSpeeds) uint32_t const typePrimary = GetType("highway", "primary"); uint32_t const typeOneway = GetOnewayType(); - CheckSpeed({typeSecondary, typePrimary}, {80.0 /* weightSpeed KMpH */, 70.0 /* etaSpeed KMpH */}); - CheckSpeed({typePrimary, typeSecondary}, {80.0, 70.0}); + CheckSpeed({typeSecondary, typePrimary}, speedSecondaryExpected); + CheckSpeed({typePrimary, typeSecondary}, speedSecondaryExpected); - CheckSpeed({typePrimary, typeOneway, typeSecondary}, {80.0, 70.0}); + CheckSpeed({typePrimary, typeOneway, typeSecondary}, speedSecondaryExpected); CheckOneWay({typePrimary, typeOneway, typeSecondary}, true); } @@ -161,13 +172,14 @@ UNIT_CLASS_TEST(VehicleModelTest, VehicleModel_SpeedFactor) uint32_t const unpavedGood = GetType("psurface", "unpaved_good"); uint32_t const unpavedBad = GetType("psurface", "unpaved_bad"); - CheckSpeed({secondary, pavedGood}, {64.0 /* weightSpeed KMpH */, 63.0 /* weightSpeed KMpH */}); - CheckSpeed({secondary, pavedBad}, {32.0, 35.0}); - CheckSpeed({secondary, unpavedGood}, {48.0, 56.0}); - CheckSpeed({secondary, unpavedBad}, {16.0, 14.0}); + CheckSpeed({secondary, pavedGood}, {{64.0 /* weight */, 63.0 /* eta */} /* in city */, + {64.0 /* weight */, 63.0 /* eta */} /* out of city */}); + CheckSpeed({secondary, pavedBad}, {{32.0, 35.0}, {32.0, 35.0}}); + CheckSpeed({secondary, unpavedGood}, {{48.0, 56.0}, {48.0, 56.0}}); + CheckSpeed({secondary, unpavedBad}, {{16.0, 14.0}, {16.0, 14.0}}); - CheckSpeed({residential, pavedGood}, {40.0, 54.0}); - CheckSpeed({residential, pavedBad}, {20.0, 30.0}); - CheckSpeed({residential, unpavedGood}, {30.0, 48.0}); - CheckSpeed({residential, unpavedBad}, {10.0, 12.0}); + CheckSpeed({residential, pavedGood}, {{36.0, 49.5}, {40.0, 54.0}}); + CheckSpeed({residential, pavedBad}, {{18.0, 27.5}, {20.0, 30.0}}); + CheckSpeed({residential, unpavedGood}, {{27.0, 44.0}, {30.0, 48.0}}); + CheckSpeed({residential, unpavedBad}, {{9.0, 11.0}, {10.0, 12.0}}); }