2013-04-08 11:12:54 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% @author Evgeniy Khramtsov <ekhramtsov@process-one.net>
|
|
|
|
%%% @copyright (C) 2013, Evgeniy Khramtsov
|
|
|
|
%%% @doc
|
|
|
|
%%%
|
|
|
|
%%% @end
|
|
|
|
%%% Created : 2 Jun 2013 by Evgeniy Khramtsov <ekhramtsov@process-one.net>
|
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-module(ejabberd_SUITE).
|
|
|
|
|
|
|
|
-compile(export_all).
|
|
|
|
|
|
|
|
-include_lib("common_test/include/ct.hrl").
|
2013-06-13 18:34:45 +02:00
|
|
|
-include("xml.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("ns.hrl").
|
|
|
|
-include("ejabberd.hrl").
|
2013-06-15 18:45:18 +02:00
|
|
|
-include("mod_proxy65.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("xmpp_codec.hrl").
|
|
|
|
|
|
|
|
-define(STREAM_HEADER,
|
|
|
|
<<"<?xml version='1.0'?><stream:stream "
|
|
|
|
"xmlns:stream='http://etherx.jabber.org/stream"
|
|
|
|
"s' xmlns='jabber:client' to='~s' version='1.0"
|
|
|
|
"'>">>).
|
|
|
|
|
|
|
|
-define(STREAM_TRAILER, <<"</stream:stream>">>).
|
|
|
|
|
|
|
|
-define(PUBSUB(Node), <<(?NS_PUBSUB)/binary, "#", Node>>).
|
|
|
|
|
2013-06-15 15:28:14 +02:00
|
|
|
-define(recv2(P1, P2),
|
|
|
|
(fun() ->
|
|
|
|
case {R1 = recv(), R2 = recv()} of
|
|
|
|
{P1, P2} -> {R1, R2};
|
|
|
|
{P2, P1} -> {R2, R1}
|
|
|
|
end
|
|
|
|
end)()).
|
|
|
|
|
|
|
|
-define(recv3(P1, P2, P3),
|
|
|
|
(fun() ->
|
|
|
|
case R3 = recv() of
|
|
|
|
P1 -> insert(R3, 1, ?recv2(P2, P3));
|
|
|
|
P2 -> insert(R3, 2, ?recv2(P1, P3));
|
|
|
|
P3 -> insert(R3, 3, ?recv2(P1, P2))
|
|
|
|
end
|
|
|
|
end)()).
|
|
|
|
|
|
|
|
-define(recv4(P1, P2, P3, P4),
|
|
|
|
(fun() ->
|
|
|
|
case R4 = recv() of
|
|
|
|
P1 -> insert(R4, 1, ?recv3(P2, P3, P4));
|
|
|
|
P2 -> insert(R4, 2, ?recv3(P1, P3, P4));
|
|
|
|
P3 -> insert(R4, 3, ?recv3(P1, P2, P4));
|
|
|
|
P4 -> insert(R4, 4, ?recv3(P1, P2, P3))
|
|
|
|
end
|
|
|
|
end)()).
|
|
|
|
|
|
|
|
-define(recv5(P1, P2, P3, P4, P5),
|
|
|
|
(fun() ->
|
|
|
|
case R5 = recv() of
|
|
|
|
P1 -> insert(R5, 1, ?recv4(P2, P3, P4, P5));
|
|
|
|
P2 -> insert(R5, 2, ?recv4(P1, P3, P4, P5));
|
|
|
|
P3 -> insert(R5, 3, ?recv4(P1, P2, P4, P5));
|
|
|
|
P4 -> insert(R5, 4, ?recv4(P1, P2, P3, P5));
|
|
|
|
P5 -> insert(R5, 5, ?recv4(P1, P2, P3, P4))
|
|
|
|
end
|
|
|
|
end)()).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
suite() ->
|
2013-06-15 15:28:14 +02:00
|
|
|
[{timetrap, {seconds,10}}].
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
init_per_suite(Config) ->
|
|
|
|
DataDir = proplists:get_value(data_dir, Config),
|
|
|
|
PrivDir = proplists:get_value(priv_dir, Config),
|
|
|
|
ConfigPath = filename:join([DataDir, "ejabberd.cfg"]),
|
|
|
|
LogPath = filename:join([PrivDir, "ejabberd.log"]),
|
|
|
|
SASLPath = filename:join([PrivDir, "sasl.log"]),
|
|
|
|
MnesiaDir = filename:join([PrivDir, "mnesia"]),
|
2013-06-14 16:16:32 +02:00
|
|
|
CertFile = filename:join([DataDir, "cert.pem"]),
|
2013-06-14 17:23:57 +02:00
|
|
|
{ok, CWD} = file:get_cwd(),
|
|
|
|
{ok, _} = file:copy(CertFile, filename:join([CWD, "cert.pem"])),
|
2013-04-08 11:12:54 +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),
|
2013-06-14 18:35:14 +02:00
|
|
|
ok = application:start(ejabberd),
|
2013-04-08 11:12:54 +02:00
|
|
|
[{server, <<"localhost">>},
|
|
|
|
{port, 5222},
|
2013-06-15 18:45:18 +02:00
|
|
|
{host, "localhost"},
|
2013-06-14 18:35:14 +02:00
|
|
|
{certfile, CertFile},
|
2013-06-15 18:45:18 +02:00
|
|
|
{resource, <<"resource">>},
|
2013-06-14 18:35:14 +02:00
|
|
|
{password, <<"password">>}
|
2013-04-08 11:12:54 +02:00
|
|
|
|Config].
|
|
|
|
|
|
|
|
end_per_suite(_Config) ->
|
|
|
|
ok.
|
|
|
|
|
2013-06-15 15:28:14 +02:00
|
|
|
init_per_group(_GroupName, Config) ->
|
|
|
|
Pid = start_event_relay(),
|
|
|
|
set_opt(event_relay, Pid, Config).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-15 15:28:14 +02:00
|
|
|
end_per_group(_GroupName, Config) ->
|
|
|
|
stop_event_relay(Config),
|
2013-04-08 11:12:54 +02:00
|
|
|
ok.
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
init_per_testcase(stop_ejabberd, OrigConfig) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
User = <<"test_stop">>,
|
2013-06-15 18:45:18 +02:00
|
|
|
Config = set_opt(user, User, OrigConfig),
|
2013-06-15 15:28:14 +02:00
|
|
|
ejabberd_auth:try_register(User,
|
|
|
|
?config(server, Config),
|
|
|
|
?config(password, Config)),
|
|
|
|
open_session(bind(auth(connect(Config))));
|
2013-04-08 11:12:54 +02:00
|
|
|
init_per_testcase(TestCase, OrigConfig) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
subscribe_to_events(OrigConfig),
|
2013-06-15 18:45:18 +02:00
|
|
|
Server = ?config(server, OrigConfig),
|
|
|
|
Resource = ?config(resource, OrigConfig),
|
2013-06-15 15:28:14 +02:00
|
|
|
Test = atom_to_list(TestCase),
|
|
|
|
IsMaster = lists:suffix("_master", Test),
|
|
|
|
IsSlave = lists:suffix("_slave", Test),
|
|
|
|
User = if IsMaster -> <<"test_master">>;
|
|
|
|
IsSlave -> <<"test_slave">>;
|
|
|
|
true -> <<"test_single">>
|
|
|
|
end,
|
2013-06-15 18:45:18 +02:00
|
|
|
Slave = jlib:make_jid(<<"test_slave">>, Server, Resource),
|
|
|
|
Master = jlib:make_jid(<<"test_master">>, Server, Resource),
|
|
|
|
Config = set_opt(user, User,
|
|
|
|
set_opt(slave, Slave,
|
|
|
|
set_opt(master, Master, OrigConfig))),
|
2013-04-08 11:12:54 +02:00
|
|
|
case TestCase of
|
|
|
|
test_connect ->
|
|
|
|
Config;
|
|
|
|
test_auth ->
|
|
|
|
connect(Config);
|
2013-06-14 16:16:32 +02:00
|
|
|
test_starttls ->
|
|
|
|
connect(Config);
|
2013-06-14 16:45:04 +02:00
|
|
|
test_zlib ->
|
|
|
|
connect(Config);
|
2013-06-14 16:16:32 +02:00
|
|
|
test_register ->
|
2013-06-14 10:47:50 +02:00
|
|
|
connect(Config);
|
2013-04-08 11:12:54 +02:00
|
|
|
auth_md5 ->
|
|
|
|
connect(Config);
|
|
|
|
auth_plain ->
|
|
|
|
connect(Config);
|
|
|
|
test_bind ->
|
|
|
|
auth(connect(Config));
|
|
|
|
test_open_session ->
|
|
|
|
bind(auth(connect(Config)));
|
2013-06-15 15:28:14 +02:00
|
|
|
_ when IsMaster or IsSlave ->
|
|
|
|
Password = ?config(password, Config),
|
|
|
|
ejabberd_auth:try_register(User, Server, Password),
|
|
|
|
open_session(bind(auth(connect(Config))));
|
2013-04-08 11:12:54 +02:00
|
|
|
_ ->
|
|
|
|
open_session(bind(auth(connect(Config))))
|
|
|
|
end.
|
|
|
|
|
|
|
|
end_per_testcase(_TestCase, _Config) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
groups() ->
|
2013-06-14 18:35:14 +02:00
|
|
|
[{single_user, [sequence],
|
|
|
|
[test_connect,
|
|
|
|
test_starttls,
|
|
|
|
test_zlib,
|
|
|
|
test_register,
|
|
|
|
auth_plain,
|
|
|
|
auth_md5,
|
|
|
|
test_auth,
|
|
|
|
test_bind,
|
|
|
|
test_open_session,
|
|
|
|
roster_get,
|
|
|
|
presence_broadcast,
|
|
|
|
ping,
|
|
|
|
version,
|
|
|
|
time,
|
|
|
|
stats,
|
|
|
|
disco,
|
|
|
|
last,
|
|
|
|
private,
|
|
|
|
privacy,
|
|
|
|
blocking,
|
|
|
|
vcard,
|
2013-06-14 18:58:26 +02:00
|
|
|
pubsub,
|
2013-06-16 20:00:19 +02:00
|
|
|
muc_single,
|
2013-06-15 15:28:14 +02:00
|
|
|
test_unregister]},
|
2013-06-16 20:00:19 +02:00
|
|
|
{test_roster_subscribe, [parallel],
|
|
|
|
[roster_subscribe_master,
|
|
|
|
roster_subscribe_slave]},
|
|
|
|
{test_proxy65, [parallel],
|
|
|
|
[proxy65_master, proxy65_slave]},
|
2013-06-17 09:15:27 +02:00
|
|
|
{test_offline, [sequence],
|
|
|
|
[offline_master, offline_slave]},
|
2013-06-16 20:00:19 +02:00
|
|
|
{test_roster_remove, [parallel],
|
|
|
|
[roster_remove_master,
|
|
|
|
roster_remove_slave]}].
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
all() ->
|
2013-06-15 18:45:18 +02:00
|
|
|
[{group, single_user},
|
2013-06-16 20:00:19 +02:00
|
|
|
{group, test_roster_subscribe},
|
2013-06-15 18:45:18 +02:00
|
|
|
{group, test_proxy65},
|
2013-06-17 09:15:27 +02:00
|
|
|
{group, test_offline},
|
2013-06-16 20:00:19 +02:00
|
|
|
{group, test_roster_remove},
|
2013-06-15 18:45:18 +02:00
|
|
|
stop_ejabberd].
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
stop_ejabberd(Config) ->
|
|
|
|
ok = application:stop(ejabberd),
|
|
|
|
#stream_error{reason = 'system-shutdown'} = recv(),
|
|
|
|
{xmlstreamend, <<"stream:stream">>} = recv(),
|
|
|
|
Config.
|
|
|
|
|
|
|
|
test_connect(Config) ->
|
|
|
|
disconnect(connect(Config)).
|
|
|
|
|
|
|
|
connect(Config) ->
|
|
|
|
{ok, Sock} = ejabberd_socket:connect(
|
2013-06-15 18:45:18 +02:00
|
|
|
?config(host, Config),
|
2013-04-08 11:12:54 +02:00
|
|
|
?config(port, Config),
|
|
|
|
[binary, {packet, 0}, {active, false}]),
|
2013-06-14 16:45:04 +02:00
|
|
|
init_stream(set_opt(socket, Sock, Config)).
|
2013-06-14 16:16:32 +02:00
|
|
|
|
|
|
|
init_stream(Config) ->
|
|
|
|
ok = send_text(Config, io_lib:format(?STREAM_HEADER,
|
|
|
|
[?config(server, Config)])),
|
2013-04-08 11:12:54 +02:00
|
|
|
{xmlstreamstart, <<"stream:stream">>, Attrs} = recv(),
|
|
|
|
<<"jabber:client">> = xml:get_attr_s(<<"xmlns">>, Attrs),
|
|
|
|
<<"1.0">> = xml:get_attr_s(<<"version">>, Attrs),
|
|
|
|
#stream_features{sub_els = Fs} = recv(),
|
|
|
|
Mechs = lists:flatmap(
|
2013-06-13 18:34:45 +02:00
|
|
|
fun(#sasl_mechanisms{list = Ms}) ->
|
2013-04-08 11:12:54 +02:00
|
|
|
Ms;
|
|
|
|
(_) ->
|
|
|
|
[]
|
|
|
|
end, Fs),
|
2013-06-14 16:45:04 +02:00
|
|
|
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).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
disconnect(Config) ->
|
|
|
|
Socket = ?config(socket, Config),
|
|
|
|
ok = ejabberd_socket:send(Socket, ?STREAM_TRAILER),
|
|
|
|
{xmlstreamend, <<"stream:stream">>} = recv(),
|
|
|
|
ejabberd_socket:close(Socket),
|
|
|
|
Config.
|
|
|
|
|
2013-06-14 16:16:32 +02:00
|
|
|
test_starttls(Config) ->
|
|
|
|
case ?config(starttls, Config) of
|
|
|
|
true ->
|
2013-06-14 18:35:14 +02:00
|
|
|
disconnect(starttls(Config));
|
2013-06-14 16:16:32 +02:00
|
|
|
_ ->
|
|
|
|
{skipped, 'starttls_not_available'}
|
|
|
|
end.
|
|
|
|
|
|
|
|
starttls(Config) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, #starttls{}),
|
2013-06-14 16:16:32 +02:00
|
|
|
#starttls_proceed{} = recv(),
|
|
|
|
TLSSocket = ejabberd_socket:starttls(
|
|
|
|
?config(socket, Config),
|
|
|
|
[{certfile, ?config(certfile, Config)},
|
|
|
|
connect]),
|
2013-06-14 18:35:14 +02:00
|
|
|
init_stream(set_opt(socket, TLSSocket, Config)).
|
2013-06-14 16:45:04 +02:00
|
|
|
|
|
|
|
test_zlib(Config) ->
|
|
|
|
case ?config(compression, Config) of
|
|
|
|
[_|_] = Ms ->
|
|
|
|
case lists:member(<<"zlib">>, Ms) of
|
|
|
|
true ->
|
2013-06-14 18:35:14 +02:00
|
|
|
disconnect(zlib(Config));
|
2013-06-14 16:45:04 +02:00
|
|
|
false ->
|
|
|
|
{skipped, 'zlib_not_available'}
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
{skipped, 'compression_not_available'}
|
|
|
|
end.
|
|
|
|
|
|
|
|
zlib(Config) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, #compress{methods = [<<"zlib">>]}),
|
2013-06-14 16:45:04 +02:00
|
|
|
#compressed{} = recv(),
|
|
|
|
ZlibSocket = ejabberd_socket:compress(?config(socket, Config)),
|
2013-06-14 18:35:14 +02:00
|
|
|
init_stream(set_opt(socket, ZlibSocket, Config)).
|
2013-06-14 16:16:32 +02:00
|
|
|
|
|
|
|
test_register(Config) ->
|
2013-06-14 10:47:50 +02:00
|
|
|
case ?config(register, Config) of
|
|
|
|
true ->
|
2013-06-14 18:35:14 +02:00
|
|
|
disconnect(register(Config));
|
2013-06-14 16:16:32 +02:00
|
|
|
_ ->
|
|
|
|
{skipped, 'registration_not_available'}
|
2013-06-14 10:47:50 +02:00
|
|
|
end.
|
|
|
|
|
2013-06-14 16:16:32 +02:00
|
|
|
register(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-06-14 10:47:50 +02:00
|
|
|
sub_els = [#register{username = none,
|
2013-06-16 20:00:19 +02:00
|
|
|
password = none}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = server_jid(Config),
|
|
|
|
sub_els = [#register{}]}),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#register{username = ?config(user, Config),
|
|
|
|
password = ?config(password, Config)}]}),
|
2013-06-14 18:35:14 +02:00
|
|
|
Config.
|
2013-06-14 10:47:50 +02:00
|
|
|
|
2013-06-14 18:58:26 +02:00
|
|
|
test_unregister(Config) ->
|
|
|
|
case ?config(register, Config) of
|
|
|
|
true ->
|
2013-06-14 19:22:36 +02:00
|
|
|
try_unregister(Config);
|
2013-06-14 18:58:26 +02:00
|
|
|
_ ->
|
|
|
|
{skipped, 'registration_not_available'}
|
|
|
|
end.
|
|
|
|
|
|
|
|
try_unregister(Config) ->
|
2013-06-14 19:22:36 +02:00
|
|
|
true = is_feature_advertised(Config, ?NS_REGISTER),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#register{remove = true}]}),
|
2013-06-14 19:22:36 +02:00
|
|
|
#stream_error{reason = conflict} = recv(),
|
2013-06-14 18:58:26 +02:00
|
|
|
Config.
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
test_auth(Config) ->
|
|
|
|
disconnect(auth(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.
|
|
|
|
|
|
|
|
test_bind(Config) ->
|
|
|
|
disconnect(bind(Config)).
|
|
|
|
|
|
|
|
bind(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#bind{}]} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#bind{resource = ?config(resource, Config)}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
Config.
|
|
|
|
|
|
|
|
test_open_session(Config) ->
|
|
|
|
disconnect(open_session(Config)).
|
|
|
|
|
|
|
|
open_session(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set, sub_els = [#session{}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
Config.
|
|
|
|
|
|
|
|
roster_get(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#roster{items = []}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#roster{}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
presence_broadcast(Config) ->
|
|
|
|
send(Config, #presence{}),
|
|
|
|
JID = my_jid(Config),
|
2013-06-16 20:00:19 +02:00
|
|
|
%% We receive the welcome message and the presence broadcast
|
|
|
|
?recv2(#message{type = normal},
|
|
|
|
#presence{from = JID, to = JID}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
ping(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_PING),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = get, sub_els = [#ping{}], to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
version(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_VERSION),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#version{}]} =
|
|
|
|
send_recv(
|
|
|
|
Config, #iq{type = get, sub_els = [#version{}],
|
|
|
|
to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
time(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_TIME),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#time{}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#time{}],
|
|
|
|
to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
disco(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_DISCO_INFO),
|
|
|
|
true = is_feature_advertised(Config, ?NS_DISCO_ITEMS),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#disco_items{items = Items}]} =
|
|
|
|
send_recv(
|
|
|
|
Config, #iq{type = get, sub_els = [#disco_items{}],
|
|
|
|
to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
lists:foreach(
|
|
|
|
fun(#disco_item{jid = JID, node = Node}) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = get, to = JID,
|
|
|
|
sub_els = [#disco_info{node = Node}]})
|
2013-04-08 11:12:54 +02:00
|
|
|
end, Items),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
private(Config) ->
|
|
|
|
Conference = #bookmark_conference{name = <<"Some name">>,
|
|
|
|
autojoin = true,
|
|
|
|
jid = jlib:make_jid(
|
|
|
|
<<"some">>,
|
|
|
|
<<"some.conference.org">>,
|
|
|
|
<<>>)},
|
|
|
|
Storage = #bookmark_storage{conference = [Conference]},
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = error} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#private{}],
|
|
|
|
to = server_jid(Config)}),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(
|
|
|
|
Config, #iq{type = set,
|
|
|
|
sub_els = [#private{sub_els = [Storage]}]}),
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#private{sub_els = [Storage]}]} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = get,
|
|
|
|
sub_els = [#private{sub_els = [#bookmark_storage{}]}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
last(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_LAST),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#last{}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#last{}],
|
|
|
|
to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
privacy(Config) ->
|
2013-06-14 20:17:38 +02:00
|
|
|
true = is_feature_advertised(Config, ?NS_PRIVACY),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#privacy{}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#privacy{}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
JID = <<"tybalt@example.com">>,
|
2013-06-16 20:00:19 +02:00
|
|
|
I1 = send(Config,
|
2013-04-08 11:12:54 +02:00
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#privacy{
|
2013-06-13 18:34:45 +02:00
|
|
|
lists = [#privacy_list{
|
|
|
|
name = <<"public">>,
|
|
|
|
items =
|
|
|
|
[#privacy_item{
|
|
|
|
type = jid,
|
|
|
|
order = 3,
|
|
|
|
action = deny,
|
2013-06-16 20:00:19 +02:00
|
|
|
kinds = ['presence-in'],
|
2013-06-13 18:34:45 +02:00
|
|
|
value = JID}]}]}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
{Push1, _} =
|
|
|
|
?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#privacy{
|
|
|
|
lists = [#privacy_list{
|
|
|
|
name = <<"public">>}]}]},
|
|
|
|
#iq{type = result, id = I1, sub_els = []}),
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, make_iq_result(Push1)),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set,
|
|
|
|
sub_els = [#privacy{active = <<"public">>}]}),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set,
|
|
|
|
sub_els = [#privacy{default = <<"public">>}]}),
|
|
|
|
#iq{type = result,
|
2013-04-08 11:12:54 +02:00
|
|
|
sub_els = [#privacy{default = <<"public">>,
|
|
|
|
active = <<"public">>,
|
2013-06-16 20:00:19 +02:00
|
|
|
lists = [#privacy_list{name = <<"public">>}]}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#privacy{}]}),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set, sub_els = [#privacy{default = none}]}),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set, sub_els = [#privacy{active = none}]}),
|
|
|
|
I2 = send(Config, #iq{type = set,
|
2013-04-08 11:12:54 +02:00
|
|
|
sub_els = [#privacy{
|
2013-06-13 18:34:45 +02:00
|
|
|
lists =
|
2013-04-08 11:12:54 +02:00
|
|
|
[#privacy_list{
|
|
|
|
name = <<"public">>}]}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
{Push2, _} =
|
|
|
|
?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#privacy{
|
|
|
|
lists = [#privacy_list{
|
|
|
|
name = <<"public">>}]}]},
|
|
|
|
#iq{type = result, id = I2, sub_els = []}),
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, make_iq_result(Push2)),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
blocking(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_BLOCKING),
|
|
|
|
JID = jlib:make_jid(<<"romeo">>, <<"montague.net">>, <<>>),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#block_list{}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#block_list{}]}),
|
|
|
|
I1 = send(Config, #iq{type = set,
|
2013-06-13 18:34:45 +02:00
|
|
|
sub_els = [#block{items = [JID]}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
{Push1, Push2, _} =
|
|
|
|
?recv3(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#privacy{lists = [#privacy_list{}]}]},
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#block{items = [JID]}]},
|
|
|
|
#iq{type = result, id = I1, sub_els = []}),
|
|
|
|
send(Config, make_iq_result(Push1)),
|
|
|
|
send(Config, make_iq_result(Push2)),
|
|
|
|
I2 = send(Config, #iq{type = set,
|
2013-06-13 18:34:45 +02:00
|
|
|
sub_els = [#unblock{items = [JID]}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
{Push3, Push4, _} =
|
|
|
|
?recv3(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#privacy{lists = [#privacy_list{}]}]},
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#unblock{items = [JID]}]},
|
|
|
|
#iq{type = result, id = I2, sub_els = []}),
|
|
|
|
send(Config, make_iq_result(Push3)),
|
|
|
|
send(Config, make_iq_result(Push4)),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
vcard(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_VCARD),
|
|
|
|
VCard =
|
|
|
|
#vcard{fn = <<"Peter Saint-Andre">>,
|
|
|
|
n = #vcard_name{family = <<"Saint-Andre">>,
|
|
|
|
given = <<"Peter">>},
|
|
|
|
nickname = <<"stpeter">>,
|
|
|
|
bday = <<"1966-08-06">>,
|
|
|
|
adr = [#vcard_adr{work = true,
|
|
|
|
extadd = <<"Suite 600">>,
|
|
|
|
street = <<"1899 Wynkoop Street">>,
|
|
|
|
locality = <<"Denver">>,
|
|
|
|
region = <<"CO">>,
|
|
|
|
pcode = <<"80202">>,
|
|
|
|
ctry = <<"USA">>},
|
|
|
|
#vcard_adr{home = true,
|
|
|
|
locality = <<"Denver">>,
|
|
|
|
region = <<"CO">>,
|
|
|
|
pcode = <<"80209">>,
|
|
|
|
ctry = <<"USA">>}],
|
|
|
|
tel = [#vcard_tel{work = true,voice = true,
|
|
|
|
number = <<"303-308-3282">>},
|
|
|
|
#vcard_tel{home = true,voice = true,
|
|
|
|
number = <<"303-555-1212">>}],
|
|
|
|
email = [#vcard_email{internet = true,pref = true,
|
|
|
|
userid = <<"stpeter@jabber.org">>}],
|
|
|
|
jabberid = <<"stpeter@jabber.org">>,
|
|
|
|
title = <<"Executive Director">>,role = <<"Patron Saint">>,
|
|
|
|
org = #vcard_org{name = <<"XMPP Standards Foundation">>},
|
|
|
|
url = <<"http://www.xmpp.org/xsf/people/stpeter.shtml">>,
|
|
|
|
desc = <<"More information about me is located on my "
|
|
|
|
"personal website: http://www.saint-andre.com/">>},
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = set, sub_els = [VCard]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
%% TODO: check if VCard == VCard1.
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [_VCard1]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#vcard{}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
stats(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#stats{stat = Stats}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#stats{}],
|
|
|
|
to = server_jid(Config)}),
|
2013-04-08 11:12:54 +02:00
|
|
|
lists:foreach(
|
2013-06-15 15:28:14 +02:00
|
|
|
fun(#stat{} = Stat) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [_|_]} =
|
|
|
|
send_recv(Config, #iq{type = get,
|
|
|
|
sub_els = [#stats{stat = [Stat]}],
|
|
|
|
to = server_jid(Config)})
|
2013-04-08 11:12:54 +02:00
|
|
|
end, Stats),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
pubsub(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_PUBSUB),
|
|
|
|
%% Publish <presence/> element within node "presence"
|
|
|
|
ItemID = randoms:get_string(),
|
|
|
|
Node = <<"presence">>,
|
|
|
|
Item = #pubsub_item{id = ItemID, sub_els = [#presence{}]},
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-04-08 11:12:54 +02:00
|
|
|
sub_els = [#pubsub{publish = {<<"presence">>,
|
2013-06-16 20:00:19 +02:00
|
|
|
[#pubsub_item{id = ItemID}]}}]} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{publish = {Node, [Item]}}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
%% Subscribe to node "presence"
|
2013-06-16 20:00:19 +02:00
|
|
|
I = send(Config,
|
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{subscribe = {Node, my_jid(Config)}}]}),
|
|
|
|
?recv2(
|
|
|
|
#message{sub_els = [#pubsub_event{}, #delay{}]},
|
|
|
|
#iq{type = result, id = I}),
|
2013-06-13 18:34:45 +02:00
|
|
|
%% Get subscriptions
|
|
|
|
true = is_feature_advertised(Config, ?PUBSUB("retrieve-subscriptions")),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-06-13 18:34:45 +02:00
|
|
|
sub_els =
|
|
|
|
[#pubsub{subscriptions =
|
2013-06-16 20:00:19 +02:00
|
|
|
{none, [#pubsub_subscription{node = Node}]}}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{subscriptions = {none, []}}]}),
|
2013-06-13 18:34:45 +02:00
|
|
|
%% Get affiliations
|
|
|
|
true = is_feature_advertised(Config, ?PUBSUB("retrieve-affiliations")),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-06-13 18:34:45 +02:00
|
|
|
sub_els = [#pubsub{
|
|
|
|
affiliations =
|
2013-06-16 20:00:19 +02:00
|
|
|
[#pubsub_affiliation{node = Node, type = owner}]}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{affiliations = []}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
auth_md5(Config) ->
|
|
|
|
Mechs = ?config(mechs, Config),
|
|
|
|
case lists:member(<<"DIGEST-MD5">>, Mechs) of
|
|
|
|
true ->
|
|
|
|
disconnect(auth_SASL(<<"DIGEST-MD5">>, Config));
|
|
|
|
false ->
|
|
|
|
disconnect(Config),
|
|
|
|
{skipped, 'DIGEST-MD5_not_available'}
|
|
|
|
end.
|
|
|
|
|
|
|
|
auth_plain(Config) ->
|
|
|
|
Mechs = ?config(mechs, Config),
|
|
|
|
case lists:member(<<"PLAIN">>, Mechs) of
|
|
|
|
true ->
|
|
|
|
disconnect(auth_SASL(<<"PLAIN">>, Config));
|
|
|
|
false ->
|
|
|
|
disconnect(Config),
|
|
|
|
{skipped, 'PLAIN_not_available'}
|
|
|
|
end.
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
roster_subscribe_master(Config) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, #presence{}),
|
|
|
|
#presence{} = recv(),
|
|
|
|
wait_for_slave(Config),
|
2013-06-15 18:45:18 +02:00
|
|
|
Peer = ?config(slave, Config),
|
2013-06-15 15:28:14 +02:00
|
|
|
LPeer = jlib:jid_remove_resource(Peer),
|
|
|
|
send(Config, #presence{type = subscribe, to = LPeer}),
|
|
|
|
Push1 = #iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
ask = subscribe,
|
|
|
|
subscription = none,
|
|
|
|
jid = LPeer}]}]} = recv(),
|
|
|
|
send(Config, make_iq_result(Push1)),
|
|
|
|
{Push2, _} = ?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
subscription = to,
|
|
|
|
jid = LPeer}]}]},
|
|
|
|
#presence{type = subscribed, from = LPeer}),
|
|
|
|
send(Config, make_iq_result(Push2)),
|
|
|
|
#presence{type = undefined, from = Peer} = recv(),
|
|
|
|
%% BUG: ejabberd sends previous push again. Is it ok?
|
|
|
|
Push3 = #iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
subscription = to,
|
|
|
|
jid = LPeer}]}]} = recv(),
|
|
|
|
send(Config, make_iq_result(Push3)),
|
|
|
|
#presence{type = subscribe, from = LPeer} = recv(),
|
|
|
|
send(Config, #presence{type = subscribed, to = LPeer}),
|
|
|
|
Push4 = #iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
subscription = both,
|
|
|
|
jid = LPeer}]}]} = recv(),
|
|
|
|
send(Config, make_iq_result(Push4)),
|
|
|
|
%% Move into a group
|
|
|
|
Groups = [<<"A">>, <<"B">>],
|
|
|
|
Item = #roster_item{jid = LPeer, groups = Groups},
|
|
|
|
I1 = send(Config, #iq{type = set, sub_els = [#roster{items = [Item]}]}),
|
|
|
|
{Push5, _} = ?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els =
|
|
|
|
[#roster{items = [#roster_item{
|
|
|
|
jid = LPeer,
|
|
|
|
subscription = both}]}]},
|
|
|
|
#iq{type = result, id = I1, sub_els = []}),
|
|
|
|
send(Config, make_iq_result(Push5)),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{sub_els = [#roster{items = [#roster_item{groups = G1}]}]} = Push5,
|
|
|
|
Groups = lists:sort(G1),
|
2013-06-15 15:28:14 +02:00
|
|
|
wait_for_slave(Config),
|
2013-06-15 18:45:18 +02:00
|
|
|
#presence{type = unavailable, from = Peer} = recv(),
|
2013-06-15 15:28:14 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
roster_subscribe_slave(Config) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
send(Config, #presence{}),
|
|
|
|
#presence{} = recv(),
|
|
|
|
wait_for_master(Config),
|
2013-06-15 18:45:18 +02:00
|
|
|
Peer = ?config(master, Config),
|
2013-06-15 15:28:14 +02:00
|
|
|
LPeer = jlib:jid_remove_resource(Peer),
|
|
|
|
#presence{type = subscribe, from = LPeer} = recv(),
|
|
|
|
send(Config, #presence{type = subscribed, to = LPeer}),
|
|
|
|
Push1 = #iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
subscription = from,
|
|
|
|
jid = LPeer}]}]} = recv(),
|
|
|
|
send(Config, make_iq_result(Push1)),
|
|
|
|
send(Config, #presence{type = subscribe, to = LPeer}),
|
|
|
|
Push2 = #iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
ask = subscribe,
|
|
|
|
subscription = from,
|
|
|
|
jid = LPeer}]}]} = recv(),
|
|
|
|
send(Config, make_iq_result(Push2)),
|
|
|
|
{Push3, _} = ?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#roster{items = [#roster_item{
|
|
|
|
subscription = both,
|
|
|
|
jid = LPeer}]}]},
|
|
|
|
#presence{type = subscribed, from = LPeer}),
|
|
|
|
send(Config, make_iq_result(Push3)),
|
|
|
|
#presence{type = undefined, from = Peer} = recv(),
|
|
|
|
wait_for_master(Config),
|
2013-06-16 20:00:19 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
roster_remove_master(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(slave, Config),
|
|
|
|
LPeer = jlib:jid_remove_resource(Peer),
|
|
|
|
Groups = [<<"A">>, <<"B">>],
|
|
|
|
wait_for_slave(Config),
|
|
|
|
send(Config, #presence{}),
|
|
|
|
?recv2(#presence{from = MyJID, type = undefined},
|
|
|
|
#presence{from = Peer, type = undefined}),
|
|
|
|
%% The peer removed us from its roster.
|
|
|
|
{Push1, Push2, _, _, _} =
|
|
|
|
?recv5(
|
|
|
|
%% TODO: I guess this can be optimized, we don't need
|
|
|
|
%% to send transient roster push with subscription = 'to'.
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els =
|
|
|
|
[#roster{items = [#roster_item{
|
|
|
|
jid = LPeer,
|
|
|
|
subscription = to}]}]},
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els =
|
|
|
|
[#roster{items = [#roster_item{
|
|
|
|
jid = LPeer,
|
|
|
|
subscription = none}]}]},
|
|
|
|
#presence{type = unsubscribe, from = LPeer},
|
|
|
|
#presence{type = unsubscribed, from = LPeer},
|
|
|
|
#presence{type = unavailable, from = Peer}),
|
|
|
|
send(Config, make_iq_result(Push1)),
|
|
|
|
send(Config, make_iq_result(Push2)),
|
|
|
|
#iq{sub_els = [#roster{items = [#roster_item{groups = G1}]}]} = Push1,
|
|
|
|
#iq{sub_els = [#roster{items = [#roster_item{groups = G2}]}]} = Push2,
|
|
|
|
Groups = lists:sort(G1), Groups = lists:sort(G2),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
roster_remove_slave(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(master, Config),
|
|
|
|
LPeer = jlib:jid_remove_resource(Peer),
|
|
|
|
send(Config, #presence{}),
|
|
|
|
#presence{from = MyJID, type = undefined} = recv(),
|
|
|
|
wait_for_master(Config),
|
|
|
|
#presence{from = Peer, type = undefined} = recv(),
|
2013-06-15 15:28:14 +02:00
|
|
|
%% Remove the peer from roster.
|
2013-06-16 20:00:19 +02:00
|
|
|
Item = #roster_item{jid = LPeer, subscription = remove},
|
|
|
|
I = send(Config, #iq{type = set, sub_els = [#roster{items = [Item]}]}),
|
|
|
|
{Push, _} = ?recv2(
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els =
|
|
|
|
[#roster{items = [#roster_item{
|
|
|
|
jid = LPeer,
|
|
|
|
subscription = remove}]}]},
|
|
|
|
#iq{type = result, id = I, sub_els = []}),
|
|
|
|
send(Config, make_iq_result(Push)),
|
|
|
|
#presence{type = unavailable, from = Peer} = recv(),
|
2013-06-15 18:45:18 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
proxy65_master(Config) ->
|
|
|
|
Proxy = proxy_jid(Config),
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(slave, Config),
|
2013-06-16 20:00:19 +02:00
|
|
|
wait_for_slave(Config),
|
2013-06-15 18:45:18 +02:00
|
|
|
send(Config, #presence{}),
|
|
|
|
?recv2(#presence{from = MyJID, type = undefined},
|
|
|
|
#presence{from = Peer, type = undefined}),
|
|
|
|
true = is_feature_advertised(Config, ?NS_BYTESTREAMS, Proxy),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result, sub_els = [#bytestreams{hosts = [StreamHost]}]} =
|
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = get, sub_els = [#bytestreams{}], to = Proxy}),
|
2013-06-15 18:45:18 +02:00
|
|
|
SID = randoms:get_string(),
|
|
|
|
Data = crypto:rand_bytes(1024),
|
|
|
|
put_event(Config, {StreamHost, SID, Data}),
|
|
|
|
Socks5 = socks5_connect(StreamHost, {SID, MyJID, Peer}),
|
2013-06-16 20:00:19 +02:00
|
|
|
wait_for_slave(Config),
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set, to = Proxy,
|
|
|
|
sub_els = [#bytestreams{activate = Peer, sid = SID}]}),
|
2013-06-15 18:45:18 +02:00
|
|
|
socks5_send(Socks5, Data),
|
2013-06-15 15:28:14 +02:00
|
|
|
#presence{type = unavailable, from = Peer} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-06-15 18:45:18 +02:00
|
|
|
proxy65_slave(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(master, Config),
|
|
|
|
send(Config, #presence{}),
|
2013-06-16 20:00:19 +02:00
|
|
|
#presence{from = MyJID, type = undefined} = recv(),
|
|
|
|
wait_for_master(Config),
|
|
|
|
#presence{from = Peer, type = undefined} = recv(),
|
2013-06-15 18:45:18 +02:00
|
|
|
{StreamHost, SID, Data} = get_event(Config),
|
|
|
|
Socks5 = socks5_connect(StreamHost, {SID, Peer, MyJID}),
|
2013-06-16 20:00:19 +02:00
|
|
|
wait_for_master(Config),
|
2013-06-15 18:45:18 +02:00
|
|
|
socks5_recv(Socks5, Data),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
muc_single(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
MUC = muc_jid(Config),
|
|
|
|
Room = muc_room_jid(Config),
|
|
|
|
Nick = ?config(user, Config),
|
|
|
|
NickJID = jlib:jid_replace_resource(Room, Nick),
|
|
|
|
true = is_feature_advertised(Config, ?NS_MUC, MUC),
|
|
|
|
%% Joining
|
|
|
|
send(Config, #presence{to = NickJID, sub_els = [#muc{}]}),
|
|
|
|
%% As per XEP-0045 we MUST receive stanzas in the following order:
|
|
|
|
%% 1. In-room presence from other occupants
|
|
|
|
%% 2. In-room presence from the joining entity itself (so-called "self-presence")
|
|
|
|
%% 3. Room history (if any)
|
|
|
|
%% 4. The room subject
|
|
|
|
%% 5. Live messages, presence updates, new user joins, etc.
|
|
|
|
%% As this is the newly created room, we receive only the 2nd stanza.
|
|
|
|
#presence{
|
|
|
|
from = NickJID,
|
|
|
|
sub_els = [#muc_user{
|
|
|
|
status_codes = Codes,
|
|
|
|
items = [#muc_item{role = moderator,
|
|
|
|
jid = MyJID,
|
|
|
|
affiliation = owner}]}]} = recv(),
|
|
|
|
%% 110 -> Inform user that presence refers to itself
|
|
|
|
%% 201 -> Inform user that a new room has been created
|
|
|
|
true = lists:member(110, Codes),
|
|
|
|
true = lists:member(201, Codes),
|
|
|
|
%% Request the configuration
|
|
|
|
#iq{type = result, sub_els = [#muc_owner{config = #xdata{} = RoomCfg}]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#muc_owner{}],
|
|
|
|
to = Room}),
|
|
|
|
NewFields =
|
|
|
|
lists:flatmap(
|
|
|
|
fun(#xdata_field{var = Var, values = OrigVals}) ->
|
|
|
|
Vals = case Var of
|
|
|
|
<<"FORM_TYPE">> ->
|
|
|
|
OrigVals;
|
|
|
|
<<"muc#roomconfig_roomname">> ->
|
|
|
|
[<<"Test room">>];
|
|
|
|
<<"muc#roomconfig_roomdesc">> ->
|
|
|
|
[<<"Trying to break the server">>];
|
|
|
|
<<"muc#roomconfig_persistentroom">> ->
|
|
|
|
[<<"1">>];
|
|
|
|
<<"muc#roomconfig_changesubject">> ->
|
|
|
|
[<<"0">>];
|
|
|
|
<<"muc#roomconfig_allowinvites">> ->
|
|
|
|
[<<"1">>];
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
if Vals /= [] ->
|
|
|
|
[#xdata_field{values = Vals, var = Var}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end, RoomCfg#xdata.fields),
|
|
|
|
NewRoomCfg = #xdata{type = submit, fields = NewFields},
|
|
|
|
%% BUG: We should not receive any sub_els!
|
|
|
|
%% TODO: fix this crap in ejabberd.
|
|
|
|
#iq{type = result, sub_els = [_|_]} =
|
|
|
|
send_recv(Config, #iq{type = set, to = Room,
|
|
|
|
sub_els = [#muc_owner{config = NewRoomCfg}]}),
|
|
|
|
%% Set subject
|
|
|
|
send(Config, #message{to = Room, type = groupchat,
|
|
|
|
body = [#text{data = <<"Subject">>}]}),
|
|
|
|
#message{from = NickJID, type = groupchat,
|
|
|
|
body = [#text{data = <<"Subject">>}]} = recv(),
|
|
|
|
%% Leaving
|
|
|
|
send(Config, #presence{type = unavailable, to = NickJID}),
|
|
|
|
#presence{from = NickJID, type = unavailable,
|
|
|
|
sub_els = [#muc_user{status_codes = NewCodes}]} = recv(),
|
|
|
|
true = lists:member(110, NewCodes),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-06-17 09:15:27 +02:00
|
|
|
offline_master(Config) ->
|
|
|
|
Peer = ?config(slave, Config),
|
|
|
|
LPeer = jlib:jid_remove_resource(Peer),
|
|
|
|
send(Config, #message{to = LPeer,
|
|
|
|
body = [#text{data = <<"body">>}],
|
|
|
|
subject = [#text{data = <<"subject">>}]}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
offline_slave(Config) ->
|
|
|
|
Peer = ?config(master, Config),
|
|
|
|
send(Config, #presence{}),
|
|
|
|
{_, #message{sub_els = SubEls}} =
|
|
|
|
?recv2(#presence{},
|
|
|
|
#message{from = Peer,
|
|
|
|
body = [#text{data = <<"body">>}],
|
|
|
|
subject = [#text{data = <<"subject">>}]}),
|
|
|
|
lists:foreach(
|
|
|
|
fun(#legacy_delay{}) -> ok;
|
|
|
|
(#delay{}) -> ok
|
|
|
|
end, SubEls),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
auth_SASL(Mech, Config) ->
|
|
|
|
{Response, SASL} = sasl_new(Mech,
|
|
|
|
?config(user, Config),
|
|
|
|
?config(server, Config),
|
|
|
|
?config(password, Config)),
|
2013-06-13 18:34:45 +02:00
|
|
|
send(Config, #sasl_auth{mechanism = Mech, text = Response}),
|
2013-06-14 16:45:04 +02:00
|
|
|
wait_auth_SASL_result(set_opt(sasl, SASL, Config)).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
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(),
|
|
|
|
<<"jabber:client">> = xml:get_attr_s(<<"xmlns">>, Attrs),
|
|
|
|
<<"1.0">> = xml:get_attr_s(<<"version">>, Attrs),
|
|
|
|
#stream_features{} = recv(),
|
|
|
|
Config;
|
2013-06-13 18:34:45 +02:00
|
|
|
#sasl_challenge{text = ClientIn} ->
|
2013-04-08 11:12:54 +02:00
|
|
|
{Response, SASL} = (?config(sasl, Config))(ClientIn),
|
2013-06-13 18:34:45 +02:00
|
|
|
send(Config, #sasl_response{text = Response}),
|
2013-06-14 16:45:04 +02:00
|
|
|
wait_auth_SASL_result(set_opt(sasl, SASL, Config));
|
2013-04-08 11:12:54 +02:00
|
|
|
#sasl_failure{} ->
|
|
|
|
ct:fail(sasl_auth_failed)
|
|
|
|
end.
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Aux functions
|
|
|
|
%%%===================================================================
|
|
|
|
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.
|
|
|
|
|
|
|
|
recv() ->
|
|
|
|
receive
|
|
|
|
{'$gen_event', {xmlstreamelement, El}} ->
|
2013-06-16 20:00:19 +02:00
|
|
|
Pkt = xmpp_codec:decode(fix_ns(El)),
|
|
|
|
ct:pal("recv: ~p ->~n~s", [El, xmpp_codec:pp(Pkt)]),
|
|
|
|
Pkt;
|
2013-04-08 11:12:54 +02:00
|
|
|
{'$gen_event', Event} ->
|
|
|
|
Event
|
|
|
|
end.
|
|
|
|
|
2013-06-13 18:34:45 +02:00
|
|
|
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.
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
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),
|
2013-06-16 20:00:19 +02:00
|
|
|
ct:pal("sent: ~p <-~n~s", [El, xmpp_codec:pp(NewPkt)]),
|
2013-04-08 11:12:54 +02:00
|
|
|
ok = send_text(State, xml:element_to_binary(El)),
|
|
|
|
NewID.
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
send_recv(State, IQ) ->
|
|
|
|
ID = send(State, IQ),
|
|
|
|
#iq{id = ID} = recv().
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
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 ->
|
|
|
|
Nonce = xml:get_attr_s(<<"nonce">>, KeyVals),
|
|
|
|
CNonce = id(),
|
|
|
|
DigestURI = <<"xmpp/", Server/binary>>,
|
|
|
|
Realm = Server,
|
|
|
|
NC = <<"00000001">>,
|
|
|
|
QOP = <<"auth">>,
|
|
|
|
AuthzId = <<"">>,
|
|
|
|
MyResponse = response(User, Password, Nonce, AuthzId,
|
|
|
|
Realm, CNonce, DigestURI, NC, QOP,
|
|
|
|
<<"AUTHENTICATE">>),
|
|
|
|
ServerResponse = response(User, Password, Nonce,
|
|
|
|
AuthzId, Realm, CNonce, DigestURI,
|
|
|
|
NC, QOP, <<"">>),
|
|
|
|
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">>};
|
|
|
|
KeyVals2 ->
|
|
|
|
RspAuth = xml:get_attr_s(<<"rspauth">>,
|
|
|
|
KeyVals2),
|
|
|
|
if RspAuth == ServerResponse ->
|
|
|
|
{<<"">>,
|
|
|
|
fun (_) ->
|
|
|
|
{error,
|
|
|
|
<<"Invalid SASL challenge">>}
|
|
|
|
end};
|
|
|
|
true ->
|
|
|
|
{error, <<"Invalid SASL challenge">>}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end}
|
|
|
|
end
|
|
|
|
end}.
|
|
|
|
|
|
|
|
hex(S) ->
|
|
|
|
sha:to_hexlist(S).
|
|
|
|
|
|
|
|
response(User, Passwd, Nonce, AuthzId, Realm, CNonce,
|
|
|
|
DigestURI, NC, QOP, A2Prefix) ->
|
|
|
|
A1 = case AuthzId of
|
|
|
|
<<"">> ->
|
|
|
|
<<((crypto:md5(<<User/binary, ":", Realm/binary, ":",
|
|
|
|
Passwd/binary>>)))/binary,
|
|
|
|
":", Nonce/binary, ":", CNonce/binary>>;
|
|
|
|
_ ->
|
|
|
|
<<((crypto:md5(<<User/binary, ":", Realm/binary, ":",
|
|
|
|
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,
|
|
|
|
T = <<(hex((crypto:md5(A1))))/binary, ":", Nonce/binary,
|
|
|
|
":", NC/binary, ":", CNonce/binary, ":", QOP/binary,
|
|
|
|
":", (hex((crypto:md5(A2))))/binary>>,
|
|
|
|
hex((crypto:md5(T))).
|
|
|
|
|
|
|
|
my_jid(Config) ->
|
|
|
|
jlib:make_jid(?config(user, Config),
|
|
|
|
?config(server, Config),
|
|
|
|
?config(resource, Config)).
|
|
|
|
|
|
|
|
server_jid(Config) ->
|
|
|
|
jlib:make_jid(<<>>, ?config(server, Config), <<>>).
|
|
|
|
|
|
|
|
pubsub_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jlib:make_jid(<<>>, <<"pubsub.", Server/binary>>, <<>>).
|
|
|
|
|
2013-06-15 18:45:18 +02:00
|
|
|
proxy_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jlib:make_jid(<<>>, <<"proxy.", Server/binary>>, <<>>).
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
muc_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jlib:make_jid(<<>>, <<"conference.", Server/binary>>, <<>>).
|
|
|
|
|
|
|
|
muc_room_jid(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
jlib:make_jid(<<"test">>, <<"conference.", Server/binary>>, <<>>).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
id() ->
|
|
|
|
id(undefined).
|
|
|
|
|
|
|
|
id(undefined) ->
|
|
|
|
randoms:get_string();
|
|
|
|
id(ID) ->
|
|
|
|
ID.
|
|
|
|
|
|
|
|
is_feature_advertised(Config, Feature) ->
|
2013-06-15 18:45:18 +02:00
|
|
|
is_feature_advertised(Config, Feature, server_jid(Config)).
|
|
|
|
|
|
|
|
is_feature_advertised(Config, Feature, To) ->
|
|
|
|
ID = send(Config, #iq{type = get, sub_els = [#disco_info{}], to = To}),
|
2013-04-08 11:12:54 +02:00
|
|
|
#iq{type = result, id = ID,
|
|
|
|
sub_els = [#disco_info{feature = Features}]} = recv(),
|
|
|
|
lists:member(Feature, Features).
|
|
|
|
|
|
|
|
bookmark_conference() ->
|
|
|
|
#bookmark_conference{name = <<"Some name">>,
|
|
|
|
autojoin = true,
|
|
|
|
jid = jlib:make_jid(
|
|
|
|
<<"some">>,
|
|
|
|
<<"some.conference.org">>,
|
|
|
|
<<>>)}.
|
2013-06-14 16:45:04 +02:00
|
|
|
|
|
|
|
set_opt(Opt, Val, Config) ->
|
|
|
|
[{Opt, Val}|lists:keydelete(Opt, 1, Config)].
|
2013-06-15 15:28:14 +02:00
|
|
|
|
|
|
|
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 = []}.
|
|
|
|
|
2013-06-15 18:45:18 +02:00
|
|
|
socks5_connect(#streamhost{host = Host, port = Port},
|
|
|
|
{SID, JID1, JID2}) ->
|
|
|
|
Hash = sha:sha([SID, jlib:jid_to_string(JID1), jlib:jid_to_string(JID2)]),
|
|
|
|
{ok, Sock} = gen_tcp:connect(binary_to_list(Host), Port,
|
|
|
|
[binary, {active, false}]),
|
|
|
|
Init = <<?VERSION_5, 1, ?AUTH_ANONYMOUS>>,
|
|
|
|
InitAck = <<?VERSION_5, ?AUTH_ANONYMOUS>>,
|
|
|
|
Req = <<?VERSION_5, ?CMD_CONNECT, 0,
|
|
|
|
?ATYP_DOMAINNAME, 40, Hash:40/binary, 0, 0>>,
|
|
|
|
Resp = <<?VERSION_5, ?SUCCESS, 0, ?ATYP_DOMAINNAME,
|
|
|
|
40, Hash:40/binary, 0, 0>>,
|
|
|
|
gen_tcp:send(Sock, Init),
|
|
|
|
{ok, InitAck} = gen_tcp:recv(Sock, size(InitAck)),
|
|
|
|
gen_tcp:send(Sock, Req),
|
|
|
|
{ok, Resp} = gen_tcp:recv(Sock, size(Resp)),
|
|
|
|
Sock.
|
|
|
|
|
|
|
|
socks5_send(Sock, Data) ->
|
|
|
|
ok = gen_tcp:send(Sock, Data).
|
|
|
|
|
|
|
|
socks5_recv(Sock, Data) ->
|
|
|
|
{ok, Data} = gen_tcp:recv(Sock, size(Data)).
|
|
|
|
|
2013-06-15 15:28:14 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% 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.
|
|
|
|
|
|
|
|
insert(Val, N, Tuple) ->
|
|
|
|
L = tuple_to_list(Tuple),
|
|
|
|
{H, T} = lists:split(N-1, L),
|
|
|
|
list_to_tuple(H ++ [Val|T]).
|