add additional url encoded test cases

Signed-off-by: Nic Pottier <nicpottier@gmail.com>
This commit is contained in:
Nic Pottier 2024-08-17 07:27:26 -07:00 committed by Alexander Borsuk
parent b39c0e0529
commit 2d20501569

View file

@ -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), ());