Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update XEP-0050: Ad-Hoc Commands #4043

Merged
merged 5 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 47 additions & 25 deletions src/adhoc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

-module(adhoc).
-author('[email protected]').
-xep([{xep, 50}, {version, "1.2"}]).
-xep([{xep, 50}, {version, "1.3"}]).
-export([parse_request/1,
produce_response/2,
produce_response/4,
Expand Down Expand Up @@ -105,33 +105,55 @@ produce_response(#adhoc_response{lang = _Lang,
actions = Actions,
notes = Notes,
elements = Elements}) ->
SessionID = if is_binary(ProvidedSessionID), ProvidedSessionID /= <<"">> ->
ProvidedSessionID;
true ->
USec = os:system_time(microsecond),
TS = calendar:system_time_to_rfc3339(USec, [{offset, "Z"},
{unit, microsecond}]),
list_to_binary(TS)
end,
ActionsEls = case Actions of
[] ->
[];
_ ->
ActionsElAttrs = case DefaultAction of
<<"">> -> [];
_ -> [{<<"execute">>, DefaultAction}]
end,
[#xmlel{name = <<"actions">>, attrs = ActionsElAttrs,
children = [#xmlel{name = Action} || Action <- Actions]}]
end,
NotesEls = lists:map(fun({Type, Text}) ->
#xmlel{name = <<"note">>,
attrs = [{<<"type">>, Type}],
children = [#xmlcdata{content = Text}]}
end, Notes),
SessionID = ensure_correct_session_id(ProvidedSessionID),
ActionsEls = maybe_actions_element(Actions, DefaultAction),
NotesEls = lists:map(fun note_to_xmlel/1, Notes),
#xmlel{name = <<"command">>,
attrs = [{<<"xmlns">>, ?NS_COMMANDS},
{<<"sessionid">>, SessionID},
{<<"node">>, Node},
{<<"status">>, list_to_binary(atom_to_list(Status))}],
children = ActionsEls ++ NotesEls ++ Elements}.

-spec ensure_correct_session_id(binary()) -> binary().
ensure_correct_session_id(SessionID) when is_binary(SessionID), SessionID /= <<>> ->
SessionID;
ensure_correct_session_id(_) ->
USec = os:system_time(microsecond),
TS = calendar:system_time_to_rfc3339(USec, [{offset, "Z"}, {unit, microsecond}]),
list_to_binary(TS).

-spec maybe_actions_element([binary()], binary()) -> [exml:element()].
maybe_actions_element([], _DefaultAction) ->
[];
maybe_actions_element(Actions, <<>>) ->
% If the "execute" attribute is absent, it defaults to "next".
AllActions = ensure_default_action_present(Actions, <<"next">>),
chrzaszcz marked this conversation as resolved.
Show resolved Hide resolved
[#xmlel{
name = <<"actions">>,
children = [#xmlel{name = Action} || Action <- AllActions]
}];
maybe_actions_element(Actions, DefaultAction) ->
% A form which has an <actions/> element and an "execute" attribute
% which evaluates to an action which is not allowed is invalid.
AllActions = ensure_default_action_present(Actions, DefaultAction),
[#xmlel{
name = <<"actions">>,
attrs = [{<<"execute">>, DefaultAction}],
children = [#xmlel{name = Action} || Action <- AllActions]
}].

-spec ensure_default_action_present([binary()], binary()) -> [binary()].
ensure_default_action_present(Actions, DefaultAction) ->
case lists:member(DefaultAction, Actions) of
true -> Actions;
false -> [DefaultAction | Actions]
end.

-spec note_to_xmlel({binary(), iodata()}) -> exml:element().
note_to_xmlel({Type, Text}) ->
#xmlel{
name = <<"note">>,
attrs = [{<<"type">>, Type}],
children = [#xmlcdata{content = Text}]
}.
230 changes: 230 additions & 0 deletions test/adhoc_SUITE.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,230 @@
%% @doc This suite tests API of adhoc module which implements XEP-0050: Ad-Hoc Commands
-module(adhoc_SUITE).
-compile([export_all, nowarn_export_all]).

-include_lib("exml/include/exml.hrl").
-include_lib("eunit/include/eunit.hrl").
-include("jlib.hrl").
-include("adhoc.hrl").

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Suite configuration
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

all() ->
[
{group, basic}
].

groups() ->
[
{basic, [parallel], [
parse_correct_request_with_form,
parse_correct_request_without_form,
parse_incorrect_request_wrong_type,
parse_incorrect_request_wrong_namespace,
produce_response_full,
produce_response_no_session_id,
produce_response_no_actions,
produce_response_no_default_action,
produce_response_default_action_not_present
]}
].

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Tests
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

parse_correct_request_with_form(_C) ->
parse_correct_request(sample_form()).

parse_correct_request_without_form(_C) ->
parse_correct_request(false).

parse_correct_request(Form) ->
% given
IqRequest =
case Form of
false -> sample_request();
_ -> sample_request([Form])
end,
% when
#adhoc_request{
lang = Lang,
node = Node,
session_id = SessionID,
action = Action,
xdata = XData,
others = Others
} = adhoc:parse_request(IqRequest),
% then
?assertEqual(Lang, <<"en-us">>),
?assertEqual(Node, <<"node_name">>),
?assertEqual(SessionID, <<"1">>),
?assertEqual(Action, <<"execute">>),
?assertEqual(XData, Form),
?assertEqual(Others, [#xmlel{name = <<"test">>}]).

parse_incorrect_request_wrong_type(_C) ->
% given
IqRequest = (sample_request())#iq{type = get},
% when
{error, Error} = adhoc:parse_request(IqRequest),
% then
?assert(is_bad_request(Error)).

parse_incorrect_request_wrong_namespace(_C) ->
% given
IqRequest = (sample_request())#iq{xmlns = <<"wrong_namespace">>},
% when
{error, Error} = adhoc:parse_request(IqRequest),
% then
?assert(is_bad_request(Error)).

produce_response_full(_C) ->
% given
Actions = [<<"next">>, <<"complete">>],
Notes = [{<<"info">>, <<"Information message.">>}],
AdditionalElements = [sample_form()],
AdhocResponse = #adhoc_response{
node = <<"node_name">>,
session_id = <<"1234">>,
status = executing,
default_action = <<"next">>,
actions = Actions,
notes = Notes,
elements = AdditionalElements
},
ExpectedActionsEls = [#xmlel{
name = <<"actions">>,
attrs = [{<<"execute">>, <<"next">>}],
children = [#xmlel{name = Action} || Action <- Actions]
}],
ExpectedNotesEls = [
#xmlel{
name = <<"note">>,
attrs = [{<<"type">>, Type}],
children = [#xmlcdata{content = Text}]
}
|| {Type, Text} <- Notes
],
ExpectedChildren = ExpectedActionsEls ++ ExpectedNotesEls ++ AdditionalElements,
% when
#xmlel{
name = <<"command">>,
attrs = Attrs,
children = Children
} = adhoc:produce_response(AdhocResponse),
% then
?assertEqual(<<"1234">>, proplists:get_value(<<"sessionid">>, Attrs)),
?assertEqual(<<"node_name">>, proplists:get_value(<<"node">>, Attrs)),
?assertEqual(<<"executing">>, proplists:get_value(<<"status">>, Attrs)),
?assertEqual(lists:sort(ExpectedChildren), lists:sort(Children)).

produce_response_no_session_id(_C) ->
% given
AdhocResponse = #adhoc_response{
session_id = <<"">>
pawlooss1 marked this conversation as resolved.
Show resolved Hide resolved
},
% when
#xmlel{
name = <<"command">>,
attrs = Attrs
} = adhoc:produce_response(AdhocResponse),
% then
SessionID = proplists:get_value(<<"sessionid">>, Attrs),
?assert(is_binary(SessionID)),
?assertNotEqual(<<"">>, SessionID).
pawlooss1 marked this conversation as resolved.
Show resolved Hide resolved

