2014-10-24 18:58:42 +02:00
|
|
|
(function (root, factory) {
|
2018-06-03 16:40:20 +02:00
|
|
|
define(["jasmine", "mock", "test-utils"], factory);
|
|
|
|
} (this, function (jasmine, mock, test_utils) {
|
2016-12-20 10:30:20 +01:00
|
|
|
var _ = converse.env._;
|
|
|
|
var $iq = converse.env.$iq;
|
2018-06-03 16:40:20 +02:00
|
|
|
var u = converse.env.utils;
|
2015-02-01 16:15:34 +01:00
|
|
|
|
2014-10-24 18:58:42 +02:00
|
|
|
describe("Profiling", function() {
|
2017-12-20 13:17:58 +01:00
|
|
|
xit("adds hundreds of contacts to the roster",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
2014-10-24 18:58:42 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = false;
|
2017-12-20 13:17:58 +01:00
|
|
|
test_utils.openControlBox();
|
|
|
|
|
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(0);
|
2014-10-26 17:12:59 +01:00
|
|
|
var stanza = $iq({
|
2017-12-20 13:17:58 +01:00
|
|
|
to: _converse.connection.jid,
|
2014-10-26 17:12:59 +01:00
|
|
|
type: 'result',
|
|
|
|
id: 'roster_1'
|
|
|
|
}).c('query', {
|
|
|
|
xmlns: 'jabber:iq:roster'
|
|
|
|
});
|
|
|
|
_.each(['Friends', 'Colleagues', 'Family', 'Acquaintances'], function (group) {
|
|
|
|
var i;
|
2015-05-01 14:34:20 +02:00
|
|
|
for (i=0; i<50; i++) {
|
2014-10-26 17:12:59 +01:00
|
|
|
stanza = stanza.c('item', {
|
|
|
|
jid: Math.random().toString().replace('0.', '')+'@example.net',
|
|
|
|
subscription:'both'
|
|
|
|
}).c('group').t(group).up().up();
|
|
|
|
}
|
|
|
|
});
|
2017-12-20 13:17:58 +01:00
|
|
|
_converse.roster.onReceivedFromServer(stanza.tree());
|
|
|
|
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
var $group = _converse.rosterview.$el.find('.roster-group')
|
|
|
|
return $group.length && u.isVisible($group[0]);
|
|
|
|
}).then(function () {
|
|
|
|
var count = 0;
|
|
|
|
_converse.roster.each(function (contact) {
|
|
|
|
if (count < 10) {
|
|
|
|
contact.set('chat_status', 'online');
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return _converse.rosterview.$el.find('li.online').length
|
|
|
|
})
|
|
|
|
}).then(done);
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-10-24 22:24:05 +02:00
|
|
|
|
2017-12-20 13:17:58 +01:00
|
|
|
xit("adds hundreds of contacts to the roster, with roster groups",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
// _converse.show_only_online_users = true;
|
|
|
|
_converse.roster_groups = true;
|
2017-12-20 13:17:58 +01:00
|
|
|
test_utils.openControlBox();
|
|
|
|
|
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(0);
|
2014-10-24 22:24:05 +02:00
|
|
|
var stanza = $iq({
|
2017-12-20 13:17:58 +01:00
|
|
|
to: _converse.connection.jid,
|
2014-10-24 18:58:42 +02:00
|
|
|
type: 'result',
|
|
|
|
id: 'roster_1'
|
|
|
|
}).c('query', {
|
2014-10-24 22:24:05 +02:00
|
|
|
xmlns: 'jabber:iq:roster'
|
|
|
|
});
|
|
|
|
_.each(['Friends', 'Colleagues', 'Family', 'Acquaintances'], function (group) {
|
2014-10-25 12:33:08 +02:00
|
|
|
var i;
|
2014-10-26 23:11:58 +01:00
|
|
|
for (i=0; i<100; i++) {
|
2014-10-24 22:24:05 +02:00
|
|
|
stanza = stanza.c('item', {
|
2014-10-25 12:33:08 +02:00
|
|
|
jid: Math.random().toString().replace('0.', '')+'@example.net',
|
2014-10-24 22:24:05 +02:00
|
|
|
subscription:'both'
|
2014-10-25 12:33:08 +02:00
|
|
|
}).c('group').t(group).up().up();
|
2014-10-24 22:24:05 +02:00
|
|
|
}
|
|
|
|
});
|
2017-12-20 13:17:58 +01:00
|
|
|
_converse.roster.onReceivedFromServer(stanza.tree());
|
|
|
|
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
var $group = _converse.rosterview.$el.find('.roster-group')
|
|
|
|
return $group.length && u.isVisible($group[0]);
|
|
|
|
}).then(function () {
|
|
|
|
_.each(['Friends', 'Colleagues', 'Family', 'Acquaintances'], function (group) {
|
|
|
|
var count = 0;
|
|
|
|
_converse.roster.each(function (contact) {
|
|
|
|
if (_.includes(contact.get('groups'), group)) {
|
|
|
|
if (count < 10) {
|
|
|
|
contact.set('chat_status', 'online');
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return _converse.rosterview.$el.find('li.online').length
|
|
|
|
})
|
|
|
|
}).then(done);
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-10-24 18:58:42 +02:00
|
|
|
});
|
|
|
|
}));
|