From c261118f49e6508b12dfaf1c4547d92ec46e8cc2 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Sat, 30 Jun 2018 22:48:31 -0700 Subject: Fix bug in not clearing userInfo when there is no authority --- test/src/UriTests.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/src/UriTests.cpp') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index a8ecd5b..6ee57c4 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -228,3 +228,10 @@ TEST(UriTests, ParseFromStringUserInfo) { ++index; } } + +TEST(UriTests, ParseFromStringTwiceFirstUserInfoThenWithout) { + Uri::Uri uri; + ASSERT_TRUE(uri.ParseFromString("http://joe@www.example.com/foo/bar")); + ASSERT_TRUE(uri.ParseFromString("/foo/bar")); + ASSERT_TRUE(uri.GetUserInfo().empty()); +} -- cgit v1.2.3