diff options
author | Loïc Hoguin <[email protected]> | 2017-07-12 19:25:56 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-07-12 19:25:56 +0200 |
commit | cf4d8166f80007fc665972daf724ce7ee9ba71c6 (patch) | |
tree | 0b0d4d6a796ccd279011ba79d9b4f67d5ea86216 /test/http_SUITE_data | |
parent | ff3915a24381970477e99b67277242c7f99a22f9 (diff) | |
download | cowboy-cf4d8166f80007fc665972daf724ce7ee9ba71c6.tar.gz cowboy-cf4d8166f80007fc665972daf724ce7ee9ba71c6.tar.bz2 cowboy-cf4d8166f80007fc665972daf724ce7ee9ba71c6.zip |
Remove tests for set_resp_body with a stream fun
Diffstat (limited to 'test/http_SUITE_data')
-rw-r--r-- | test/http_SUITE_data/http_stream_body.erl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/http_SUITE_data/http_stream_body.erl b/test/http_SUITE_data/http_stream_body.erl deleted file mode 100644 index ef10266..0000000 --- a/test/http_SUITE_data/http_stream_body.erl +++ /dev/null @@ -1,28 +0,0 @@ -%% Feel free to use, reuse and abuse the code in this file. - --module(http_stream_body). - --export([init/2]). - -init(Req, Opts) -> - Body = proplists:get_value(body, Opts, "http_handler_stream_body"), - Reply = proplists:get_value(reply, Opts), - SFun = fun () -> - cowboy_req:send_body(Body, nofin, Req) - end, - Req2 = case Reply of - set_resp -> - SLen = iolist_size(Body), - cowboy_req:set_resp_body({stream, SLen, SFun}, Req); - %% @todo Hmm that one will be sent as chunked now. - %% We need an option to disable chunked. - set_resp_close -> - cowboy_req:set_resp_body({stream, undefined, SFun}, Req); - set_resp_chunked -> - %% Here Body should be a list of chunks, not a binary. - SFun2 = fun () -> - lists:foreach(fun (Data) -> cowboy_req:send_body(Data, nofin, Req) end, Body) - end, - cowboy_req:set_resp_body({stream, undefined, SFun2}, Req) - end, - {ok, cowboy_req:reply(200, Req2), Opts}. |