aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2019-03-28 00:00:15 -0700
committerRichard Walters <rwalters@digitalstirling.com>2019-03-28 00:00:15 -0700
commit7cc97d98213436350624bcf5c38203b3116ca651 (patch)
tree44b8b13d35e5ac712041c3952c1fb938925bbce3 /test
parent79d2e347dc32c4f491c4cd3476b4ffa1db3e4003 (diff)
Percent-encode '+' in the query portion
Diffstat (limited to 'test')
-rw-r--r--test/src/UriTests.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp
index 637bfb7..e3737c2 100644
--- a/test/src/UriTests.cpp
+++ b/test/src/UriTests.cpp
@@ -906,3 +906,16 @@ TEST(UriTests, ClearQuery) {
EXPECT_EQ("http://www.example.com/", uri.GenerateString());
EXPECT_FALSE(uri.HasQuery());
}
+
+TEST(UriTests, PercentEncodePlusInQueries) {
+ // Although RFC 3986 doesn't say anything about '+', some web services
+ // treat it the same as ' ' due to how HTML originally defined how
+ // to encode the query portion of a URL
+ // (see https://stackoverflow.com/questions/2678551/when-to-encode-space-to-plus-or-20).
+ //
+ // To avoid issues with these web services, make sure '+' is
+ // percent-encoded in a URI when the URI is encoded.
+ Uri::Uri uri;
+ uri.SetQuery("foo+bar");
+ EXPECT_EQ("?foo%2Bbar", uri.GenerateString());
+}