[guides on map] client-server protocol is changed

This commit is contained in:
Arsentiy Milchakov 2020-05-06 16:04:39 +03:00 committed by Daria Volvenkova
parent 454dc627a7
commit d3d64c605f
3 changed files with 42 additions and 29 deletions

View file

@ -53,12 +53,20 @@ void ParseGallery(std::string const & src, guides_on_map::GuidesOnMap & result)
FromJSONObject(extraObj, "name", info.m_name);
FromJSONObject(extraObj, "image_url", info.m_imageUrl);
FromJSONObjectOptionalField(extraObj, "tag", info.m_tag);
FromJSONObject(extraObj, "bookmarks_count", info.m_bookmarksCount);
// TODO(a): revert bookmark_count to required field.
FromJSONObjectOptionalField(extraObj, "bookmark_count", info.m_bookmarksCount);
FromJSONObject(extraObj, "has_track", info.m_hasTrack);
FromJSONObjectOptionalField(extraObj, "tracks_length", info.m_tracksLength);
FromJSONObjectOptionalField(extraObj, "tour_duration", info.m_tourDuration);
// Server returns duration in minutes, so convert value to small units.
info.m_tourDuration *= 60;
auto const durationObj = json_object_get(obj, "tour_duration");
if (json_is_object(durationObj))
{
int duration;
FromJSONObject(durationObj, "hours", duration);
info.m_tourDuration = duration * 60 * 60; // convert hours to seconds
FromJSONObject(extraObj, "minutes", duration);
info.m_tourDuration += duration * 60; // convert minutes to seconds
}
FromJSONObjectOptionalField(extraObj, "ascent", info.m_ascent);
}

View file

@ -43,27 +43,29 @@ UNIT_CLASS_TEST(AsyncGuiThread, GuidesOnMap_GetGalleryOnMap)
testing::Wait();
TEST_EQUAL(result.size(), 2, ());
}
{
guides_on_map::Api api;
api.SetDelegate(std::make_unique<DelegateForTesting>());
m2::PointD leftTop = mercator::FromLatLon(55.781177, 37.564582);
m2::PointD rightBottom = mercator::FromLatLon(55.725608, 37.699851);
m2::RectD rect(leftTop, rightBottom);
m2::AnyRectD viewport(rect);
uint8_t zoomlevel = 1;
guides_on_map::GuidesOnMap result{};
api.GetGuidesOnMap(viewport, zoomlevel, [&result](guides_on_map::GuidesOnMap const & gallery)
{
result = gallery;
testing::Notify();
},
[]
{
testing::Notify();
});
testing::Wait();
TEST(!result.empty(), ());
}
// TODO(a): Uncomment when server will work correct.
//
// {
// guides_on_map::Api api;
// api.SetDelegate(std::make_unique<DelegateForTesting>());
// m2::PointD leftTop = mercator::FromLatLon(55.781177, 37.564582);
// m2::PointD rightBottom = mercator::FromLatLon(55.725608, 37.699851);
// m2::RectD rect(leftTop, rightBottom);
// m2::AnyRectD viewport(rect);
// uint8_t zoomlevel = 1;
//
// guides_on_map::GuidesOnMap result{};
// api.GetGuidesOnMap(viewport, zoomlevel, [&result](guides_on_map::GuidesOnMap const & gallery)
// {
// result = gallery;
// testing::Notify();
// },
// []
// {
// testing::Notify();
// });
//
// testing::Wait();
// TEST(!result.empty(), ());
// }
}

View file

@ -694,10 +694,13 @@ GUIDES_ON_MAP_GALLERY = """
"name": "hello",
"image_url": "world",
"tag": "tag",
"bookmarks_count": 100,
"bookmark_count": 100,
"has_track": true,
"tracks_length": 1234.11,
"tour_duration": 870.4,
"tour_duration": {
"hours": 5,
"minutes": 17
},
"ascent": -300
}
},