2016-04-20 11:31:19 +00:00
|
|
|
-module(woody_tests_SUITE).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
-include_lib("common_test/include/ct.hrl").
|
2019-03-28 10:37:37 +00:00
|
|
|
-include_lib("hackney/include/hackney_lib.hrl").
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-05-04 17:40:00 +00:00
|
|
|
-include("woody_test_thrift.hrl").
|
2016-04-20 11:31:19 +00:00
|
|
|
-include("src/woody_defs.hrl").
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
-behaviour(supervisor).
|
2016-04-20 11:31:19 +00:00
|
|
|
-behaviour(woody_server_thrift_handler).
|
|
|
|
-behaviour(woody_event_handler).
|
2016-12-19 11:11:05 +00:00
|
|
|
-behaviour(cowboy_http_handler).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
%% supervisor callbacks
|
|
|
|
-export([init/1]).
|
|
|
|
|
2016-04-20 11:31:19 +00:00
|
|
|
%% woody_server_thrift_handler callbacks
|
2016-05-05 11:18:49 +00:00
|
|
|
-export([handle_function/4]).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-04-20 11:31:19 +00:00
|
|
|
%% woody_event_handler callbacks
|
2016-12-19 11:11:05 +00:00
|
|
|
-export([handle_event/4]).
|
|
|
|
|
|
|
|
%% cowboy_http_handler callbacks
|
|
|
|
-export([init/3, handle/2, terminate/3]).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-05-20 15:55:02 +00:00
|
|
|
%% common test API
|
2018-07-31 08:37:13 +00:00
|
|
|
-export([
|
|
|
|
all/0,
|
|
|
|
groups/0,
|
|
|
|
init_per_suite/1,
|
|
|
|
end_per_suite/1,
|
|
|
|
init_per_group/2,
|
|
|
|
end_per_group/2,
|
|
|
|
init_per_testcase/2,
|
|
|
|
end_per_test_case/2
|
|
|
|
]).
|
2016-05-20 15:55:02 +00:00
|
|
|
-export([
|
2017-03-31 16:18:04 +00:00
|
|
|
context_add_put_get_meta_ok_test/1,
|
|
|
|
context_get_meta_by_key_ok_test/1,
|
|
|
|
context_get_empty_meta_ok_test/1,
|
|
|
|
context_get_empty_meta_by_key_ok_test/1,
|
2016-12-19 11:11:05 +00:00
|
|
|
context_given_rpc_id_test/1,
|
2017-05-18 13:17:37 +00:00
|
|
|
context_given_id_test/1,
|
2016-12-19 11:11:05 +00:00
|
|
|
context_generated_rpc_id_test/1,
|
|
|
|
ids_monotonic_incr_test/1,
|
2018-01-30 09:50:18 +00:00
|
|
|
deadline_reached_test/1,
|
|
|
|
deadline_to_from_timeout_test/1,
|
|
|
|
deadline_to_from_binary_test/1,
|
2016-05-20 15:55:02 +00:00
|
|
|
call_ok_test/1,
|
2019-03-28 10:37:37 +00:00
|
|
|
call_resolver_nxdomain/1,
|
2016-12-19 11:11:05 +00:00
|
|
|
call3_ok_test/1,
|
2016-05-20 15:55:02 +00:00
|
|
|
call_oneway_void_test/1,
|
2016-12-19 11:11:05 +00:00
|
|
|
call_sequence_with_context_meta_test/1,
|
|
|
|
call_business_error_test/1,
|
|
|
|
call_throw_unexpected_test/1,
|
|
|
|
call_system_external_error_test/1,
|
|
|
|
call_client_error_test/1,
|
|
|
|
call_server_internal_error_test/1,
|
|
|
|
call_pass_thru_ok_test/1,
|
|
|
|
call_pass_thru_except_test/1,
|
|
|
|
call_pass_thru_bad_result_test/1,
|
|
|
|
call_pass_thru_bad_except_test/1,
|
|
|
|
call_pass_thru_result_unexpected_test/1,
|
|
|
|
call_pass_thru_resource_unavail_test/1,
|
|
|
|
call_pass_thru_result_unknown_test/1,
|
|
|
|
call_no_headers_404_test/1,
|
|
|
|
call_no_headers_500_test/1,
|
|
|
|
call_no_headers_502_test/1,
|
|
|
|
call_no_headers_503_test/1,
|
|
|
|
call_no_headers_504_test/1,
|
|
|
|
call3_ok_default_ev_handler_test/1,
|
|
|
|
call_thrift_multiplexed_test/1,
|
2018-01-30 09:50:18 +00:00
|
|
|
call_deadline_ok_test/1,
|
|
|
|
call_deadline_reached_on_client_test/1,
|
|
|
|
call_deadline_timeout_test/1,
|
2016-12-19 11:11:05 +00:00
|
|
|
server_http_req_validation_test/1,
|
2017-02-09 16:56:09 +00:00
|
|
|
try_bad_handler_spec_test/1,
|
2018-07-31 07:51:12 +00:00
|
|
|
find_multiple_pools_test/1,
|
2019-03-28 10:37:37 +00:00
|
|
|
calls_with_cache/1,
|
|
|
|
woody_resolver_inet/1,
|
|
|
|
woody_resolver_inet6/1,
|
|
|
|
woody_resolver_errors/1
|
2016-05-20 15:55:02 +00:00
|
|
|
]).
|
|
|
|
|
2016-05-04 17:40:00 +00:00
|
|
|
-define(THRIFT_DEFS, woody_test_thrift).
|
|
|
|
|
2016-04-14 07:40:33 +00:00
|
|
|
%% Weapons service
|
|
|
|
-define(SLOTS, #{
|
|
|
|
1 => <<"Impact Hammer">>,
|
|
|
|
2 => <<"Enforcer">>,
|
|
|
|
3 => <<"Bio Rifle">>,
|
|
|
|
4 => <<"Shock Rifle">>,
|
|
|
|
5 => <<"Pulse Gun">>,
|
|
|
|
6 => <<"Ripper">>,
|
|
|
|
7 => <<"Minigun">>,
|
|
|
|
8 => <<"Flak Cannon">>,
|
|
|
|
9 => <<"Rocket Launcher">>,
|
|
|
|
0 => <<"Sniper Rifle">>
|
|
|
|
}).
|
|
|
|
|
2016-08-26 15:15:48 +00:00
|
|
|
-define(WEAPON(Name, Pos, Ammo), Name => #'Weapon'{
|
2016-04-15 10:28:34 +00:00
|
|
|
name = Name,
|
2016-04-14 07:40:33 +00:00
|
|
|
slot_pos = Pos,
|
2016-04-15 10:28:34 +00:00
|
|
|
ammo = Ammo
|
2016-04-14 07:40:33 +00:00
|
|
|
}).
|
2016-08-26 15:15:48 +00:00
|
|
|
-define(WEAPON(Name, Pos), ?WEAPON(Name, Pos, undefined)).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
-define(WEAPONS, #{
|
2016-08-26 15:15:48 +00:00
|
|
|
?WEAPON(<<"Impact Hammer">> , 1),
|
|
|
|
?WEAPON(<<"Enforcer">> , 2, 25),
|
|
|
|
?WEAPON(<<"Bio Rifle">> , 3, 0),
|
|
|
|
?WEAPON(<<"Shock Rifle">> , 4, 0),
|
|
|
|
?WEAPON(<<"Pulse Gun">> , 5, 0),
|
|
|
|
?WEAPON(<<"Ripper">> , 6, 16),
|
|
|
|
?WEAPON(<<"Minigun">> , 7, 0),
|
|
|
|
?WEAPON(<<"Flak Cannon">> , 8, 30),
|
|
|
|
?WEAPON(<<"Rocket Launcher">> , 9, 6),
|
|
|
|
?WEAPON(<<"Sniper Rifle">> , 0, 20)
|
2016-04-14 07:40:33 +00:00
|
|
|
}).
|
|
|
|
|
2016-08-26 15:15:48 +00:00
|
|
|
-define(WEAPON_FAILURE(Reason), #'WeaponFailure'{
|
2016-04-15 10:28:34 +00:00
|
|
|
code = <<"weapon_error">>,
|
2016-04-14 07:40:33 +00:00
|
|
|
reason = genlib:to_binary(Reason)
|
|
|
|
}).
|
|
|
|
|
2016-08-26 15:15:48 +00:00
|
|
|
-define(POWERUP_FAILURE(Reason), #'PowerupFailure'{
|
2016-05-20 20:07:43 +00:00
|
|
|
code = <<"powerup_error">>,
|
|
|
|
reason = genlib:to_binary(Reason)
|
|
|
|
}).
|
|
|
|
|
2016-04-14 07:40:33 +00:00
|
|
|
%% Powerup service
|
2016-08-26 15:15:48 +00:00
|
|
|
-define(POWERUP(Name, Params),
|
2016-05-25 12:59:01 +00:00
|
|
|
Name => #'Powerup'{name = Name, Params}
|
2016-04-14 07:40:33 +00:00
|
|
|
).
|
|
|
|
|
|
|
|
-define(POWERUPS, #{
|
2016-08-26 15:15:48 +00:00
|
|
|
?POWERUP(<<"Thigh Pads">> , level = 23),
|
|
|
|
?POWERUP(<<"Body Armor">> , level = 82),
|
|
|
|
?POWERUP(<<"Shield Belt">> , level = 0),
|
|
|
|
?POWERUP(<<"AntiGrav Boots">> , level = 2),
|
|
|
|
?POWERUP(<<"Damage Amplifier">> , time_left = 0),
|
|
|
|
?POWERUP(<<"Invisibility">> , time_left = 0)
|
2016-04-14 07:40:33 +00:00
|
|
|
}).
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
-define(SERVER_IP , {0, 0, 0, 0}).
|
|
|
|
-define(SERVER_PORT , 8085).
|
2019-03-28 10:37:37 +00:00
|
|
|
-define(URL_BASE , "http://0.0.0.0:8085").
|
2016-12-19 11:11:05 +00:00
|
|
|
-define(PATH_WEAPONS , "/v1/woody/test/weapons").
|
|
|
|
-define(PATH_POWERUPS , "/v1/woody/test/powerups").
|
|
|
|
|
|
|
|
-define(ROOT_REQ_PARENT_ID, <<"undefined">>).
|
|
|
|
|
|
|
|
-define(ERR_S_THRIFT_MULTIPLEX , <<"thrift: multiplexing (not supported)">>).
|
|
|
|
-define(ERR_POWERUP_UNAVAILABLE , <<"expired">>).
|
|
|
|
-define(ERR_POWERUP_STATE_UNKNOWN , <<"invisible">>).
|
|
|
|
|
|
|
|
-define(WEAPON_STACK_OVERFLOW , pos_out_of_boundaries).
|
|
|
|
-define(BAD_POWERUP_REPLY , powerup_unknown).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
%% tests descriptions
|
|
|
|
%%
|
|
|
|
all() ->
|
|
|
|
[
|
2018-07-31 08:37:13 +00:00
|
|
|
{group, legacy_client_auto_server},
|
|
|
|
{group, auto_client_legacy_server},
|
|
|
|
{group, auto_both},
|
|
|
|
{group, normal_both},
|
2019-03-28 10:37:37 +00:00
|
|
|
{group, legacy_both},
|
|
|
|
{group, woody_resolver}
|
2018-07-31 08:37:13 +00:00
|
|
|
].
|
|
|
|
|
|
|
|
groups() ->
|
|
|
|
SpecTests = [
|
2017-03-31 16:18:04 +00:00
|
|
|
context_add_put_get_meta_ok_test,
|
|
|
|
context_get_meta_by_key_ok_test,
|
|
|
|
context_get_empty_meta_ok_test,
|
|
|
|
context_get_empty_meta_by_key_ok_test,
|
2016-12-19 11:11:05 +00:00
|
|
|
context_given_rpc_id_test,
|
2017-05-18 13:17:37 +00:00
|
|
|
context_given_id_test,
|
2016-12-19 11:11:05 +00:00
|
|
|
context_generated_rpc_id_test,
|
|
|
|
ids_monotonic_incr_test,
|
2018-01-30 09:50:18 +00:00
|
|
|
deadline_reached_test,
|
|
|
|
deadline_to_from_timeout_test,
|
|
|
|
deadline_to_from_binary_test,
|
2016-04-14 11:18:27 +00:00
|
|
|
call_ok_test,
|
2019-03-28 10:37:37 +00:00
|
|
|
call_resolver_nxdomain,
|
2016-12-19 11:11:05 +00:00
|
|
|
call3_ok_test,
|
2016-04-14 12:27:08 +00:00
|
|
|
call_oneway_void_test,
|
2016-12-19 11:11:05 +00:00
|
|
|
call_sequence_with_context_meta_test,
|
|
|
|
call_business_error_test,
|
|
|
|
call_throw_unexpected_test,
|
|
|
|
call_system_external_error_test,
|
|
|
|
call_client_error_test,
|
|
|
|
call_server_internal_error_test,
|
|
|
|
call_pass_thru_ok_test,
|
|
|
|
call_pass_thru_except_test,
|
|
|
|
call_pass_thru_bad_result_test,
|
|
|
|
call_pass_thru_bad_except_test,
|
|
|
|
call_pass_thru_result_unexpected_test,
|
|
|
|
call_pass_thru_resource_unavail_test,
|
|
|
|
call_pass_thru_result_unknown_test,
|
|
|
|
call_no_headers_404_test,
|
|
|
|
call_no_headers_500_test,
|
|
|
|
call_no_headers_502_test,
|
|
|
|
call_no_headers_503_test,
|
|
|
|
call_no_headers_504_test,
|
|
|
|
call3_ok_default_ev_handler_test,
|
|
|
|
call_thrift_multiplexed_test,
|
2018-01-30 09:50:18 +00:00
|
|
|
call_deadline_ok_test,
|
|
|
|
call_deadline_reached_on_client_test,
|
|
|
|
call_deadline_timeout_test,
|
2016-12-19 11:11:05 +00:00
|
|
|
server_http_req_validation_test,
|
2017-02-09 16:56:09 +00:00
|
|
|
try_bad_handler_spec_test,
|
2018-07-31 07:51:12 +00:00
|
|
|
find_multiple_pools_test,
|
|
|
|
calls_with_cache
|
2018-07-31 08:37:13 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
{legacy_client_auto_server, [], SpecTests},
|
|
|
|
{auto_client_legacy_server, [], SpecTests},
|
|
|
|
{auto_both, [], SpecTests},
|
|
|
|
{normal_both, [], SpecTests},
|
2019-03-28 10:37:37 +00:00
|
|
|
{legacy_both, [], SpecTests},
|
|
|
|
{woody_resolver, [], [
|
|
|
|
woody_resolver_inet,
|
|
|
|
woody_resolver_inet6,
|
|
|
|
woody_resolver_errors
|
|
|
|
]}
|
2016-04-14 07:40:33 +00:00
|
|
|
].
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% starting/stopping
|
|
|
|
%%
|
|
|
|
init_per_suite(C) ->
|
2018-07-31 07:51:12 +00:00
|
|
|
% dbg:tracer(), dbg:p(all, c),
|
|
|
|
% dbg:tpl({woody_joint_workers, '_', '_'}, x),
|
2017-05-18 13:17:37 +00:00
|
|
|
%%Apps = genlib_app:start_application_with(woody, [{trace_http_server, true}]),
|
2016-04-20 11:31:19 +00:00
|
|
|
{ok, Apps} = application:ensure_all_started(woody),
|
2016-04-14 07:40:33 +00:00
|
|
|
[{apps, Apps}|C].
|
|
|
|
|
|
|
|
end_per_suite(C) ->
|
|
|
|
[application_stop(App) || App <- proplists:get_value(apps, C)].
|
|
|
|
|
|
|
|
application_stop(App=sasl) ->
|
|
|
|
%% hack for preventing sasl deadlock
|
|
|
|
%% http://erlang.org/pipermail/erlang-questions/2014-May/079012.html
|
|
|
|
error_logger:delete_report_handler(cth_log_redirect),
|
2016-05-20 23:26:59 +00:00
|
|
|
_ = application:stop(App),
|
2016-04-14 07:40:33 +00:00
|
|
|
error_logger:add_report_handler(cth_log_redirect),
|
|
|
|
ok;
|
|
|
|
application_stop(App) ->
|
|
|
|
application:stop(App).
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
init_per_testcase(TC, C) when
|
|
|
|
TC =:= try_bad_handler_spec_test ;
|
|
|
|
TC =:= context_given_rpc_id_test ;
|
2017-05-18 13:17:37 +00:00
|
|
|
TC =:= context_given_id_test ;
|
2016-12-19 11:11:05 +00:00
|
|
|
TC =:= context_generated_rpc_id_test ;
|
|
|
|
TC =:= ids_monotonic_incr_test ;
|
2018-01-30 09:50:18 +00:00
|
|
|
TC =:= deadline_reached_test ;
|
|
|
|
TC =:= deadline_to_from_timeout_test ;
|
|
|
|
TC =:= deadline_to_from_binary_test ;
|
2016-12-19 11:11:05 +00:00
|
|
|
TC =:= call_client_error_test
|
2016-08-04 09:25:49 +00:00
|
|
|
->
|
|
|
|
C;
|
2016-12-19 11:11:05 +00:00
|
|
|
init_per_testcase(TC, C) when
|
|
|
|
TC =:= call_no_headers_404_test ;
|
|
|
|
TC =:= call_no_headers_500_test ;
|
|
|
|
TC =:= call_no_headers_502_test ;
|
|
|
|
TC =:= call_no_headers_503_test ;
|
|
|
|
TC =:= call_no_headers_504_test
|
|
|
|
->
|
|
|
|
{ok, Sup} = start_tc_sup(),
|
|
|
|
{ok, _} = start_error_server(TC, Sup),
|
|
|
|
[{sup, Sup} | C];
|
2017-02-09 16:56:09 +00:00
|
|
|
init_per_testcase(find_multiple_pools_test, C) ->
|
|
|
|
{ok, Sup} = start_tc_sup(),
|
2017-03-03 14:34:41 +00:00
|
|
|
Pool1 = {swords, 15000, 100},
|
|
|
|
Pool2 = {shields, undefined, 50},
|
2017-02-09 16:56:09 +00:00
|
|
|
ok = start_woody_server_with_pools(woody_ct, Sup, ['Weapons', 'Powerups'], [Pool1, Pool2]),
|
|
|
|
[{sup, Sup} | C];
|
2018-07-31 07:51:12 +00:00
|
|
|
init_per_testcase(calls_with_cache, C) ->
|
|
|
|
{ok, Sup} = start_tc_sup(),
|
|
|
|
{ok, _} = start_caching_client(),
|
|
|
|
{ok, _} = start_woody_server(woody_ct, Sup, ['Weapons', 'Powerups']),
|
|
|
|
[{sup, Sup} | C];
|
2016-04-14 07:40:33 +00:00
|
|
|
init_per_testcase(_, C) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
{ok, Sup} = start_tc_sup(),
|
2016-05-25 12:59:01 +00:00
|
|
|
{ok, _} = start_woody_server(woody_ct, Sup, ['Weapons', 'Powerups']),
|
2016-04-14 07:40:33 +00:00
|
|
|
[{sup, Sup} | C].
|
|
|
|
|
2018-07-31 08:37:13 +00:00
|
|
|
init_per_group(legacy_client_auto_server, Config) ->
|
|
|
|
config_headers_mode(legacy, auto, Config);
|
|
|
|
init_per_group(auto_client_legacy_server, Config) ->
|
|
|
|
config_headers_mode(auto, legacy, Config);
|
|
|
|
init_per_group(auto_both, Config) ->
|
|
|
|
config_headers_mode(auto, auto, Config);
|
|
|
|
init_per_group(normal_both, Config) ->
|
|
|
|
config_headers_mode(normal, normal, Config);
|
|
|
|
init_per_group(legacy_both, Config) ->
|
|
|
|
config_headers_mode(legacy, legacy, Config);
|
2019-03-28 10:37:37 +00:00
|
|
|
init_per_group(woody_resolver, Config) ->
|
|
|
|
Config0 = config_headers_mode(normal, normal, Config),
|
|
|
|
[{env_inet6, inet_db:res_option(inet6)} | Config0];
|
2018-07-31 08:37:13 +00:00
|
|
|
init_per_group(_Name, Config) ->
|
|
|
|
Config.
|
|
|
|
|
|
|
|
end_per_group(Name, _Config) when
|
|
|
|
Name =:= legacy_client_auto_server orelse
|
|
|
|
Name =:= auto_client_legacy_server orelse
|
|
|
|
Name =:= auto_both orelse
|
|
|
|
Name =:= normal_both orelse
|
2019-03-28 10:37:37 +00:00
|
|
|
Name =:= legacy_both orelse
|
|
|
|
Name =:= woody_resolver
|
2018-07-31 08:37:13 +00:00
|
|
|
->
|
|
|
|
ok = application:set_env(woody, client_headers_mode, auto),
|
|
|
|
ok = application:set_env(woody, server_headers_mode, auto),
|
|
|
|
ok;
|
|
|
|
end_per_group(_Name, _Config) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
config_headers_mode(Client, Server, Config) ->
|
|
|
|
ok = application:set_env(woody, client_headers_mode, Client),
|
|
|
|
ok = application:set_env(woody, server_headers_mode, Server),
|
|
|
|
[{server_headers_mode, not_auto(Server)}, {client_headers_mode, not_auto(Client)} | Config].
|
|
|
|
|
|
|
|
not_auto(auto) ->
|
|
|
|
normal;
|
|
|
|
not_auto(Mode) ->
|
|
|
|
Mode.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
start_tc_sup() ->
|
|
|
|
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
|
|
|
|
|
|
|
start_error_server(TC, Sup) ->
|
|
|
|
Code = get_fail_code(TC),
|
|
|
|
Dispatch = cowboy_router:compile([{'_', [{?PATH_WEAPONS, ?MODULE, Code}]}]),
|
|
|
|
Server = ranch:child_spec(woody_ct, 10, ranch_tcp,
|
|
|
|
[{ip, ?SERVER_IP}, {port, ?SERVER_PORT}],
|
|
|
|
cowboy_protocol, [{env, [{dispatch, Dispatch}]}]
|
|
|
|
),
|
|
|
|
supervisor:start_child(Sup, Server).
|
|
|
|
|
2016-04-20 11:31:19 +00:00
|
|
|
start_woody_server(Id, Sup, Services) ->
|
|
|
|
Server = woody_server:child_spec(Id, #{
|
2016-04-15 10:28:34 +00:00
|
|
|
handlers => [get_handler(S) || S <- Services],
|
2016-04-14 07:40:33 +00:00
|
|
|
event_handler => ?MODULE,
|
2016-04-15 10:28:34 +00:00
|
|
|
ip => ?SERVER_IP,
|
2016-12-19 11:11:05 +00:00
|
|
|
port => ?SERVER_PORT
|
2016-04-14 07:40:33 +00:00
|
|
|
}),
|
2016-12-19 11:11:05 +00:00
|
|
|
supervisor:start_child(Sup, Server).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2017-02-09 16:56:09 +00:00
|
|
|
start_woody_server_with_pools(Id, Sup, Services, Params) ->
|
|
|
|
Server = woody_server:child_spec(Id, #{
|
|
|
|
handlers => [get_handler(S) || S <- Services],
|
|
|
|
event_handler => ?MODULE,
|
|
|
|
ip => ?SERVER_IP,
|
|
|
|
port => ?SERVER_PORT
|
|
|
|
}),
|
|
|
|
{ok, WoodyServer} = supervisor:start_child(Sup, Server),
|
|
|
|
|
2017-03-04 10:37:17 +00:00
|
|
|
Specs = [woody_client:child_spec(pool_opts(Pool)) || Pool <- Params],
|
2017-03-03 14:34:41 +00:00
|
|
|
|
|
|
|
_ = [supervisor:start_child(WoodyServer, Spec) || Spec <- Specs],
|
2017-02-09 16:56:09 +00:00
|
|
|
ok.
|
|
|
|
|
2018-07-31 07:51:12 +00:00
|
|
|
start_caching_client() ->
|
|
|
|
woody_caching_client:start_link(woody_caching_client_options()).
|
|
|
|
|
|
|
|
woody_caching_client_options() ->
|
|
|
|
#{
|
|
|
|
workers_name => test_caching_client_workers,
|
|
|
|
cache => woody_caching_client_cache_options(test_caching_client_cache),
|
|
|
|
woody_client => pool_opts({test_caching_client_pool, 1000, 10})
|
|
|
|
}.
|
|
|
|
|
|
|
|
woody_caching_client_cache_options(Name) ->
|
|
|
|
#{
|
|
|
|
local_name => Name,
|
|
|
|
n => 10,
|
|
|
|
ttl => 60
|
|
|
|
}.
|
|
|
|
|
2017-03-03 14:34:41 +00:00
|
|
|
pool_opts(Pool) ->
|
|
|
|
{Url, _} = get_service_endpoint('Weapons'),
|
|
|
|
#{
|
|
|
|
url => Url,
|
|
|
|
event_handler => ?MODULE,
|
|
|
|
transport_opts => start_pool_opts(Pool)
|
|
|
|
}.
|
|
|
|
|
|
|
|
start_pool_opts({Name, Timeout, MaxConnections}) ->
|
|
|
|
[{pool, Name}, {timeout, Timeout}, {max_connections, MaxConnections}].
|
2017-02-09 16:56:09 +00:00
|
|
|
|
2016-05-25 12:59:01 +00:00
|
|
|
get_handler('Powerups') ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{
|
|
|
|
?PATH_POWERUPS,
|
2016-12-19 11:11:05 +00:00
|
|
|
{{?THRIFT_DEFS, 'Powerups'}, ?MODULE}
|
2016-04-14 07:40:33 +00:00
|
|
|
};
|
2016-11-18 13:49:05 +00:00
|
|
|
|
2016-05-25 12:59:01 +00:00
|
|
|
get_handler('Weapons') ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{
|
|
|
|
?PATH_WEAPONS,
|
2016-12-19 11:11:05 +00:00
|
|
|
{{?THRIFT_DEFS, 'Weapons'}, {?MODULE, #{
|
|
|
|
meta_test_id => <<"call_seq_with_context_meta">>}}
|
2016-11-18 13:49:05 +00:00
|
|
|
}
|
2016-04-14 07:40:33 +00:00
|
|
|
}.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
get_fail_code(call_no_headers_404_test) -> 404;
|
|
|
|
get_fail_code(call_no_headers_500_test) -> 500;
|
|
|
|
get_fail_code(call_no_headers_502_test) -> 502;
|
|
|
|
get_fail_code(call_no_headers_503_test) -> 503;
|
|
|
|
get_fail_code(call_no_headers_504_test) -> 504.
|
|
|
|
|
2016-08-26 15:15:48 +00:00
|
|
|
end_per_test_case(_, C) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
case proplists:get_value(sup, C, undefined) of
|
|
|
|
undefined ->
|
|
|
|
ok;
|
|
|
|
Sup ->
|
|
|
|
exit(Sup, shutdown),
|
|
|
|
Ref = monitor(process, Sup),
|
|
|
|
receive
|
|
|
|
{'DOWN', Ref, process, Sup, _Reason} ->
|
|
|
|
demonitor(Ref),
|
|
|
|
ok
|
|
|
|
after 1000 ->
|
|
|
|
demonitor(Ref, [flush]),
|
|
|
|
error(exit_timeout)
|
|
|
|
end
|
2016-04-14 07:40:33 +00:00
|
|
|
end.
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% tests
|
|
|
|
%%
|
2017-03-31 16:18:04 +00:00
|
|
|
|
|
|
|
context_add_put_get_meta_ok_test(_) ->
|
|
|
|
Meta = #{
|
|
|
|
<<"world_says">> => <<"Hello">>,
|
|
|
|
<<"human_says">> => <<"Nope!">>
|
|
|
|
},
|
|
|
|
|
|
|
|
Context = woody_context:add_meta(woody_context:new(), Meta),
|
|
|
|
Meta = woody_context:get_meta(Context).
|
|
|
|
|
|
|
|
context_get_meta_by_key_ok_test(_) ->
|
|
|
|
Meta = #{
|
|
|
|
<<"world_says">> => <<"Hello">>,
|
|
|
|
<<"human_says">> => <<"Nope!">>
|
|
|
|
},
|
|
|
|
|
|
|
|
Context = woody_context:add_meta(woody_context:new(), Meta),
|
|
|
|
<<"Nope!">> = woody_context:get_meta(<<"human_says">>, Context).
|
|
|
|
|
|
|
|
context_get_empty_meta_ok_test(_) ->
|
|
|
|
#{} = woody_context:get_meta(woody_context:new()).
|
|
|
|
|
|
|
|
context_get_empty_meta_by_key_ok_test(_) ->
|
|
|
|
undefined = woody_context:get_meta(<<"fox_says">>, woody_context:new()).
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
context_given_rpc_id_test(_) ->
|
|
|
|
ReqId = <<"context_given_rpc_id">>,
|
|
|
|
RpcId = #{parent_id => ReqId, trace_id => ReqId, span_id => ReqId},
|
2016-11-18 13:49:05 +00:00
|
|
|
#{
|
2016-12-19 11:11:05 +00:00
|
|
|
rpc_id := RpcId
|
|
|
|
} = woody_context:new(RpcId).
|
|
|
|
|
2017-05-18 13:17:37 +00:00
|
|
|
context_given_id_test(_) ->
|
|
|
|
Id = <<"context_given_trace_id">>,
|
2016-12-19 11:11:05 +00:00
|
|
|
#{
|
2017-05-18 13:17:37 +00:00
|
|
|
rpc_id := #{parent_id := ?ROOT_REQ_PARENT_ID, span_id := Id, trace_id := _}
|
|
|
|
} = woody_context:new(Id).
|
2016-11-18 13:49:05 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
context_generated_rpc_id_test(_) ->
|
|
|
|
#{
|
|
|
|
rpc_id := #{parent_id := ?ROOT_REQ_PARENT_ID, span_id := _GenId1, trace_id := _GenId2}
|
|
|
|
} = woody_context:new().
|
|
|
|
|
|
|
|
ids_monotonic_incr_test(_) ->
|
|
|
|
TraceId = <<"ids_monotonic_incr">>,
|
|
|
|
ParentCtx = woody_context:new(TraceId),
|
|
|
|
Children = lists:map(fun(_) -> woody_context:new_child(ParentCtx) end, lists:seq(1, 10000)),
|
|
|
|
SortFun = fun(C1, C2) ->
|
|
|
|
Span1 = genlib:to_int(woody_context:get_rpc_id(span_id, C1)),
|
|
|
|
Span2 = genlib:to_int(woody_context:get_rpc_id(span_id, C2)),
|
|
|
|
Span1 < Span2
|
|
|
|
end,
|
|
|
|
Children = lists:sort(SortFun, Children).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2018-01-30 09:50:18 +00:00
|
|
|
deadline_reached_test(_) ->
|
|
|
|
{Date, {H, M, S}} = calendar:universal_time(),
|
|
|
|
true = woody_deadline:is_reached({{Date, {H, M, S - 1}}, 0}),
|
|
|
|
false = woody_deadline:is_reached({{Date, {H, M, S + 1}}, 745}).
|
|
|
|
|
|
|
|
deadline_to_from_timeout_test(_) ->
|
|
|
|
{Date, {H, M, S}} = calendar:universal_time(),
|
|
|
|
Timeout = woody_deadline:to_timeout({{Date, {H, M, S + 1}}, 500}),
|
|
|
|
true = Timeout > 0 andalso Timeout =< 1500,
|
|
|
|
|
|
|
|
Timeout1 = 300,
|
|
|
|
Deadline = woody_deadline:from_timeout(Timeout1),
|
|
|
|
false = woody_deadline:is_reached(Deadline),
|
|
|
|
ok = timer:sleep(Timeout1),
|
|
|
|
true = woody_deadline:is_reached(Deadline).
|
|
|
|
|
|
|
|
deadline_to_from_binary_test(_) ->
|
|
|
|
Deadline = {{{2010, 4, 11}, {22, 35, 41}}, 29},
|
|
|
|
DeadlineBin = <<"2010-04-11T22:35:41.029000Z">>,
|
|
|
|
DeadlineBin = woody_deadline:to_binary(Deadline),
|
|
|
|
Deadline = woody_deadline:from_binary(DeadlineBin),
|
|
|
|
|
|
|
|
Deadline1 = {calendar:universal_time(), 542},
|
|
|
|
DeadlineBin1 = woody_deadline:to_binary(Deadline1),
|
|
|
|
Deadline1 = woody_deadline:from_binary(DeadlineBin1),
|
|
|
|
|
2018-07-03 16:48:43 +00:00
|
|
|
Deadline2 = {{{2010, 4, 11}, {22, 35, 41}}, 0},
|
|
|
|
DeadlineBin2 = <<"2010-04-11T22:35:41Z">>,
|
|
|
|
Deadline2 = woody_deadline:from_binary(woody_deadline:to_binary(Deadline2)),
|
|
|
|
DeadlineBin2 = woody_deadline:to_binary(Deadline2),
|
|
|
|
|
2018-01-30 09:50:18 +00:00
|
|
|
try woody_deadline:to_binary({{baddate, {22, 35, 41}}, 29})
|
|
|
|
catch
|
|
|
|
error:{bad_deadline, _} ->
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
|
|
|
|
try woody_deadline:from_binary(<<"badboy">>)
|
|
|
|
catch
|
|
|
|
error:{bad_deadline, _} ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
2016-04-14 11:18:27 +00:00
|
|
|
call_ok_test(_) ->
|
2016-04-14 07:40:33 +00:00
|
|
|
Gun = <<"Enforcer">>,
|
2016-12-19 11:11:05 +00:00
|
|
|
gun_test_basic(<<"call_ok">>, Gun, {ok, genlib_map:get(Gun, ?WEAPONS)}, true).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2019-03-28 10:37:37 +00:00
|
|
|
call_resolver_nxdomain(_) ->
|
|
|
|
Context = make_context(<<"nxdomain">>),
|
|
|
|
try call(Context, 'The Void', get_weapon, [<<"Enforcer">>, self_to_bin()])
|
|
|
|
catch
|
|
|
|
error:{woody_error, {internal, resource_unavailable, <<"{resolve_failed,nxdomain}">>}} -> ok
|
|
|
|
end.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call3_ok_test(_) ->
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Request = {Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
Opts = #{url => Url, event_handler => ?MODULE},
|
|
|
|
Expect = {ok, genlib_map:get(Gun, ?WEAPONS)},
|
|
|
|
Expect = woody_client:call(Request, Opts).
|
|
|
|
|
|
|
|
call3_ok_default_ev_handler_test(_) ->
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Request = {Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
Opts = #{url => Url, event_handler => woody_event_handler_default},
|
|
|
|
Expect = {ok, genlib_map:get(Gun, ?WEAPONS)},
|
|
|
|
Expect = woody_client:call(Request, Opts).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_business_error_test(_) ->
|
2016-04-14 07:40:33 +00:00
|
|
|
Gun = <<"Bio Rifle">>,
|
2016-12-19 11:11:05 +00:00
|
|
|
gun_test_basic(<<"call_business_error">>, Gun,
|
|
|
|
{exception, ?WEAPON_FAILURE("out of ammo")}, true).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_throw_unexpected_test(_) ->
|
|
|
|
Id = <<"call_throw_unexpected">>,
|
2016-04-14 07:40:33 +00:00
|
|
|
Current = genlib_map:get(<<"Rocket Launcher">>, ?WEAPONS),
|
2016-12-19 11:11:05 +00:00
|
|
|
Context = make_context(Id),
|
2016-05-25 12:59:01 +00:00
|
|
|
try call(Context, 'Weapons', switch_weapon, [Current, next, 1, self_to_bin()])
|
2016-04-14 07:40:33 +00:00
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, result_unexpected, _}} -> ok
|
2016-04-14 07:40:33 +00:00
|
|
|
end,
|
2016-12-19 11:11:05 +00:00
|
|
|
{ok, _} = receive_msg(Current, Context).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_system_external_error_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
Id = <<"call_system_external_error">>,
|
2016-04-14 07:40:33 +00:00
|
|
|
Gun = <<"The Ultimate Super Mega Destroyer">>,
|
2017-05-18 13:17:37 +00:00
|
|
|
Context = make_context(Id),
|
|
|
|
try call(Context, 'Weapons', get_weapon, [Gun, self_to_bin()])
|
|
|
|
catch
|
|
|
|
error:{woody_error, {external, result_unexpected, _}} -> ok
|
|
|
|
end,
|
|
|
|
{ok, _} = receive_msg(Gun, Context).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_client_error_test(_) ->
|
|
|
|
Gun = 'Wrong Type of Mega Destroyer',
|
|
|
|
Context = make_context(<<"call_client_error">>),
|
2016-05-25 12:59:01 +00:00
|
|
|
try call(Context, 'Weapons', get_weapon, [Gun, self_to_bin()])
|
2016-04-17 21:38:00 +00:00
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {internal, result_unexpected, <<"client thrift error: ", _/binary>>}} -> ok
|
2016-04-17 21:38:00 +00:00
|
|
|
end.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_server_internal_error_test(_) ->
|
2016-05-05 11:18:49 +00:00
|
|
|
Armor = <<"Helmet">>,
|
2016-12-19 11:11:05 +00:00
|
|
|
Context = make_context(<<"call_server_internal_error">>),
|
2016-05-25 12:59:01 +00:00
|
|
|
try call(Context, 'Powerups', get_powerup, [Armor, self_to_bin()])
|
2016-04-14 07:40:33 +00:00
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, result_unexpected, _}} -> ok
|
2016-04-14 07:40:33 +00:00
|
|
|
end,
|
2016-12-19 11:11:05 +00:00
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-04-14 12:27:08 +00:00
|
|
|
call_oneway_void_test(_) ->
|
2016-04-15 10:28:34 +00:00
|
|
|
Armor = <<"Helmet">>,
|
2016-12-19 11:11:05 +00:00
|
|
|
Context = make_context(<<"call_oneway_void">>),
|
|
|
|
{ok, ok} = call(Context, 'Powerups', like_powerup, [Armor, self_to_bin()]),
|
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
|
|
|
|
|
|
|
call_sequence_with_context_meta_test(_) ->
|
2016-11-18 13:49:05 +00:00
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Current = genlib_map:get(Gun, ?WEAPONS),
|
2016-12-19 11:11:05 +00:00
|
|
|
Context = woody_context:new(
|
|
|
|
<<"call_seq_with_context_meta">>,
|
|
|
|
#{genlib:to_binary(Current#'Weapon'.slot_pos) => Gun}),
|
|
|
|
Expect = {ok, genlib_map:get(<<"Ripper">>, ?WEAPONS)},
|
|
|
|
Expect = call(Context, 'Weapons', switch_weapon, [Current, next, 1, self_to_bin()]).
|
|
|
|
|
|
|
|
call_pass_thru_ok_test(_) ->
|
|
|
|
Armor = <<"AntiGrav Boots">>,
|
|
|
|
Context = make_context(<<"call_pass_thru_ok">>),
|
|
|
|
Expect = {ok, genlib_map:get(Armor, ?POWERUPS)},
|
|
|
|
Expect = call(Context, 'Powerups', proxy_get_powerup, [Armor, self_to_bin()]),
|
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
|
|
|
|
|
|
|
call_pass_thru_except_test(_) ->
|
|
|
|
Armor = <<"Shield Belt">>,
|
|
|
|
Id = <<"call_pass_thru_except">>,
|
|
|
|
RpcId = woody_context:new_rpc_id(?ROOT_REQ_PARENT_ID, Id, Id),
|
|
|
|
Context = woody_context:new(RpcId),
|
|
|
|
try call(Context, 'Powerups', proxy_get_powerup, [Armor, self_to_bin()])
|
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, result_unexpected, _}} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
|
|
|
|
|
|
|
call_pass_thru_bad_result_test(_) ->
|
|
|
|
Armor = <<"AntiGrav Boots">>,
|
|
|
|
Context = make_context(<<"call_pass_thru_bad_result">>),
|
|
|
|
try call(Context, 'Powerups', bad_proxy_get_powerup, [Armor, self_to_bin()])
|
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, result_unexpected, _}} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
|
|
|
|
|
|
|
call_pass_thru_bad_except_test(_) ->
|
|
|
|
Armor = <<"Shield Belt">>,
|
|
|
|
Context = make_context(<<"call_pass_thru_bad_except">>),
|
|
|
|
try call(Context, 'Powerups', bad_proxy_get_powerup, [Armor, self_to_bin()])
|
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, result_unexpected, _}} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
{ok, _} = receive_msg(Armor, Context).
|
|
|
|
|
|
|
|
call_pass_thru_result_unexpected_test(_) ->
|
|
|
|
call_pass_thru_error(<<"call_pass_thru_result_unexpected">>, <<"Helmet">>,
|
2017-05-18 13:17:37 +00:00
|
|
|
error, result_unexpected).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_pass_thru_resource_unavail_test(_) ->
|
|
|
|
call_pass_thru_error(<<"call_pass_thru_resource_unavail">>, <<"Damage Amplifier">>,
|
2017-05-18 13:17:37 +00:00
|
|
|
error, resource_unavailable).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_pass_thru_result_unknown_test(_) ->
|
|
|
|
call_pass_thru_error(<<"call_pass_thru_result_unknown">>, <<"Invisibility">>,
|
2017-05-18 13:17:37 +00:00
|
|
|
error, result_unknown).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
2017-05-18 13:17:37 +00:00
|
|
|
call_pass_thru_error(Id, Powerup, ExceptClass, ErrClass) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
RpcId = woody_context:new_rpc_id(?ROOT_REQ_PARENT_ID, Id, Id),
|
|
|
|
Context = woody_context:new(RpcId),
|
|
|
|
try call(Context, 'Powerups', proxy_get_powerup, [Powerup, self_to_bin()])
|
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
ExceptClass:{woody_error, {external, ErrClass, _}} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
{ok, _} = receive_msg(Powerup, Context).
|
|
|
|
|
|
|
|
call_no_headers_404_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(<<"call_no_headers_404">>, result_unexpected, 404).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_no_headers_500_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(<<"call_no_headers_500">>, result_unexpected, 500).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_no_headers_502_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(<<"call_no_headers_502">>, result_unexpected, 502).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_no_headers_503_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(<<"call_no_headers_503">>, resource_unavailable, 503).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
|
|
|
call_no_headers_504_test(_) ->
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(<<"call_no_headers_404">>, result_unknown, 504).
|
2016-12-19 11:11:05 +00:00
|
|
|
|
2017-05-18 13:17:37 +00:00
|
|
|
call_fail_w_no_headers(Id, Class, Code) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Context = make_context(Id),
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
2017-05-18 13:17:37 +00:00
|
|
|
BinCode = integer_to_binary(Code),
|
2016-12-19 11:11:05 +00:00
|
|
|
try woody_client:call({Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
#{url => Url, event_handler => ?MODULE}, Context)
|
|
|
|
catch
|
2017-05-18 13:17:37 +00:00
|
|
|
error:{woody_error, {external, Class, <<"got response with http code ", BinCode:3/binary, _/binary>>}} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
ok
|
|
|
|
end.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2017-02-09 16:56:09 +00:00
|
|
|
find_multiple_pools_test(_) ->
|
|
|
|
true = is_pid(hackney_pool:find_pool(swords)),
|
|
|
|
true = is_pid(hackney_pool:find_pool(shields)).
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
call_thrift_multiplexed_test(_) ->
|
|
|
|
Client = make_thrift_multiplexed_client(<<"call_thrift_multiplexed">>,
|
|
|
|
"powerups", get_service_endpoint('Powerups')),
|
|
|
|
{Client1, {error, {system, {external, result_unexpected, ?ERR_S_THRIFT_MULTIPLEX}}}} =
|
|
|
|
thrift_client:call(Client, get_powerup, [<<"Body Armor">>, self_to_bin()]),
|
2016-04-14 17:55:47 +00:00
|
|
|
thrift_client:close(Client1).
|
|
|
|
|
|
|
|
make_thrift_multiplexed_client(Id, ServiceName, {Url, Service}) ->
|
2017-10-20 11:34:01 +00:00
|
|
|
EvHandler = ?MODULE,
|
|
|
|
WoodyState = woody_state:new(client, make_context(Id), EvHandler),
|
2016-04-14 17:55:47 +00:00
|
|
|
{ok, Protocol} = thrift_binary_protocol:new(
|
2019-03-28 10:37:37 +00:00
|
|
|
woody_client_thrift_http_transport:new(Url, [], #{}, WoodyState),
|
2016-04-14 17:55:47 +00:00
|
|
|
[{strict_read, true}, {strict_write, true}]
|
|
|
|
),
|
|
|
|
{ok, Protocol1} = thrift_multiplexed_protocol:new(Protocol, ServiceName),
|
2017-10-20 11:34:01 +00:00
|
|
|
{ok, Client} = thrift_client:new(Protocol1, Service),
|
|
|
|
Client.
|
2016-04-14 17:55:47 +00:00
|
|
|
|
2018-01-30 09:50:18 +00:00
|
|
|
call_deadline_ok_test(_) ->
|
|
|
|
Id = <<"call_deadline_timeout">>,
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Request = {Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
Opts = #{url => Url, event_handler => ?MODULE},
|
|
|
|
Deadline = woody_deadline:from_timeout(3000),
|
|
|
|
Context = woody_context:new(Id, #{<<"sleep">> => <<"100">>}, Deadline),
|
|
|
|
Expect = {ok, genlib_map:get(Gun, ?WEAPONS)},
|
|
|
|
Expect = woody_client:call(Request, Opts, Context).
|
|
|
|
|
|
|
|
call_deadline_reached_on_client_test(_) ->
|
|
|
|
Id = <<"call_deadline_reached_on_client">>,
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Request = {Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
Opts = #{url => Url, event_handler => ?MODULE},
|
|
|
|
Deadline = woody_deadline:from_timeout(0),
|
|
|
|
Context = woody_context:new(Id, #{<<"sleep">> => <<"1000">>}, Deadline),
|
|
|
|
try woody_client:call(Request, Opts, Context)
|
|
|
|
catch
|
|
|
|
error:{woody_error, {internal, resource_unavailable, <<"deadline reached">>}} -> ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
call_deadline_timeout_test(_) ->
|
|
|
|
Id = <<"call_deadline_timeout">>,
|
|
|
|
{Url, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Gun = <<"Enforcer">>,
|
|
|
|
Request = {Service, get_weapon, [Gun, self_to_bin()]},
|
|
|
|
Opts = #{url => Url, event_handler => ?MODULE},
|
|
|
|
Deadline = woody_deadline:from_timeout(500),
|
|
|
|
Context = woody_context:new(Id, #{<<"sleep">> => <<"3000">>}, Deadline),
|
|
|
|
|
|
|
|
try woody_client:call(Request, Opts, Context)
|
|
|
|
catch
|
|
|
|
error:{woody_error, {external, result_unknown, <<"timeout">>}} -> ok
|
|
|
|
end,
|
|
|
|
|
|
|
|
try woody_client:call(Request, Opts, Context)
|
|
|
|
catch
|
|
|
|
error:{woody_error, {internal, resource_unavailable, <<"deadline reached">>}} -> ok
|
|
|
|
end.
|
|
|
|
|
2018-07-31 08:37:13 +00:00
|
|
|
server_http_req_validation_test(Config) ->
|
|
|
|
HeadersMode = proplists:get_value(client_headers_mode, Config),
|
2016-12-19 11:11:05 +00:00
|
|
|
Id = <<"server_http_req_validation">>,
|
2016-05-25 12:59:01 +00:00
|
|
|
{Url, _Service} = get_service_endpoint('Weapons'),
|
2016-04-19 13:26:05 +00:00
|
|
|
Headers = [
|
2018-07-31 08:37:13 +00:00
|
|
|
{?HEADER_RPC_ROOT_ID(HeadersMode) , genlib:to_binary(Id)},
|
|
|
|
{?HEADER_RPC_ID(HeadersMode) , genlib:to_binary(Id)},
|
|
|
|
{?HEADER_RPC_PARENT_ID(HeadersMode) , genlib:to_binary(?ROOT_REQ_PARENT_ID)},
|
|
|
|
{<<"content-type">> , ?CONTENT_TYPE_THRIFT},
|
|
|
|
{<<"accept">> , ?CONTENT_TYPE_THRIFT}
|
2016-04-19 13:26:05 +00:00
|
|
|
],
|
|
|
|
|
2018-07-31 08:37:13 +00:00
|
|
|
{ok, _Ref} = timer:kill_after(5000),
|
|
|
|
Opts = [{url, Url}, {recv_timeout, 100}, {connect_timeout, 100}, {send_timeout, 100}],
|
2016-04-19 13:26:05 +00:00
|
|
|
%% Check missing Id headers, content-type and an empty body on the last step,
|
2016-04-21 10:57:46 +00:00
|
|
|
%% as missing Accept is allowed
|
2016-04-19 13:26:05 +00:00
|
|
|
lists:foreach(fun({C, H}) ->
|
2018-07-31 08:37:13 +00:00
|
|
|
{ok, C, _, _} = hackney:request(post, Url, Headers -- [H], <<>>, Opts)
|
2016-08-26 15:15:48 +00:00
|
|
|
end, lists:zip([400, 400, 400, 415, 400], Headers)),
|
2016-04-19 13:26:05 +00:00
|
|
|
|
2016-04-21 10:57:46 +00:00
|
|
|
%% Check wrong Accept
|
2016-04-19 13:26:05 +00:00
|
|
|
{ok, 406, _, _} = hackney:request(post, Url,
|
|
|
|
lists:keyreplace(<<"accept">>, 1, Headers, {<<"accept">>, <<"application/text">>}),
|
|
|
|
<<>>, [{url, Url}]),
|
2016-04-21 10:57:46 +00:00
|
|
|
|
2016-04-19 13:26:05 +00:00
|
|
|
%% Check wrong methods
|
|
|
|
lists:foreach(fun(M) ->
|
2018-07-31 08:37:13 +00:00
|
|
|
{ok, 405, _, _} = hackney:request(M, Url, Headers, <<>>, Opts) end,
|
2016-04-21 10:57:46 +00:00
|
|
|
[get, put, delete, trace, options, patch]),
|
2018-07-31 08:37:13 +00:00
|
|
|
{ok, 405, _} = hackney:request(head, Url, Headers, <<>>, Opts),
|
|
|
|
{ok, 400, _, _} = hackney:request(connect, Url, Headers, <<>>, Opts).
|
2016-04-19 13:26:05 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
try_bad_handler_spec_test(_) ->
|
2016-08-04 09:25:49 +00:00
|
|
|
NaughtyHandler = {?PATH_POWERUPS, {{'should', 'be'}, '3-tuple'}},
|
|
|
|
try
|
|
|
|
woody_server:child_spec('bad_spec', #{
|
|
|
|
handlers => [get_handler('Powerups'), NaughtyHandler],
|
|
|
|
event_handler => ?MODULE,
|
|
|
|
ip => ?SERVER_IP,
|
2016-12-19 11:11:05 +00:00
|
|
|
port => ?SERVER_PORT
|
2016-08-04 09:25:49 +00:00
|
|
|
})
|
|
|
|
catch
|
|
|
|
error:{bad_handler_spec, NaughtyHandler} ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
2018-07-31 07:51:12 +00:00
|
|
|
calls_with_cache(_) ->
|
|
|
|
Id = <<"call_with_cache">>,
|
|
|
|
{_, Service} = get_service_endpoint('Weapons'),
|
|
|
|
Request = {Service, get_weapon, [<<"Enforcer">>, self_to_bin()]},
|
|
|
|
InvalidRequest = {Service, get_weapon, [<<"Bio Rifle">>, self_to_bin()]},
|
|
|
|
Opts = woody_caching_client_options(),
|
|
|
|
Context = woody_context:new(Id),
|
|
|
|
|
|
|
|
{ok, Result} = woody_caching_client:call(Request, no_cache, Opts, Context),
|
|
|
|
{ok, Result} = woody_caching_client:call(Request, {cache_for, 1000}, Opts, Context),
|
|
|
|
{ok, Result} = woody_caching_client:call(Request, {cache_for, 1000}, Opts, Context),
|
|
|
|
{ok, Result} = woody_caching_client:call(Request, cache, Opts, Context),
|
|
|
|
{ok, Result} = woody_caching_client:call(Request, cache, Opts, Context),
|
|
|
|
|
|
|
|
|
|
|
|
{exception, _} = woody_caching_client:call(InvalidRequest, no_cache, Opts, Context),
|
|
|
|
{exception, _} = woody_caching_client:call(InvalidRequest, {cache_for, 1000}, Opts, Context),
|
|
|
|
{exception, _} = woody_caching_client:call(InvalidRequest, {cache_for, 1000}, Opts, Context),
|
|
|
|
{exception, _} = woody_caching_client:call(InvalidRequest, cache, Opts, Context),
|
|
|
|
{exception, _} = woody_caching_client:call(InvalidRequest, cache, Opts, Context),
|
|
|
|
ok.
|
2016-11-18 13:49:05 +00:00
|
|
|
|
2019-03-28 10:37:37 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
-define(
|
|
|
|
HACKNEY_URL(Scheme, Netloc, Path),
|
|
|
|
#hackney_url{scheme = Scheme, netloc = Netloc, raw_path = Path}
|
|
|
|
).
|
|
|
|
|
|
|
|
-define(
|
|
|
|
RESPONSE(Scheme, OldNetloc, NewNetloc, Path),
|
|
|
|
{?HACKNEY_URL(Scheme, OldNetloc, Path), ?HACKNEY_URL(Scheme, NewNetloc, Path)}
|
|
|
|
).
|
|
|
|
|
|
|
|
woody_resolver_inet(C) ->
|
|
|
|
WoodyState = woody_state:new(client, woody_context:new(), ?MODULE),
|
|
|
|
ok = inet_db:set_inet6(false),
|
|
|
|
{ok, ?RESPONSE(http, <<"127.0.0.1">>, <<"127.0.0.1">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"http://127.0.0.1/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(http, <<"localhost">>, <<"127.0.0.1:80">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"http://localhost/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(http, <<"localhost">>, <<"127.0.0.1:80">>, <<"/test?q=a">>)} =
|
|
|
|
woody_resolver:resolve_url("http://localhost/test?q=a", WoodyState),
|
|
|
|
{ok, ?RESPONSE(https, <<"localhost:8080">>, <<"127.0.0.1:8080">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"https://localhost:8080/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(https, <<"localhost">>, <<"127.0.0.1:443">>, <<>>)} =
|
|
|
|
woody_resolver:resolve_url(<<"https://localhost">>, WoodyState),
|
|
|
|
ok = inet_db:set_inet6(?config(env_inet6, C)).
|
|
|
|
|
|
|
|
woody_resolver_inet6(C) ->
|
|
|
|
WoodyState = woody_state:new(client, woody_context:new(), ?MODULE),
|
|
|
|
ok = inet_db:set_inet6(true),
|
|
|
|
{ok, ?RESPONSE(http, <<"[::1]">>, <<"[::1]">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"http://[::1]/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(http, <<"localhost">>, <<"[::1]:80">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"http://localhost/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(http, <<"localhost">>, <<"[::1]:80">>, <<"/test?q=a">>)} =
|
|
|
|
woody_resolver:resolve_url("http://localhost/test?q=a", WoodyState),
|
|
|
|
{ok, ?RESPONSE(https, <<"localhost:8080">>, <<"[::1]:8080">>, <<"/test">>)} =
|
|
|
|
woody_resolver:resolve_url(<<"https://localhost:8080/test">>, WoodyState),
|
|
|
|
{ok, ?RESPONSE(https, <<"localhost">>, <<"[::1]:443">>, <<>>)} =
|
|
|
|
woody_resolver:resolve_url(<<"https://localhost">>, WoodyState),
|
|
|
|
ok = inet_db:set_inet6(?config(env_inet6, C)).
|
|
|
|
|
|
|
|
woody_resolver_errors(_) ->
|
|
|
|
WoodyState = woody_state:new(client, woody_context:new(), ?MODULE),
|
|
|
|
{error, nxdomain} = woody_resolver:resolve_url(<<"http://nxdomainme">>, WoodyState),
|
|
|
|
{error, unsupported_url_scheme} = woody_resolver:resolve_url(<<"ftp://localhost">>, WoodyState).
|
|
|
|
|
2016-04-14 07:40:33 +00:00
|
|
|
%%
|
|
|
|
%% supervisor callbacks
|
|
|
|
%%
|
|
|
|
init(_) ->
|
|
|
|
{ok, {
|
|
|
|
{one_for_one, 1, 1}, []
|
|
|
|
}}.
|
|
|
|
|
|
|
|
%%
|
2016-04-20 11:31:19 +00:00
|
|
|
%% woody_server_thrift_handler callbacks
|
2016-04-14 07:40:33 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
%% Weapons
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_function(switch_weapon, [CurrentWeapon, Direction, Shift, To], Context, #{meta_test_id := AnnotTestId}) ->
|
|
|
|
ok = send_msg(To, {woody_context:get_rpc_id(parent_id, Context), CurrentWeapon}),
|
|
|
|
CheckAnnot = is_meta_check_required(AnnotTestId, woody_context:get_rpc_id(trace_id, Context)),
|
|
|
|
ok = check_meta(CheckAnnot, Context, CurrentWeapon),
|
2016-11-18 13:49:05 +00:00
|
|
|
switch_weapon(CurrentWeapon, Direction, Shift, Context, CheckAnnot);
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_function(get_weapon, [Name, To], Context, _Opts) ->
|
2018-01-30 09:50:18 +00:00
|
|
|
ok = handle_sleep(Context),
|
2016-12-19 11:11:05 +00:00
|
|
|
ok = send_msg(To, {woody_context:get_rpc_id(parent_id, Context), Name}),
|
|
|
|
case genlib_map:get(Name, ?WEAPONS) of
|
2016-05-25 12:59:01 +00:00
|
|
|
#'Weapon'{ammo = 0} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
throw(?WEAPON_FAILURE("out of ammo"));
|
2016-05-25 12:59:01 +00:00
|
|
|
Weapon = #'Weapon'{} ->
|
2016-12-19 11:11:05 +00:00
|
|
|
{ok, Weapon}
|
|
|
|
end;
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
%% Powerups
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_function(get_powerup, [Name, To], Context, _Opts) ->
|
|
|
|
ok = send_msg(To, {woody_context:get_rpc_id(parent_id, Context), Name}),
|
|
|
|
{ok, return_powerup(Name)};
|
2016-05-20 20:07:43 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_function(ProxyGetPowerup, [Name, To], Context, _Opts) when
|
2016-11-18 13:49:05 +00:00
|
|
|
ProxyGetPowerup =:= proxy_get_powerup orelse
|
|
|
|
ProxyGetPowerup =:= bad_proxy_get_powerup
|
2016-05-20 23:26:59 +00:00
|
|
|
->
|
2016-12-19 11:11:05 +00:00
|
|
|
try call(Context, 'Powerups', get_powerup, [Name, self_to_bin()])
|
|
|
|
catch
|
|
|
|
Class:Reason ->
|
|
|
|
erlang:raise(Class, Reason, erlang:get_stacktrace())
|
|
|
|
after
|
|
|
|
{ok, _} = receive_msg(Name, Context),
|
|
|
|
ok = send_msg(To, {woody_context:get_rpc_id(parent_id, Context), Name})
|
|
|
|
end;
|
2016-05-20 23:26:59 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_function(like_powerup, [Name, To], Context, _Opts) ->
|
|
|
|
ok = send_msg(To, {woody_context:get_rpc_id(parent_id, Context), Name}),
|
|
|
|
{ok, ok}.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
%%
|
2016-04-20 11:31:19 +00:00
|
|
|
%% woody_event_handler callbacks
|
2016-04-14 07:40:33 +00:00
|
|
|
%%
|
2016-12-19 11:11:05 +00:00
|
|
|
handle_event(Event, RpcId = #{
|
|
|
|
trace_id := TraceId, parent_id := ParentId}, Meta = #{code := Code}, _)
|
|
|
|
when
|
|
|
|
(
|
|
|
|
TraceId =:= <<"call_pass_thru_except">> orelse
|
|
|
|
TraceId =:= <<"call_pass_thru_resource_unavailable">> orelse
|
|
|
|
TraceId =:= <<"call_pass_thru_result_unexpected">> orelse
|
|
|
|
TraceId =:= <<"call_pass_thru_result_unknown">>
|
|
|
|
) andalso
|
|
|
|
(Event =:= ?EV_CLIENT_RECEIVE orelse Event =:= ?EV_SERVER_SEND)
|
|
|
|
->
|
|
|
|
_ = handle_proxy_event(Event, Code, TraceId, ParentId),
|
|
|
|
log_event(Event, RpcId, Meta);
|
|
|
|
handle_event(Event, RpcId, Meta, _) ->
|
|
|
|
log_event(Event, RpcId, Meta).
|
|
|
|
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, Code, TraceId, ParentId) when TraceId =/= ParentId ->
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, Code, TraceId);
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, Code, TraceId, ParentId) when TraceId =:= ParentId ->
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, Code, TraceId);
|
|
|
|
handle_proxy_event(_, _, _, _) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, 200, <<"call_pass_thru_except">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, 500, <<"call_pass_thru_except">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, 500, <<"call_pass_thru_result_unexpected">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, 502, <<"call_pass_thru_result_unexpected">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, 503, <<"call_pass_thru_resource_unavailable">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, 502, <<"call_pass_thru_resource_unavailable">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_CLIENT_RECEIVE, 504, <<"call_pass_thru_result_unknown">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(?EV_SERVER_SEND, 502, <<"call_pass_thru_result_unknown">>) ->
|
|
|
|
ok;
|
|
|
|
handle_proxy_event(Event, Code, Descr) ->
|
|
|
|
erlang:error(badarg, [Event, Code, Descr]).
|
|
|
|
|
|
|
|
log_event(Event, RpcId, Meta) ->
|
2018-01-30 09:50:18 +00:00
|
|
|
%% _ woody_event_handler_default:handle_event(Event, RpcId, Meta, []).
|
|
|
|
{_Severity, {Format, Msg}, EvMeta} = woody_event_handler:format_event_and_meta(
|
|
|
|
Event, Meta, RpcId,
|
|
|
|
[event, role, service, service_schema, function, type, args, metadata, deadline, status, url, code, result]
|
|
|
|
),
|
|
|
|
ct:pal(Format ++ "~nmeta: ~p", Msg ++ [EvMeta]).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
|
|
|
%%
|
2016-12-19 11:11:05 +00:00
|
|
|
%% cowboy_http_handler callbacks
|
2016-04-14 07:40:33 +00:00
|
|
|
%%
|
2016-12-19 11:11:05 +00:00
|
|
|
init({_, http}, Req, Code) ->
|
|
|
|
ct:pal("Cowboy fail server received request. Replying: ~p", [Code]),
|
|
|
|
{ok, Req1} = cowboy_req:reply(Code, Req),
|
|
|
|
{shutdown, Req1, Code}.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
handle(Req, _) ->
|
|
|
|
{ok, Req, neverhappen}.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
terminate(_, _, _) ->
|
|
|
|
ok.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
%%
|
|
|
|
%% internal functions
|
|
|
|
%%
|
|
|
|
gun_test_basic(Id, Gun, Expect, WithMsg) ->
|
|
|
|
Context = make_context(Id),
|
|
|
|
{Class, Reason} = get_except(Expect),
|
|
|
|
try call(Context, 'Weapons', get_weapon, [Gun, self_to_bin()]) of
|
|
|
|
Expect -> ok
|
|
|
|
catch
|
|
|
|
Class:Reason -> ok
|
|
|
|
end,
|
|
|
|
check_msg(WithMsg, Gun, Context).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
get_except({ok, _}) ->
|
|
|
|
{undefined, undefined};
|
|
|
|
get_except({exception, _}) ->
|
|
|
|
{undefined, undefined};
|
|
|
|
get_except(Except = {_Class, _Reason}) ->
|
|
|
|
Except.
|
|
|
|
|
|
|
|
make_context(ReqId) ->
|
|
|
|
woody_context:new(ReqId).
|
|
|
|
|
|
|
|
call(Context, ServiceName, Function, Args) ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{Url, Service} = get_service_endpoint(ServiceName),
|
2016-12-19 11:11:05 +00:00
|
|
|
woody_client:call({Service, Function, Args}, #{url => Url, event_handler => ?MODULE}, Context).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-05-25 12:59:01 +00:00
|
|
|
get_service_endpoint('Weapons') ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{
|
|
|
|
genlib:to_binary(?URL_BASE ++ ?PATH_WEAPONS),
|
2016-05-25 12:59:01 +00:00
|
|
|
{?THRIFT_DEFS, 'Weapons'}
|
2016-04-14 07:40:33 +00:00
|
|
|
};
|
2016-05-25 12:59:01 +00:00
|
|
|
get_service_endpoint('Powerups') ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{
|
|
|
|
genlib:to_binary(?URL_BASE ++ ?PATH_POWERUPS),
|
2016-05-25 12:59:01 +00:00
|
|
|
{?THRIFT_DEFS, 'Powerups'}
|
2019-03-28 10:37:37 +00:00
|
|
|
};
|
|
|
|
get_service_endpoint('The Void') ->
|
|
|
|
{
|
|
|
|
<<"http://nxdomainme">>,
|
|
|
|
{?THRIFT_DEFS, 'Weapons'}
|
2016-04-14 07:40:33 +00:00
|
|
|
}.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
check_msg(true, Msg, Context) ->
|
|
|
|
{ok, _} = receive_msg(Msg, Context);
|
2016-08-26 15:15:48 +00:00
|
|
|
check_msg(false, _, _) ->
|
|
|
|
ok.
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-11-18 13:49:05 +00:00
|
|
|
switch_weapon(CurrentWeapon, Direction, Shift, Context, CheckAnnot) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
{NextWName, NextWPos} = next_weapon(CurrentWeapon, Direction, Shift),
|
2016-11-18 13:49:05 +00:00
|
|
|
ContextAnnot = annotate_weapon(CheckAnnot, Context, NextWName, NextWPos),
|
2016-12-19 11:11:05 +00:00
|
|
|
case call(ContextAnnot, 'Weapons', get_weapon, [NextWName, self_to_bin()]) of
|
|
|
|
{exception, #'WeaponFailure'{code = <<"weapon_error">>, reason = <<"out of ammo">>}}
|
|
|
|
->
|
|
|
|
switch_weapon(CurrentWeapon, Direction, Shift + 1, Context, CheckAnnot);
|
|
|
|
Ok ->
|
|
|
|
Ok
|
2016-04-14 07:40:33 +00:00
|
|
|
end.
|
|
|
|
|
2016-11-18 13:49:05 +00:00
|
|
|
annotate_weapon(true, Context, WName, WPos) ->
|
2016-12-19 11:11:05 +00:00
|
|
|
woody_context:add_meta(Context, #{genlib:to_binary(WPos) => WName});
|
2016-11-18 13:49:05 +00:00
|
|
|
annotate_weapon(_, Context, _, _) ->
|
|
|
|
Context.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
next_weapon(#'Weapon'{slot_pos = Pos}, next, Shift) ->
|
|
|
|
next_weapon(Pos + Shift);
|
|
|
|
next_weapon(#'Weapon'{slot_pos = Pos}, prev, Shift) ->
|
|
|
|
next_weapon(Pos - Shift).
|
2016-04-14 07:40:33 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
next_weapon(Pos) when is_integer(Pos), Pos >= 0, Pos < 10 ->
|
2016-11-18 13:49:05 +00:00
|
|
|
{genlib_map:get(Pos, ?SLOTS, <<"no weapon">>), Pos};
|
2016-12-19 11:11:05 +00:00
|
|
|
next_weapon(_) ->
|
|
|
|
throw(?WEAPON_STACK_OVERFLOW).
|
|
|
|
|
|
|
|
return_powerup(<<"Invisibility">>) ->
|
|
|
|
woody_error:raise(system, {internal, result_unknown, ?ERR_POWERUP_STATE_UNKNOWN});
|
|
|
|
return_powerup(Name) when is_binary(Name) ->
|
|
|
|
return_powerup(genlib_map:get(Name, ?POWERUPS, ?BAD_POWERUP_REPLY));
|
|
|
|
return_powerup(#'Powerup'{level = Level}) when Level == 0 ->
|
|
|
|
throw(?POWERUP_FAILURE("run out"));
|
|
|
|
return_powerup(#'Powerup'{time_left = Time}) when Time == 0 ->
|
|
|
|
woody_error:raise(system, {internal, resource_unavailable, ?ERR_POWERUP_UNAVAILABLE});
|
|
|
|
return_powerup(P = #'Powerup'{}) ->
|
2016-05-20 20:07:43 +00:00
|
|
|
P;
|
2016-12-19 11:11:05 +00:00
|
|
|
return_powerup(P = ?BAD_POWERUP_REPLY) ->
|
2016-05-20 20:07:43 +00:00
|
|
|
P.
|
|
|
|
|
2016-04-14 07:40:33 +00:00
|
|
|
self_to_bin() ->
|
|
|
|
genlib:to_binary(pid_to_list(self())).
|
|
|
|
|
|
|
|
send_msg(<<>>, _) ->
|
|
|
|
ok;
|
|
|
|
send_msg(To, Msg) when is_pid(To) ->
|
2016-05-20 23:26:59 +00:00
|
|
|
To ! {self(), Msg},
|
|
|
|
ok;
|
2016-04-14 07:40:33 +00:00
|
|
|
send_msg(To, Msg) when is_binary(To) ->
|
|
|
|
send_msg(list_to_pid(genlib:to_list(To)), Msg).
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
receive_msg(Msg, Context) ->
|
|
|
|
Msg1 = {woody_context:get_rpc_id(span_id, Context), Msg},
|
2016-04-14 07:40:33 +00:00
|
|
|
receive
|
2016-12-19 11:11:05 +00:00
|
|
|
{From, Msg1} ->
|
2016-04-14 07:40:33 +00:00
|
|
|
{ok, From}
|
|
|
|
after 1000 ->
|
|
|
|
error(get_msg_timeout)
|
|
|
|
end.
|
2016-05-20 20:07:43 +00:00
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
is_meta_check_required(AnnotTestId, AnnotTestId) ->
|
2016-11-18 13:49:05 +00:00
|
|
|
true;
|
2016-12-19 11:11:05 +00:00
|
|
|
is_meta_check_required(_, _) ->
|
2016-11-18 13:49:05 +00:00
|
|
|
false.
|
|
|
|
|
2016-12-19 11:11:05 +00:00
|
|
|
check_meta(true, Context, #'Weapon'{name = WName, slot_pos = WSlot}) ->
|
2016-11-18 13:49:05 +00:00
|
|
|
WSlotBin = genlib:to_binary(WSlot),
|
2016-12-19 11:11:05 +00:00
|
|
|
WName = woody_context:get_meta(WSlotBin, Context),
|
2016-11-18 13:49:05 +00:00
|
|
|
ok;
|
2016-12-19 11:11:05 +00:00
|
|
|
check_meta(_, _, _) ->
|
2016-11-18 13:49:05 +00:00
|
|
|
ok.
|
2016-12-19 11:11:05 +00:00
|
|
|
|
2018-01-30 09:50:18 +00:00
|
|
|
handle_sleep(Context) ->
|
|
|
|
case woody_context:get_meta(<<"sleep">>, Context) of
|
|
|
|
undefined ->
|
|
|
|
ok;
|
|
|
|
BinTimer ->
|
|
|
|
timer:sleep(binary_to_integer(BinTimer))
|
|
|
|
end.
|
|
|
|
|