2013-04-08 11:12:54 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% @author Evgeniy Khramtsov <ekhramtsov@process-one.net>
|
2015-03-07 11:49:37 +01:00
|
|
|
%%% @copyright (C) 2002-2015, ProcessOne
|
2013-04-08 11:12:54 +02:00
|
|
|
%%% @doc
|
|
|
|
%%%
|
|
|
|
%%% @end
|
|
|
|
%%% Created : 2 Jun 2013 by Evgeniy Khramtsov <ekhramtsov@process-one.net>
|
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-module(ejabberd_SUITE).
|
|
|
|
|
|
|
|
-compile(export_all).
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
-import(suite, [init_config/1, connect/1, disconnect/1,
|
|
|
|
recv/0, send/2, send_recv/2, my_jid/1, server_jid/1,
|
|
|
|
pubsub_jid/1, proxy_jid/1, muc_jid/1,
|
|
|
|
muc_room_jid/1, get_features/2, re_register/1,
|
|
|
|
is_feature_advertised/2, subscribe_to_events/1,
|
|
|
|
is_feature_advertised/3, set_opt/3, auth_SASL/2,
|
|
|
|
wait_for_master/1, wait_for_slave/1,
|
|
|
|
make_iq_result/1, start_event_relay/0,
|
|
|
|
stop_event_relay/1, put_event/2, get_event/1,
|
2014-07-22 11:59:31 +02:00
|
|
|
bind/1, auth/1, open_session/1, zlib/1, starttls/1,
|
|
|
|
close_socket/1]).
|
2013-06-26 19:55:29 +02:00
|
|
|
|
|
|
|
-include("suite.hrl").
|
2013-06-19 12:11:20 +02:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
suite() ->
|
2015-02-23 11:03:15 +01:00
|
|
|
[{timetrap, {seconds,120}}].
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
init_per_suite(Config) ->
|
2013-06-26 19:55:29 +02:00
|
|
|
NewConfig = init_config(Config),
|
|
|
|
DataDir = proplists:get_value(data_dir, NewConfig),
|
2013-06-14 17:23:57 +02:00
|
|
|
{ok, CWD} = file:get_cwd(),
|
2013-06-26 19:55:29 +02:00
|
|
|
ExtAuthScript = filename:join([DataDir, "extauth.py"]),
|
|
|
|
LDIFFile = filename:join([DataDir, "ejabberd.ldif"]),
|
2013-06-26 04:29:50 +02:00
|
|
|
{ok, _} = file:copy(ExtAuthScript, filename:join([CWD, "extauth.py"])),
|
2013-06-25 19:05:37 +02:00
|
|
|
{ok, _} = ldap_srv:start(LDIFFile),
|
2013-06-14 18:35:14 +02:00
|
|
|
ok = application:start(ejabberd),
|
2013-06-26 19:55:29 +02:00
|
|
|
NewConfig.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
end_per_suite(_Config) ->
|
|
|
|
ok.
|
|
|
|
|
2013-06-19 12:11:20 +02:00
|
|
|
init_per_group(no_db, Config) ->
|
2013-06-26 19:55:29 +02:00
|
|
|
re_register(Config),
|
2013-06-19 12:11:20 +02:00
|
|
|
Config;
|
|
|
|
init_per_group(mnesia, Config) ->
|
2013-06-19 13:30:31 +02:00
|
|
|
mod_muc:shutdown_rooms(?MNESIA_VHOST),
|
2013-06-19 12:11:20 +02:00
|
|
|
set_opt(server, ?MNESIA_VHOST, Config);
|
|
|
|
init_per_group(mysql, Config) ->
|
|
|
|
case catch ejabberd_odbc:sql_query(?MYSQL_VHOST, [<<"select 1;">>]) of
|
|
|
|
{selected, _, _} ->
|
2013-06-19 13:30:31 +02:00
|
|
|
mod_muc:shutdown_rooms(?MYSQL_VHOST),
|
2013-06-19 12:11:20 +02:00
|
|
|
create_sql_tables(mysql, ?config(base_dir, Config)),
|
|
|
|
set_opt(server, ?MYSQL_VHOST, Config);
|
|
|
|
Err ->
|
|
|
|
{skip, {mysql_not_available, Err}}
|
|
|
|
end;
|
|
|
|
init_per_group(pgsql, Config) ->
|
|
|
|
case catch ejabberd_odbc:sql_query(?PGSQL_VHOST, [<<"select 1;">>]) of
|
|
|
|
{selected, _, _} ->
|
2013-06-19 13:30:31 +02:00
|
|
|
mod_muc:shutdown_rooms(?PGSQL_VHOST),
|
2013-06-19 12:11:20 +02:00
|
|
|
create_sql_tables(pgsql, ?config(base_dir, Config)),
|
|
|
|
set_opt(server, ?PGSQL_VHOST, Config);
|
|
|
|
Err ->
|
|
|
|
{skip, {pgsql_not_available, Err}}
|
|
|
|
end;
|
2013-06-21 19:23:56 +02:00
|
|
|
init_per_group(ldap, Config) ->
|
|
|
|
set_opt(server, ?LDAP_VHOST, Config);
|
2013-06-26 04:29:50 +02:00
|
|
|
init_per_group(extauth, Config) ->
|
|
|
|
set_opt(server, ?EXTAUTH_VHOST, Config);
|
2014-07-09 14:38:45 +02:00
|
|
|
init_per_group(riak, Config) ->
|
2014-07-09 20:59:45 +02:00
|
|
|
case ejabberd_riak:is_connected() of
|
|
|
|
true ->
|
|
|
|
mod_muc:shutdown_rooms(?RIAK_VHOST),
|
|
|
|
NewConfig = set_opt(server, ?RIAK_VHOST, Config),
|
|
|
|
clear_riak_tables(NewConfig);
|
|
|
|
Err ->
|
|
|
|
{skip, {riak_not_available, Err}}
|
|
|
|
end;
|
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-19 12:11:20 +02:00
|
|
|
end_per_group(mnesia, _Config) ->
|
|
|
|
ok;
|
|
|
|
end_per_group(mysql, _Config) ->
|
|
|
|
ok;
|
|
|
|
end_per_group(pgsql, _Config) ->
|
|
|
|
ok;
|
|
|
|
end_per_group(no_db, _Config) ->
|
|
|
|
ok;
|
2013-06-21 19:23:56 +02:00
|
|
|
end_per_group(ldap, _Config) ->
|
|
|
|
ok;
|
2013-06-26 04:29:50 +02:00
|
|
|
end_per_group(extauth, _Config) ->
|
|
|
|
ok;
|
2014-07-09 14:38:45 +02:00
|
|
|
end_per_group(riak, _Config) ->
|
|
|
|
ok;
|
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-19 12:11:20 +02:00
|
|
|
init_per_testcase(stop_ejabberd, Config) ->
|
2013-06-15 15:28:14 +02:00
|
|
|
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),
|
2014-07-20 20:43:16 +02:00
|
|
|
MasterResource = ?config(master_resource, OrigConfig),
|
|
|
|
SlaveResource = ?config(slave_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),
|
2014-07-20 20:43:16 +02:00
|
|
|
IsCarbons = lists:prefix("carbons_", Test),
|
|
|
|
User = if IsMaster or IsCarbons -> <<"test_master">>;
|
2013-06-15 15:28:14 +02:00
|
|
|
IsSlave -> <<"test_slave">>;
|
|
|
|
true -> <<"test_single">>
|
|
|
|
end,
|
2014-07-20 20:43:16 +02:00
|
|
|
MyResource = if IsMaster and IsCarbons -> MasterResource;
|
|
|
|
IsSlave and IsCarbons -> SlaveResource;
|
|
|
|
true -> Resource
|
|
|
|
end,
|
|
|
|
Slave = if IsCarbons ->
|
|
|
|
jlib:make_jid(<<"test_master">>, Server, SlaveResource);
|
|
|
|
true ->
|
|
|
|
jlib:make_jid(<<"test_slave">>, Server, Resource)
|
|
|
|
end,
|
|
|
|
Master = if IsCarbons ->
|
|
|
|
jlib:make_jid(<<"test_master">>, Server, MasterResource);
|
|
|
|
true ->
|
|
|
|
jlib:make_jid(<<"test_master">>, Server, Resource)
|
|
|
|
end,
|
2013-06-15 18:45:18 +02:00
|
|
|
Config = set_opt(user, User,
|
|
|
|
set_opt(slave, Slave,
|
2014-07-20 20:43:16 +02:00
|
|
|
set_opt(master, Master,
|
|
|
|
set_opt(resource, MyResource, 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));
|
2014-07-22 11:59:31 +02:00
|
|
|
sm_resume ->
|
|
|
|
auth(connect(Config));
|
2013-04-08 11:12:54 +02:00
|
|
|
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.
|
|
|
|
|
2013-06-21 19:23:56 +02:00
|
|
|
no_db_tests() ->
|
2013-06-19 12:11:20 +02:00
|
|
|
[{generic, [sequence],
|
2013-06-14 18:35:14 +02:00
|
|
|
[test_connect,
|
|
|
|
test_starttls,
|
|
|
|
test_zlib,
|
|
|
|
test_auth,
|
|
|
|
test_bind,
|
|
|
|
test_open_session,
|
2013-06-19 12:11:20 +02:00
|
|
|
presence,
|
2013-06-14 18:35:14 +02:00
|
|
|
ping,
|
|
|
|
version,
|
|
|
|
time,
|
|
|
|
stats,
|
2014-07-22 11:59:31 +02:00
|
|
|
sm,
|
|
|
|
sm_resume,
|
2013-06-19 12:11:20 +02:00
|
|
|
disco]},
|
|
|
|
{test_proxy65, [parallel],
|
|
|
|
[proxy65_master, proxy65_slave]}].
|
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
db_tests(riak) ->
|
|
|
|
%% No support for mod_pubsub
|
2013-06-19 12:11:20 +02:00
|
|
|
[{single_user, [sequence],
|
|
|
|
[test_register,
|
|
|
|
auth_plain,
|
|
|
|
auth_md5,
|
|
|
|
presence_broadcast,
|
2013-06-14 18:35:14 +02:00
|
|
|
last,
|
2013-06-19 12:11:20 +02:00
|
|
|
roster_get,
|
2013-06-14 18:35:14 +02:00
|
|
|
private,
|
|
|
|
privacy,
|
|
|
|
blocking,
|
|
|
|
vcard,
|
2013-06-15 15:28:14 +02:00
|
|
|
test_unregister]},
|
2014-09-03 19:28:07 +02:00
|
|
|
{test_muc_register, [sequence],
|
|
|
|
[muc_register_master, muc_register_slave]},
|
2013-06-16 20:00:19 +02:00
|
|
|
{test_roster_subscribe, [parallel],
|
|
|
|
[roster_subscribe_master,
|
|
|
|
roster_subscribe_slave]},
|
2013-06-17 09:15:27 +02:00
|
|
|
{test_offline, [sequence],
|
|
|
|
[offline_master, offline_slave]},
|
2014-07-19 15:23:13 +02:00
|
|
|
{test_muc, [parallel],
|
|
|
|
[muc_master, muc_slave]},
|
2014-07-28 11:42:29 +02:00
|
|
|
{test_announce, [sequence],
|
2014-07-27 11:02:46 +02:00
|
|
|
[announce_master, announce_slave]},
|
2014-10-30 21:54:02 +01:00
|
|
|
{test_vcard_xupdate, [parallel],
|
|
|
|
[vcard_xupdate_master, vcard_xupdate_slave]},
|
2013-06-16 20:00:19 +02:00
|
|
|
{test_roster_remove, [parallel],
|
|
|
|
[roster_remove_master,
|
2014-07-20 20:43:16 +02:00
|
|
|
roster_remove_slave]}];
|
|
|
|
db_tests(mnesia) ->
|
2014-07-09 14:38:45 +02:00
|
|
|
[{single_user, [sequence],
|
|
|
|
[test_register,
|
|
|
|
auth_plain,
|
|
|
|
auth_md5,
|
|
|
|
presence_broadcast,
|
|
|
|
last,
|
|
|
|
roster_get,
|
2014-07-20 20:43:16 +02:00
|
|
|
roster_ver,
|
2014-07-09 14:38:45 +02:00
|
|
|
private,
|
|
|
|
privacy,
|
|
|
|
blocking,
|
|
|
|
vcard,
|
2014-07-20 20:43:16 +02:00
|
|
|
pubsub,
|
2014-07-09 14:38:45 +02:00
|
|
|
test_unregister]},
|
2014-09-03 19:28:07 +02:00
|
|
|
{test_muc_register, [sequence],
|
|
|
|
[muc_register_master, muc_register_slave]},
|
2014-07-09 14:38:45 +02:00
|
|
|
{test_roster_subscribe, [parallel],
|
|
|
|
[roster_subscribe_master,
|
|
|
|
roster_subscribe_slave]},
|
|
|
|
{test_offline, [sequence],
|
|
|
|
[offline_master, offline_slave]},
|
2014-07-20 20:43:16 +02:00
|
|
|
{test_carbons, [parallel],
|
|
|
|
[carbons_master, carbons_slave]},
|
2014-09-11 18:18:20 +02:00
|
|
|
{test_client_state, [parallel],
|
|
|
|
[client_state_master, client_state_slave]},
|
2014-07-19 15:23:13 +02:00
|
|
|
{test_muc, [parallel],
|
|
|
|
[muc_master, muc_slave]},
|
2014-07-28 11:42:29 +02:00
|
|
|
{test_announce, [sequence],
|
2014-07-27 11:02:46 +02:00
|
|
|
[announce_master, announce_slave]},
|
2014-10-30 21:54:02 +01:00
|
|
|
{test_vcard_xupdate, [parallel],
|
|
|
|
[vcard_xupdate_master, vcard_xupdate_slave]},
|
2014-07-09 14:38:45 +02:00
|
|
|
{test_roster_remove, [parallel],
|
|
|
|
[roster_remove_master,
|
|
|
|
roster_remove_slave]}];
|
|
|
|
db_tests(_) ->
|
2014-07-20 20:43:16 +02:00
|
|
|
%% No support for carboncopy
|
2014-07-09 14:38:45 +02:00
|
|
|
[{single_user, [sequence],
|
|
|
|
[test_register,
|
|
|
|
auth_plain,
|
|
|
|
auth_md5,
|
|
|
|
presence_broadcast,
|
|
|
|
last,
|
|
|
|
roster_get,
|
|
|
|
roster_ver,
|
|
|
|
private,
|
|
|
|
privacy,
|
|
|
|
blocking,
|
|
|
|
vcard,
|
|
|
|
pubsub,
|
|
|
|
test_unregister]},
|
2014-09-03 19:28:07 +02:00
|
|
|
{test_muc_register, [sequence],
|
|
|
|
[muc_register_master, muc_register_slave]},
|
2014-07-09 14:38:45 +02:00
|
|
|
{test_roster_subscribe, [parallel],
|
|
|
|
[roster_subscribe_master,
|
|
|
|
roster_subscribe_slave]},
|
|
|
|
{test_offline, [sequence],
|
|
|
|
[offline_master, offline_slave]},
|
2014-07-19 15:23:13 +02:00
|
|
|
{test_muc, [parallel],
|
|
|
|
[muc_master, muc_slave]},
|
2014-07-28 11:42:29 +02:00
|
|
|
{test_announce, [sequence],
|
2014-07-27 11:02:46 +02:00
|
|
|
[announce_master, announce_slave]},
|
2014-10-30 21:54:02 +01:00
|
|
|
{test_vcard_xupdate, [parallel],
|
|
|
|
[vcard_xupdate_master, vcard_xupdate_slave]},
|
2014-07-09 14:38:45 +02:00
|
|
|
{test_roster_remove, [parallel],
|
|
|
|
[roster_remove_master,
|
|
|
|
roster_remove_slave]}].
|
|
|
|
|
2013-06-21 19:23:56 +02:00
|
|
|
ldap_tests() ->
|
|
|
|
[{ldap_tests, [sequence],
|
|
|
|
[test_auth,
|
|
|
|
vcard_get]}].
|
|
|
|
|
2013-06-26 04:29:50 +02:00
|
|
|
extauth_tests() ->
|
|
|
|
[{extauth_tests, [sequence],
|
|
|
|
[test_auth,
|
|
|
|
test_unregister]}].
|
|
|
|
|
2013-06-19 12:11:20 +02:00
|
|
|
groups() ->
|
2013-06-21 19:23:56 +02:00
|
|
|
[{ldap, [sequence], ldap_tests()},
|
2013-06-26 04:29:50 +02:00
|
|
|
{extauth, [sequence], extauth_tests()},
|
2013-06-21 19:23:56 +02:00
|
|
|
{no_db, [sequence], no_db_tests()},
|
2014-07-09 14:38:45 +02:00
|
|
|
{mnesia, [sequence], db_tests(mnesia)},
|
|
|
|
{mysql, [sequence], db_tests(mysql)},
|
|
|
|
{pgsql, [sequence], db_tests(pgsql)},
|
|
|
|
{riak, [sequence], db_tests(riak)}].
|
2013-06-19 12:11:20 +02:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
all() ->
|
2013-06-21 19:23:56 +02:00
|
|
|
[{group, ldap},
|
|
|
|
{group, no_db},
|
2013-06-19 12:11:20 +02:00
|
|
|
{group, mnesia},
|
|
|
|
{group, mysql},
|
|
|
|
{group, pgsql},
|
2013-06-26 04:29:50 +02:00
|
|
|
{group, extauth},
|
2014-07-09 14:38:45 +02:00
|
|
|
{group, riak},
|
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)).
|
|
|
|
|
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.
|
|
|
|
|
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.
|
|
|
|
|
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-06-26 19:55:29 +02:00
|
|
|
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.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
auth_plain(Config) ->
|
2013-04-08 11:12:54 +02:00
|
|
|
Mechs = ?config(mechs, Config),
|
2013-06-26 19:55:29 +02:00
|
|
|
case lists:member(<<"PLAIN">>, Mechs) of
|
|
|
|
true ->
|
|
|
|
disconnect(auth_SASL(<<"PLAIN">>, Config));
|
|
|
|
false ->
|
|
|
|
disconnect(Config),
|
|
|
|
{skipped, 'PLAIN_not_available'}
|
2013-04-08 11:12:54 +02:00
|
|
|
end.
|
|
|
|
|
2013-06-26 19:55:29 +02:00
|
|
|
test_auth(Config) ->
|
|
|
|
disconnect(auth(Config)).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
test_bind(Config) ->
|
|
|
|
disconnect(bind(Config)).
|
|
|
|
|
|
|
|
test_open_session(Config) ->
|
|
|
|
disconnect(open_session(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).
|
|
|
|
|
2013-09-24 10:40:32 +02:00
|
|
|
roster_ver(Config) ->
|
|
|
|
%% Get initial "ver"
|
|
|
|
#iq{type = result, sub_els = [#roster{ver = Ver1, items = []}]} =
|
|
|
|
send_recv(Config, #iq{type = get,
|
|
|
|
sub_els = [#roster{ver = <<"">>}]}),
|
|
|
|
%% Should receive empty IQ-result
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = get,
|
|
|
|
sub_els = [#roster{ver = Ver1}]}),
|
|
|
|
%% Attempting to subscribe to server's JID
|
|
|
|
send(Config, #presence{type = subscribe, to = server_jid(Config)}),
|
|
|
|
%% Receive a single roster push with the new "ver"
|
|
|
|
#iq{type = set, sub_els = [#roster{ver = Ver2}]} = recv(),
|
|
|
|
%% Requesting roster with the previous "ver". Should receive Ver2 again
|
|
|
|
#iq{type = result, sub_els = [#roster{ver = Ver2}]} =
|
|
|
|
send_recv(Config, #iq{type = get,
|
|
|
|
sub_els = [#roster{ver = Ver1}]}),
|
|
|
|
%% Now requesting roster with the newest "ver". Should receive empty IQ.
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config, #iq{type = get,
|
|
|
|
sub_els = [#roster{ver = Ver2}]}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-06-19 12:11:20 +02:00
|
|
|
presence(Config) ->
|
|
|
|
send(Config, #presence{}),
|
|
|
|
JID = my_jid(Config),
|
|
|
|
#presence{from = JID, to = JID} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
presence_broadcast(Config) ->
|
2014-07-15 09:53:40 +02:00
|
|
|
Feature = <<"p1:tmp:", (randoms:get_string())/binary>>,
|
|
|
|
Ver = crypto:sha(["client", $/, "bot", $/, "en", $/,
|
|
|
|
"ejabberd_ct", $<, Feature, $<]),
|
|
|
|
B64Ver = base64:encode(Ver),
|
|
|
|
Node = <<(?EJABBERD_CT_URI)/binary, $#, B64Ver/binary>>,
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
ServerJID = server_jid(Config),
|
|
|
|
Info = #disco_info{identities =
|
|
|
|
[#identity{category = <<"client">>,
|
|
|
|
type = <<"bot">>,
|
|
|
|
lang = <<"en">>,
|
|
|
|
name = <<"ejabberd_ct">>}],
|
|
|
|
node = Node, features = [Feature]},
|
|
|
|
Caps = #caps{hash = <<"sha-1">>, node = ?EJABBERD_CT_URI, ver = Ver},
|
|
|
|
send(Config, #presence{sub_els = [Caps]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
JID = my_jid(Config),
|
2014-07-15 09:53:40 +02:00
|
|
|
%% We receive:
|
|
|
|
%% 1) disco#info iq request for CAPS
|
|
|
|
%% 2) welcome message
|
|
|
|
%% 3) presence broadcast
|
|
|
|
{IQ, _, _} = ?recv3(#iq{type = get,
|
|
|
|
from = ServerJID,
|
|
|
|
sub_els = [#disco_info{node = Node}]},
|
|
|
|
#message{type = normal},
|
|
|
|
#presence{from = JID, to = JID}),
|
|
|
|
send(Config, #iq{type = result, id = IQ#iq.id,
|
|
|
|
to = ServerJID, sub_els = [Info]}),
|
|
|
|
%% We're trying to read our feature from ejabberd database
|
|
|
|
%% with exponential back-off as our IQ response may be delayed.
|
|
|
|
[Feature] =
|
|
|
|
lists:foldl(
|
|
|
|
fun(Time, []) ->
|
|
|
|
timer:sleep(Time),
|
|
|
|
mod_caps:get_features(
|
|
|
|
Server,
|
|
|
|
mod_caps:read_caps(
|
|
|
|
[xmpp_codec:encode(Caps)]));
|
|
|
|
(_, Acc) ->
|
|
|
|
Acc
|
|
|
|
end, [], [0, 100, 200, 2000, 5000, 10000]),
|
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).
|
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
sm(Config) ->
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
ServerJID = jlib:make_jid(<<"">>, Server, <<"">>),
|
|
|
|
Msg = #message{to = ServerJID, body = [#text{data = <<"body">>}]},
|
|
|
|
true = ?config(sm, Config),
|
|
|
|
%% Enable the session management with resumption enabled
|
2014-08-26 20:21:27 +02:00
|
|
|
send(Config, #sm_enable{resume = true, xmlns = ?NS_STREAM_MGMT_3}),
|
2014-07-22 11:59:31 +02:00
|
|
|
#sm_enabled{id = ID, resume = true} = recv(),
|
|
|
|
%% Initial request; 'h' should be 0.
|
2014-08-26 20:21:27 +02:00
|
|
|
send(Config, #sm_r{xmlns = ?NS_STREAM_MGMT_3}),
|
2014-07-22 11:59:31 +02:00
|
|
|
#sm_a{h = 0} = recv(),
|
|
|
|
%% sending two messages and requesting again; 'h' should be 3.
|
|
|
|
send(Config, Msg),
|
|
|
|
send(Config, Msg),
|
|
|
|
send(Config, Msg),
|
2014-08-26 20:21:27 +02:00
|
|
|
send(Config, #sm_r{xmlns = ?NS_STREAM_MGMT_3}),
|
2014-07-22 11:59:31 +02:00
|
|
|
#sm_a{h = 3} = recv(),
|
|
|
|
close_socket(Config),
|
|
|
|
{save_config, set_opt(sm_previd, ID, Config)}.
|
|
|
|
|
|
|
|
sm_resume(Config) ->
|
|
|
|
{sm, SMConfig} = ?config(saved_config, Config),
|
|
|
|
ID = ?config(sm_previd, SMConfig),
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
ServerJID = jlib:make_jid(<<"">>, Server, <<"">>),
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Txt = #text{data = <<"body">>},
|
|
|
|
Msg = #message{from = ServerJID, to = MyJID, body = [Txt]},
|
|
|
|
%% Route message. The message should be queued by the C2S process.
|
|
|
|
ejabberd_router:route(ServerJID, MyJID, xmpp_codec:encode(Msg)),
|
2014-08-26 20:21:27 +02:00
|
|
|
send(Config, #sm_resume{previd = ID, h = 0, xmlns = ?NS_STREAM_MGMT_3}),
|
2014-07-22 11:59:31 +02:00
|
|
|
#sm_resumed{previd = ID, h = 3} = recv(),
|
|
|
|
#message{from = ServerJID, to = MyJID, body = [Txt]} = recv(),
|
|
|
|
#sm_r{} = recv(),
|
2014-08-26 20:21:27 +02:00
|
|
|
send(Config, #sm_a{h = 1, xmlns = ?NS_STREAM_MGMT_3}),
|
2014-07-22 11:59:31 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
private(Config) ->
|
|
|
|
Conference = #bookmark_conference{name = <<"Some name">>,
|
|
|
|
autojoin = true,
|
|
|
|
jid = jlib:make_jid(
|
|
|
|
<<"some">>,
|
|
|
|
<<"some.conference.org">>,
|
|
|
|
<<>>)},
|
|
|
|
Storage = #bookmark_storage{conference = [Conference]},
|
2013-07-03 15:33:19 +02:00
|
|
|
StorageXMLOut = xmpp_codec:encode(Storage),
|
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,
|
2013-07-03 15:33:19 +02:00
|
|
|
sub_els = [#private{xml_els = [StorageXMLOut]}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-07-03 15:33:19 +02:00
|
|
|
sub_els = [#private{xml_els = [StorageXMLIn]}]} =
|
2013-06-16 20:00:19 +02:00
|
|
|
send_recv(
|
|
|
|
Config,
|
|
|
|
#iq{type = get,
|
2013-07-03 15:33:19 +02:00
|
|
|
sub_els = [#private{xml_els = [xmpp_codec:encode(
|
|
|
|
#bookmark_storage{})]}]}),
|
|
|
|
Storage = xmpp_codec:decode(StorageXMLIn),
|
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).
|
|
|
|
|
2013-06-21 19:23:56 +02:00
|
|
|
vcard_get(Config) ->
|
|
|
|
true = is_feature_advertised(Config, ?NS_VCARD),
|
|
|
|
%% TODO: check if VCard corresponds to LDIF data from ejabberd.ldif
|
|
|
|
#iq{type = result, sub_els = [_VCard]} =
|
|
|
|
send_recv(Config, #iq{type = get, sub_els = [#vcard{}]}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2014-10-30 21:54:02 +01:00
|
|
|
vcard_xupdate_master(Config) ->
|
|
|
|
Img = <<137, "PNG\r\n", 26, $\n>>,
|
|
|
|
ImgHash = p1_sha:sha(Img),
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(slave, Config),
|
|
|
|
wait_for_slave(Config),
|
|
|
|
send(Config, #presence{}),
|
|
|
|
?recv2(#presence{from = MyJID, type = undefined},
|
|
|
|
#presence{from = Peer, type = undefined}),
|
|
|
|
VCard = #vcard{photo = #vcard_photo{type = <<"image/png">>, binval = Img}},
|
|
|
|
I1 = send(Config, #iq{type = set, sub_els = [VCard]}),
|
|
|
|
?recv2(#iq{type = result, sub_els = [], id = I1},
|
|
|
|
#presence{from = MyJID, type = undefined,
|
|
|
|
sub_els = [#vcard_xupdate{photo = ImgHash}]}),
|
|
|
|
I2 = send(Config, #iq{type = set, sub_els = [#vcard{}]}),
|
|
|
|
?recv3(#iq{type = result, sub_els = [], id = I2},
|
|
|
|
#presence{from = MyJID, type = undefined,
|
|
|
|
sub_els = [#vcard_xupdate{photo = undefined}]},
|
|
|
|
#presence{from = Peer, type = unavailable}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
vcard_xupdate_slave(Config) ->
|
|
|
|
Img = <<137, "PNG\r\n", 26, $\n>>,
|
|
|
|
ImgHash = p1_sha:sha(Img),
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
Peer = ?config(master, Config),
|
|
|
|
send(Config, #presence{}),
|
|
|
|
#presence{from = MyJID, type = undefined} = recv(),
|
|
|
|
wait_for_master(Config),
|
|
|
|
#presence{from = Peer, type = undefined} = recv(),
|
|
|
|
#presence{from = Peer, type = undefined,
|
|
|
|
sub_els = [#vcard_xupdate{photo = ImgHash}]} = recv(),
|
|
|
|
#presence{from = Peer, type = undefined,
|
|
|
|
sub_els = [#vcard_xupdate{photo = undefined}]} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
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) ->
|
2013-06-25 19:32:08 +02:00
|
|
|
Features = get_features(Config, pubsub_jid(Config)),
|
|
|
|
true = lists:member(?NS_PUBSUB, Features),
|
2013-04-08 11:12:54 +02:00
|
|
|
%% Publish <presence/> element within node "presence"
|
|
|
|
ItemID = randoms:get_string(),
|
|
|
|
Node = <<"presence">>,
|
2013-07-03 15:33:19 +02:00
|
|
|
Item = #pubsub_item{id = ItemID,
|
|
|
|
xml_els = [xmpp_codec:encode(#presence{})]},
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = result,
|
2013-06-25 19:00:27 +02:00
|
|
|
sub_els = [#pubsub{publish = #pubsub_publish{
|
|
|
|
node = Node,
|
|
|
|
items = [#pubsub_item{id = ItemID}]}}]} =
|
2013-06-16 20:00:19 +02:00
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
2013-06-25 19:00:27 +02:00
|
|
|
sub_els = [#pubsub{publish = #pubsub_publish{
|
|
|
|
node = Node,
|
|
|
|
items = [Item]}}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
%% Subscribe to node "presence"
|
2013-06-25 19:00:27 +02:00
|
|
|
I1 = send(Config,
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
2013-06-25 19:00:27 +02:00
|
|
|
sub_els = [#pubsub{subscribe = #pubsub_subscribe{
|
|
|
|
node = Node,
|
|
|
|
jid = my_jid(Config)}}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
?recv2(
|
2014-12-07 15:55:18 +01:00
|
|
|
#message{sub_els = [#pubsub_event{}, #delay{}, #legacy_delay{}]},
|
2013-06-25 19:00:27 +02:00
|
|
|
#iq{type = result, id = I1}),
|
2013-06-13 18:34:45 +02:00
|
|
|
%% Get subscriptions
|
2013-06-25 19:32:08 +02:00
|
|
|
true = lists:member(?PUBSUB("retrieve-subscriptions"), Features),
|
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
|
2013-06-25 19:32:08 +02:00
|
|
|
true = lists:member(?PUBSUB("retrieve-affiliations"), Features),
|
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-06-25 19:00:27 +02:00
|
|
|
%% Get subscription options
|
2013-06-25 19:32:08 +02:00
|
|
|
true = lists:member(?PUBSUB("subscription-options"), Features),
|
2013-06-25 19:00:27 +02:00
|
|
|
#iq{type = result, sub_els = [#pubsub{options = #pubsub_options{
|
|
|
|
node = Node}}]} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = get, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{options = #pubsub_options{
|
|
|
|
node = Node,
|
|
|
|
jid = my_jid(Config)}}]}),
|
|
|
|
%% Fetching published items from node "presence"
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#pubsub{items = #pubsub_items{
|
|
|
|
node = Node,
|
|
|
|
items = [Item]}}]} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = get, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{items = #pubsub_items{node = Node}}]}),
|
|
|
|
%% Deleting the item from the node
|
2013-06-25 19:32:08 +02:00
|
|
|
true = lists:member(?PUBSUB("delete-items"), Features),
|
2013-06-25 19:00:27 +02:00
|
|
|
I2 = send(Config,
|
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{retract = #pubsub_retract{
|
|
|
|
node = Node,
|
|
|
|
items = [#pubsub_item{id = ItemID}]}}]}),
|
|
|
|
?recv2(
|
|
|
|
#iq{type = result, id = I2, sub_els = []},
|
|
|
|
#message{sub_els = [#pubsub_event{
|
|
|
|
items = [#pubsub_event_items{
|
|
|
|
node = Node,
|
|
|
|
retract = [ItemID]}]},
|
|
|
|
#shim{headers = [{<<"Collection">>, Node}]}]}),
|
|
|
|
%% Unsubscribe from node "presence"
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set, to = pubsub_jid(Config),
|
|
|
|
sub_els = [#pubsub{unsubscribe = #pubsub_unsubscribe{
|
|
|
|
node = Node,
|
|
|
|
jid = my_jid(Config)}}]}),
|
2013-04-08 11:12:54 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
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]}]}),
|
2013-06-18 14:31:19 +02:00
|
|
|
{Push, _, _} = ?recv3(
|
2013-06-16 20:00:19 +02:00
|
|
|
#iq{type = set,
|
|
|
|
sub_els =
|
|
|
|
[#roster{items = [#roster_item{
|
|
|
|
jid = LPeer,
|
|
|
|
subscription = remove}]}]},
|
2013-06-18 14:31:19 +02:00
|
|
|
#iq{type = result, id = I, sub_els = []},
|
|
|
|
#presence{type = unavailable, from = Peer}),
|
2013-06-16 20:00:19 +02:00
|
|
|
send(Config, make_iq_result(Push)),
|
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{}),
|
2013-06-19 12:11:20 +02:00
|
|
|
#presence{from = MyJID, type = undefined} = recv(),
|
2013-06-15 18:45:18 +02:00
|
|
|
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-19 12:11:20 +02:00
|
|
|
%%#presence{type = unavailable, from = Peer} = recv(),
|
2013-06-15 15:28:14 +02:00
|
|
|
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),
|
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).
|
|
|
|
|
2014-07-19 15:23:13 +02:00
|
|
|
muc_master(Config) ->
|
2013-06-16 20:00:19 +02:00
|
|
|
MyJID = my_jid(Config),
|
2014-07-19 15:23:13 +02:00
|
|
|
PeerJID = ?config(slave, Config),
|
|
|
|
PeerBareJID = jlib:jid_remove_resource(PeerJID),
|
|
|
|
PeerJIDStr = jlib:jid_to_string(PeerJID),
|
2013-06-16 20:00:19 +02:00
|
|
|
MUC = muc_jid(Config),
|
|
|
|
Room = muc_room_jid(Config),
|
2014-07-19 15:23:13 +02:00
|
|
|
MyNick = ?config(master_nick, Config),
|
|
|
|
MyNickJID = jlib:jid_replace_resource(Room, MyNick),
|
|
|
|
PeerNick = ?config(slave_nick, Config),
|
|
|
|
PeerNickJID = jlib:jid_replace_resource(Room, PeerNick),
|
|
|
|
Subject = ?config(room_subject, Config),
|
|
|
|
Localhost = jlib:make_jid(<<"">>, <<"localhost">>, <<"">>),
|
2013-06-16 20:00:19 +02:00
|
|
|
true = is_feature_advertised(Config, ?NS_MUC, MUC),
|
|
|
|
%% Joining
|
2014-07-19 15:23:13 +02:00
|
|
|
send(Config, #presence{to = MyNickJID, sub_els = [#muc{}]}),
|
2013-06-16 20:00:19 +02:00
|
|
|
%% 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{
|
2014-07-19 15:23:13 +02:00
|
|
|
from = MyNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2013-06-16 20:00:19 +02:00
|
|
|
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
|
2014-07-19 15:23:13 +02:00
|
|
|
[110, 201] = lists:sort(Codes),
|
2013-06-16 20:00:19 +02:00
|
|
|
%% 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">>];
|
2014-07-19 15:23:13 +02:00
|
|
|
<<"members_by_default">> ->
|
|
|
|
[<<"0">>];
|
|
|
|
<<"muc#roomconfig_allowvoicerequests">> ->
|
|
|
|
[<<"1">>];
|
|
|
|
<<"public_list">> ->
|
|
|
|
[<<"1">>];
|
|
|
|
<<"muc#roomconfig_publicroom">> ->
|
|
|
|
[<<"1">>];
|
2013-06-16 20:00:19 +02:00
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
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!
|
|
|
|
#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,
|
2014-07-19 15:23:13 +02:00
|
|
|
body = [#text{data = Subject}]}),
|
|
|
|
#message{from = MyNickJID, type = groupchat,
|
|
|
|
body = [#text{data = Subject}]} = recv(),
|
|
|
|
%% Sending messages (and thus, populating history for our peer)
|
|
|
|
lists:foreach(
|
|
|
|
fun(N) ->
|
|
|
|
Text = #text{data = jlib:integer_to_binary(N)},
|
|
|
|
I = send(Config, #message{to = Room, body = [Text],
|
|
|
|
type = groupchat}),
|
|
|
|
#message{from = MyNickJID, id = I,
|
|
|
|
type = groupchat,
|
|
|
|
body = [Text]} = recv()
|
|
|
|
end, lists:seq(1, 5)),
|
|
|
|
%% Inviting the peer
|
|
|
|
send(Config, #message{to = Room, type = normal,
|
|
|
|
sub_els =
|
|
|
|
[#muc_user{
|
|
|
|
invites =
|
|
|
|
[#muc_invite{to = PeerJID}]}]}),
|
|
|
|
%% Peer is joining
|
|
|
|
#presence{from = PeerNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
items = [#muc_item{role = visitor,
|
|
|
|
jid = PeerJID,
|
|
|
|
affiliation = none}]}]} = recv(),
|
|
|
|
%% Receiving a voice request
|
|
|
|
#message{from = Room,
|
|
|
|
sub_els = [#xdata{type = form,
|
|
|
|
instructions = [_],
|
|
|
|
fields = VoiceReqFs}]} = recv(),
|
|
|
|
%% Approving the voice request
|
|
|
|
ReplyVoiceReqFs =
|
|
|
|
lists:map(
|
|
|
|
fun(#xdata_field{var = Var, values = OrigVals}) ->
|
|
|
|
Vals = case {Var, OrigVals} of
|
|
|
|
{<<"FORM_TYPE">>,
|
|
|
|
[<<"http://jabber.org/protocol/muc#request">>]} ->
|
|
|
|
OrigVals;
|
|
|
|
{<<"muc#role">>, [<<"participant">>]} ->
|
|
|
|
[<<"participant">>];
|
|
|
|
{<<"muc#jid">>, [PeerJIDStr]} ->
|
|
|
|
[PeerJIDStr];
|
|
|
|
{<<"muc#roomnick">>, [PeerNick]} ->
|
|
|
|
[PeerNick];
|
|
|
|
{<<"muc#request_allow">>, [<<"0">>]} ->
|
|
|
|
[<<"1">>]
|
|
|
|
end,
|
|
|
|
#xdata_field{values = Vals, var = Var}
|
|
|
|
end, VoiceReqFs),
|
|
|
|
send(Config, #message{to = Room,
|
|
|
|
sub_els = [#xdata{type = submit,
|
|
|
|
fields = ReplyVoiceReqFs}]}),
|
|
|
|
%% Peer is becoming a participant
|
|
|
|
#presence{from = PeerNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
items = [#muc_item{role = participant,
|
|
|
|
jid = PeerJID,
|
|
|
|
affiliation = none}]}]} = recv(),
|
|
|
|
%% Receive private message from the peer
|
|
|
|
#message{from = PeerNickJID, body = [#text{data = Subject}]} = recv(),
|
|
|
|
%% Granting membership to the peer and localhost server
|
|
|
|
I1 = send(Config,
|
|
|
|
#iq{type = set, to = Room,
|
|
|
|
sub_els =
|
|
|
|
[#muc_admin{
|
|
|
|
items = [#muc_item{jid = Localhost,
|
|
|
|
affiliation = member},
|
|
|
|
#muc_item{nick = PeerNick,
|
|
|
|
jid = PeerBareJID,
|
|
|
|
affiliation = member}]}]}),
|
|
|
|
%% Peer became a member
|
|
|
|
#presence{from = PeerNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
items = [#muc_item{affiliation = member,
|
|
|
|
jid = PeerJID,
|
|
|
|
role = participant}]}]} = recv(),
|
|
|
|
%% BUG: We should not receive any sub_els!
|
|
|
|
#iq{type = result, id = I1, sub_els = [_|_]} = recv(),
|
|
|
|
%% Receive groupchat message from the peer
|
|
|
|
#message{type = groupchat, from = PeerNickJID,
|
|
|
|
body = [#text{data = Subject}]} = recv(),
|
|
|
|
%% Kick the peer
|
|
|
|
I2 = send(Config,
|
|
|
|
#iq{type = set, to = Room,
|
|
|
|
sub_els = [#muc_admin{
|
|
|
|
items = [#muc_item{nick = PeerNick,
|
|
|
|
role = none}]}]}),
|
|
|
|
%% Got notification the peer is kicked
|
|
|
|
%% 307 -> Inform user that he or she has been kicked from the room
|
2014-10-30 21:54:02 +01:00
|
|
|
#presence{from = PeerNickJID, type = unavailable,
|
2014-07-19 15:23:13 +02:00
|
|
|
sub_els = [#muc_user{
|
|
|
|
status_codes = [307],
|
|
|
|
items = [#muc_item{affiliation = member,
|
|
|
|
jid = PeerJID,
|
|
|
|
role = none}]}]} = recv(),
|
|
|
|
%% BUG: We should not receive any sub_els!
|
|
|
|
#iq{type = result, id = I2, sub_els = [_|_]} = recv(),
|
|
|
|
%% Destroying the room
|
|
|
|
I3 = send(Config,
|
|
|
|
#iq{type = set, to = Room,
|
|
|
|
sub_els = [#muc_owner{
|
|
|
|
destroy = #muc_owner_destroy{
|
|
|
|
reason = Subject}}]}),
|
|
|
|
%% Kicked off
|
|
|
|
#presence{from = MyNickJID, type = unavailable,
|
|
|
|
sub_els = [#muc_user{items = [#muc_item{role = none,
|
|
|
|
affiliation = none}],
|
|
|
|
destroy = #muc_user_destroy{
|
|
|
|
reason = Subject}}]} = recv(),
|
|
|
|
%% BUG: We should not receive any sub_els!
|
|
|
|
#iq{type = result, id = I3, sub_els = [_|_]} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
muc_slave(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
MyBareJID = jlib:jid_remove_resource(MyJID),
|
|
|
|
PeerJID = ?config(master, Config),
|
|
|
|
MUC = muc_jid(Config),
|
|
|
|
Room = muc_room_jid(Config),
|
|
|
|
MyNick = ?config(slave_nick, Config),
|
|
|
|
MyNickJID = jlib:jid_replace_resource(Room, MyNick),
|
|
|
|
PeerNick = ?config(master_nick, Config),
|
|
|
|
PeerNickJID = jlib:jid_replace_resource(Room, PeerNick),
|
|
|
|
Subject = ?config(room_subject, Config),
|
|
|
|
Localhost = jlib:make_jid(<<"">>, <<"localhost">>, <<"">>),
|
|
|
|
%% Receive an invite from the peer
|
|
|
|
#message{from = Room, type = normal,
|
|
|
|
sub_els =
|
|
|
|
[#muc_user{invites =
|
|
|
|
[#muc_invite{from = PeerJID}]}]} = recv(),
|
|
|
|
%% But before joining we discover the MUC service first
|
|
|
|
%% to check if the room is in the disco list
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#disco_items{items = [#disco_item{jid = Room}]}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = MUC,
|
|
|
|
sub_els = [#disco_items{}]}),
|
|
|
|
%% Now check if the peer is in the room. We check this via disco#items
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#disco_items{items = [#disco_item{jid = PeerNickJID,
|
|
|
|
name = PeerNick}]}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = Room,
|
|
|
|
sub_els = [#disco_items{}]}),
|
|
|
|
%% Now joining
|
|
|
|
send(Config, #presence{to = MyNickJID, sub_els = [#muc{}]}),
|
|
|
|
%% First presence is from the participant, i.e. from the peer
|
|
|
|
#presence{
|
|
|
|
from = PeerNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
status_codes = [],
|
|
|
|
items = [#muc_item{role = moderator,
|
|
|
|
affiliation = owner}]}]} = recv(),
|
|
|
|
%% The next is the self-presence (code 110 means it)
|
|
|
|
#presence{
|
|
|
|
from = MyNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
status_codes = [110],
|
|
|
|
items = [#muc_item{role = visitor,
|
|
|
|
affiliation = none}]}]} = recv(),
|
|
|
|
%% Receive the room subject
|
|
|
|
#message{from = PeerNickJID, type = groupchat,
|
|
|
|
body = [#text{data = Subject}],
|
|
|
|
sub_els = [#delay{}, #legacy_delay{}]} = recv(),
|
|
|
|
%% Receive MUC history
|
|
|
|
lists:foreach(
|
|
|
|
fun(N) ->
|
|
|
|
Text = #text{data = jlib:integer_to_binary(N)},
|
|
|
|
#message{from = PeerNickJID,
|
|
|
|
type = groupchat,
|
|
|
|
body = [Text],
|
|
|
|
sub_els = [#delay{}, #legacy_delay{}]} = recv()
|
|
|
|
end, lists:seq(1, 5)),
|
|
|
|
%% Sending a voice request
|
|
|
|
VoiceReq = #xdata{
|
|
|
|
type = submit,
|
|
|
|
fields =
|
|
|
|
[#xdata_field{
|
|
|
|
var = <<"FORM_TYPE">>,
|
|
|
|
values = [<<"http://jabber.org/protocol/muc#request">>]},
|
|
|
|
#xdata_field{
|
|
|
|
var = <<"muc#role">>,
|
|
|
|
type = 'text-single',
|
|
|
|
values = [<<"participant">>]}]},
|
|
|
|
send(Config, #message{to = Room, sub_els = [VoiceReq]}),
|
|
|
|
%% Becoming a participant
|
|
|
|
#presence{from = MyNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
items = [#muc_item{role = participant,
|
|
|
|
affiliation = none}]}]} = recv(),
|
|
|
|
%% Sending private message to the peer
|
|
|
|
send(Config, #message{to = PeerNickJID,
|
|
|
|
body = [#text{data = Subject}]}),
|
|
|
|
%% Becoming a member
|
|
|
|
#presence{from = MyNickJID,
|
2014-10-30 21:54:02 +01:00
|
|
|
sub_els = [#vcard_xupdate{},
|
|
|
|
#muc_user{
|
2014-07-19 15:23:13 +02:00
|
|
|
items = [#muc_item{role = participant,
|
|
|
|
affiliation = member}]}]} = recv(),
|
|
|
|
%% Retrieving a member list
|
|
|
|
#iq{type = result, sub_els = [#muc_admin{items = MemberList}]} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = get, to = Room,
|
|
|
|
sub_els =
|
|
|
|
[#muc_admin{items = [#muc_item{affiliation = member}]}]}),
|
|
|
|
[#muc_item{affiliation = member,
|
|
|
|
jid = Localhost},
|
|
|
|
#muc_item{affiliation = member,
|
|
|
|
jid = MyBareJID}] = lists:keysort(#muc_item.jid, MemberList),
|
|
|
|
%% Sending groupchat message
|
|
|
|
send(Config, #message{to = Room, type = groupchat,
|
|
|
|
body = [#text{data = Subject}]}),
|
|
|
|
%% Receive this message back
|
|
|
|
#message{type = groupchat, from = MyNickJID,
|
|
|
|
body = [#text{data = Subject}]} = recv(),
|
|
|
|
%% We're kicked off
|
|
|
|
%% 307 -> Inform user that he or she has been kicked from the room
|
|
|
|
#presence{from = MyNickJID, type = unavailable,
|
|
|
|
sub_els = [#muc_user{
|
|
|
|
status_codes = [307],
|
|
|
|
items = [#muc_item{affiliation = member,
|
|
|
|
role = none}]}]} = recv(),
|
2013-06-16 20:00:19 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
2014-09-03 19:28:07 +02:00
|
|
|
muc_register_nick(Config, MUC, PrevNick, Nick) ->
|
|
|
|
{Registered, PrevNickVals} = if PrevNick /= <<"">> ->
|
|
|
|
{true, [PrevNick]};
|
|
|
|
true ->
|
|
|
|
{false, []}
|
|
|
|
end,
|
|
|
|
%% Request register form
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#register{registered = Registered,
|
|
|
|
xdata = #xdata{type = form,
|
|
|
|
fields = FsWithoutNick}}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = MUC,
|
|
|
|
sub_els = [#register{}]}),
|
|
|
|
%% Check if 'nick' field presents
|
|
|
|
#xdata_field{type = 'text-single',
|
|
|
|
var = <<"nick">>,
|
|
|
|
values = PrevNickVals} =
|
|
|
|
lists:keyfind(<<"nick">>, #xdata_field.var, FsWithoutNick),
|
|
|
|
X = #xdata{type = submit,
|
|
|
|
fields = [#xdata_field{var = <<"nick">>, values = [Nick]}]},
|
|
|
|
%% Submitting form
|
|
|
|
#iq{type = result, sub_els = [_|_]} =
|
|
|
|
send_recv(Config, #iq{type = set, to = MUC,
|
|
|
|
sub_els = [#register{xdata = X}]}),
|
|
|
|
%% Check if the nick was registered
|
|
|
|
#iq{type = result,
|
|
|
|
sub_els = [#register{registered = true,
|
|
|
|
xdata = #xdata{type = form,
|
|
|
|
fields = FsWithNick}}]} =
|
|
|
|
send_recv(Config, #iq{type = get, to = MUC,
|
|
|
|
sub_els = [#register{}]}),
|
|
|
|
#xdata_field{type = 'text-single', var = <<"nick">>,
|
|
|
|
values = [Nick]} =
|
|
|
|
lists:keyfind(<<"nick">>, #xdata_field.var, FsWithNick).
|
|
|
|
|
|
|
|
muc_register_master(Config) ->
|
|
|
|
MUC = muc_jid(Config),
|
|
|
|
%% Register nick "master1"
|
|
|
|
muc_register_nick(Config, MUC, <<"">>, <<"master1">>),
|
|
|
|
%% Unregister nick "master1" via jabber:register
|
|
|
|
#iq{type = result, sub_els = [_|_]} =
|
|
|
|
send_recv(Config, #iq{type = set, to = MUC,
|
|
|
|
sub_els = [#register{remove = true}]}),
|
|
|
|
%% Register nick "master2"
|
|
|
|
muc_register_nick(Config, MUC, <<"">>, <<"master2">>),
|
|
|
|
%% Now register nick "master"
|
|
|
|
muc_register_nick(Config, MUC, <<"master2">>, <<"master">>),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
muc_register_slave(Config) ->
|
|
|
|
MUC = muc_jid(Config),
|
|
|
|
%% Trying to register occupied nick "master"
|
|
|
|
X = #xdata{type = submit,
|
|
|
|
fields = [#xdata_field{var = <<"nick">>,
|
|
|
|
values = [<<"master">>]}]},
|
|
|
|
#iq{type = error} =
|
|
|
|
send_recv(Config, #iq{type = set, to = MUC,
|
|
|
|
sub_els = [#register{xdata = X}]}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2014-07-27 11:02:46 +02:00
|
|
|
announce_master(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
ServerJID = server_jid(Config),
|
|
|
|
MotdJID = jlib:jid_replace_resource(ServerJID, <<"announce/motd">>),
|
|
|
|
MotdText = #text{data = <<"motd">>},
|
|
|
|
send(Config, #presence{}),
|
|
|
|
#presence{from = MyJID} = recv(),
|
|
|
|
%% Set message of the day
|
|
|
|
send(Config, #message{to = MotdJID, body = [MotdText]}),
|
|
|
|
%% Receive this message back
|
|
|
|
#message{from = ServerJID, body = [MotdText]} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
announce_slave(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
ServerJID = server_jid(Config),
|
2014-07-28 11:42:29 +02:00
|
|
|
MotdDelJID = jlib:jid_replace_resource(ServerJID, <<"announce/motd/delete">>),
|
2014-07-27 11:02:46 +02:00
|
|
|
MotdText = #text{data = <<"motd">>},
|
|
|
|
send(Config, #presence{}),
|
2014-07-28 11:42:29 +02:00
|
|
|
?recv2(#presence{from = MyJID},
|
2014-07-27 11:02:46 +02:00
|
|
|
#message{from = ServerJID, body = [MotdText]}),
|
2014-07-28 11:42:29 +02:00
|
|
|
%% Delete message of the day
|
|
|
|
send(Config, #message{to = MotdDelJID}),
|
2014-07-27 11:02:46 +02:00
|
|
|
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">>}]}),
|
2013-07-06 20:47:47 +02:00
|
|
|
true = lists:keymember(delay, 1, SubEls),
|
|
|
|
true = lists:keymember(legacy_delay, 1, SubEls),
|
2013-06-17 09:15:27 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
carbons_master(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
MyBareJID = jlib:jid_remove_resource(MyJID),
|
|
|
|
Peer = ?config(slave, Config),
|
|
|
|
Txt = #text{data = <<"body">>},
|
|
|
|
true = is_feature_advertised(Config, ?NS_CARBONS_2),
|
|
|
|
send(Config, #presence{priority = 10}),
|
|
|
|
#presence{from = MyJID} = recv(),
|
|
|
|
wait_for_slave(Config),
|
|
|
|
#presence{from = Peer} = recv(),
|
|
|
|
%% Enable carbons
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#carbons_enable{}]}),
|
|
|
|
%% Send a message to bare and full JID
|
|
|
|
send(Config, #message{to = MyBareJID, type = chat, body = [Txt]}),
|
|
|
|
send(Config, #message{to = MyJID, type = chat, body = [Txt]}),
|
|
|
|
send(Config, #message{to = MyBareJID, type = chat, body = [Txt],
|
|
|
|
sub_els = [#carbons_private{}]}),
|
|
|
|
send(Config, #message{to = MyJID, type = chat, body = [Txt],
|
|
|
|
sub_els = [#carbons_private{}]}),
|
|
|
|
%% Receive the messages back
|
|
|
|
?recv4(#message{from = MyJID, to = MyBareJID, type = chat,
|
|
|
|
body = [Txt], sub_els = []},
|
|
|
|
#message{from = MyJID, to = MyJID, type = chat,
|
|
|
|
body = [Txt], sub_els = []},
|
|
|
|
#message{from = MyJID, to = MyBareJID, type = chat,
|
|
|
|
body = [Txt], sub_els = [#carbons_private{}]},
|
|
|
|
#message{from = MyJID, to = MyJID, type = chat,
|
|
|
|
body = [Txt], sub_els = [#carbons_private{}]}),
|
|
|
|
%% Disable carbons
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#carbons_disable{}]}),
|
|
|
|
wait_for_slave(Config),
|
|
|
|
%% Repeat the same and leave
|
|
|
|
send(Config, #message{to = MyBareJID, type = chat, body = [Txt]}),
|
|
|
|
send(Config, #message{to = MyJID, type = chat, body = [Txt]}),
|
|
|
|
send(Config, #message{to = MyBareJID, type = chat, body = [Txt],
|
|
|
|
sub_els = [#carbons_private{}]}),
|
|
|
|
send(Config, #message{to = MyJID, type = chat, body = [Txt],
|
|
|
|
sub_els = [#carbons_private{}]}),
|
|
|
|
?recv4(#message{from = MyJID, to = MyBareJID, type = chat,
|
|
|
|
body = [Txt], sub_els = []},
|
|
|
|
#message{from = MyJID, to = MyJID, type = chat,
|
|
|
|
body = [Txt], sub_els = []},
|
|
|
|
#message{from = MyJID, to = MyBareJID, type = chat,
|
|
|
|
body = [Txt], sub_els = [#carbons_private{}]},
|
|
|
|
#message{from = MyJID, to = MyJID, type = chat,
|
|
|
|
body = [Txt], sub_els = [#carbons_private{}]}),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
carbons_slave(Config) ->
|
|
|
|
MyJID = my_jid(Config),
|
|
|
|
MyBareJID = jlib:jid_remove_resource(MyJID),
|
|
|
|
Peer = ?config(master, Config),
|
|
|
|
Txt = #text{data = <<"body">>},
|
|
|
|
wait_for_master(Config),
|
|
|
|
send(Config, #presence{priority = 5}),
|
|
|
|
?recv2(#presence{from = MyJID}, #presence{from = Peer}),
|
|
|
|
%% Enable carbons
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#carbons_enable{}]}),
|
|
|
|
%% Receive messages sent by the peer
|
|
|
|
?recv4(
|
|
|
|
#message{from = MyBareJID, to = MyJID, type = chat,
|
|
|
|
sub_els =
|
|
|
|
[#carbons_sent{
|
|
|
|
forwarded = #forwarded{
|
|
|
|
sub_els =
|
|
|
|
[#message{from = Peer,
|
|
|
|
to = MyBareJID,
|
|
|
|
type = chat,
|
|
|
|
body = [Txt]}]}}]},
|
|
|
|
#message{from = MyBareJID, to = MyJID, type = chat,
|
|
|
|
sub_els =
|
|
|
|
[#carbons_sent{
|
|
|
|
forwarded = #forwarded{
|
|
|
|
sub_els =
|
|
|
|
[#message{from = Peer,
|
|
|
|
to = Peer,
|
|
|
|
type = chat,
|
|
|
|
body = [Txt]}]}}]},
|
|
|
|
#message{from = MyBareJID, to = MyJID, type = chat,
|
|
|
|
sub_els =
|
|
|
|
[#carbons_received{
|
|
|
|
forwarded = #forwarded{
|
|
|
|
sub_els =
|
|
|
|
[#message{from = Peer,
|
|
|
|
to = MyBareJID,
|
|
|
|
type = chat,
|
|
|
|
body = [Txt]}]}}]},
|
|
|
|
#message{from = MyBareJID, to = MyJID, type = chat,
|
|
|
|
sub_els =
|
|
|
|
[#carbons_received{
|
|
|
|
forwarded = #forwarded{
|
|
|
|
sub_els =
|
|
|
|
[#message{from = Peer,
|
|
|
|
to = Peer,
|
|
|
|
type = chat,
|
|
|
|
body = [Txt]}]}}]}),
|
|
|
|
%% Disable carbons
|
|
|
|
#iq{type = result, sub_els = []} =
|
|
|
|
send_recv(Config,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_els = [#carbons_disable{}]}),
|
|
|
|
wait_for_master(Config),
|
|
|
|
%% Now we should receive nothing but presence unavailable from the peer
|
|
|
|
#presence{from = Peer, type = unavailable} = recv(),
|
|
|
|
disconnect(Config).
|
|
|
|
|
2014-09-11 18:18:20 +02:00
|
|
|
client_state_master(Config) ->
|
|
|
|
Peer = ?config(slave, Config),
|
|
|
|
Presence = #presence{to = Peer},
|
|
|
|
Message = #message{to = Peer, thread = <<"1">>,
|
2014-09-13 20:54:07 +02:00
|
|
|
sub_els = [#chatstate{type = active}]},
|
2014-09-11 18:18:20 +02:00
|
|
|
wait_for_slave(Config),
|
|
|
|
%% Should be queued (but see below):
|
|
|
|
send(Config, Presence),
|
|
|
|
%% Should be sent immediately, together with the previous presence:
|
|
|
|
send(Config, Message#message{body = [#text{data = <<"body">>}]}),
|
|
|
|
%% Should be dropped:
|
|
|
|
send(Config, Message),
|
|
|
|
%% Should be queued (but see below):
|
|
|
|
send(Config, Presence),
|
|
|
|
%% Should replace the previous presence in the queue:
|
|
|
|
send(Config, Presence#presence{type = unavailable}),
|
|
|
|
wait_for_slave(Config),
|
|
|
|
%% Should be sent immediately, as the client is active again.
|
|
|
|
send(Config, Message),
|
|
|
|
disconnect(Config).
|
|
|
|
|
|
|
|
client_state_slave(Config) ->
|
|
|
|
true = ?config(csi, Config),
|
|
|
|
Peer = ?config(master, Config),
|
2014-09-13 20:54:07 +02:00
|
|
|
send(Config, #csi{type = inactive}),
|
2014-09-11 18:18:20 +02:00
|
|
|
wait_for_master(Config),
|
2014-10-30 22:26:22 +01:00
|
|
|
#presence{from = Peer, sub_els = [#vcard_xupdate{}|_]} = recv(),
|
2014-09-13 20:54:07 +02:00
|
|
|
#message{from = Peer, thread = <<"1">>, sub_els = [#chatstate{type = active}],
|
2014-09-11 18:18:20 +02:00
|
|
|
body = [#text{data = <<"body">>}]} = recv(),
|
|
|
|
wait_for_master(Config),
|
2014-09-13 20:54:07 +02:00
|
|
|
send(Config, #csi{type = active}),
|
2014-12-07 15:55:18 +01:00
|
|
|
?recv2(#presence{from = Peer, type = unavailable,
|
|
|
|
sub_els = [#delay{}, #legacy_delay{}]},
|
2014-09-11 18:18:20 +02:00
|
|
|
#message{from = Peer, thread = <<"1">>,
|
2014-09-13 20:54:07 +02:00
|
|
|
sub_els = [#chatstate{type = active}]}),
|
2014-09-11 18:18:20 +02:00
|
|
|
disconnect(Config).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% Aux functions
|
|
|
|
%%%===================================================================
|
|
|
|
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
|
|
|
|
2013-06-15 18:45:18 +02:00
|
|
|
socks5_connect(#streamhost{host = Host, port = Port},
|
|
|
|
{SID, JID1, JID2}) ->
|
2013-06-20 10:40:44 +02:00
|
|
|
Hash = p1_sha:sha([SID, jlib:jid_to_string(JID1), jlib:jid_to_string(JID2)]),
|
2013-06-15 18:45:18 +02:00
|
|
|
{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-19 12:11:20 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% SQL stuff
|
|
|
|
%%%===================================================================
|
|
|
|
create_sql_tables(Type, BaseDir) ->
|
|
|
|
{VHost, File} = case Type of
|
|
|
|
mysql ->
|
|
|
|
{?MYSQL_VHOST, "mysql.sql"};
|
|
|
|
pgsql ->
|
|
|
|
{?PGSQL_VHOST, "pg.sql"}
|
|
|
|
end,
|
|
|
|
SQLFile = filename:join([BaseDir, "sql", File]),
|
|
|
|
CreationQueries = read_sql_queries(SQLFile),
|
|
|
|
DropTableQueries = drop_table_queries(CreationQueries),
|
|
|
|
case ejabberd_odbc:sql_transaction(
|
|
|
|
VHost, DropTableQueries ++ CreationQueries) of
|
|
|
|
{atomic, ok} ->
|
|
|
|
ok;
|
|
|
|
Err ->
|
|
|
|
ct:fail({failed_to_create_sql_tables, Type, Err})
|
|
|
|
end.
|
|
|
|
|
|
|
|
read_sql_queries(File) ->
|
|
|
|
case file:open(File, [read, binary]) of
|
|
|
|
{ok, Fd} ->
|
|
|
|
read_lines(Fd, File, []);
|
|
|
|
Err ->
|
|
|
|
ct:fail({open_file_failed, File, Err})
|
|
|
|
end.
|
|
|
|
|
|
|
|
drop_table_queries(Queries) ->
|
|
|
|
lists:foldl(
|
|
|
|
fun(Query, Acc) ->
|
|
|
|
case split(str:to_lower(Query)) of
|
|
|
|
[<<"create">>, <<"table">>, Table|_] ->
|
|
|
|
[<<"DROP TABLE IF EXISTS ", Table/binary, ";">>|Acc];
|
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end
|
|
|
|
end, [], Queries).
|
|
|
|
|
|
|
|
read_lines(Fd, File, Acc) ->
|
|
|
|
case file:read_line(Fd) of
|
|
|
|
{ok, Line} ->
|
|
|
|
NewAcc = case str:strip(str:strip(Line, both, $\r), both, $\n) of
|
|
|
|
<<"--", _/binary>> ->
|
|
|
|
Acc;
|
|
|
|
<<>> ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
[Line|Acc]
|
|
|
|
end,
|
|
|
|
read_lines(Fd, File, NewAcc);
|
|
|
|
eof ->
|
|
|
|
QueryList = str:tokens(list_to_binary(lists:reverse(Acc)), <<";">>),
|
|
|
|
lists:flatmap(
|
|
|
|
fun(Query) ->
|
|
|
|
case str:strip(str:strip(Query, both, $\r), both, $\n) of
|
|
|
|
<<>> ->
|
|
|
|
[];
|
|
|
|
Q ->
|
|
|
|
[<<Q/binary, $;>>]
|
|
|
|
end
|
|
|
|
end, QueryList);
|
|
|
|
{error, _} = Err ->
|
|
|
|
ct:fail({read_file_failed, File, Err})
|
|
|
|
end.
|
|
|
|
|
|
|
|
split(Data) ->
|
|
|
|
lists:filter(
|
|
|
|
fun(<<>>) ->
|
|
|
|
false;
|
|
|
|
(_) ->
|
|
|
|
true
|
|
|
|
end, re:split(Data, <<"\s">>)).
|
2014-07-09 16:44:48 +02:00
|
|
|
|
|
|
|
clear_riak_tables(Config) ->
|
|
|
|
User = ?config(user, Config),
|
|
|
|
Server = ?config(server, Config),
|
|
|
|
Room = muc_room_jid(Config),
|
2014-08-12 12:13:44 +02:00
|
|
|
{URoom, SRoom, _} = jlib:jid_tolower(Room),
|
|
|
|
ejabberd_auth:remove_user(User, Server),
|
|
|
|
ejabberd_auth:remove_user(<<"test_slave">>, Server),
|
|
|
|
ejabberd_auth:remove_user(<<"test_master">>, Server),
|
|
|
|
mod_muc:forget_room(Server, URoom, SRoom),
|
2014-09-03 19:28:07 +02:00
|
|
|
ejabberd_riak:delete(muc_registered, {{<<"test_slave">>, Server}, SRoom}),
|
|
|
|
ejabberd_riak:delete(muc_registered, {{<<"test_master">>, Server}, SRoom}),
|
2014-07-09 16:44:48 +02:00
|
|
|
Config.
|