From 58e2beb7717cf724ae37e03f2e5bf3afbfc23a35 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Sat, 30 Jun 2018 20:55:44 -0700 Subject: Uri: fix mistakes from last session * Parts of a path are called "segments", not "steps", in the RFC. * The RFC specifies that path separators are always forward slashes, so don't support other separators. --- test/src/UriTests.cpp | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'test/src/UriTests.cpp') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index 73848a9..2f8f28e 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -38,38 +38,6 @@ TEST(UriTests, ParseFromStringUrnDefaultPathDelimiter) { ); } -TEST(UriTests, ParseFromStringUrnSingleCharacterPathDelimiter) { - Uri::Uri uri; - uri.SetPathDelimiter(":"); - ASSERT_TRUE(uri.ParseFromString("urn:book:fantasy:Hobbit")); - ASSERT_EQ("urn", uri.GetScheme()); - ASSERT_EQ("", uri.GetHost()); - ASSERT_EQ( - (std::vector< std::string >{ - "book", - "fantasy", - "Hobbit", - }), - uri.GetPath() - ); -} - -TEST(UriTests, ParseFromStringUrnMultiCharacterPathDelimiter) { - Uri::Uri uri; - uri.SetPathDelimiter("/-"); - ASSERT_TRUE(uri.ParseFromString("urn:bo-/ok/-fant/asy/-Hob-bit")); - ASSERT_EQ("urn", uri.GetScheme()); - ASSERT_EQ("", uri.GetHost()); - ASSERT_EQ( - (std::vector< std::string >{ - "bo-/ok", - "fant/asy", - "Hob-bit", - }), - uri.GetPath() - ); -} - TEST(UriTests, ParseFromStringPathCornerCases) { struct TestVector { std::string pathIn; -- cgit v1.2.3