From 0223f69fcd2252a4b686b2815e6ee287b1484551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 22 Nov 2018 00:12:18 +0100 Subject: Move the final old HTTP suite tests and remove it --- test/handlers/accept_callback_h.erl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/handlers/accept_callback_h.erl (limited to 'test/handlers/accept_callback_h.erl') diff --git a/test/handlers/accept_callback_h.erl b/test/handlers/accept_callback_h.erl new file mode 100644 index 0000000..1912e9f --- /dev/null +++ b/test/handlers/accept_callback_h.erl @@ -0,0 +1,23 @@ +%% This module returns something different in +%% AcceptCallback depending on the query string. + +-module(accept_callback_h). + +-export([init/2]). +-export([allowed_methods/2]). +-export([content_types_accepted/2]). +-export([put_text_plain/2]). + +init(Req, Opts) -> + {cowboy_rest, Req, Opts}. + +allowed_methods(Req, State) -> + {[<<"PUT">>, <<"POST">>, <<"PATCH">>], Req, State}. + +content_types_accepted(Req, State) -> + {[{{<<"text">>, <<"plain">>, []}, put_text_plain}], Req, State}. + +put_text_plain(Req=#{qs := <<"false">>}, State) -> + {false, Req, State}; +put_text_plain(Req=#{qs := <<"true">>}, State) -> + {true, Req, State}. -- cgit v1.2.3