From ad91aaf81aa7fddba016262f1c8001d479a76be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 24 Apr 2013 20:28:44 +0200 Subject: Reorganize the http test suite --- test/http_handler_set_resp.erl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 test/http_handler_set_resp.erl (limited to 'test/http_handler_set_resp.erl') diff --git a/test/http_handler_set_resp.erl b/test/http_handler_set_resp.erl deleted file mode 100644 index d00d72a..0000000 --- a/test/http_handler_set_resp.erl +++ /dev/null @@ -1,31 +0,0 @@ -%% Feel free to use, reuse and abuse the code in this file. - --module(http_handler_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. -- cgit v1.2.3