123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- %% Copyright (c) 2017, Loïc Hoguin <essen@ninenines.eu>
- %%
- %% 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(metrics_SUITE).
- -compile(export_all).
- -import(ct_helper, [config/2]).
- -import(ct_helper, [doc/1]).
- -import(cowboy_test, [gun_open/1]).
- -import(cowboy_test, [gun_down/1]).
- %% ct.
- all() ->
- cowboy_test:common_all().
- groups() ->
- cowboy_test:common_groups(ct_helper:all(?MODULE)).
- init_per_group(Name = http, Config) ->
- cowboy_test:init_http(Name, init_plain_opts(Config), Config);
- init_per_group(Name = https, Config) ->
- cowboy_test:init_http(Name, init_plain_opts(Config), Config);
- init_per_group(Name = h2, Config) ->
- cowboy_test:init_http2(Name, init_plain_opts(Config), Config);
- init_per_group(Name = h2c, Config) ->
- Config1 = cowboy_test:init_http(Name, init_plain_opts(Config), Config),
- lists:keyreplace(protocol, 1, Config1, {protocol, http2});
- init_per_group(Name = http_compress, Config) ->
- cowboy_test:init_http(Name, init_compress_opts(Config), Config);
- init_per_group(Name = https_compress, Config) ->
- cowboy_test:init_http(Name, init_compress_opts(Config), Config);
- init_per_group(Name = h2_compress, Config) ->
- cowboy_test:init_http2(Name, init_compress_opts(Config), Config);
- init_per_group(Name = h2c_compress, Config) ->
- Config1 = cowboy_test:init_http(Name, init_compress_opts(Config), Config),
- lists:keyreplace(protocol, 1, Config1, {protocol, http2}).
- end_per_group(Name, _) ->
- cowboy:stop_listener(Name).
- init_plain_opts(Config) ->
- #{
- env => #{dispatch => cowboy_router:compile(init_routes(Config))},
- metrics_callback => do_metrics_callback(),
- stream_handlers => [cowboy_metrics_h, cowboy_stream_h]
- }.
- init_compress_opts(Config) ->
- #{
- env => #{dispatch => cowboy_router:compile(init_routes(Config))},
- metrics_callback => do_metrics_callback(),
- stream_handlers => [cowboy_metrics_h, cowboy_compress_h, cowboy_stream_h]
- }.
- init_routes(_) -> [
- {"localhost", [
- {"/", hello_h, []},
- {"/default", default_h, []},
- {"/full/:key", echo_h, []}
- ]}
- ].
- do_metrics_callback() ->
- fun(Metrics=#{req := #{headers := #{<<"x-test-pid">> := PidBin}}}) ->
- Pid = list_to_pid(binary_to_list(PidBin)),
- Pid ! {metrics, self(), Metrics},
- ok
- end.
- %% Tests.
- hello_world(Config) ->
- doc("Confirm metrics are correct for a normal GET request."),
- %% Perform a GET request.
- ConnPid = gun_open(Config),
- Ref = gun:get(ConnPid, "/", [
- {<<"accept-encoding">>, <<"gzip">>},
- {<<"x-test-pid">>, pid_to_list(self())}
- ]),
- {response, nofin, 200, RespHeaders} = gun:await(ConnPid, Ref),
- {ok, RespBody} = gun:await_body(ConnPid, Ref),
- gun:close(ConnPid),
- %% Receive the metrics and validate them.
- receive
- {metrics, From, Metrics} ->
- %% Ensure the timestamps are in the expected order.
- #{
- req_start := ReqStart, req_end := ReqEnd,
- resp_start := RespStart, resp_end := RespEnd
- } = Metrics,
- true = (ReqStart =< RespStart)
- and (RespStart =< RespEnd)
- and (RespEnd =< ReqEnd),
- %% We didn't send a body.
- #{
- req_body_start := undefined,
- req_body_end := undefined,
- req_body_length := 0
- } = Metrics,
- %% We got a 200 response with a body.
- #{
- resp_status := 200,
- resp_headers := ExpectedRespHeaders,
- resp_body_length := RespBodyLen
- } = Metrics,
- ExpectedRespHeaders = maps:from_list(RespHeaders),
- true = byte_size(RespBody) > 0,
- true = RespBodyLen > 0,
- %% The request process executed normally.
- #{procs := Procs} = Metrics,
- [{_, #{
- spawn := ProcSpawn,
- exit := ProcExit,
- reason := normal
- }}] = maps:to_list(Procs),
- true = ProcSpawn =< ProcExit,
- %% Confirm other metadata are as expected.
- #{
- ref := _,
- pid := From,
- streamid := 1,
- reason := normal,
- req := #{}
- } = Metrics,
- %% All good!
- ok
- after 1000 ->
- error(timeout)
- end.
- post_body(Config) ->
- doc("Confirm metrics are correct for a normal POST request."),
- %% Perform a POST request.
- ConnPid = gun_open(Config),
- Body = <<0:8000000>>,
- Ref = gun:post(ConnPid, "/full/read_body", [
- {<<"accept-encoding">>, <<"gzip">>},
- {<<"x-test-pid">>, pid_to_list(self())}
- ], Body),
- {response, nofin, 200, RespHeaders} = gun:await(ConnPid, Ref),
- {ok, RespBody} = gun:await_body(ConnPid, Ref),
- gun:close(ConnPid),
- %% Receive the metrics and validate them.
- receive
- {metrics, From, Metrics} ->
- %% Ensure the timestamps are in the expected order.
- #{
- req_start := ReqStart, req_end := ReqEnd,
- resp_start := RespStart, resp_end := RespEnd
- } = Metrics,
- true = (ReqStart =< RespStart)
- and (RespStart =< RespEnd)
- and (RespEnd =< ReqEnd),
- %% We didn't send a body.
- #{
- req_body_start := ReqBodyStart,
- req_body_end := ReqBodyEnd,
- req_body_length := ReqBodyLen
- } = Metrics,
- true = ReqBodyStart =< ReqBodyEnd,
- ReqBodyLen = byte_size(Body),
- %% We got a 200 response with a body.
- #{
- resp_status := 200,
- resp_headers := ExpectedRespHeaders,
- resp_body_length := RespBodyLen
- } = Metrics,
- ExpectedRespHeaders = maps:from_list(RespHeaders),
- true = byte_size(RespBody) > 0,
- true = RespBodyLen > 0,
- %% The request process executed normally.
- #{procs := Procs} = Metrics,
- [{_, #{
- spawn := ProcSpawn,
- exit := ProcExit,
- reason := normal
- }}] = maps:to_list(Procs),
- true = ProcSpawn =< ProcExit,
- %% Confirm other metadata are as expected.
- #{
- ref := _,
- pid := From,
- streamid := 1,
- reason := normal,
- req := #{}
- } = Metrics,
- %% All good!
- ok
- after 1000 ->
- error(timeout)
- end.
- no_resp_body(Config) ->
- doc("Confirm metrics are correct for a 204 response to a GET request."),
- %% Perform a GET request.
- ConnPid = gun_open(Config),
- Ref = gun:get(ConnPid, "/default", [
- {<<"accept-encoding">>, <<"gzip">>},
- {<<"x-test-pid">>, pid_to_list(self())}
- ]),
- {response, fin, 204, RespHeaders} = gun:await(ConnPid, Ref),
- gun:close(ConnPid),
- %% Receive the metrics and validate them.
- receive
- {metrics, From, Metrics} ->
- %% Ensure the timestamps are in the expected order.
- #{
- req_start := ReqStart, req_end := ReqEnd,
- resp_start := RespStart, resp_end := RespEnd
- } = Metrics,
- true = (ReqStart =< RespStart)
- and (RespStart =< RespEnd)
- and (RespEnd =< ReqEnd),
- %% We didn't send a body.
- #{
- req_body_start := undefined,
- req_body_end := undefined,
- req_body_length := 0
- } = Metrics,
- %% We got a 200 response with a body.
- #{
- resp_status := 204,
- resp_headers := ExpectedRespHeaders,
- resp_body_length := 0
- } = Metrics,
- ExpectedRespHeaders = maps:from_list(RespHeaders),
- %% The request process executed normally.
- #{procs := Procs} = Metrics,
- [{_, #{
- spawn := ProcSpawn,
- exit := ProcExit,
- reason := normal
- }}] = maps:to_list(Procs),
- true = ProcSpawn =< ProcExit,
- %% Confirm other metadata are as expected.
- #{
- ref := _,
- pid := From,
- streamid := 1,
- reason := normal,
- req := #{}
- } = Metrics,
- %% All good!
- ok
- after 1000 ->
- error(timeout)
- end.
|