diff options
author | Loïc Hoguin <[email protected]> | 2013-04-24 20:28:44 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-04-24 20:28:44 +0200 |
commit | ad91aaf81aa7fddba016262f1c8001d479a76be5 (patch) | |
tree | 160cc2d94af30d73172cefe32be7ea5d8a9b0a4f /test/http_SUITE_data/http_set_resp.erl | |
parent | 282e532ba9e1b0e0f1867e43dd60d1118a36c12f (diff) | |
download | cowboy-ad91aaf81aa7fddba016262f1c8001d479a76be5.tar.gz cowboy-ad91aaf81aa7fddba016262f1c8001d479a76be5.tar.bz2 cowboy-ad91aaf81aa7fddba016262f1c8001d479a76be5.zip |
Reorganize the http test suite
Diffstat (limited to 'test/http_SUITE_data/http_set_resp.erl')
-rw-r--r-- | test/http_SUITE_data/http_set_resp.erl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/http_SUITE_data/http_set_resp.erl b/test/http_SUITE_data/http_set_resp.erl new file mode 100644 index 0000000..821cc1d --- /dev/null +++ b/test/http_SUITE_data/http_set_resp.erl @@ -0,0 +1,31 @@ +%% Feel free to use, reuse and abuse the code in this file. + +-module(http_set_resp). +-behaviour(cowboy_http_handler). +-export([init/3, handle/2, terminate/3]). + +init({_Transport, http}, Req, Opts) -> + Headers = proplists:get_value(headers, Opts, []), + Body = proplists:get_value(body, Opts, <<"http_handler_set_resp">>), + Req2 = lists:foldl(fun({Name, Value}, R) -> + cowboy_req:set_resp_header(Name, Value, R) + end, Req, Headers), + Req3 = cowboy_req:set_resp_body(Body, Req2), + Req4 = cowboy_req:set_resp_header(<<"x-cowboy-test">>, <<"ok">>, Req3), + Req5 = cowboy_req:set_resp_cookie(<<"cake">>, <<"lie">>, [], Req4), + {ok, Req5, undefined}. + +handle(Req, State) -> + case cowboy_req:has_resp_header(<<"x-cowboy-test">>, Req) of + false -> {ok, Req, State}; + true -> + case cowboy_req:has_resp_body(Req) of + false -> {ok, Req, State}; + true -> + {ok, Req2} = cowboy_req:reply(200, Req), + {ok, Req2, State} + end + end. + +terminate(_, _, _) -> + ok. |