aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpc_SUITE.erl
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2019-06-27 14:24:33 +0200
committerPéter Dimitrov <[email protected]>2019-06-27 15:25:26 +0200
commit4c7bf834f532b682c92c77a4e4fe171002ee9d7a (patch)
tree393b227ea81d280db0b057ddf076c6db6a4cdea0 /lib/inets/test/httpc_SUITE.erl
parent4319a7f8bc93388ec540e954eb9bb73ea1eec4ef (diff)
downloadotp-4c7bf834f532b682c92c77a4e4fe171002ee9d7a.tar.gz
otp-4c7bf834f532b682c92c77a4e4fe171002ee9d7a.tar.bz2
otp-4c7bf834f532b682c92c77a4e4fe171002ee9d7a.zip
inets: Return error if URI has no scheme (httpc)
This commit fixes a regression and changes httpc to return {error, no_scheme} when the request URI has no scheme e.g. "//foobar".
Diffstat (limited to 'lib/inets/test/httpc_SUITE.erl')
-rw-r--r--lib/inets/test/httpc_SUITE.erl13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl
index d4b33ae2c6..1d37e71847 100644
--- a/lib/inets/test/httpc_SUITE.erl
+++ b/lib/inets/test/httpc_SUITE.erl
@@ -106,7 +106,8 @@ real_requests()->
streaming_error,
inet_opts,
invalid_headers,
- invalid_body
+ invalid_body,
+ no_scheme
].
real_requests_esi() ->
@@ -1231,6 +1232,16 @@ invalid_body(Config) ->
ok
end.
+
+%%-------------------------------------------------------------------------
+
+no_scheme(_Config) ->
+ {error,{bad_scheme,"ftp"}} = httpc:request("ftp://foobar"),
+ {error,{no_scheme}} = httpc:request("//foobar"),
+ {error,{no_scheme}} = httpc:request("foobar"),
+ ok.
+
+
%%-------------------------------------------------------------------------
remote_socket_close(Config) when is_list(Config) ->
URL = url(group_name(Config), "/just_close.html", Config),