2013-06-26 19:55:29 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% @author Evgeniy Khramtsov <>
|
2016-01-13 12:29:14 +01:00
|
|
|
%%% @copyright (C) 2013-2016, Evgeniy Khramtsov
|
2013-06-26 19:55:29 +02:00
|
|
|
%%% @doc
|
|
|
|
%%%
|
|
|
|
%%% @end
|
|
|
|
%%% Created : 27 Jun 2013 by Evgeniy Khramtsov <>
|
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-module(suite).
|
|
|
|
|
|
|
|
%% API
|
|
|
|
-compile(export_all).
|
|
|
|
|
|
|
|
-include("suite.hrl").
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init_config(Config) ->
|
|
|
|
DataDir = proplists:get_value(data_dir, Config),
|
|
|
|
PrivDir = proplists:get_value(priv_dir, Config),
|
|
|
|
[_, _|Tail] = lists:reverse(filename:split(DataDir)),
|
|
|
|
BaseDir = filename:join(lists:reverse(Tail)),
|
2015-04-09 17:14:30 +02:00
|
|
|
ConfigPathTpl = filename:join([DataDir, "ejabberd.yml"]),
|
2013-06-26 19:55:29 +02:00
|
|
|
LogPath = filename:join([PrivDir, "ejabberd.log"]),
|
|
|
|
SASLPath = filename:join([PrivDir, "sasl.log"]),
|
|
|
|
MnesiaDir = filename:join([PrivDir, "mnesia"]),
|
|
|
|
CertFile = filename:join([DataDir, "cert.pem"]),
|
|
|
|
{ok, CWD} = file:get_cwd(),
|
|
|
|
{ok, _} = file:copy(CertFile, filename:join([CWD, "cert.pem"])),
|
2015-04-09 17:14:30 +02:00
|
|
|
{ok, CfgContentTpl} = file:read_file(ConfigPathTpl),
|
|
|
|
CfgContent = process_config_tpl(CfgContentTpl, [
|
|
|
|
{c2s_port, 5222},
|
2016-04-08 11:36:15 +02:00
|
|
|
{loglevel, 4},
|
2015-04-20 16:16:30 +02:00
|
|
|
{s2s_port, 5269},
|
2015-04-09 17:14:30 +02:00
|
|
|
{web_port, 5280},
|
|
|
|
{mysql_server, <<"localhost">>},
|
|
|
|
{mysql_port, 3306},
|
|
|
|
{mysql_db, <<"ejabberd_test">>},
|
|
|
|
{mysql_user, <<"ejabberd_test">>},
|
|
|
|
{mysql_pass, <<"ejabberd_test">>},
|
|
|
|
{pgsql_server, <<"localhost">>},
|
|
|
|
{pgsql_port, 5432},
|
|
|
|
{pgsql_db, <<"ejabberd_test">>},
|
|
|
|
{pgsql_user, <<"ejabberd_test">>},
|
|
|
|
{pgsql_pass, <<"ejabberd_test">>}
|
|
|
|
]),
|
|
|
|
ConfigPath = filename:join([CWD, "ejabberd.yml"]),
|
|
|
|
ok = file:write_file(ConfigPath, CfgContent),
|
2016-05-30 14:35:53 +02:00
|
|
|
NewEjPath = filename:join([CWD, "ejabberd-0.0.1"]),
|
|
|
|
TopDir = filename:dirname(filename:dirname(DataDir)),
|
|
|
|
ok = file:make_symlink(TopDir, NewEjPath),
|
|
|
|
code:replace_path(ejabberd, NewEjPath),
|
2013-06-27 08:38:36 +02:00
|
|
|
ok = application:load(sasl),
|
|
|
|
ok = application:load(mnesia),
|
|
|
|
ok = application:load(ejabberd),
|
2013-06-26 19:55:29 +02:00
|
|
|
application:set_env(ejabberd, config, ConfigPath),
|
|
|
|
application:set_env(ejabberd, log_path, LogPath),
|
|
|
|
application:set_env(sasl, sasl_error_logger, {file, SASLPath}),
|
|
|
|
application:set_env(mnesia, dir, MnesiaDir),
|
2015-04-09 17:14:30 +02:00
|
|
|
[{server_port, ct:get_config(c2s_port, 5222)},
|
2013-06-26 19:55:29 +02:00
|
|
|
{server_host, "localhost"},
|
|
|
|
{server, ?COMMON_VHOST},
|
|
|
|
{user, <<"test_single">>},
|
2014-07-19 15:23:13 +02:00
|
|
|
{master_nick, <<"master_nick">>},
|
|
|
|
{slave_nick, <<"slave_nick">>},
|
|
|
|
{room_subject, <<"hello, world!">>},
|
2013-06-26 19:55:29 +02:00
|
|
|
{certfile, CertFile},
|
|
|
|
{base_dir, BaseDir},
|
|
|
|
{resource, <<"resource">>},
|
2014-07-20 20:43:16 +02:00
|
|
|
{master_resource, <<"master_resource">>},
|
|
|
|
{slave_resource, <<"slave_resource">>},
|
2016-05-13 17:22:59 +02:00
|
|
|
{password, <<"password!@#$%^&*()'\"`~<>+-/;:_=[]{}|\\">>},
|
2016-03-24 10:02:13 +01:00
|
|
|
{backends, get_config_backends()}
|
2013-06-26 19:55:29 +02:00
|
|
|
|Config].
|
|
|
|
|
2016-03-24 10:02:13 +01:00
|
|
|
%% Read environment variable CT_DB=riak,mysql to limit the backends to test.
|
|
|
|
%% You can thus limit the backend you want to test with:
|
|
|
|
%% CT_BACKENDS=riak,mysql rebar ct suites=ejabberd
|
|
|
|
get_config_backends() ->
|
|
|
|
case os:getenv("CT_BACKENDS") of
|
|
|
|
false -> all;
|
|
|
|
String ->
|
|
|
|
Backends0 = string:tokens(String, ","),
|
|
|
|
lists:map(fun(Backend) -> string:strip(Backend, both, $ ) end, Backends0)
|
|
|
|
end.
|
|
|
|
|
2015-04-09 17:14:30 +02:00
|
|
|
process_config_tpl(Content, []) ->
|
|
|
|
Content;
|
|
|
|
process_config_tpl(Content, [{Name, DefaultValue} | Rest]) ->
|
|
|
|
Val = case ct:get_config(Name, DefaultValue) of
|
|
|
|
V1 when is_integer(V1) ->
|
|
|
|
integer_to_binary(V1);
|
|
|
|
V2 when is_atom(V2) ->
|
|
|
|
atom_to_binary(V2, latin1);
|
|
|
|
V3 ->
|
|
|
|
V3
|
|
|
|
end,
|
|
|
|
NewContent = binary:replace(Content, <<"@@",(atom_to_binary(Name, latin1))/binary, "@@">>, Val),
|
|
|
|
process_config_tpl(NewContent, Rest).
|
|
|
|
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
connect(Config) ->
|
|
|
|
{ok, Sock} = ejabberd_socket:connect(
|
|
|
|
?config(server_host, Config),
|
|
|
|
?config(server_port, Config),
|
|
|
|
[binary, {packet, 0}, {active, false}]),
|
|
|
|
init_stream(set_opt(socket, Sock, Config)).
|
|
|
|
|
|
|
|
init_stream(Config) ->
|
|
|
|
ok = send_text(Config, io_lib:format(?STREAM_HEADER,
|
|
|
|
[?config(server, Config)])),
|
|
|
|
{xmlstreamstart, <<"stream:stream">>, Attrs} = recv(),
|
2016-02-03 19:22:59 +01:00
|
|
|
<<"jabber:client">> = fxml:get_attr_s(<<"xmlns">>, Attrs),
|
|
|
|
<<"1.0">> = fxml:get_attr_s(<<"version">>, Attrs),
|
2013-06-26 19:55:29 +02:00
|
|
|
#stream_features{sub_els = Fs} = recv(),
|
|
|
|
Mechs = lists:flatmap(
|
|
|
|
fun(#sasl_mechanisms{list = Ms}) ->
|
|
|
|
Ms;
|
|
|
|
(_) ->
|
|
|
|
[]
|
|
|
|
end, Fs),
|
|
|
|
lists:foldl(
|
|
|
|
fun(#feature_register{}, Acc) ->
|
|
|
|
set_opt(register, true, Acc);
|
|
|
|
(#starttls{}, Acc) ->
|
|
|
|
set_opt(starttls, true, Acc);
|
|
|
|
(#compression{methods = Ms}, Acc) ->
|
|
|
|
set_opt(compression, Ms, Acc);
|
|
|
|
(_, Acc) ->
|
|
|
|
Acc
|
|
|
|
end, set_opt(mechs, Mechs, Config), Fs).
|
|
|
|
|
|
|
|
disconnect(Config) ->
|
|
|
|
Socket = ?config(socket, Config),
|
|
|
|
ok = ejabberd_socket:send(Socket, ?STREAM_TRAILER),
|
|
|
|
{xmlstreamend, <<"stream:stream">>} = recv(),
|
|
|
|
ejabberd_socket:close(Socket),
|
|
|
|
Config.
|
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
close_socket(Config) ->
|
|
|
|
Socket = ?config(socket, Config),
|
|
|
|
ejabberd_socket:close(Socket),
|
|
|
|
Config.
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
starttls(Config) ->
|
|
|
|
send(Config, #starttls{}),
|
|
|
|
#starttls_proceed{} = recv(),
|
|
|
|
TLSSocket = ejabberd_socket:starttls(
|
|
|
|
?config(socket, Config),
|
|
|
|
[{certfile, ?config(certfile, Config)},
|
|
|
|
connect]),
|
|
|
|
init_stream(set_opt(socket, TLSSocket, Config)).
|
|
|
|
|
|
|
|
zlib(Config) ->
|
|
|
|
send(Config, #compress{methods = [<<"zlib">>]}),
|
|
|
|
#compressed{} = recv(),
|
|
|
|
ZlibSocket = ejabberd_socket:compress(?config(socket, Config)),
|
|
|
|
init_stream(set_opt(socket, ZlibSocket, Config)).
|
|
|
|
|
|
|
|
auth(Config) ->
|
|
|
|
Mechs = ?config(mechs, Config),
|
|
|
|
HaveMD5 = lists:member(<<"DIGEST-MD5">>, Mechs),
|
|
|
|
HavePLAIN = lists:member(<<"PLAIN">>, Mechs),
|
|
|
|
if HavePLAIN ->
|
|
|
|
auth_SASL(<<"PLAIN">>, Config);
|
|
|
|
HaveMD5 ->
|
|
|
|
auth_SASL(<<"DIGEST-MD5">>, Config);
|
|
|
|
true ->
|
|
|
|
ct:fail(no_sasl_mechanisms_available)
|
|
|
|
end.
|
|
|
|
|
|
|
|
bind(Config) ->
|
|
|
|
#iq{type = result, sub_els = [#bind{}]} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#bind{resource = ?config(resource, Config)}]}),
|
|
|
|
Config.
|
|
|
|
|
|
|
|
open_session(Config) ->
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set, sub_els = [#session{}]}),
|
|
|
|
Config.
|
|
|
|
|
|
|
|
auth_SASL(Mech, Config) ->
|
|
|
|
{Response, SASL} = sasl_new(Mech,
|
|
|
|
?config(user, Config),
|
|
|
|
?config(server, Config),
|
|
|
|
?config(password, Config)),
|
|
|
|
send(Config, #sasl_auth{mechanism = Mech, text = Response}),
|
|
|
|
wait_auth_SASL_result(set_opt(sasl, SASL, Config)).
|
|
|
|
|
|
|
|
wait_auth_SASL_result(Config) ->
|
|
|
|
case recv() of
|
|
|
|
#sasl_success{} ->
|
|
|
|
ejabberd_socket:reset_stream(?config(socket, Config)),
|
|
|
|
send_text(Config,
|
|
|
|
io_lib:format(?STREAM_HEADER,
|
|
|
|
[?config(server, Config)])),
|
|
|
|
{xmlstreamstart, <<"stream:stream">>, Attrs} = recv(),
|
2016-02-03 19:22:59 +01:00
|
|
|
<<"jabber:client">> = fxml:get_attr_s(<<"xmlns">>, Attrs),
|
|
|
|
<<"1.0">> = fxml:get_attr_s(<<"version">>, Attrs),
|
2014-07-22 11:59:31 +02:00
|
|
|
#stream_features{sub_els = Fs} = recv(),
|
|
|
|
lists:foldl(
|
|
|
|
fun(#feature_sm{}, ConfigAcc) ->
|
|
|
|
set_opt(sm, true, ConfigAcc);
|
2014-09-11 18:18:20 +02:00
|
|
|
(#feature_csi{}, ConfigAcc) ->
|
|
|
|
set_opt(csi, true, ConfigAcc);
|
2014-07-22 11:59:31 +02:00
|
|
|
(_, ConfigAcc) ->
|
|
|
|
ConfigAcc
|
|
|
|
end, Config, Fs);
|
2013-06-26 19:55:29 +02:00
|
|
|
#sasl_challenge{text = ClientIn} ->
|
|
|
|
{Response, SASL} = (?config(sasl, Config))(ClientIn),
|
|
|
|
send(Config, #sasl_response{text = Response}),
|
|
|
|
wait_auth_SASL_result(set_opt(sasl, SASL, Config));
|
|
|
|
#sasl_failure{} ->
|
|
|
|
ct:fail(sasl_auth_failed)
|
|
|
|
end.
|
|
|
|
|
|
|
|
re_register(Config) ->
|
|
|
|
User = ?config(user, Config),
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
Pass = ?config(password, Config),
|
|
|
|
{atomic, ok} = ejabberd_auth:try_register(User, Server, Pass),
|
|
|
|
ok.
|
|
|
|
|
2015-04-09 16:39:52 +02:00
|
|
|
match_failure(Received, [Match]) when is_list(Match)->
|
|
|
|
ct:fail("Received input:~n~n~p~n~ndon't match expected patterns:~n~n~s", [Received, Match]);
|
2015-02-04 14:42:03 +01:00
|
|
|
match_failure(Received, Matches) ->
|
|
|
|
ct:fail("Received input:~n~n~p~n~ndon't match expected patterns:~n~n~p", [Received, Matches]).
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
recv() ->
|
|
|
|
receive
|
|
|
|
{'$gen_event', {xmlstreamelement, El}} ->
|
|
|
|
Pkt = xmpp_codec:decode(fix_ns(El)),
|
|
|
|
ct:pal("recv: ~p ->~n~s", [El, xmpp_codec:pp(Pkt)]),
|
|
|
|
Pkt;
|
|
|
|
{'$gen_event', Event} ->
|
|
|
|
Event
|
|
|
|
end.
|
|
|
|
|
|
|
|
fix_ns(#xmlel{name = Tag, attrs = Attrs} = El)
|
|
|
|
when Tag == <<"stream:features">>; Tag == <<"stream:error">> ->
|
|
|
|
NewAttrs = [{<<"xmlns">>, <<"http://etherx.jabber.org/streams">>}
|
|
|
|
|lists:keydelete(<<"xmlns">>, 1, Attrs)],
|
|
|
|
El#xmlel{attrs = NewAttrs};
|
|
|
|
fix_ns(#xmlel{name = Tag, attrs = Attrs} = El)
|
|
|
|
when Tag == <<"message">>; Tag == <<"iq">>; Tag == <<"presence">> ->
|
|
|
|
NewAttrs = [{<<"xmlns">>, <<"jabber:client">>}
|
|
|
|
|lists:keydelete(<<"xmlns">>, 1, Attrs)],
|
|
|
|
El#xmlel{attrs = NewAttrs};
|
|
|
|
fix_ns(El) ->
|
|
|
|
El.
|
|
|
|
|
|
|
|
send_text(Config, Text) ->
|
|
|
|
ejabberd_socket:send(?config(socket, Config), Text).
|
|
|
|
|
|
|
|
send(State, Pkt) ->
|
|
|
|
{NewID, NewPkt} = case Pkt of
|
|
|
|
#message{id = I} ->
|
|
|
|
ID = id(I),
|
|
|
|
{ID, Pkt#message{id = ID}};
|
|
|
|
#presence{id = I} ->
|
|
|
|
ID = id(I),
|
|
|
|
{ID, Pkt#presence{id = ID}};
|
|
|
|
#iq{id = I} ->
|
|
|
|
ID = id(I),
|
|
|
|
{ID, Pkt#iq{id = ID}};
|
|
|
|
_ ->
|
|
|
|
{undefined, Pkt}
|
|
|
|
end,
|
|
|
|
El = xmpp_codec:encode(NewPkt),
|
|
|
|
ct:pal("sent: ~p <-~n~s", [El, xmpp_codec:pp(NewPkt)]),
|
2016-02-03 19:22:59 +01:00
|
|
|
ok = send_text(State, fxml:element_to_binary(El)),
|
2013-06-26 19:55:29 +02:00
|
|
|
NewID.
|
|
|
|
|
|
|
|
send_recv(State, IQ) ->
|
|
|
|
ID = send(State, IQ),
|
|
|
|
#iq{id = ID} = recv().
|
|
|
|
|
|
|
|
sasl_new(<<"PLAIN">>, User, Server, Password) ->
|
|
|
|
{<<User/binary, $@, Server/binary, 0, User/binary, 0, Password/binary>>,
|
|
|
|
fun (_) -> {error, <<"Invalid SASL challenge">>} end};
|
|
|
|
sasl_new(<<"DIGEST-MD5">>, User, Server, Password) ->
|
|
|
|
{<<"">>,
|
|
|
|
fun (ServerIn) ->
|
|
|
|
case cyrsasl_digest:parse(ServerIn) of
|
|
|
|
bad -> {error, <<"Invalid SASL challenge">>};
|
|
|
|
KeyVals ->
|
2016-02-03 19:22:59 +01:00
|
|
|
Nonce = fxml:get_attr_s(<<"nonce">>, KeyVals),
|
2013-06-26 19:55:29 +02:00
|
|
|
CNonce = id(),
|
|
|
|
Realm = proplists:get_value(<<"realm">>, KeyVals, Server),
|
|
|
|
DigestURI = <<"xmpp/", Realm/binary>>,
|
|
|
|
NC = <<"00000001">>,
|
|
|
|
QOP = <<"auth">>,
|
|
|
|
AuthzId = <<"">>,
|
|
|
|
MyResponse = response(User, Password, Nonce, AuthzId,
|
|
|
|
Realm, CNonce, DigestURI, NC, QOP,
|
|
|
|
<<"AUTHENTICATE">>),
|
|
|
|
Resp = <<"username=\"", User/binary, "\",realm=\"",
|
|
|
|
Realm/binary, "\",nonce=\"", Nonce/binary,
|
|
|
|
"\",cnonce=\"", CNonce/binary, "\",nc=", NC/binary,
|
|
|
|
",qop=", QOP/binary, ",digest-uri=\"",
|
|
|
|
DigestURI/binary, "\",response=\"",
|
|
|
|
MyResponse/binary, "\"">>,
|
|
|
|
{Resp,
|
|
|
|
fun (ServerIn2) ->
|
|
|
|
case cyrsasl_digest:parse(ServerIn2) of
|
|
|
|
bad -> {error, <<"Invalid SASL challenge">>};
|
2013-06-26 20:22:24 +02:00
|
|
|
_KeyVals2 ->
|
|
|
|
{<<"">>,
|
|
|
|
fun (_) ->
|
|
|
|
{error,
|
|
|
|
<<"Invalid SASL challenge">>}
|
|
|
|
end}
|
2013-06-26 19:55:29 +02:00
|
|
|
end
|
|
|
|
end}
|
|
|
|
end
|
|
|
|
end}.
|
|
|
|
|
|
|
|
hex(S) ->
|
|
|
|
p1_sha:to_hexlist(S).
|
|
|
|
|
|
|
|
response(User, Passwd, Nonce, AuthzId, Realm, CNonce,
|
|
|
|
DigestURI, NC, QOP, A2Prefix) ->
|
|
|
|
A1 = case AuthzId of
|
|
|
|
<<"">> ->
|
2013-11-05 11:05:12 +01:00
|
|
|
<<((erlang:md5(<<User/binary, ":", Realm/binary, ":",
|
2013-06-26 19:55:29 +02:00
|
|
|
Passwd/binary>>)))/binary,
|
|
|
|
":", Nonce/binary, ":", CNonce/binary>>;
|
|
|
|
_ ->
|
2013-11-05 11:05:12 +01:00
|
|
|
<<((erlang:md5(<<User/binary, ":", Realm/binary, ":",
|
2013-06-26 19:55:29 +02:00
|
|
|
Passwd/binary>>)))/binary,
|
|
|
|
":", Nonce/binary, ":", CNonce/binary, ":",
|
|
|
|
AuthzId/binary>>
|
|
|
|
end,
|
|
|
|
A2 = case QOP of
|
|
|
|
<<"auth">> ->
|
|
|
|
<<A2Prefix/binary, ":", DigestURI/binary>>;
|
|
|
|
_ ->
|
|
|
|
<<A2Prefix/binary, ":", DigestURI/binary,
|
|
|
|
":00000000000000000000000000000000">>
|
|
|
|
end,
|
2013-11-05 11:05:12 +01:00
|
|
|
T = <<(hex((erlang:md5(A1))))/binary, ":", Nonce/binary,
|
2013-06-26 19:55:29 +02:00
|
|
|
":", NC/binary, ":", CNonce/binary, ":", QOP/binary,
|
2013-11-05 11:05:12 +01:00
|
|
|
":", (hex((erlang:md5(A2))))/binary>>,
|
|
|
|
hex((erlang:md5(T))).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
my_jid(Config) ->
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(?config(user, Config),
|
|
|
|
?config(server, Config),
|
|
|
|
?config(resource, Config)).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
server_jid(Config) ->
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(<<>>, ?config(server, Config), <<>>).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
pubsub_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(<<>>, <<"pubsub.", Server/binary>>, <<>>).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
proxy_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(<<>>, <<"proxy.", Server/binary>>, <<>>).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
muc_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(<<>>, <<"conference.", Server/binary>>, <<>>).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
muc_room_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
2016-02-11 10:19:23 +01:00
|
|
|
jid:make(<<"test">>, <<"conference.", Server/binary>>, <<>>).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
2016-03-10 15:42:37 +01:00
|
|
|
mix_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jid:make(<<>>, <<"mix.", Server/binary>>, <<>>).
|
|
|
|
|
|
|
|
mix_room_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jid:make(<<"test">>, <<"mix.", Server/binary>>, <<>>).
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
id() ->
|
|
|
|
id(undefined).
|
|
|
|
|
|
|
|
id(undefined) ->
|
|
|
|
randoms:get_string();
|
|
|
|
id(ID) ->
|
|
|
|
ID.
|
|
|
|
|
|
|
|
get_features(Config) ->
|
|
|
|
get_features(Config, server_jid(Config)).
|
|
|
|
|
|
|
|
get_features(Config, To) ->
|
|
|
|
#iq{type = result, sub_els = [#disco_info{features = Features}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#disco_info{}], to = To}),
|
|
|
|
Features.
|
|
|
|
|
|
|
|
is_feature_advertised(Config, Feature) ->
|
|
|
|
is_feature_advertised(Config, Feature, server_jid(Config)).
|
|
|
|
|
|
|
|
is_feature_advertised(Config, Feature, To) ->
|
|
|
|
Features = get_features(Config, To),
|
|
|
|
lists:member(Feature, Features).
|
|
|
|
|
|
|
|
set_opt(Opt, Val, Config) ->
|
|
|
|
[{Opt, Val}|lists:keydelete(Opt, 1, Config)].
|
|
|
|
|
|
|
|
wait_for_master(Config) ->
|
|
|
|
put_event(Config, slave_ready),
|
|
|
|
master_ready = get_event(Config).
|
|
|
|
|
|
|
|
wait_for_slave(Config) ->
|
|
|
|
put_event(Config, master_ready),
|
|
|
|
slave_ready = get_event(Config).
|
|
|
|
|
|
|
|
make_iq_result(#iq{from = From} = IQ) ->
|
|
|
|
IQ#iq{type = result, to = From, from = undefined, sub_els = []}.
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Clients puts and gets events via this relay.
|
|
|
|
%%%===================================================================
|
|
|
|
start_event_relay() ->
|
|
|
|
spawn(fun event_relay/0).
|
|
|
|
|
|
|
|
stop_event_relay(Config) ->
|
|
|
|
Pid = ?config(event_relay, Config),
|
|
|
|
exit(Pid, normal).
|
|
|
|
|
|
|
|
event_relay() ->
|
|
|
|
event_relay([], []).
|
|
|
|
|
|
|
|
event_relay(Events, Subscribers) ->
|
|
|
|
receive
|
|
|
|
{subscribe, From} ->
|
|
|
|
From ! {ok, self()},
|
|
|
|
lists:foreach(
|
|
|
|
fun(Event) -> From ! {event, Event, self()}
|
|
|
|
end, Events),
|
|
|
|
event_relay(Events, [From|Subscribers]);
|
|
|
|
{put, Event, From} ->
|
|
|
|
From ! {ok, self()},
|
|
|
|
lists:foreach(
|
|
|
|
fun(Pid) when Pid /= From ->
|
|
|
|
Pid ! {event, Event, self()};
|
|
|
|
(_) ->
|
|
|
|
ok
|
|
|
|
end, Subscribers),
|
|
|
|
event_relay([Event|Events], Subscribers)
|
|
|
|
end.
|
|
|
|
|
|
|
|
subscribe_to_events(Config) ->
|
|
|
|
Relay = ?config(event_relay, Config),
|
|
|
|
Relay ! {subscribe, self()},
|
|
|
|
receive
|
|
|
|
{ok, Relay} ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
put_event(Config, Event) ->
|
|
|
|
Relay = ?config(event_relay, Config),
|
|
|
|
Relay ! {put, Event, self()},
|
|
|
|
receive
|
|
|
|
{ok, Relay} ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_event(Config) ->
|
|
|
|
Relay = ?config(event_relay, Config),
|
|
|
|
receive
|
|
|
|
{event, Event, Relay} ->
|
|
|
|
Event
|
|
|
|
end.
|