produce_response_no_actions(_C) ->
% given
AdhocResponse = #adhoc_response{
actions = []
},
% when
#xmlel{
name = <<"command">>,
children = Children
} = adhoc:produce_response(AdhocResponse),
% then
?assertEqual([], Children).

produce_response_no_default_action(_C) ->
% given
Actions = [<<"complete">>],
AdhocResponse = #adhoc_response{
actions = Actions
},
ExpectedActionsEls = [#xmlel{
name = <<"actions">>,
attrs = [],
children = [#xmlel{name = Action} || Action <- [<<"next">> | Actions]]
}],
% when
#xmlel{
name = <<"command">>,
children = Children
} = adhoc:produce_response(AdhocResponse),
% then
?assertEqual(lists:sort(ExpectedActionsEls), lists:sort(Children)).

produce_response_default_action_not_present(_C) ->
% given
Actions = [<<"complete">>],
AdhocResponse = #adhoc_response{
default_action = <<"prev">>,
actions = Actions
},
ExpectedActionsEls = [#xmlel{
name = <<"actions">>,
attrs = [{<<"execute">>, <<"prev">>}],
children = [#xmlel{name = Action} || Action <- [<<"prev">> | Actions]]
}],
% when
#xmlel{
name = <<"command">>,
children = Children
} = adhoc:produce_response(AdhocResponse),
% then
?assertEqual(lists:sort(ExpectedActionsEls), lists:sort(Children)).

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Helpers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

sample_form() ->
#xmlel{
name = <<"x">>,
attrs = [
{<<"xmlns">>, <<"jabber:x:data">>},
{<<"type">>, <<"form">>}
],
children = []
}.

sample_request() ->
sample_request([]).

sample_request(MaybeForm) ->
#iq{
type = set,
lang = <<"en-us">>,
sub_el = #xmlel{
attrs = [
{<<"node">>, <<"node_name">>},
{<<"sessionid">>, <<"1">>},
{<<"action">>, <<"execute">>}
],
children = [#xmlel{name = <<"test">>}] ++ MaybeForm
},
xmlns = ?NS_COMMANDS
}.

is_bad_request(#xmlel{
name = <<"error">>,
attrs = [{<<"code">>, <<"400">>}, {<<"type">>, <<"modify">>}],
children = [#xmlel{name = <<"bad-request">>}]
}) ->
true;
is_bad_request(_) ->
false.