From 037b286aa85acaaf439011bd7d2ae38685ce2f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 21 Nov 2018 17:39:12 +0100 Subject: Move many old HTTP test cases to the rest_handler test suite A bug was fixed in cowboy_rest where when content_types_provided returned a media type with a wildcard as first in the list, and a request comes in without an accept header, then the media_type value in the Req object would contain '*' instead of [] for the parameters. --- test/handlers/content_types_accepted_h.erl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'test/handlers/content_types_accepted_h.erl') diff --git a/test/handlers/content_types_accepted_h.erl b/test/handlers/content_types_accepted_h.erl index 7aec1bb..b871dc8 100644 --- a/test/handlers/content_types_accepted_h.erl +++ b/test/handlers/content_types_accepted_h.erl @@ -7,6 +7,7 @@ -export([allowed_methods/2]). -export([content_types_accepted/2]). -export([put_multipart_mixed/2]). +-export([put_text_plain/2]). init(Req, Opts) -> {cowboy_rest, Req, Opts}. @@ -17,7 +18,13 @@ allowed_methods(Req, State) -> content_types_accepted(Req=#{qs := <<"multipart">>}, State) -> {[ {{<<"multipart">>, <<"mixed">>, [{<<"v">>, <<"1">>}]}, put_multipart_mixed} - ], Req, State}. + ], Req, State}; +content_types_accepted(Req=#{qs := <<"wildcard-param">>}, State) -> + {[{{<<"text">>, <<"plain">>, '*'}, put_text_plain}], Req, State}. put_multipart_mixed(Req, State) -> {true, Req, State}. + +put_text_plain(Req0, State) -> + {ok, _, Req} = cowboy_req:read_body(Req0), + {true, Req, State}. -- cgit v1.2.3