aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/resp_h.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-11-20 15:46:23 +0100
committerLoïc Hoguin <[email protected]>2017-11-20 15:46:23 +0100
commit92672b49aff04fb129bdf488448c074eeccfdb27 (patch)
treef255cf6305b0ad12ebf419f521a3d29250734fb0 /test/handlers/resp_h.erl
parent9969684035a55ca386c9232108ee272328ddd7e7 (diff)
downloadcowboy-92672b49aff04fb129bdf488448c074eeccfdb27.tar.gz
cowboy-92672b49aff04fb129bdf488448c074eeccfdb27.tar.bz2
cowboy-92672b49aff04fb129bdf488448c074eeccfdb27.zip
Queue HTTP/2 trailers when there's still data in the buffer
Diffstat (limited to 'test/handlers/resp_h.erl')
-rw-r--r--test/handlers/resp_h.erl9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/handlers/resp_h.erl b/test/handlers/resp_h.erl
index 9dae612..ba46213 100644
--- a/test/handlers/resp_h.erl
+++ b/test/handlers/resp_h.erl
@@ -212,6 +212,15 @@ do(<<"stream_body">>, Req0, Opts) ->
end;
do(<<"stream_trailers">>, Req0, Opts) ->
case cowboy_req:binding(arg, Req0) of
+ <<"large">> ->
+ Req = cowboy_req:stream_reply(200, #{
+ <<"trailer">> => <<"grpc-status">>
+ }, Req0),
+ cowboy_req:stream_body(<<0:800000>>, nofin, Req),
+ cowboy_req:stream_trailers(#{
+ <<"grpc-status">> => <<"0">>
+ }, Req),
+ {ok, Req, Opts};
_ ->
Req = cowboy_req:stream_reply(200, #{
<<"trailer">> => <<"grpc-status">>