forked from organicmaps/organicmaps
add additional url encoded test cases
Signed-off-by: Nic Pottier <nicpottier@gmail.com>
This commit is contained in:
parent
b39c0e0529
commit
2d20501569
1 changed files with 18 additions and 0 deletions
|
@ -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), ());
|
||||
|
|
Loading…
Add table
Reference in a new issue