diff options
author | Péter Dimitrov <[email protected]> | 2017-11-20 14:52:22 +0100 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2017-11-20 14:52:22 +0100 |
commit | 57e97ae9381a75a242ba2966b24ee5c1276851be (patch) | |
tree | c8aa04b96f9f559ac17db175cf9667f980da69b4 /lib/inets/test/httpc_SUITE.erl | |
parent | fbc24513ab2d241d912225d067b72e517742e698 (diff) | |
parent | 7d6d272b7d04cf6640145f5381c39193e40ba5f8 (diff) | |
download | otp-57e97ae9381a75a242ba2966b24ee5c1276851be.tar.gz otp-57e97ae9381a75a242ba2966b24ee5c1276851be.tar.bz2 otp-57e97ae9381a75a242ba2966b24ee5c1276851be.zip |
Merge branch 'peterdmv/inets/http_content_injection/ERL-456/OTP-14726'
* peterdmv/inets/http_content_injection/ERL-456/OTP-14726:
inets: Fix http content injection bug in httpc
Diffstat (limited to 'lib/inets/test/httpc_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index 75b50f3420..954787d7ee 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -68,6 +68,7 @@ real_requests()-> [ head, get, + get_query_string, post, delete, post_stream, @@ -243,6 +244,15 @@ get(Config) when is_list(Config) -> {ok, {{_,200,_}, [_ | _], BinBody}} = httpc:request(get, Request, [], [{body_format, binary}]), true = is_binary(BinBody). + + +get_query_string() -> + [{doc, "Test http get request with query string against local server"}]. +get_query_string(Config) when is_list(Config) -> + Request = {url(group_name(Config), "/dummy.html?foo=bar", Config), []}, + {ok, {{_,200,_}, [_ | _], Body = [_ | _]}} = httpc:request(get, Request, [], []), + + inets_test_lib:check_body(Body). %%-------------------------------------------------------------------- post() -> [{"Test http post request against local server. We do in this case " @@ -1712,6 +1722,9 @@ content_length(["content-length:" ++ Value | _]) -> content_length([_Head | Tail]) -> content_length(Tail). +handle_uri("GET","/dummy.html?foo=bar",_,_,_,_) -> + "HTTP/1.0 200 OK\r\n\r\nTEST"; + handle_uri(_,"/just_close.html",_,_,_,_) -> close; handle_uri(_,"/no_content.html",_,_,_,_) -> |