aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/content_types_accepted_h.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-21 17:39:12 +0100
committerLoïc Hoguin <[email protected]>2018-11-21 18:39:59 +0100
commit037b286aa85acaaf439011bd7d2ae38685ce2f2e (patch)
tree2879aa405283eb15385efa02b71e2689337cda2f /test/handlers/content_types_accepted_h.erl
parent800a4890092ebd30551c49fdae606ed5182bfdb1 (diff)
downloadcowboy-037b286aa85acaaf439011bd7d2ae38685ce2f2e.tar.gz
cowboy-037b286aa85acaaf439011bd7d2ae38685ce2f2e.tar.bz2
cowboy-037b286aa85acaaf439011bd7d2ae38685ce2f2e.zip
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.
Diffstat (limited to 'test/handlers/content_types_accepted_h.erl')
-rw-r--r--test/handlers/content_types_accepted_h.erl9
1 files changed, 8 insertions, 1 deletions
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}.