2025-02-17 15:00:02 +01:00
|
|
|
%% Copyright (c) Loïc Hoguin <essen@ninenines.eu>
|
2014-04-26 13:46:55 +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(loop_handler_SUITE).
|
|
|
|
-compile(export_all).
|
2017-11-29 16:57:10 +01:00
|
|
|
-compile(nowarn_export_all).
|
2014-04-26 13:46:55 +02:00
|
|
|
|
2015-05-05 19:59:37 +03:00
|
|
|
-import(ct_helper, [config/2]).
|
|
|
|
-import(ct_helper, [doc/1]).
|
2014-04-26 13:46:55 +02:00
|
|
|
-import(cowboy_test, [gun_open/1]).
|
|
|
|
|
|
|
|
%% ct.
|
|
|
|
|
|
|
|
all() ->
|
|
|
|
cowboy_test:common_all().
|
|
|
|
|
|
|
|
groups() ->
|
2015-05-05 19:59:37 +03:00
|
|
|
cowboy_test:common_groups(ct_helper:all(?MODULE)).
|
2014-04-26 13:46:55 +02:00
|
|
|
|
|
|
|
init_per_group(Name, Config) ->
|
|
|
|
cowboy_test:init_common_groups(Name, Config, ?MODULE).
|
|
|
|
|
|
|
|
end_per_group(Name, _) ->
|
2023-01-31 11:07:31 +01:00
|
|
|
cowboy_test:stop_group(Name).
|
2014-04-26 13:46:55 +02:00
|
|
|
|
|
|
|
%% Dispatch configuration.
|
|
|
|
|
|
|
|
init_dispatch(_) ->
|
|
|
|
cowboy_router:compile([{'_', [
|
|
|
|
{"/long_polling", long_polling_h, []},
|
|
|
|
{"/loop_body", loop_handler_body_h, []},
|
2023-03-09 15:54:41 +08:00
|
|
|
{"/loop_request_timeout", loop_handler_timeout_h, []},
|
|
|
|
{"/loop_timeout_init", loop_handler_timeout_init_h, []},
|
|
|
|
{"/loop_timeout_info", loop_handler_timeout_info_h, []},
|
|
|
|
{"/loop_timeout_hibernate", loop_handler_timeout_hibernate_h, []}
|
2014-04-26 13:46:55 +02:00
|
|
|
]}]).
|
|
|
|
|
|
|
|
%% Tests.
|
|
|
|
|
2018-05-17 13:39:35 +02:00
|
|
|
info_read_body(Config) ->
|
|
|
|
doc("Check that a loop handler can read the request body in info/3."),
|
2014-04-26 13:46:55 +02:00
|
|
|
ConnPid = gun_open(Config),
|
2018-05-17 13:39:35 +02:00
|
|
|
Ref = gun:post(ConnPid, "/loop_body", [{<<"accept-encoding">>, <<"gzip">>}],
|
|
|
|
<< 0:100000/unit:8 >>),
|
|
|
|
{response, fin, 200, _} = gun:await(ConnPid, Ref),
|
2014-04-26 13:46:55 +02:00
|
|
|
ok.
|
|
|
|
|
2018-05-17 13:39:35 +02:00
|
|
|
long_polling(Config) ->
|
|
|
|
doc("Simple long-polling."),
|
2014-04-26 13:46:55 +02:00
|
|
|
ConnPid = gun_open(Config),
|
2018-05-17 13:39:35 +02:00
|
|
|
Ref = gun:get(ConnPid, "/long_polling", [{<<"accept-encoding">>, <<"gzip">>}]),
|
2017-10-31 16:49:48 +00:00
|
|
|
{response, fin, 299, _} = gun:await(ConnPid, Ref),
|
2014-04-26 13:46:55 +02:00
|
|
|
ok.
|
|
|
|
|
2018-05-17 13:39:35 +02:00
|
|
|
long_polling_unread_body(Config) ->
|
|
|
|
doc("Long-polling with a body that is not read by the handler."),
|
2014-04-26 13:46:55 +02:00
|
|
|
ConnPid = gun_open(Config),
|
2017-01-22 10:50:39 +01:00
|
|
|
Ref = gun:post(ConnPid, "/long_polling", [{<<"accept-encoding">>, <<"gzip">>}],
|
|
|
|
<< 0:100000/unit:8 >>),
|
2018-05-17 13:39:35 +02:00
|
|
|
{response, fin, 299, _} = gun:await(ConnPid, Ref),
|
2014-04-26 13:46:55 +02:00
|
|
|
ok.
|
|
|
|
|
|
|
|
long_polling_pipeline(Config) ->
|
|
|
|
doc("Pipeline of long-polling calls."),
|
|
|
|
ConnPid = gun_open(Config),
|
2017-01-22 10:50:39 +01:00
|
|
|
Refs = [gun:get(ConnPid, "/long_polling", [{<<"accept-encoding">>, <<"gzip">>}])
|
|
|
|
|| _ <- lists:seq(1, 2)],
|
2017-10-31 16:49:48 +00:00
|
|
|
_ = [{response, fin, 299, _} = gun:await(ConnPid, Ref) || Ref <- Refs],
|
2014-04-26 13:46:55 +02:00
|
|
|
ok.
|
|
|
|
|
2018-05-17 13:39:35 +02:00
|
|
|
request_timeout(Config) ->
|
2017-05-03 17:44:00 +02:00
|
|
|
doc("Ensure that the request_timeout isn't applied when a request is ongoing."),
|
2014-04-26 13:46:55 +02:00
|
|
|
ConnPid = gun_open(Config),
|
2023-03-09 15:54:41 +08:00
|
|
|
Ref = gun:get(ConnPid, "/loop_request_timeout", [{<<"accept-encoding">>, <<"gzip">>}]),
|
2017-05-03 17:44:00 +02:00
|
|
|
{response, nofin, 200, _} = gun:await(ConnPid, Ref, 10000),
|
2014-04-26 13:46:55 +02:00
|
|
|
ok.
|
2023-03-09 15:54:41 +08:00
|
|
|
|
|
|
|
timeout_hibernate(Config) ->
|
|
|
|
doc("Ensure that loop handler idle timeouts don't trigger after hibernate is returned."),
|
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/loop_timeout_hibernate", [{<<"accept-encoding">>, <<"gzip">>}]),
|
|
|
|
{response, fin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
timeout_info(Config) ->
|
|
|
|
doc("Ensure that loop handler idle timeouts trigger on time when set in info/3."),
|
|
|
|
ConnPid = gun_open(Config),
|
|
|
|
Ref = gun:get(ConnPid, "/loop_timeout_info", [{<<"accept-encoding">>, <<"gzip">>}]),
|
|
|
|
{response, fin, 299, _} = gun:await(ConnPid, Ref),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
timeout_init(Config) ->
|
|
|
|
doc("Ensure that loop handler idle timeouts trigger on time when set in init/2."),
|
|
|
|
ConnPid = gun_open(Config),
|
2023-12-15 16:22:06 +01:00
|
|
|
Ref = gun:get(ConnPid, "/loop_timeout_init?timeout=1000",
|
2023-03-09 15:54:41 +08:00
|
|
|
[{<<"accept-encoding">>, <<"gzip">>}]),
|
|
|
|
{response, fin, 200, _} = gun:await(ConnPid, Ref),
|
|
|
|
Ref2 = gun:get(ConnPid, "/loop_timeout_init?timeout=100",
|
|
|
|
[{<<"accept-encoding">>, <<"gzip">>}]),
|
|
|
|
{response, fin, 299, _} = gun:await(ConnPid, Ref2),
|
|
|
|
ok.
|