123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- (function (root, factory) {
- define(["jasmine", "mock", "test-utils"], factory);
- } (this, function (jasmine, mock, test_utils) {
- var _ = converse.env._;
- var $iq = converse.env.$iq;
- var $pres = converse.env.$pres;
- var u = converse.env.utils;
- describe("Profiling", function() {
- it("shows users currently present in the groupchat",
- mock.initConverse(
- ['rosterGroupsFetched'], {'muc_show_join_leave': false},
- async function (done, _converse) {
- test_utils.openControlBox(_converse);
- await test_utils.openAndEnterChatRoom(_converse, 'lounge@montague.lit', 'romeo');
- _.rangeRight(3000, 0).forEach(i => {
- const name = `User ${i.toString().padStart(5, '0')}`;
- const presence = $pres({
- 'to': 'romeo@montague.lit/orchard',
- 'from': 'lounge@montague.lit/'+name
- }).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
- .c('item').attrs({
- affiliation: 'none',
- jid: name.replace(/ /g,'.').toLowerCase() + '@montague.lit',
- });
- _converse.connection._dataRecv(test_utils.createRequest(presence));
- // expect(occupants.querySelectorAll('li').length).toBe(1+i);
- // const model = view.model.occupants.where({'nick': name})[0];
- // const index = view.model.occupants.indexOf(model);
- // expect(occupants.querySelectorAll('li .occupant-nick')[index].textContent.trim()).toBe(name);
- });
- done();
- }));
- xit("adds hundreds of contacts to the roster",
- mock.initConverse(
- ['rosterGroupsFetched'], {},
- function (done, _converse) {
- _converse.roster_groups = false;
- test_utils.openControlBox(_converse);
- expect(_converse.roster.pluck('jid').length).toBe(0);
- var stanza = $iq({
- to: _converse.connection.jid,
- type: 'result',
- id: 'roster_1'
- }).c('query', {
- xmlns: 'jabber:iq:roster'
- });
- _.each(['Friends', 'Colleagues', 'Family', 'Acquaintances'], function (group) {
- var i;
- for (i=0; i<50; i++) {
- stanza = stanza.c('item', {
- jid: Math.random().toString().replace('0.', '')+'@example.net',
- subscription:'both'
- }).c('group').t(group).up().up();
- }
- });
- _converse.roster.onReceivedFromServer(stanza.tree());
- return u.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 u.waitUntil(function () {
- return _converse.rosterview.$el.find('li.online').length
- })
- }).then(done);
- }));
- xit("adds hundreds of contacts to the roster, with roster groups",
- mock.initConverse(
- ['rosterGroupsFetched'], {},
- function (done, _converse) {
- // _converse.show_only_online_users = true;
- _converse.roster_groups = true;
- test_utils.openControlBox(_converse);
- expect(_converse.roster.pluck('jid').length).toBe(0);
- var stanza = $iq({
- to: _converse.connection.jid,
- type: 'result',
- id: 'roster_1'
- }).c('query', {
- xmlns: 'jabber:iq:roster'
- });
- _.each(['Friends', 'Colleagues', 'Family', 'Acquaintances'], function (group) {
- var i;
- for (i=0; i<100; i++) {
- stanza = stanza.c('item', {
- jid: Math.random().toString().replace('0.', '')+'@example.net',
- subscription:'both'
- }).c('group').t(group).up().up();
- }
- });
- _converse.roster.onReceivedFromServer(stanza.tree());
- return u.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 u.waitUntil(function () {
- return _converse.rosterview.$el.find('li.online').length
- })
- }).then(done);
- }));
- });
- }));
|