From 2d205015698058e2c644d2f16711de7dc391700a Mon Sep 17 00:00:00 2001 From: Nic Pottier Date: Sat, 17 Aug 2024 07:27:26 -0700 Subject: [PATCH] add additional url encoded test cases Signed-off-by: Nic Pottier --- ge0/ge0_tests/geo_url_tests.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ge0/ge0_tests/geo_url_tests.cpp b/ge0/ge0_tests/geo_url_tests.cpp index f52aa91655..899ea5232e 100644 --- a/ge0/ge0_tests/geo_url_tests.cpp +++ b/ge0/ge0_tests/geo_url_tests.cpp @@ -102,6 +102,24 @@ UNIT_TEST(GeoUrl_Geo) TEST_ALMOST_EQUAL_ABS(info.m_lat, -18.9151863, kEps, ()); TEST_ALMOST_EQUAL_ABS(info.m_lon, -48.28712359999999, kEps, ()); + // URL Encoded comma (%2C) and space (%20) + TEST(parser.Parse("geo:-18.9151863%2C%20-48.28712359999999?q=-18.9151863%2C-48.28712359999999", info), ()); + TEST(info.IsLatLonValid(), ()); + TEST_ALMOST_EQUAL_ABS(info.m_lat, -18.9151863, kEps, ()); + TEST_ALMOST_EQUAL_ABS(info.m_lon, -48.28712359999999, kEps, ()); + + // URL Encoded comma (%2C) and space as + + TEST(parser.Parse("geo:-18.9151863%2C+-48.28712359999999?q=-18.9151863%2C-48.28712359999999", info), ()); + TEST(info.IsLatLonValid(), ()); + TEST_ALMOST_EQUAL_ABS(info.m_lat, -18.9151863, kEps, ()); + TEST_ALMOST_EQUAL_ABS(info.m_lon, -48.28712359999999, kEps, ()); + + // URL encoded with altitude + TEST(parser.Parse("geo:53.666%2C-27.666%2C+1000", info), ()); + TEST(info.IsLatLonValid(), ()); + TEST_ALMOST_EQUAL_ABS(info.m_lat, 53.666, kEps, ()); + TEST_ALMOST_EQUAL_ABS(info.m_lon, -27.666, kEps, ()); + // Invalid coordinates. TEST(!parser.Parse("geo:0,0garbage", info), ()); TEST(!parser.Parse("geo:garbage0,0", info), ());