2017-01-02 19:36:36 +01:00
|
|
|
%% Copyright (c) 2011-2017, Loïc Hoguin <essen@ninenines.eu>
|
2011-11-08 00:51:49 +01:00
|
|
|
%% Copyright (c) 2011, Anthony Ramine <nox@dev-extend.eu>
|
2011-04-08 16:30:37 +02:00
|
|
|
%%
|
|
|
|
%% Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
%% purpose with or without fee is hereby granted, provided that the above
|
|
|
|
%% copyright notice and this permission notice appear in all copies.
|
|
|
|
%%
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
-module(http_SUITE).
|
2014-03-24 14:20:52 +01:00
|
|
|
-compile(export_all).
|
2017-11-29 16:57:10 +01:00
|
|
|
-compile(nowarn_export_all).
|
2011-04-08 16:30:37 +02:00
|
|
|
|
2015-05-05 19:59:37 +03:00
|
|
|
-import(ct_helper, [config/2]).
|
2014-04-20 22:20:54 +02:00
|
|
|
-import(cowboy_test, [gun_open/1]).
|
2015-05-05 19:59:37 +03:00
|
|
|
-import(cowboy_test, [gun_open/2]).
|
|
|
|
-import(cowboy_test, [gun_down/1]).
|
2014-04-20 22:20:54 +02:00
|
|
|
-import(cowboy_test, [raw_open/1]).
|
|
|
|
-import(cowboy_test, [raw_send/2]).
|
|
|
|
-import(cowboy_test, [raw_recv_head/1]).
|
|
|
|
-import(cowboy_test, [raw_expect_recv/2]).
|
2011-04-08 16:30:37 +02:00
|
|
|
|
|
|
|
%% ct.
|
|
|
|
|
|
|
|
all() ->
|
2013-01-07 22:42:16 +01:00
|
|
|
[
|
|
|
|
{group, http},
|
|
|
|
{group, https},
|
|
|
|
{group, http_compress},
|
|
|
|
{group, https_compress},
|
2013-08-25 02:13:53 +09:00
|
|
|
{group, parse_host},
|
2018-03-01 14:49:57 +01:00
|
|
|
{group, request_timeout_infinity},
|
|
|
|
{group, idle_timeout_infinity},
|
2015-12-22 12:19:28 -06:00
|
|
|
{group, set_env},
|
|
|
|
{group, router_compile}
|
2013-01-07 22:42:16 +01:00
|
|
|
].
|
2011-04-08 16:30:37 +02:00
|
|
|
|
|
|
|
groups() ->
|
2015-05-05 19:59:37 +03:00
|
|
|
Tests = ct_helper:all(?MODULE) -- [
|
2018-03-01 14:49:57 +01:00
|
|
|
parse_host, set_env_dispatch, path_allow_colon,
|
|
|
|
request_timeout_infinity, idle_timeout_infinity
|
2012-04-29 01:20:24 +02:00
|
|
|
],
|
|
|
|
[
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
{http, [], Tests}, %% @todo parallel
|
2013-03-02 16:15:48 +01:00
|
|
|
{https, [parallel], Tests},
|
|
|
|
{http_compress, [parallel], Tests},
|
|
|
|
{https_compress, [parallel], Tests},
|
2013-08-25 02:13:53 +09:00
|
|
|
{parse_host, [], [
|
|
|
|
parse_host
|
|
|
|
]},
|
2018-03-01 14:49:57 +01:00
|
|
|
{request_timeout_infinity, [], [
|
|
|
|
request_timeout_infinity
|
|
|
|
]},
|
|
|
|
{idle_timeout_infinity, [], [
|
|
|
|
idle_timeout_infinity
|
|
|
|
]},
|
2013-02-20 12:14:21 +01:00
|
|
|
{set_env, [], [
|
|
|
|
set_env_dispatch
|
2015-12-22 12:19:28 -06:00
|
|
|
]},
|
|
|
|
{router_compile, [], [
|
|
|
|
path_allow_colon
|
2012-04-29 01:20:24 +02:00
|
|
|
]}
|
|
|
|
].
|
2011-04-08 16:30:37 +02:00
|
|
|
|
2014-04-22 22:50:45 +02:00
|
|
|
init_per_group(Name = http, Config) ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
cowboy_test:init_http(Name, #{env => #{dispatch => init_dispatch(Config)}}, Config);
|
2014-04-22 22:50:45 +02:00
|
|
|
init_per_group(Name = https, Config) ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
cowboy_test:init_https(Name, #{env => #{dispatch => init_dispatch(Config)}}, Config);
|
2014-04-22 22:50:45 +02:00
|
|
|
init_per_group(Name = http_compress, Config) ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
cowboy_test:init_http(Name, #{
|
|
|
|
env => #{dispatch => init_dispatch(Config)},
|
|
|
|
compress => true
|
|
|
|
}, Config);
|
2014-04-22 22:50:45 +02:00
|
|
|
init_per_group(Name = https_compress, Config) ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
cowboy_test:init_https(Name, #{
|
|
|
|
env => #{dispatch => init_dispatch(Config)},
|
|
|
|
compress => true
|
|
|
|
}, Config);
|
2013-08-25 02:13:53 +09:00
|
|
|
init_per_group(parse_host, Config) ->
|
|
|
|
Dispatch = cowboy_router:compile([
|
|
|
|
{'_', [
|
|
|
|
{"/req_attr", http_req_attr, []}
|
|
|
|
]}
|
|
|
|
]),
|
2017-07-14 19:09:42 +02:00
|
|
|
{ok, _} = cowboy:start_clear(parse_host, [{port, 0}], #{
|
|
|
|
env => #{dispatch => Dispatch}
|
|
|
|
}),
|
2014-04-24 14:46:22 +02:00
|
|
|
Port = ranch:get_port(parse_host),
|
2017-07-14 19:09:42 +02:00
|
|
|
[{type, tcp}, {protocol, http}, {port, Port}, {opts, []}|Config];
|
2018-03-01 14:49:57 +01:00
|
|
|
init_per_group(request_timeout_infinity, Config) ->
|
|
|
|
Ref = request_timeout_infinity,
|
|
|
|
{ok, Pid} = cowboy:start_clear(Ref, [{port, 0}], #{
|
|
|
|
env => #{dispatch => init_dispatch(Config)},
|
|
|
|
request_timeout => infinity
|
|
|
|
}),
|
|
|
|
Port = ranch:get_port(request_timeout_infinity),
|
|
|
|
[{pid, Pid}, {ref, Ref}, {type, tcp}, {protocol, http}, {port, Port}, {opts, []}|Config];
|
|
|
|
init_per_group(idle_timeout_infinity, Config) ->
|
|
|
|
Ref = idle_timeout_infinity,
|
|
|
|
{ok, Pid} = cowboy:start_clear(Ref, [{port, 0}], #{
|
|
|
|
env => #{dispatch => init_dispatch(Config)},
|
|
|
|
idle_timeout => infinity
|
|
|
|
}),
|
|
|
|
Port = ranch:get_port(idle_timeout_infinity),
|
|
|
|
[{pid, Pid}, {ref, Ref}, {type, tcp}, {protocol, http}, {port, Port}, {opts, []}|Config];
|
2013-02-20 12:14:21 +01:00
|
|
|
init_per_group(set_env, Config) ->
|
2017-07-14 19:09:42 +02:00
|
|
|
{ok, _} = cowboy:start_clear(set_env, [{port, 0}], #{
|
|
|
|
env => #{dispatch => []}
|
|
|
|
}),
|
2013-03-02 14:38:10 +01:00
|
|
|
Port = ranch:get_port(set_env),
|
2015-12-22 12:19:28 -06:00
|
|
|
[{type, tcp}, {protocol, http}, {port, Port}, {opts, []}|Config];
|
|
|
|
init_per_group(router_compile, Config) ->
|
|
|
|
Config.
|
2011-04-08 16:30:37 +02:00
|
|
|
|
2015-12-22 12:19:28 -06:00
|
|
|
end_per_group(router_compile, _) ->
|
|
|
|
ok;
|
2012-05-01 01:59:36 +02:00
|
|
|
end_per_group(Name, _) ->
|
2014-04-24 14:46:22 +02:00
|
|
|
ok = cowboy:stop_listener(Name).
|
2011-04-08 16:30:37 +02:00
|
|
|
|
|
|
|
%% Dispatch configuration.
|
|
|
|
|
2017-11-24 00:16:19 +01:00
|
|
|
init_dispatch(_) ->
|
2013-01-28 16:53:09 +01:00
|
|
|
cowboy_router:compile([
|
|
|
|
{"localhost", [
|
2013-04-24 20:28:44 +02:00
|
|
|
{"/chunked_response", http_chunked, []},
|
2013-01-28 16:53:09 +01:00
|
|
|
{"/headers/dupe", http_handler,
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
[{headers, #{<<"connection">> => <<"close">>}}]},
|
2013-04-24 20:28:44 +02:00
|
|
|
{"/set_resp/header", http_set_resp,
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
[{headers, #{<<"vary">> => <<"Accept">>}}]},
|
2013-04-24 20:28:44 +02:00
|
|
|
{"/set_resp/overwrite", http_set_resp,
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
[{headers, #{<<"server">> => <<"DesireDrive/1.0">>}}]},
|
2013-04-24 20:28:44 +02:00
|
|
|
{"/set_resp/body", http_set_resp,
|
2011-11-28 09:09:41 +01:00
|
|
|
[{body, <<"A flameless dance does not equal a cycle">>}]},
|
2013-04-24 20:28:44 +02:00
|
|
|
{"/handler_errors", http_errors, []},
|
|
|
|
{"/echo/body", http_echo_body, []},
|
2013-02-15 22:41:55 +07:00
|
|
|
{"/param_all", rest_param_all, []},
|
2013-01-28 16:53:09 +01:00
|
|
|
{"/bad_accept", rest_simple_resource, []},
|
2013-04-12 09:51:47 +04:00
|
|
|
{"/bad_content_type", rest_patch_resource, []},
|
2013-01-28 16:53:09 +01:00
|
|
|
{"/simple", rest_simple_resource, []},
|
|
|
|
{"/forbidden_post", rest_forbidden_resource, [true]},
|
|
|
|
{"/simple_post", rest_forbidden_resource, [false]},
|
|
|
|
{"/missing_get_callbacks", rest_missing_callbacks, []},
|
|
|
|
{"/missing_put_callbacks", rest_missing_callbacks, []},
|
|
|
|
{"/nodelete", rest_nodelete_resource, []},
|
2013-05-31 18:31:28 +02:00
|
|
|
{"/post_charset", rest_post_charset_resource, []},
|
2013-04-26 18:34:01 +07:00
|
|
|
{"/postonly", rest_postonly_resource, []},
|
2012-10-15 17:56:55 -05:00
|
|
|
{"/patch", rest_patch_resource, []},
|
2013-01-28 16:53:09 +01:00
|
|
|
{"/resetags", rest_resource_etags, []},
|
|
|
|
{"/rest_expires", rest_expires, []},
|
2014-06-06 02:37:24 -04:00
|
|
|
{"/rest_expires_binary", rest_expires_binary, []},
|
2013-04-12 18:20:41 +02:00
|
|
|
{"/rest_empty_resource", rest_empty_resource, []},
|
2013-11-18 20:32:47 +00:00
|
|
|
{"/loop_stream_recv", http_loop_stream_recv, []},
|
2013-01-28 16:53:09 +01:00
|
|
|
{"/", http_handler, []}
|
2011-04-14 01:26:02 +02:00
|
|
|
]}
|
2013-01-28 16:53:09 +01:00
|
|
|
]).
|
2011-04-08 16:30:37 +02:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
%% Convenience functions.
|
|
|
|
|
2014-04-20 22:20:54 +02:00
|
|
|
do_raw(Data, Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
Client = raw_open(Config),
|
|
|
|
ok = raw_send(Client, Data),
|
|
|
|
case catch raw_recv_head(Client) of
|
|
|
|
{'EXIT', _} -> closed;
|
|
|
|
Resp -> element(2, cow_http:parse_status_line(Resp))
|
2012-04-29 01:20:24 +02:00
|
|
|
end.
|
|
|
|
|
2014-04-20 22:20:54 +02:00
|
|
|
do_get(Path, Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, Path),
|
|
|
|
{response, _, Status, _} = gun:await(ConnPid, Ref),
|
|
|
|
gun:close(ConnPid),
|
2012-04-29 01:20:24 +02:00
|
|
|
Status.
|
|
|
|
|
|
|
|
%% Tests.
|
|
|
|
|
|
|
|
check_raw_status(Config) ->
|
|
|
|
Huge = [$0 || _ <- lists:seq(1, 5000)],
|
|
|
|
HugeCookie = lists:flatten(["whatever_man_biiiiiiiiiiiig_cookie_me_want_77="
|
|
|
|
"Wed Apr 06 2011 10:38:52 GMT-0500 (CDT)" || _ <- lists:seq(1, 40)]),
|
|
|
|
ResponsePacket =
|
2012-09-20 06:22:51 +02:00
|
|
|
"HTTP/1.0 302 Found\r
|
|
|
|
Location: http://www.google.co.il/\r
|
|
|
|
Cache-Control: private\r
|
|
|
|
Content-Type: text/html; charset=UTF-8\r
|
|
|
|
Set-Cookie: PREF=ID=568f67013d4a7afa:FF=0:TM=1323014101:LM=1323014101:S=XqctDWC65MzKT0zC; expires=Tue, 03-Dec-2013 15:55:01 GMT; path=/; domain=.google.com\r
|
|
|
|
Date: Sun, 04 Dec 2011 15:55:01 GMT\r
|
|
|
|
Server: gws\r
|
|
|
|
Content-Length: 221\r
|
|
|
|
X-XSS-Protection: 1; mode=block\r
|
|
|
|
X-Frame-Options: SAMEORIGIN\r
|
|
|
|
\r
|
2012-04-29 01:20:24 +02:00
|
|
|
<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">
|
|
|
|
<TITLE>302 Moved</TITLE></HEAD><BODY>
|
|
|
|
<H1>302 Moved</H1>
|
|
|
|
The document has moved
|
|
|
|
<A HREF=\"http://www.google.co.il/\">here</A>.
|
|
|
|
</BODY></HTML>",
|
|
|
|
Tests = [
|
|
|
|
{200, ["GET / HTTP/1.0\r\nHost: localhost\r\n"
|
|
|
|
"Set-Cookie: ", HugeCookie, "\r\n\r\n"]},
|
|
|
|
{200, "\r\n\r\n\r\n\r\n\r\nGET / HTTP/1.1\r\nHost: localhost\r\n\r\n"},
|
|
|
|
{200, "GET http://proxy/ HTTP/1.1\r\nHost: localhost\r\n\r\n"},
|
|
|
|
{400, "\n"},
|
|
|
|
{400, "Garbage\r\n\r\n"},
|
|
|
|
{400, "\r\n\r\n\r\n\r\n\r\n\r\n"},
|
2014-10-03 17:19:04 +03:00
|
|
|
{400, " / HTTP/1.1\r\nHost: localhost\r\n\r\n"},
|
|
|
|
{400, "GET HTTP/1.1\r\nHost: localhost\r\n\r\n"},
|
2012-05-23 14:53:48 +02:00
|
|
|
{400, "GET / HTTP/1.1\r\nHost: ninenines.eu\r\n\r\n"},
|
2012-04-29 01:20:24 +02:00
|
|
|
{400, "GET http://proxy/ HTTP/1.1\r\n\r\n"},
|
2012-12-22 16:45:04 +01:00
|
|
|
{400, "GET / HTTP/1.1\r\nHost: localhost:bad_port\r\n\r\n"},
|
2017-07-13 00:20:56 +02:00
|
|
|
{400, ResponsePacket},
|
2012-04-29 01:20:24 +02:00
|
|
|
{408, "GET / HTTP/1.1\r\n"},
|
|
|
|
{408, "GET / HTTP/1.1\r\nHost: localhost"},
|
|
|
|
{408, "GET / HTTP/1.1\r\nHost: localhost\r\n"},
|
|
|
|
{408, "GET / HTTP/1.1\r\nHost: localhost\r\n\r"},
|
2017-07-13 00:20:56 +02:00
|
|
|
{closed, Huge},
|
|
|
|
{431, "GET / HTTP/1.1\r\n" ++ Huge},
|
2012-04-29 01:20:24 +02:00
|
|
|
{505, "GET / HTTP/1.2\r\nHost: localhost\r\n\r\n"},
|
|
|
|
{closed, ""},
|
|
|
|
{closed, "\r\n"},
|
|
|
|
{closed, "\r\n\r\n"},
|
|
|
|
{closed, "GET / HTTP/1.1"}
|
|
|
|
],
|
|
|
|
_ = [{Status, Packet} = begin
|
2014-04-20 22:20:54 +02:00
|
|
|
Ret = do_raw(Packet, Config),
|
2012-04-29 01:20:24 +02:00
|
|
|
{Ret, Packet}
|
2013-04-26 00:46:15 +01:00
|
|
|
end || {Status, Packet} <- Tests],
|
|
|
|
ok.
|
2012-04-29 01:20:24 +02:00
|
|
|
|
|
|
|
check_status(Config) ->
|
|
|
|
Tests = [
|
|
|
|
{200, "/"},
|
|
|
|
{200, "/simple"},
|
|
|
|
{404, "/not/found"},
|
2014-09-30 20:12:13 +03:00
|
|
|
{500, "/handler_errors?case=init_before_reply"}
|
2012-04-29 01:20:24 +02:00
|
|
|
],
|
|
|
|
_ = [{Status, URL} = begin
|
2014-04-20 22:20:54 +02:00
|
|
|
Ret = do_get(URL, Config),
|
2012-04-29 01:20:24 +02:00
|
|
|
{Ret, URL}
|
|
|
|
end || {Status, URL} <- Tests].
|
2011-04-09 12:59:53 +02:00
|
|
|
|
2012-05-05 07:53:17 +02:00
|
|
|
%% Check if sending requests whose size is around the MTU breaks something.
|
|
|
|
echo_body(Config) ->
|
2013-06-13 11:47:24 +02:00
|
|
|
MTU = ct_helper:get_loopback_mtu(),
|
2013-04-26 00:46:15 +01:00
|
|
|
_ = [begin
|
2012-05-05 07:53:17 +02:00
|
|
|
Body = list_to_binary(lists:duplicate(Size, $a)),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body", [], Body),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref)
|
2013-04-26 00:46:15 +01:00
|
|
|
end || Size <- lists:seq(MTU - 500, MTU)],
|
|
|
|
ok.
|
2012-05-05 07:53:17 +02:00
|
|
|
|
2013-03-06 08:50:45 -05:00
|
|
|
%% Check if sending request whose size is bigger than 1000000 bytes causes 413
|
|
|
|
echo_body_max_length(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
Ref = gun:post(ConnPid, "/echo/body", [], << 0:10000000/unit:8 >>),
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 413, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2013-03-06 08:50:45 -05:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
error_init_after_reply(Config) ->
|
2015-05-05 19:59:37 +03:00
|
|
|
ConnPid = gun_open(Config),
|
2014-03-24 14:20:52 +01:00
|
|
|
Ref = gun:get(ConnPid, "/handler_errors?case=init_after_reply"),
|
2015-05-05 19:59:37 +03:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
ok.
|
2012-04-29 01:20:24 +02:00
|
|
|
|
2011-04-14 01:26:02 +02:00
|
|
|
headers_dupe(Config) ->
|
2015-05-05 19:59:37 +03:00
|
|
|
ConnPid = gun_open(Config),
|
2014-03-24 14:20:52 +01:00
|
|
|
Ref = gun:get(ConnPid, "/headers/dupe"),
|
2015-05-05 19:59:37 +03:00
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
2014-03-24 14:20:52 +01:00
|
|
|
%% Ensure that only one connection header was received.
|
|
|
|
[<<"close">>] = [V || {Name, V} <- Headers, Name =:= <<"connection">>],
|
2015-05-05 19:59:37 +03:00
|
|
|
gun_down(ConnPid).
|
2012-04-29 01:20:24 +02:00
|
|
|
|
|
|
|
http10_chunkless(Config) ->
|
2015-05-05 19:59:37 +03:00
|
|
|
ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}),
|
2014-03-24 14:20:52 +01:00
|
|
|
Ref = gun:get(ConnPid, "/chunked_response"),
|
2015-05-05 19:59:37 +03:00
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
2012-04-29 01:20:24 +02:00
|
|
|
false = lists:keyfind(<<"transfer-encoding">>, 1, Headers),
|
2015-05-05 19:59:37 +03:00
|
|
|
{ok, <<"chunked_handler\r\nworks fine!">>} = gun:await_body(ConnPid, Ref),
|
|
|
|
gun_down(ConnPid).
|
2011-05-05 17:11:27 +02:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
http10_hostless(Config) ->
|
2014-04-24 14:46:22 +02:00
|
|
|
Name = http10_hostless,
|
2014-04-17 19:15:39 +02:00
|
|
|
Port10 = config(port, Config) + 10,
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
{Transport, Protocol} = case config(type, Config) of
|
|
|
|
tcp -> {ranch_tcp, cowboy_clear};
|
|
|
|
ssl -> {ranch_ssl, cowboy_tls}
|
2014-04-22 22:50:45 +02:00
|
|
|
end,
|
|
|
|
ranch:start_listener(Name, 5, Transport,
|
|
|
|
config(opts, Config) ++ [{port, Port10}],
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
Protocol, #{
|
|
|
|
env =>#{dispatch => cowboy_router:compile([
|
|
|
|
{'_', [{"/http1.0/hostless", http_handler, []}]}])},
|
|
|
|
max_keepalive => 50,
|
|
|
|
timeout => 500
|
|
|
|
}),
|
2014-04-20 22:20:54 +02:00
|
|
|
200 = do_raw("GET /http1.0/hostless HTTP/1.0\r\n\r\n",
|
2012-04-29 01:20:24 +02:00
|
|
|
[{port, Port10}|Config]),
|
2014-04-24 14:46:22 +02:00
|
|
|
cowboy:stop_listener(http10_hostless).
|
2011-09-13 23:41:34 +02:00
|
|
|
|
2014-01-14 13:30:58 -05:00
|
|
|
http10_keepalive_default(Config) ->
|
|
|
|
Normal = "GET / HTTP/1.0\r\nhost: localhost\r\n\r\n",
|
|
|
|
Client = raw_open(Config),
|
|
|
|
ok = raw_send(Client, Normal),
|
|
|
|
case catch raw_recv_head(Client) of
|
|
|
|
{'EXIT', _} -> error(closed);
|
2015-07-28 23:20:51 +03:00
|
|
|
Data ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
%% Cowboy always advertises itself as HTTP/1.1.
|
|
|
|
{'HTTP/1.1', 200, _, Rest} = cow_http:parse_status_line(Data),
|
2015-07-28 23:20:51 +03:00
|
|
|
{Headers, _} = cow_http:parse_headers(Rest),
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
{_, <<"close">>} = lists:keyfind(<<"connection">>, 1, Headers)
|
2014-01-14 13:30:58 -05:00
|
|
|
end,
|
|
|
|
ok = raw_send(Client, Normal),
|
|
|
|
case catch raw_recv_head(Client) of
|
|
|
|
{'EXIT', _} -> closed;
|
|
|
|
_ -> error(not_closed)
|
|
|
|
end.
|
|
|
|
|
|
|
|
http10_keepalive_forced(Config) ->
|
|
|
|
Keepalive = "GET / HTTP/1.0\r\nhost: localhost\r\nConnection: keep-alive\r\n\r\n",
|
|
|
|
Client = raw_open(Config),
|
|
|
|
ok = raw_send(Client, Keepalive),
|
|
|
|
case catch raw_recv_head(Client) of
|
|
|
|
{'EXIT', _} -> error(closed);
|
2015-07-28 23:20:51 +03:00
|
|
|
Data ->
|
Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.
This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.
Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.
When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.
This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.
Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-02-10 17:28:32 +01:00
|
|
|
%% Cowboy always advertises itself as HTTP/1.1.
|
|
|
|
{'HTTP/1.1', 200, _, Rest} = cow_http:parse_status_line(Data),
|
2015-07-28 23:20:51 +03:00
|
|
|
{Headers, _} = cow_http:parse_headers(Rest),
|
|
|
|
{_, <<"keep-alive">>} = lists:keyfind(<<"connection">>, 1, Headers)
|
2014-01-14 13:30:58 -05:00
|
|
|
end,
|
|
|
|
ok = raw_send(Client, Keepalive),
|
|
|
|
case catch raw_recv_head(Client) of
|
|
|
|
{'EXIT', Err} -> error({closed, Err});
|
|
|
|
_ -> ok
|
|
|
|
end.
|
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
keepalive_nl(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Refs = [begin
|
|
|
|
Ref = gun:get(ConnPid, "/", [{<<"connection">>, <<"keep-alive">>}]),
|
|
|
|
gun:dbg_send_raw(ConnPid, <<"\r\n">>),
|
|
|
|
Ref
|
|
|
|
end || _ <- lists:seq(1, 10)],
|
|
|
|
_ = [begin
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
2015-07-28 23:20:51 +03:00
|
|
|
false = lists:keymember(<<"connection">>, 1, Headers)
|
2014-03-24 14:20:52 +01:00
|
|
|
end || Ref <- Refs],
|
|
|
|
ok.
|
2011-12-22 21:35:40 +01:00
|
|
|
|
2013-11-18 20:32:47 +00:00
|
|
|
keepalive_stream_loop(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Refs = [begin
|
|
|
|
Ref = gun:post(ConnPid, "/loop_stream_recv",
|
2015-05-05 19:59:37 +03:00
|
|
|
[{<<"content-type">>, <<"application/octet-stream">>}]),
|
2014-03-24 14:20:52 +01:00
|
|
|
_ = [gun:data(ConnPid, Ref, nofin, << ID:32 >>)
|
|
|
|
|| ID <- lists:seq(1, 250)],
|
|
|
|
gun:data(ConnPid, Ref, fin, <<>>),
|
|
|
|
Ref
|
|
|
|
end || _ <- lists:seq(1, 10)],
|
|
|
|
_ = [begin
|
|
|
|
{response, fin, 200, _} = gun:await(ConnPid, Ref)
|
|
|
|
end || Ref <- Refs],
|
|
|
|
ok.
|
2013-11-18 20:32:47 +00:00
|
|
|
|
2014-04-20 22:20:54 +02:00
|
|
|
do_nc(Config, Input) ->
|
2011-04-17 13:36:51 +02:00
|
|
|
Cat = os:find_executable("cat"),
|
|
|
|
Nc = os:find_executable("nc"),
|
|
|
|
case {Cat, Nc} of
|
|
|
|
{false, _} ->
|
|
|
|
{skip, {notfound, cat}};
|
|
|
|
{_, false} ->
|
|
|
|
{skip, {notfound, nc}};
|
|
|
|
_Good ->
|
|
|
|
%% Throw garbage at the server then check if it's still up.
|
2014-04-17 19:15:39 +02:00
|
|
|
StrPort = integer_to_list(config(port, Config)),
|
2012-04-29 01:20:24 +02:00
|
|
|
[os:cmd("cat " ++ Input ++ " | nc localhost " ++ StrPort)
|
|
|
|
|| _ <- lists:seq(1, 100)],
|
2014-04-20 22:20:54 +02:00
|
|
|
200 = do_get("/", Config)
|
2011-04-17 13:36:51 +02:00
|
|
|
end.
|
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
nc_rand(Config) ->
|
2014-04-20 22:20:54 +02:00
|
|
|
do_nc(Config, "/dev/urandom").
|
2011-11-28 09:09:41 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
nc_zero(Config) ->
|
2014-04-20 22:20:54 +02:00
|
|
|
do_nc(Config, "/dev/zero").
|
2011-11-28 09:09:41 +01:00
|
|
|
|
2013-08-25 02:13:53 +09:00
|
|
|
parse_host(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
2013-08-25 02:13:53 +09:00
|
|
|
Tests = [
|
2014-03-24 14:20:52 +01:00
|
|
|
{<<"example.org:8080">>, <<"example.org\n8080">>},
|
|
|
|
{<<"example.org">>, <<"example.org\n80">>},
|
|
|
|
{<<"192.0.2.1:8080">>, <<"192.0.2.1\n8080">>},
|
|
|
|
{<<"192.0.2.1">>, <<"192.0.2.1\n80">>},
|
|
|
|
{<<"[2001:db8::1]:8080">>, <<"[2001:db8::1]\n8080">>},
|
|
|
|
{<<"[2001:db8::1]">>, <<"[2001:db8::1]\n80">>},
|
|
|
|
{<<"[::ffff:192.0.2.1]:8080">>, <<"[::ffff:192.0.2.1]\n8080">>},
|
|
|
|
{<<"[::ffff:192.0.2.1]">>, <<"[::ffff:192.0.2.1]\n80">>}
|
2013-08-25 02:13:53 +09:00
|
|
|
],
|
|
|
|
[begin
|
2014-03-24 14:20:52 +01:00
|
|
|
Ref = gun:get(ConnPid, "/req_attr?attr=host_and_port",
|
|
|
|
[{<<"host">>, Host}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref)
|
|
|
|
end || {Host, Body} <- Tests],
|
|
|
|
ok.
|
2013-08-25 02:13:53 +09:00
|
|
|
|
2013-02-15 22:41:55 +07:00
|
|
|
rest_param_all(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
%% Accept without param.
|
|
|
|
Ref1 = gun:get(ConnPid, "/param_all",
|
|
|
|
[{<<"accept">>, <<"text/plain">>}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref1),
|
|
|
|
{ok, <<"[]">>} = gun:await_body(ConnPid, Ref1),
|
|
|
|
%% Accept with param.
|
|
|
|
Ref2 = gun:get(ConnPid, "/param_all",
|
|
|
|
[{<<"accept">>, <<"text/plain;level=1">>}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref2),
|
|
|
|
{ok, <<"level=1">>} = gun:await_body(ConnPid, Ref2),
|
|
|
|
%% Accept with param and quality.
|
|
|
|
Ref3 = gun:get(ConnPid, "/param_all",
|
|
|
|
[{<<"accept">>, <<"text/plain;level=1;q=0.8, text/plain;level=2;q=0.5">>}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref3),
|
|
|
|
{ok, <<"level=1">>} = gun:await_body(ConnPid, Ref3),
|
|
|
|
Ref4 = gun:get(ConnPid, "/param_all",
|
|
|
|
[{<<"accept">>, <<"text/plain;level=1;q=0.5, text/plain;level=2;q=0.8">>}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref4),
|
|
|
|
{ok, <<"level=2">>} = gun:await_body(ConnPid, Ref4),
|
|
|
|
%% Without Accept.
|
|
|
|
Ref5 = gun:get(ConnPid, "/param_all"),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref5),
|
|
|
|
{ok, <<"'*'">>} = gun:await_body(ConnPid, Ref5),
|
|
|
|
%% Content-Type without param.
|
|
|
|
Ref6 = gun:put(ConnPid, "/param_all",
|
|
|
|
[{<<"content-type">>, <<"text/plain">>}]),
|
2015-05-05 19:59:37 +03:00
|
|
|
gun:data(ConnPid, Ref6, fin, "Hello world!"),
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, fin, 204, _} = gun:await(ConnPid, Ref6),
|
|
|
|
%% Content-Type with param.
|
|
|
|
Ref7 = gun:put(ConnPid, "/param_all",
|
|
|
|
[{<<"content-type">>, <<"text/plain; charset=utf-8">>}]),
|
2015-05-05 19:59:37 +03:00
|
|
|
gun:data(ConnPid, Ref7, fin, "Hello world!"),
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, fin, 204, _} = gun:await(ConnPid, Ref7),
|
|
|
|
ok.
|
2013-02-15 22:41:55 +07:00
|
|
|
|
2012-11-30 16:44:57 +01:00
|
|
|
rest_bad_accept(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/bad_accept",
|
|
|
|
[{<<"accept">>, <<"1">>}]),
|
|
|
|
{response, fin, 400, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2012-11-30 16:44:57 +01:00
|
|
|
|
2013-04-12 09:51:47 +04:00
|
|
|
rest_bad_content_type(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:patch(ConnPid, "/bad_content_type",
|
|
|
|
[{<<"content-type">>, <<"text/plain, text/html">>}], <<"Whatever">>),
|
|
|
|
{response, fin, 415, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2013-04-12 09:51:47 +04:00
|
|
|
|
2012-12-03 15:57:27 +01:00
|
|
|
rest_expires(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/rest_expires"),
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
|
|
|
{_, Expires} = lists:keyfind(<<"expires">>, 1, Headers),
|
|
|
|
{_, LastModified} = lists:keyfind(<<"last-modified">>, 1, Headers),
|
2012-12-03 15:57:27 +01:00
|
|
|
Expires = LastModified = <<"Fri, 21 Sep 2012 22:36:14 GMT">>,
|
|
|
|
ok.
|
|
|
|
|
2014-06-06 02:37:24 -04:00
|
|
|
rest_expires_binary(Config) ->
|
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/rest_expires_binary"),
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
|
|
|
{_, <<"0">>} = lists:keyfind(<<"expires">>, 1, Headers),
|
|
|
|
ok.
|
|
|
|
|
2016-10-06 16:48:34 +08:00
|
|
|
rest_last_modified_undefined(Config) ->
|
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/simple",
|
|
|
|
[{<<"if-modified-since">>, <<"Fri, 21 Sep 2012 22:36:14 GMT">>}]),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_keepalive(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Refs = [gun:get(ConnPid, "/simple") || _ <- lists:seq(1, 10)],
|
|
|
|
_ = [begin
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
2015-07-28 23:20:51 +03:00
|
|
|
false = lists:keymember(<<"connection">>, 1, Headers)
|
2014-03-24 14:20:52 +01:00
|
|
|
end || Ref <- Refs],
|
|
|
|
ok.
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_keepalive_post(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
2015-05-05 19:59:37 +03:00
|
|
|
Refs = [begin
|
2017-12-12 11:37:48 +01:00
|
|
|
Ref1 = gun:post(ConnPid, "/forbidden_post", [
|
|
|
|
{<<"content-type">>, <<"text/plain">>},
|
|
|
|
{<<"content-length">>, <<"12">>}
|
|
|
|
]),
|
2015-05-05 19:59:37 +03:00
|
|
|
gun:data(ConnPid, Ref1, fin, "Hello world!"),
|
2017-12-12 11:37:48 +01:00
|
|
|
Ref2 = gun:post(ConnPid, "/simple_post", [
|
|
|
|
{<<"content-type">>, <<"text/plain">>},
|
|
|
|
{<<"content-length">>, <<"12">>}
|
|
|
|
]),
|
2015-05-05 19:59:37 +03:00
|
|
|
gun:data(ConnPid, Ref2, fin, "Hello world!"),
|
|
|
|
{Ref1, Ref2}
|
|
|
|
end || _ <- lists:seq(1, 5)],
|
2014-03-24 14:20:52 +01:00
|
|
|
_ = [begin
|
|
|
|
{response, fin, 403, Headers1} = gun:await(ConnPid, Ref1),
|
2015-07-28 23:20:51 +03:00
|
|
|
false = lists:keymember(<<"connection">>, 1, Headers1),
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, fin, 303, Headers2} = gun:await(ConnPid, Ref2),
|
2015-07-28 23:20:51 +03:00
|
|
|
false = lists:keymember(<<"connection">>, 1, Headers2)
|
2014-03-24 14:20:52 +01:00
|
|
|
end || {Ref1, Ref2} <- Refs],
|
|
|
|
ok.
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-11-29 14:33:45 +01:00
|
|
|
rest_missing_get_callbacks(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/missing_get_callbacks"),
|
|
|
|
{response, fin, 500, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2012-11-29 14:33:45 +01:00
|
|
|
|
|
|
|
rest_missing_put_callbacks(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:put(ConnPid, "/missing_put_callbacks",
|
|
|
|
[{<<"content-type">>, <<"application/json">>}], <<"{}">>),
|
|
|
|
{response, fin, 500, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2012-11-29 14:33:45 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_nodelete(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:delete(ConnPid, "/nodelete"),
|
|
|
|
{response, fin, 500, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2012-04-29 01:20:24 +02:00
|
|
|
|
2013-04-12 18:20:41 +02:00
|
|
|
rest_options_default(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:options(ConnPid, "/rest_empty_resource"),
|
|
|
|
{response, fin, 200, Headers} = gun:await(ConnPid, Ref),
|
|
|
|
{_, <<"HEAD, GET, OPTIONS">>} = lists:keyfind(<<"allow">>, 1, Headers),
|
|
|
|
ok.
|
2013-04-12 18:20:41 +02:00
|
|
|
|
2012-10-15 17:56:55 -05:00
|
|
|
rest_patch(Config) ->
|
|
|
|
Tests = [
|
|
|
|
{204, [{<<"content-type">>, <<"text/plain">>}], <<"whatever">>},
|
2014-06-30 17:49:36 +02:00
|
|
|
{400, [{<<"content-type">>, <<"text/plain">>}], <<"false">>},
|
2014-11-07 20:19:05 +02:00
|
|
|
{400, [{<<"content-type">>, <<"text/plain">>}], <<"stop">>},
|
2012-10-15 17:56:55 -05:00
|
|
|
{415, [{<<"content-type">>, <<"application/json">>}], <<"bad_content_type">>}
|
|
|
|
],
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
2012-10-15 17:56:55 -05:00
|
|
|
_ = [begin
|
2014-03-24 14:20:52 +01:00
|
|
|
Ref = gun:patch(ConnPid, "/patch", Headers, Body),
|
|
|
|
{response, fin, Status, _} = gun:await(ConnPid, Ref)
|
|
|
|
end || {Status, Headers, Body} <- Tests],
|
|
|
|
ok.
|
2012-10-15 17:56:55 -05:00
|
|
|
|
2013-05-31 18:31:28 +02:00
|
|
|
rest_post_charset(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/post_charset",
|
|
|
|
[{<<"content-type">>, <<"text/plain;charset=UTF-8">>}], "12345"),
|
|
|
|
{response, fin, 204, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2013-05-31 18:31:28 +02:00
|
|
|
|
2013-04-26 18:34:01 +07:00
|
|
|
rest_postonly(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/postonly",
|
|
|
|
[{<<"content-type">>, <<"text/plain">>}], "12345"),
|
|
|
|
{response, fin, 204, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
2013-04-26 18:34:01 +07:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_resource_get_etag(Config, Type) ->
|
|
|
|
rest_resource_get_etag(Config, Type, []).
|
|
|
|
|
|
|
|
rest_resource_get_etag(Config, Type, Headers) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/resetags?type=" ++ Type, Headers),
|
|
|
|
{response, _, Status, RespHeaders} = gun:await(ConnPid, Ref),
|
2012-04-29 01:20:24 +02:00
|
|
|
case lists:keyfind(<<"etag">>, 1, RespHeaders) of
|
|
|
|
false -> {Status, false};
|
|
|
|
{<<"etag">>, ETag} -> {Status, ETag}
|
|
|
|
end.
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_resource_etags(Config) ->
|
|
|
|
Tests = [
|
|
|
|
{200, <<"W/\"etag-header-value\"">>, "tuple-weak"},
|
|
|
|
{200, <<"\"etag-header-value\"">>, "tuple-strong"},
|
|
|
|
{200, <<"W/\"etag-header-value\"">>, "binary-weak-quoted"},
|
|
|
|
{200, <<"\"etag-header-value\"">>, "binary-strong-quoted"},
|
2017-12-12 11:37:48 +01:00
|
|
|
{500, false, "binary-strong-unquoted"},
|
|
|
|
{500, false, "binary-weak-unquoted"}
|
2012-04-29 01:20:24 +02:00
|
|
|
],
|
|
|
|
_ = [{Status, ETag, Type} = begin
|
|
|
|
{Ret, RespETag} = rest_resource_get_etag(Config, Type),
|
|
|
|
{Ret, RespETag, Type}
|
|
|
|
end || {Status, ETag, Type} <- Tests].
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
rest_resource_etags_if_none_match(Config) ->
|
|
|
|
Tests = [
|
|
|
|
{304, <<"W/\"etag-header-value\"">>, "tuple-weak"},
|
|
|
|
{304, <<"\"etag-header-value\"">>, "tuple-strong"},
|
|
|
|
{304, <<"W/\"etag-header-value\"">>, "binary-weak-quoted"},
|
|
|
|
{304, <<"\"etag-header-value\"">>, "binary-strong-quoted"}
|
|
|
|
],
|
|
|
|
_ = [{Status, Type} = begin
|
|
|
|
{Ret, _} = rest_resource_get_etag(Config, Type,
|
|
|
|
[{<<"if-none-match">>, ETag}]),
|
|
|
|
{Ret, Type}
|
|
|
|
end || {Status, ETag, Type} <- Tests].
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2013-02-20 12:14:21 +01:00
|
|
|
set_env_dispatch(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid1 = gun_open(Config),
|
|
|
|
Ref1 = gun:get(ConnPid1, "/"),
|
|
|
|
{response, fin, 400, _} = gun:await(ConnPid1, Ref1),
|
2013-02-20 12:14:21 +01:00
|
|
|
ok = cowboy:set_env(set_env, dispatch,
|
|
|
|
cowboy_router:compile([{'_', [{"/", http_handler, []}]}])),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid2 = gun_open(Config),
|
|
|
|
Ref2 = gun:get(ConnPid2, "/"),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid2, Ref2),
|
|
|
|
ok.
|
2013-02-20 12:14:21 +01:00
|
|
|
|
2015-12-22 12:19:28 -06:00
|
|
|
path_allow_colon(_Config) ->
|
|
|
|
cowboy_router:compile([{'_', [{"/foo/bar:blah", http_handler, []}]}]),
|
|
|
|
ok.
|
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
set_resp_body(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/set_resp/body"),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, <<"A flameless dance does not equal a cycle">>}
|
|
|
|
= gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
set_resp_header(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/set_resp/header"),
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
|
|
|
{_, <<"Accept">>} = lists:keyfind(<<"vary">>, 1, Headers),
|
|
|
|
{_, _} = lists:keyfind(<<"set-cookie">>, 1, Headers),
|
|
|
|
ok.
|
2011-12-29 00:06:22 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
set_resp_overwrite(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/set_resp/overwrite"),
|
|
|
|
{response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
|
|
|
|
{_, <<"DesireDrive/1.0">>} = lists:keyfind(<<"server">>, 1, Headers),
|
|
|
|
ok.
|
2011-12-28 18:00:27 +01:00
|
|
|
|
2013-01-06 19:49:01 +01:00
|
|
|
slowloris(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
Client = raw_open(Config),
|
2013-01-06 19:49:01 +01:00
|
|
|
try
|
|
|
|
[begin
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = raw_send(Client, [C]),
|
2015-05-05 19:59:37 +03:00
|
|
|
receive after 250 -> ok end
|
2013-01-06 19:49:01 +01:00
|
|
|
end || C <- "GET / HTTP/1.1\r\nHost: localhost\r\n"
|
|
|
|
"User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US)\r\n"
|
|
|
|
"Cookie: name=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\r\n\r\n"],
|
|
|
|
error(failure)
|
|
|
|
catch error:{badmatch, _} ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
slowloris2(Config) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
Client = raw_open(Config),
|
|
|
|
ok = raw_send(Client, "GET / HTTP/1.1\r\n"),
|
2013-01-06 19:49:01 +01:00
|
|
|
receive after 300 -> ok end,
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = raw_send(Client, "Host: localhost\r\n"),
|
2013-01-06 19:49:01 +01:00
|
|
|
receive after 300 -> ok end,
|
2014-03-24 14:20:52 +01:00
|
|
|
Data = raw_recv_head(Client),
|
|
|
|
{_, 408, _, _} = cow_http:parse_status_line(Data),
|
|
|
|
ok.
|
2013-01-06 19:49:01 +01:00
|
|
|
|
2012-03-29 01:14:44 +02:00
|
|
|
te_chunked(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
2015-05-05 19:59:37 +03:00
|
|
|
Ref = gun:post(ConnPid, "/echo/body", [{<<"content-type">>, <<"text/plain">>}]),
|
|
|
|
gun:data(ConnPid, Ref, fin, Body),
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
|
|
|
|
2014-04-20 22:20:54 +02:00
|
|
|
do_body_to_chunks(_, <<>>, Acc) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
lists:reverse([<<"0\r\n\r\n">>|Acc]);
|
2014-04-20 22:20:54 +02:00
|
|
|
do_body_to_chunks(ChunkSize, Body, Acc) ->
|
2014-03-24 14:20:52 +01:00
|
|
|
BodySize = byte_size(Body),
|
|
|
|
ChunkSize2 = case BodySize < ChunkSize of
|
|
|
|
true -> BodySize;
|
|
|
|
false -> ChunkSize
|
|
|
|
end,
|
|
|
|
<< Chunk:ChunkSize2/binary, Rest/binary >> = Body,
|
2016-08-11 11:53:05 +02:00
|
|
|
ChunkSizeBin = integer_to_binary(ChunkSize2, 16),
|
2014-04-20 22:20:54 +02:00
|
|
|
do_body_to_chunks(ChunkSize, Rest,
|
2014-03-24 14:20:52 +01:00
|
|
|
[<< ChunkSizeBin/binary, "\r\n", Chunk/binary, "\r\n" >>|Acc]).
|
2013-01-29 19:12:34 +01:00
|
|
|
|
|
|
|
te_chunked_chopped(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-04-20 22:20:54 +02:00
|
|
|
Body2 = iolist_to_binary(do_body_to_chunks(50, Body, [])),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body",
|
2015-05-05 19:59:37 +03:00
|
|
|
[{<<"content-type">>, <<"text/plain">>}]),
|
2013-01-29 19:12:34 +01:00
|
|
|
_ = [begin
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = gun:dbg_send_raw(ConnPid, << C >>),
|
|
|
|
receive after 10 -> ok end
|
2013-01-29 19:12:34 +01:00
|
|
|
end || << C >> <= Body2],
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2012-03-29 01:14:44 +02:00
|
|
|
|
|
|
|
te_chunked_delayed(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-04-20 22:20:54 +02:00
|
|
|
Chunks = do_body_to_chunks(50, Body, []),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body",
|
2015-05-05 19:59:37 +03:00
|
|
|
[{<<"content-type">>, <<"text/plain">>}]),
|
2012-04-29 01:20:24 +02:00
|
|
|
_ = [begin
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = gun:dbg_send_raw(ConnPid, Chunk),
|
|
|
|
receive after 10 -> ok end
|
2012-04-29 01:20:24 +02:00
|
|
|
end || Chunk <- Chunks],
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2012-03-29 01:14:44 +02:00
|
|
|
|
2013-06-11 21:47:26 +01:00
|
|
|
te_chunked_split_body(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-04-20 22:20:54 +02:00
|
|
|
Chunks = do_body_to_chunks(50, Body, []),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body",
|
2015-05-05 19:59:37 +03:00
|
|
|
[{<<"content-type">>, <<"text/plain">>}]),
|
2013-06-11 21:47:26 +01:00
|
|
|
_ = [begin
|
|
|
|
case Chunk of
|
|
|
|
<<"0\r\n\r\n">> ->
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = gun:dbg_send_raw(ConnPid, Chunk);
|
2013-06-11 21:47:26 +01:00
|
|
|
_ ->
|
|
|
|
[Size, ChunkBody, <<>>] =
|
|
|
|
binary:split(Chunk, [<<"\r\n">>], [global]),
|
|
|
|
PartASize = random:uniform(byte_size(ChunkBody)),
|
|
|
|
<<PartA:PartASize/binary, PartB/binary>> = ChunkBody,
|
2014-03-24 14:20:52 +01:00
|
|
|
ok = gun:dbg_send_raw(ConnPid, [Size, <<"\r\n">>, PartA]),
|
|
|
|
receive after 10 -> ok end,
|
|
|
|
ok = gun:dbg_send_raw(ConnPid, [PartB, <<"\r\n">>])
|
2013-06-11 21:47:26 +01:00
|
|
|
end
|
|
|
|
end || Chunk <- Chunks],
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2013-06-11 21:47:26 +01:00
|
|
|
|
|
|
|
te_chunked_split_crlf(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-04-20 22:20:54 +02:00
|
|
|
Chunks = do_body_to_chunks(50, Body, []),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body",
|
2015-05-05 19:59:37 +03:00
|
|
|
[{<<"content-type">>, <<"text/plain">>}]),
|
2013-06-11 21:47:26 +01:00
|
|
|
_ = [begin
|
2014-03-24 14:20:52 +01:00
|
|
|
%% Split in the newline just before the end of the chunk.
|
2013-06-11 21:47:26 +01:00
|
|
|
Len = byte_size(Chunk) - (random:uniform(2) - 1),
|
2014-03-24 14:20:52 +01:00
|
|
|
<< Chunk2:Len/binary, End/binary >> = Chunk,
|
|
|
|
ok = gun:dbg_send_raw(ConnPid, Chunk2),
|
|
|
|
receive after 10 -> ok end,
|
|
|
|
ok = gun:dbg_send_raw(ConnPid, End)
|
2013-06-11 21:47:26 +01:00
|
|
|
end || Chunk <- Chunks],
|
2014-03-24 14:20:52 +01:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2013-06-11 21:47:26 +01:00
|
|
|
|
2012-04-29 01:20:24 +02:00
|
|
|
te_identity(Config) ->
|
|
|
|
Body = list_to_binary(io_lib:format("~p", [lists:seq(1, 100)])),
|
2014-03-24 14:20:52 +01:00
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:post(ConnPid, "/echo/body", [], Body),
|
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
{ok, Body} = gun:await_body(ConnPid, Ref),
|
|
|
|
ok.
|
2018-03-01 14:49:57 +01:00
|
|
|
|
|
|
|
request_timeout_infinity(Config) ->
|
|
|
|
Pid = config(pid, Config),
|
|
|
|
Ref = erlang:monitor(process, Pid),
|
|
|
|
_ = gun_open(Config),
|
|
|
|
receive
|
|
|
|
{'DOWN', Ref, process, Pid, Reason} ->
|
|
|
|
error(Reason)
|
|
|
|
after 1000 ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
idle_timeout_infinity(Config) ->
|
|
|
|
Pid = config(pid, Config),
|
|
|
|
Ref = erlang:monitor(process, Pid),
|
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
gun:post(ConnPid, "/echo/body", [], <<"TEST">>),
|
|
|
|
receive
|
|
|
|
{'DOWN', Ref, process, Pid, Reason} ->
|
|
|
|
error(Reason)
|
|
|
|
after 1000 ->
|
|
|
|
ok
|
|
|
|
end.
|