From f95b6e2d031de4d59dafe094386da6d4a6074dad Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Mon, 5 Oct 2020 14:03:26 -0700 Subject: Add tests for parsing hosts ending in dot --- test/src/UriTests.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/src') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index e3737c2..34e3483 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -292,6 +292,12 @@ TEST(UriTests, ParseFromStringSchemeMixedCase) { } } +TEST(UriTests, ParseFromStringHostEndsInDot) { + Uri::Uri uri; + ASSERT_TRUE(uri.ParseFromString("http://example.com./foo")); + ASSERT_EQ("example.com.", uri.GetHost()); +} + TEST(UriTests, ParseFromStringUserInfoIllegalCharacters) { const std::vector< std::string > testVectors{ {"//%X@www.example.com/"}, -- cgit v1.2.3