From cf4d8166f80007fc665972daf724ce7ee9ba71c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 12 Jul 2017 19:25:56 +0200 Subject: Remove tests for set_resp_body with a stream fun --- test/http_SUITE.erl | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'test/http_SUITE.erl') diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index 3ea53fd..2141049 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -111,16 +111,6 @@ init_dispatch(Config) -> [{headers, #{<<"server">> => <<"DesireDrive/1.0">>}}]}, {"/set_resp/body", http_set_resp, [{body, <<"A flameless dance does not equal a cycle">>}]}, - {"/stream_body/set_resp", http_stream_body, - [{reply, set_resp}, {body, <<"stream_body_set_resp">>}]}, - {"/stream_body/set_resp_close", - http_stream_body, [ - {reply, set_resp_close}, - {body, <<"stream_body_set_resp_close">>}]}, - {"/stream_body/set_resp_chunked", - http_stream_body, [ - {reply, set_resp_chunked}, - {body, [<<"stream_body">>, <<"_set_resp_chunked">>]}]}, {"/static/[...]", cowboy_static, {dir, config(static_dir, Config)}}, {"/static_mimetypes_function/[...]", cowboy_static, @@ -776,36 +766,6 @@ static_test_file_css(Config) -> {_, <<"text/css">>} = lists:keyfind(<<"content-type">>, 1, Headers), ok. -stream_body_set_resp(Config) -> - ConnPid = gun_open(Config), - Ref = gun:get(ConnPid, "/stream_body/set_resp"), - {response, nofin, 200, _} = gun:await(ConnPid, Ref), - {ok, <<"stream_body_set_resp">>} = gun:await_body(ConnPid, Ref), - ok. - -stream_body_set_resp_close(Config) -> - ConnPid = gun_open(Config), - Ref = gun:get(ConnPid, "/stream_body/set_resp_close"), - {response, nofin, 200, _} = gun:await(ConnPid, Ref), - {ok, <<"stream_body_set_resp_close">>} = gun:await_body(ConnPid, Ref), - gun_down(ConnPid). - -stream_body_set_resp_chunked(Config) -> - ConnPid = gun_open(Config), - Ref = gun:get(ConnPid, "/stream_body/set_resp_chunked"), - {response, nofin, 200, Headers} = gun:await(ConnPid, Ref), - {_, <<"chunked">>} = lists:keyfind(<<"transfer-encoding">>, 1, Headers), - {ok, <<"stream_body_set_resp_chunked">>} = gun:await_body(ConnPid, Ref), - ok. - -stream_body_set_resp_chunked10(Config) -> - ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}), - Ref = gun:get(ConnPid, "/stream_body/set_resp_chunked"), - {response, nofin, 200, Headers} = gun:await(ConnPid, Ref), - false = lists:keyfind(<<"transfer-encoding">>, 1, Headers), - {ok, <<"stream_body_set_resp_chunked">>} = gun:await_body(ConnPid, Ref), - gun_down(ConnPid). - te_chunked(Config) -> Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])), ConnPid = gun_open(Config), -- cgit v1.2.3