aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-07-12 18:51:28 +0200
committerLoïc Hoguin <[email protected]>2013-07-12 18:51:28 +0200
commitf66a6fc57ab8642331ab06caadb16eb24f8afa2f (patch)
tree0c3950318504d6704b89bc170f48b167a55ce2fd /test
parent39caf34fe3bc0a3c89ac8a06428542555f8e13c1 (diff)
parentf0cc2d01e64f489275821b56c7e4343e4aa5bf97 (diff)
downloadcowboy-f66a6fc57ab8642331ab06caadb16eb24f8afa2f.tar.gz
cowboy-f66a6fc57ab8642331ab06caadb16eb24f8afa2f.tar.bz2
cowboy-f66a6fc57ab8642331ab06caadb16eb24f8afa2f.zip
Merge branch 'fix-chunked-req' of git://github.com/fishcakez/cowboy
Diffstat (limited to 'test')
-rw-r--r--test/http_SUITE.erl50
1 files changed, 50 insertions, 0 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl
index 7483599..2135fdc 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -88,6 +88,8 @@
-export([te_chunked/1]).
-export([te_chunked_chopped/1]).
-export([te_chunked_delayed/1]).
+-export([te_chunked_split_body/1]).
+-export([te_chunked_split_crlf/1]).
-export([te_identity/1]).
%% ct.
@@ -162,6 +164,8 @@ groups() ->
te_chunked,
te_chunked_chopped,
te_chunked_delayed,
+ te_chunked_split_body,
+ te_chunked_split_crlf,
te_identity
],
[
@@ -1281,6 +1285,52 @@ te_chunked_delayed(Config) ->
{ok, 200, _, Client3} = cowboy_client:response(Client2),
{ok, Body, _} = cowboy_client:response_body(Client3).
+te_chunked_split_body(Config) ->
+ Client = ?config(client, Config),
+ Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
+ Chunks = body_to_chunks(50, Body, []),
+ {ok, Client2} = cowboy_client:request(<<"GET">>,
+ build_url("/echo/body", Config),
+ [{<<"transfer-encoding">>, <<"chunked">>}], Client),
+ {ok, Transport, Socket} = cowboy_client:transport(Client2),
+ _ = [begin
+ case Chunk of
+ %% Final chunk.
+ <<"0\r\n\r\n">> ->
+ ok = Transport:send(Socket, Chunk);
+ _ ->
+ %% Chunk of form <<"9\r\nChunkBody\r\n">>.
+ [Size, ChunkBody, <<>>] =
+ binary:split(Chunk, [<<"\r\n">>], [global]),
+ PartASize = random:uniform(byte_size(ChunkBody)),
+ <<PartA:PartASize/binary, PartB/binary>> = ChunkBody,
+ ok = Transport:send(Socket, [Size, <<"\r\n">>, PartA]),
+ ok = timer:sleep(10),
+ ok = Transport:send(Socket, [PartB, <<"\r\n">>])
+ end
+ end || Chunk <- Chunks],
+ {ok, 200, _, Client3} = cowboy_client:response(Client2),
+ {ok, Body, _} = cowboy_client:response_body(Client3).
+
+te_chunked_split_crlf(Config) ->
+ Client = ?config(client, Config),
+ Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
+ Chunks = body_to_chunks(50, Body, []),
+ {ok, Client2} = cowboy_client:request(<<"GET">>,
+ build_url("/echo/body", Config),
+ [{<<"transfer-encoding">>, <<"chunked">>}], Client),
+ {ok, Transport, Socket} = cowboy_client:transport(Client2),
+ _ = [begin
+ %% <<"\r\n">> is last 2 bytes of Chunk split before or after <<"\r">>.
+ Len = byte_size(Chunk) - (random:uniform(2) - 1),
+ <<Chunk2:Len/binary, End/binary>> = Chunk,
+ ok = Transport:send(Socket, Chunk2),
+ ok = timer:sleep(10),
+ ok = Transport:send(Socket, End)
+ end || Chunk <- Chunks],
+ {ok, 200, _, Client3} = cowboy_client:response(Client2),
+ {ok, Body, _} = cowboy_client:response_body(Client3).
+
te_identity(Config) ->
Client = ?config(client, Config),
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),