From 4cadf8d3bceb7a1bf419a44503072c3bce9913a7 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Mon, 2 Jul 2018 22:46:12 -0700 Subject: Recognize special case of absolute URI with empty path Such a URI should be considered equivalent to a path of "/" because in both cases the path is an absolute path. --- test/src/UriTests.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/src') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index fcd6309..897047d 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -646,3 +646,13 @@ TEST(UriTests, ConstructNormalizeAndCompareEquivalentUris) { uri2.NormalizePath(); ASSERT_EQ(uri1, uri2); } + +TEST(UriTests, EmptyPathInUriWithAuthorityIsEquivalentToSlashOnlyPath) { + Uri::Uri uri1, uri2; + ASSERT_TRUE(uri1.ParseFromString("http://example.com")); + ASSERT_TRUE(uri2.ParseFromString("http://example.com/")); + ASSERT_EQ(uri1, uri2); + ASSERT_TRUE(uri1.ParseFromString("urn:")); + ASSERT_TRUE(uri2.ParseFromString("urn:/")); + ASSERT_EQ(uri1, uri2); +} -- cgit v1.2.3