2017-12-22 16:55:03 +01:00
|
|
|
(function (root, factory) {
|
2018-06-03 16:40:20 +02:00
|
|
|
define(["jquery", "jasmine", "mock", "test-utils"], factory);
|
|
|
|
} (this, function ($, jasmine, mock, test_utils) {
|
2017-12-22 16:55:03 +01:00
|
|
|
var _ = converse.env._;
|
2018-05-22 16:44:58 +02:00
|
|
|
var Strophe = converse.env.Strophe;
|
2017-12-22 16:55:03 +01:00
|
|
|
var $pres = converse.env.$pres;
|
|
|
|
var $msg = converse.env.$msg;
|
|
|
|
var $iq = converse.env.$iq;
|
|
|
|
var u = converse.env.utils;
|
|
|
|
|
2018-01-04 17:12:09 +01:00
|
|
|
var checkHeaderToggling = function (group) {
|
|
|
|
var $group = $(group);
|
2018-03-18 04:35:34 +01:00
|
|
|
var toggle = group.querySelector('a.group-toggle');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(u.isVisible($group[0])).toBeTruthy();
|
|
|
|
expect($group.find('ul.collapsed').length).toBe(0);
|
2018-03-18 04:35:34 +01:00
|
|
|
expect(u.hasClass('fa-caret-right', toggle.firstElementChild)).toBeFalsy();
|
|
|
|
expect(u.hasClass('fa-caret-down', toggle.firstElementChild)).toBeTruthy();
|
|
|
|
toggle.click();
|
2017-12-22 16:55:03 +01:00
|
|
|
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $group.find('ul.collapsed').length === 1;
|
|
|
|
}, 500).then(function () {
|
2018-03-18 04:35:34 +01:00
|
|
|
expect(u.hasClass('fa-caret-right', toggle.firstElementChild)).toBeTruthy();
|
|
|
|
expect(u.hasClass('fa-caret-down', toggle.firstElementChild)).toBeFalsy();
|
|
|
|
toggle.click();
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $group.find('li').length === $group.find('li:visible').length
|
|
|
|
}, 500);
|
|
|
|
}).then(function () {
|
2018-03-18 04:35:34 +01:00
|
|
|
expect(u.hasClass('fa-caret-right', toggle.firstElementChild)).toBeFalsy();
|
|
|
|
expect(u.hasClass('fa-caret-down', toggle.firstElementChild)).toBeTruthy();
|
2017-12-22 16:55:03 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
describe("The Contacts Roster", function () {
|
|
|
|
|
2018-05-28 09:35:18 +02:00
|
|
|
it("supports roster versioning",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
var IQ_stanzas = _converse.connection.IQ_stanzas;
|
|
|
|
var stanza;
|
|
|
|
|
|
|
|
test_utils.waitUntil(() => {
|
|
|
|
const node = _.filter(IQ_stanzas, function (iq) {
|
|
|
|
return iq.nodeTree.querySelector('iq query[xmlns="jabber:iq:roster"]');
|
|
|
|
}).pop();
|
|
|
|
if (node) {
|
|
|
|
stanza = node.nodeTree;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}).then(() => {
|
|
|
|
expect(_converse.roster.data.get('version')).toBeUndefined();
|
|
|
|
expect(stanza.outerHTML).toBe(
|
|
|
|
`<iq type="get" id="${stanza.getAttribute('id')}" xmlns="jabber:client">`+
|
|
|
|
`<query xmlns="jabber:iq:roster"/>`+
|
|
|
|
`</iq>`);
|
2018-05-28 11:41:02 +02:00
|
|
|
let result = $iq({
|
2018-05-28 09:35:18 +02:00
|
|
|
'to': _converse.connection.jid,
|
|
|
|
'type': 'result',
|
|
|
|
'id': stanza.getAttribute('id')
|
|
|
|
}).c('query', {
|
|
|
|
'xmlns': 'jabber:iq:roster',
|
|
|
|
'ver': 'ver7'
|
|
|
|
}).c('item', {'jid': 'nurse@example.com'}).up()
|
|
|
|
.c('item', {'jid': 'romeo@example.com'})
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(result));
|
|
|
|
expect(_converse.roster.data.get('version')).toBe('ver7');
|
2018-05-28 11:41:02 +02:00
|
|
|
expect(_converse.roster.models.length).toBe(2);
|
|
|
|
|
|
|
|
_converse.roster.fetchFromServer();
|
|
|
|
stanza = _converse.connection.IQ_stanzas.pop().nodeTree;
|
|
|
|
expect(stanza.outerHTML).toBe(
|
|
|
|
`<iq type="get" id="${stanza.getAttribute('id')}" xmlns="jabber:client">`+
|
|
|
|
`<query xmlns="jabber:iq:roster" ver="ver7"/>`+
|
|
|
|
`</iq>`);
|
|
|
|
|
|
|
|
result = $iq({
|
|
|
|
'to': _converse.connection.jid,
|
|
|
|
'type': 'result',
|
|
|
|
'id': stanza.getAttribute('id')
|
|
|
|
});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(result));
|
|
|
|
|
|
|
|
const roster_push = $iq({
|
|
|
|
'to': _converse.connection.jid,
|
|
|
|
'type': 'set',
|
|
|
|
}).c('query', {'xmlns': 'jabber:iq:roster', 'ver': 'ver34'})
|
|
|
|
.c('item', {'jid': 'romeo@example.com', 'subscription': 'remove'});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(roster_push));
|
|
|
|
expect(_converse.roster.data.get('version')).toBe('ver34');
|
|
|
|
expect(_converse.roster.models.length).toBe(1);
|
|
|
|
expect(_converse.roster.at(0).get('jid')).toBe('nurse@example.com');
|
2018-05-28 09:35:18 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
describe("The live filter", function () {
|
|
|
|
|
|
|
|
it("will only appear when roster contacts flow over the visible area",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2018-01-04 17:12:09 +01:00
|
|
|
var $filter = $(_converse.rosterview.el.querySelector('.roster-filter'));
|
2017-12-22 16:55:03 +01:00
|
|
|
var names = mock.cur_names;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
_converse.rosterview.update(); // XXX: Will normally called as event handler
|
|
|
|
expect($filter.length).toBe(1);
|
|
|
|
test_utils.waitUntil(function () {
|
|
|
|
return !$filter.is(':visible');
|
|
|
|
}).then(function () {
|
|
|
|
for (var i=0; i<names.length; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
ask: null,
|
|
|
|
fullname: names[i],
|
|
|
|
jid: names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
requesting: 'false',
|
|
|
|
subscription: 'both'
|
|
|
|
});
|
|
|
|
_converse.rosterview.update(); // XXX: Will normally called as event handler
|
|
|
|
}
|
|
|
|
|
|
|
|
$.fn.hasScrollBar = function() {
|
|
|
|
if (!$.contains(document, this.get(0))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(this.parent().height() < this.get(0).scrollHeight) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
if ($(_converse.rosterview.roster_el).hasScrollBar()) {
|
|
|
|
return $filter.is(':visible');
|
|
|
|
} else {
|
|
|
|
return !$filter.is(':visible');
|
|
|
|
}
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be used to filter the contacts shown",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
2018-01-04 17:12:09 +01:00
|
|
|
var $filter = $(_converse.rosterview.el).find('.roster-filter');
|
2017-12-22 16:55:03 +01:00
|
|
|
var $roster = $(_converse.rosterview.roster_el);
|
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
|
|
|
|
2018-05-22 16:44:58 +02:00
|
|
|
var promise = test_utils.waitUntil(() => $roster.find('li:visible').length === 15, 600)
|
|
|
|
.then(function (contacts) {
|
2017-12-22 16:55:03 +01:00
|
|
|
expect($roster.find('ul.roster-group-contacts:visible').length).toBe(5);
|
2018-01-04 17:12:09 +01:00
|
|
|
$filter[0].value = "candice";
|
|
|
|
u.triggerEvent($filter[0], "keydown", "KeyboardEvent");
|
2018-05-22 16:44:58 +02:00
|
|
|
return test_utils.waitUntil(() => $roster.find('li:visible').length === 1, 600);
|
2017-12-22 16:55:03 +01:00
|
|
|
}).then(function (contacts) {
|
|
|
|
// Only one roster contact is now visible
|
|
|
|
expect($roster.find('li:visible').length).toBe(1);
|
|
|
|
expect($roster.find('li:visible').eq(0).text().trim()).toBe('Candice van der Knijff');
|
|
|
|
// Only one foster group is still visible
|
|
|
|
expect($roster.find('.roster-group:visible').length).toBe(1);
|
|
|
|
expect(_.trim($roster.find('.roster-group:visible a.group-toggle').eq(0).text())).toBe('colleagues');
|
|
|
|
|
2018-01-04 17:12:09 +01:00
|
|
|
$filter = $(_converse.rosterview.el).find('.roster-filter');
|
2017-12-22 16:55:03 +01:00
|
|
|
$filter.val("an");
|
2018-01-04 17:12:09 +01:00
|
|
|
u.triggerEvent($filter[0], "keydown", "KeyboardEvent");
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 5;
|
|
|
|
}, 600)
|
|
|
|
}).then(function (contacts) {
|
|
|
|
// Five roster contact is now visible
|
|
|
|
expect($roster.find('li:visible').length).toBe(5);
|
|
|
|
// Four groups are still visible
|
|
|
|
var $groups = $roster.find('.roster-group:visible a.group-toggle');
|
|
|
|
expect($groups.length).toBe(4);
|
|
|
|
expect(_.trim($groups.eq(0).text())).toBe('colleagues');
|
|
|
|
expect(_.trim($groups.eq(1).text())).toBe('Family');
|
|
|
|
expect(_.trim($groups.eq(2).text())).toBe('friends & acquaintences');
|
|
|
|
expect(_.trim($groups.eq(3).text())).toBe('ænemies');
|
|
|
|
|
2018-01-04 17:12:09 +01:00
|
|
|
$filter = $(_converse.rosterview.el).find('.roster-filter');
|
2017-12-22 16:55:03 +01:00
|
|
|
$filter.val("xxx");
|
2018-01-04 17:12:09 +01:00
|
|
|
u.triggerEvent($filter[0], "keydown", "KeyboardEvent");
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 0;
|
|
|
|
}, 600)
|
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('ul.roster-group-contacts:visible a.group-toggle').length).toBe(0);
|
2018-01-04 17:12:09 +01:00
|
|
|
$filter = $(_converse.rosterview.el).find('.roster-filter');
|
2017-12-22 16:55:03 +01:00
|
|
|
$filter.val(""); // Check that contacts are shown again, when the filter string is cleared.
|
2018-01-04 17:12:09 +01:00
|
|
|
u.triggerEvent($filter[0], "keydown", "KeyboardEvent");
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 15;
|
|
|
|
}, 600)
|
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('ul.roster-group-contacts:visible').length).toBe(5);
|
|
|
|
_converse.roster_groups = false;
|
|
|
|
done();
|
2018-05-22 16:44:58 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2017-12-22 16:55:03 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
it("will also filter out contacts added afterwards",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.openControlBox();
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
|
2018-01-04 17:12:09 +01:00
|
|
|
var $filter = $(_converse.rosterview.el).find('.roster-filter');
|
2017-12-22 16:55:03 +01:00
|
|
|
var $roster = $(_converse.rosterview.roster_el);
|
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
|
|
|
|
|
|
|
test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 15;
|
|
|
|
}, 300).then(function (contacts) {
|
|
|
|
$filter.val("an");
|
2018-01-04 17:12:09 +01:00
|
|
|
u.triggerEvent($filter[0], "keydown", "KeyboardEvent");
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 5;
|
|
|
|
}, 500)
|
|
|
|
}).then(function (contacts) {
|
|
|
|
// Five roster contact is now visible
|
|
|
|
expect($roster.find('li:visible').length).toBe(5);
|
|
|
|
// Four groups are still visible
|
|
|
|
var $groups = $roster.find('.roster-group:visible a.group-toggle');
|
|
|
|
expect($groups.length).toBe(4);
|
|
|
|
expect(_.trim($groups.eq(0).text())).toBe('colleagues');
|
|
|
|
expect(_.trim($groups.eq(1).text())).toBe('Family');
|
|
|
|
expect(_.trim($groups.eq(2).text())).toBe('friends & acquaintences');
|
|
|
|
expect(_.trim($groups.eq(3).text())).toBe('ænemies');
|
|
|
|
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: 'latecomer@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: ['newgroup'],
|
|
|
|
fullname: 'Marty McLatecomer'
|
|
|
|
});
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('.roster-group[data-group="newgroup"] li').length;
|
|
|
|
}, 300);
|
|
|
|
}).then(function (contacts) {
|
|
|
|
// The "newgroup" group doesn't appear
|
|
|
|
expect($roster.find('.roster-group:visible').length).toBe(4);
|
|
|
|
expect($roster.find('.roster-group').length).toBe(6);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be used to filter the groups shown",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
|
|
|
var $roster = $(_converse.rosterview.roster_el);
|
2018-03-17 18:13:51 +01:00
|
|
|
|
|
|
|
var button = _converse.rosterview.el.querySelector('span[data-type="groups"]');
|
|
|
|
button.click();
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').length === 15;
|
|
|
|
}, 600).then(function () {
|
|
|
|
expect($roster.find('div.roster-group:visible a.group-toggle').length).toBe(5);
|
2018-03-17 18:13:51 +01:00
|
|
|
|
|
|
|
var filter = _converse.rosterview.el.querySelector('.roster-filter');
|
|
|
|
filter.value = "colleagues";
|
|
|
|
u.triggerEvent(filter, "keydown", "KeyboardEvent");
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('div.roster-group:not(.collapsed) a.group-toggle').length === 1;
|
|
|
|
}, 600);
|
|
|
|
}).then(function () {
|
|
|
|
expect(_.trim($roster.find('div.roster-group:not(.collapsed) a').eq(0).text())).toBe('colleagues');
|
|
|
|
expect($roster.find('div.roster-group:not(.collapsed) li:visible').length).toBe(3);
|
|
|
|
|
|
|
|
// Check that all contacts under the group are shown
|
|
|
|
expect($roster.find('div.roster-group:not(.collapsed) li:hidden').length).toBe(0);
|
|
|
|
|
2018-03-17 18:13:51 +01:00
|
|
|
var filter = _converse.rosterview.el.querySelector('.roster-filter');
|
|
|
|
filter.value = "xxx";
|
|
|
|
u.triggerEvent(filter, "keydown", "KeyboardEvent");
|
2018-01-04 17:12:09 +01:00
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('div.roster-group.collapsed a.group-toggle').length === 5;
|
|
|
|
}, 700);
|
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('div.roster-group:not(.collapsed) a').length).toBe(0);
|
|
|
|
|
2018-03-17 18:13:51 +01:00
|
|
|
var filter = _converse.rosterview.el.querySelector('.roster-filter');
|
|
|
|
filter.value = ""; // Check that groups are shown again, when the filter string is cleared.
|
|
|
|
u.triggerEvent(filter, "keydown", "KeyboardEvent");
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('div.roster-group.collapsed a.group-toggle').length === 0;
|
|
|
|
}, 600);
|
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('div.roster-group:not(collapsed)').length).toBe(5);
|
|
|
|
expect($roster.find('div.roster-group:not(collapsed) li').length).toBe(15);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("has a button with which its contents can be cleared",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
2018-03-17 18:13:51 +01:00
|
|
|
|
|
|
|
var filter = _converse.rosterview.el.querySelector('.roster-filter');
|
|
|
|
filter.value = "xxx";
|
|
|
|
u.triggerEvent(filter, "keydown", "KeyboardEvent");
|
|
|
|
expect(_.includes(filter.classList, "x")).toBeFalsy();
|
|
|
|
expect(u.hasClass('hidden', _converse.rosterview.el.querySelector('.roster-filter-form .clear-input'))).toBeTruthy();
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
test_utils.waitUntil(function () {
|
2018-03-17 18:13:51 +01:00
|
|
|
return !u.hasClass('hidden', _converse.rosterview.el.querySelector('.roster-filter-form .clear-input'));
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 900).then(function () {
|
2018-03-17 18:13:51 +01:00
|
|
|
var filter = _converse.rosterview.el.querySelector('.roster-filter');
|
|
|
|
_converse.rosterview.el.querySelector('.clear-input').click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(document.querySelector('.roster-filter').value).toBe("");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be used to filter contacts by their chat state",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
var jid = mock.cur_names[3].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'online');
|
2018-03-17 18:13:51 +01:00
|
|
|
jid = mock.cur_names[4].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'dnd');
|
2017-12-22 16:55:03 +01:00
|
|
|
test_utils.openControlBox();
|
|
|
|
|
2018-03-17 18:13:51 +01:00
|
|
|
var button = _converse.rosterview.el.querySelector('span[data-type="state"]');
|
|
|
|
button.click();
|
2018-01-04 17:12:09 +01:00
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
var $roster = $(_converse.rosterview.roster_el);
|
2018-05-22 16:44:58 +02:00
|
|
|
test_utils.waitUntil(() => $roster.find('li:visible').length === 15, 500).then(function () {
|
2018-03-17 18:13:51 +01:00
|
|
|
var filter = _converse.rosterview.el.querySelector('.state-type');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect($roster.find('ul.roster-group-contacts:visible').length).toBe(5);
|
2018-03-17 18:13:51 +01:00
|
|
|
filter.value = "online";
|
|
|
|
u.triggerEvent(filter, 'change');
|
2018-05-22 16:44:58 +02:00
|
|
|
return test_utils.waitUntil(() => $roster.find('li:visible').length === 1, 500);
|
2017-12-22 16:55:03 +01:00
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('li:visible').eq(0).text().trim()).toBe('Rinse Sommer');
|
|
|
|
expect($roster.find('ul.roster-group-contacts:visible').length).toBe(1);
|
2018-03-17 18:13:51 +01:00
|
|
|
|
|
|
|
var filter = _converse.rosterview.el.querySelector('.state-type');
|
|
|
|
filter.value = "dnd";
|
|
|
|
u.triggerEvent(filter, 'change');
|
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return $roster.find('li:visible').eq(0).text().trim() === 'Annegreet Gomez';
|
|
|
|
}, 900)
|
|
|
|
}).then(function () {
|
|
|
|
expect($roster.find('ul.roster-group-contacts:visible').length).toBe(1);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
2018-05-22 16:44:58 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2017-12-22 16:55:03 +01:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("A Roster Group", function () {
|
|
|
|
|
|
|
|
it("can be used to organize existing contacts",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
_converse.rosterview.render();
|
|
|
|
test_utils.openControlBox();
|
|
|
|
test_utils.createContacts(_converse, 'pending');
|
|
|
|
test_utils.createContacts(_converse, 'requesting');
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
// Check that the groups appear alphabetically and that
|
|
|
|
// requesting and pending contacts are last.
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible a.group-toggle').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500).then(function () {
|
|
|
|
var group_titles = $.map(
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find('.roster-group:visible a.group-toggle'),
|
2017-12-22 16:55:03 +01:00
|
|
|
function (o) { return $(o).text().trim(); }
|
|
|
|
);
|
|
|
|
expect(group_titles).toEqual([
|
|
|
|
"Contact requests",
|
|
|
|
"colleagues",
|
|
|
|
"Family",
|
|
|
|
"friends & acquaintences",
|
|
|
|
"ænemies",
|
|
|
|
"Ungrouped",
|
|
|
|
"Pending contacts"
|
|
|
|
]);
|
|
|
|
// Check that usernames appear alphabetically per group
|
|
|
|
_.each(_.keys(mock.groups), function (name) {
|
2018-01-04 17:12:09 +01:00
|
|
|
var $contacts = $(_converse.rosterview.el).find('.roster-group[data-group="'+name+'"] ul');
|
2017-12-22 16:55:03 +01:00
|
|
|
var names = $.map($contacts, function (o) { return $(o).text().trim(); });
|
|
|
|
expect(names).toEqual(_.clone(names).sort());
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2017-12-22 17:58:48 +01:00
|
|
|
it("gets created when a contact's \"groups\" attribute changes",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
_converse.rosterview.render();
|
|
|
|
|
|
|
|
test_utils.openControlBox();
|
|
|
|
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: 'groupchanger@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: ['firstgroup'],
|
|
|
|
fullname: 'George Groupchanger'
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check that the groups appear alphabetically and that
|
|
|
|
// requesting and pending contacts are last.
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible a.group-toggle').length;
|
2017-12-22 17:58:48 +01:00
|
|
|
}, 500).then(function () {
|
|
|
|
var group_titles = $.map(
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find('.roster-group:visible a.group-toggle'),
|
2017-12-22 17:58:48 +01:00
|
|
|
function (o) { return $(o).text().trim(); }
|
|
|
|
);
|
|
|
|
expect(group_titles).toEqual(['firstgroup']);
|
|
|
|
|
|
|
|
var contact = _converse.roster.get('groupchanger@localhost');
|
|
|
|
contact.set({'groups': ['secondgroup']});
|
|
|
|
return test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group[data-group="secondgroup"]:visible a.group-toggle').length;
|
2017-12-22 17:58:48 +01:00
|
|
|
}, 500);
|
|
|
|
}).then(function () {
|
|
|
|
var group_titles = $.map(
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find('.roster-group:visible a.group-toggle'),
|
2017-12-22 17:58:48 +01:00
|
|
|
function (o) { return $(o).text().trim(); }
|
|
|
|
);
|
|
|
|
expect(group_titles).toEqual(['secondgroup']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2017-12-22 16:55:03 +01:00
|
|
|
it("can share contacts with other roster groups",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
var groups = ['colleagues', 'friends'];
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
test_utils.openControlBox();
|
|
|
|
_converse.rosterview.render();
|
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: groups,
|
|
|
|
fullname: mock.cur_names[i]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:visible').length === 30;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 600).then(function () {
|
|
|
|
// Check that usernames appear alphabetically per group
|
|
|
|
_.each(groups, function (name) {
|
2018-01-04 17:12:09 +01:00
|
|
|
var $contacts = $(_converse.rosterview.el).find('.roster-group[data-group="'+name+'"] ul li');
|
2017-12-22 16:55:03 +01:00
|
|
|
var names = $.map($contacts, function (o) { return $(o).text().trim(); });
|
|
|
|
expect(names).toEqual(_.clone(names).sort());
|
|
|
|
expect(names.length).toEqual(mock.cur_names.length);
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("remembers whether it is closed or opened",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
|
|
|
|
var i=0, j=0;
|
|
|
|
var groups = {
|
|
|
|
'colleagues': 3,
|
|
|
|
'friends & acquaintences': 3,
|
|
|
|
'Ungrouped': 2
|
|
|
|
};
|
|
|
|
_.each(_.keys(groups), function (name) {
|
|
|
|
j = i;
|
|
|
|
for (i=j; i<j+groups[name]; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: name === 'ungrouped'? [] : [name],
|
|
|
|
fullname: mock.cur_names[i]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var view = _converse.rosterview.get('colleagues');
|
2018-01-03 20:02:05 +01:00
|
|
|
var $toggle = $(view.el).find('a.group-toggle');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(view.model.get('state')).toBe('opened');
|
2018-01-03 20:02:05 +01:00
|
|
|
$toggle[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return view.model.get('state') === 'closed';
|
|
|
|
}, 500).then(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
$toggle[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
|
|
|
return view.model.get('state') === 'opened';
|
|
|
|
}, 500)
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Pending Contacts", function () {
|
|
|
|
|
|
|
|
function _addContacts (_converse) {
|
|
|
|
// Must be initialized, so that render is called and documentFragment set up.
|
|
|
|
test_utils.createContacts(_converse, 'pending');
|
|
|
|
test_utils.openControlBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
it("can be collapsed under their own header",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500).then(function () {
|
|
|
|
checkHeaderToggling.apply(
|
|
|
|
_converse,
|
2018-01-04 17:12:09 +01:00
|
|
|
[_converse.rosterview.get('Pending contacts').el]
|
2017-12-22 16:55:03 +01:00
|
|
|
).then(done);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be added to the roster",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
test_utils.openControlBox();
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: mock.pend_names[0]
|
|
|
|
});
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("are shown in the roster when show_only_online_users",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.show_only_online_users = true;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).is(':visible')).toEqual(true);
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).find('li:visible').length).toBe(3);
|
|
|
|
expect($(_converse.rosterview.el).find('ul.roster-group-contacts:visible').length).toBe(1);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("are shown in the roster when hide_offline_users",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.hide_offline_users = true;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500)
|
|
|
|
.then(function () {
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).is(':visible')).toBe(true);
|
|
|
|
expect($(_converse.rosterview.el).find('li:visible').length).toBe(3);
|
|
|
|
expect($(_converse.rosterview.el).find('ul.roster-group-contacts:visible').length).toBe(1);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be removed by the user",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
var name = mock.pend_names[0];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
var contact = _converse.roster.get(jid);
|
2018-03-27 19:07:55 +02:00
|
|
|
var sent_IQ;
|
2017-12-22 16:55:03 +01:00
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
spyOn(contact, 'unauthorize').and.callFake(function () { return contact; });
|
2018-03-27 19:07:55 +02:00
|
|
|
spyOn(contact, 'removeFromRoster').and.callThrough();
|
2017-12-22 16:55:03 +01:00
|
|
|
test_utils.waitUntil(function () {
|
2018-03-27 19:07:55 +02:00
|
|
|
return $(_converse.rosterview.el).find(".pending-contact-name:contains('"+name+"')").length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
2018-03-27 19:07:55 +02:00
|
|
|
|
|
|
|
var sendIQ = _converse.connection.sendIQ;
|
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback, errback) {
|
|
|
|
sent_IQ = iq;
|
|
|
|
callback();
|
|
|
|
});
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find(".pending-contact-name:contains('"+name+"')")
|
|
|
|
.parent().siblings('.remove-xmpp-contact')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
return test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find(".pending-contact-name:contains('"+name+"')").length === 0
|
2018-03-27 19:07:55 +02:00
|
|
|
}, 1000)
|
2017-12-22 16:55:03 +01:00
|
|
|
}).then(function () {
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2018-03-27 19:07:55 +02:00
|
|
|
expect(sent_IQ.toLocaleString()).toBe(
|
|
|
|
"<iq type='set' xmlns='jabber:client'>"+
|
|
|
|
"<query xmlns='jabber:iq:roster'>"+
|
|
|
|
"<item jid='suleyman.van.beusichem@localhost' subscription='remove'/>"+
|
|
|
|
"</query>"+
|
|
|
|
"</iq>");
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("do not have a header if there aren't any",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.openControlBox();
|
|
|
|
var name = mock.pend_names[0];
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: name
|
|
|
|
});
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback) {
|
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
|
|
|
test_utils.waitUntil(function () {
|
2018-03-18 04:35:34 +01:00
|
|
|
var $pending_contacts = $(_converse.rosterview.get('Pending contacts').el);
|
|
|
|
return $pending_contacts.is(':visible') && $pending_contacts.find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find(".pending-contact-name:contains('"+name+"')")
|
|
|
|
.parent().siblings('.remove-xmpp-contact')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
2018-01-04 17:12:09 +01:00
|
|
|
expect(u.isVisible(_converse.rosterview.get('Pending contacts').el)).toEqual(false);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("is shown when a new private message is received",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
2018-05-05 20:28:41 +02:00
|
|
|
return test_utils.waitUntil(() => _converse.roster.at(0).vcard.get('fullname'))
|
|
|
|
.then(function () {
|
|
|
|
var name;
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
for (var i=0; i<mock.pend_names.length; i++) {
|
|
|
|
name = mock.pend_names[i];
|
|
|
|
$(_converse.rosterview.el).find(".pending-contact-name:contains('"+name+"')")
|
|
|
|
.parent().siblings('.remove-xmpp-contact')[0].click();
|
|
|
|
}
|
|
|
|
expect($(_converse.rosterview.el).find('#pending-xmpp-contacts').is(':visible')).toBeFalsy();
|
|
|
|
done();
|
|
|
|
});
|
2017-12-22 16:55:03 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be added to the roster and they will be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
var i, t;
|
|
|
|
test_utils.openControlBox();
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
for (i=0; i<mock.pend_names.length; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: mock.pend_names[i]
|
|
|
|
});
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
}
|
|
|
|
return test_utils.waitUntil(function () {
|
2018-01-04 17:12:09 +01:00
|
|
|
return $(_converse.rosterview.get('Pending contacts').el).find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
// Check that they are sorted alphabetically
|
2018-01-04 17:12:09 +01:00
|
|
|
t = _.reduce(_converse.rosterview.get('Pending contacts').el.querySelectorAll('.pending-xmpp-contact span'),
|
2017-12-22 16:55:03 +01:00
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.pend_names.slice(0,i+1).sort().join(''));
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Existing Contacts", function () {
|
|
|
|
var _addContacts = function (_converse) {
|
|
|
|
test_utils.createContacts(_converse, 'current')
|
|
|
|
.openControlBox()
|
|
|
|
};
|
|
|
|
|
|
|
|
it("can be collapsed under their own header",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500).then(function () {
|
|
|
|
checkHeaderToggling.apply(
|
|
|
|
_converse,
|
2018-01-04 17:12:09 +01:00
|
|
|
[_converse.rosterview.el.querySelector('.roster-group')]
|
2017-12-22 16:55:03 +01:00
|
|
|
).then(done);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("will be hidden when appearing under a collapsed group",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_converse.roster_groups = false;
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:visible').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500)
|
|
|
|
.then(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
_converse.rosterview.el.querySelector('.roster-group a.group-toggle').click();
|
2017-12-22 16:55:03 +01:00
|
|
|
var name = "Max Mustermann";
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
_converse.roster.create({
|
|
|
|
ask: null,
|
|
|
|
fullname: name,
|
|
|
|
jid: jid,
|
|
|
|
requesting: false,
|
|
|
|
subscription: 'both'
|
|
|
|
});
|
|
|
|
var view = _converse.rosterview.get('My contacts').get(jid);
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(view.el).is(':visible')).toBe(false);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be added to the roster and they will be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.openControlBox();
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
fullname: mock.cur_names[i]
|
|
|
|
});
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
}
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 600).then(function () {
|
|
|
|
// Check that they are sorted alphabetically
|
2018-01-04 17:12:09 +01:00
|
|
|
var t = _.reduce($(_converse.rosterview.el.querySelector('.roster-group'))
|
2017-12-22 16:55:03 +01:00
|
|
|
.find('.current-xmpp-contact.offline a.open-chat'),
|
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be removed by the user",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2018-03-27 19:07:55 +02:00
|
|
|
var sent_IQ;
|
2017-12-22 16:55:03 +01:00
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500).then(function () {
|
|
|
|
var name = mock.cur_names[0];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
var contact = _converse.roster.get(jid);
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
2018-03-27 19:07:55 +02:00
|
|
|
spyOn(contact, 'removeFromRoster').and.callThrough();
|
|
|
|
|
|
|
|
var sendIQ = _converse.connection.sendIQ;
|
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback, errback) {
|
|
|
|
sent_IQ = iq;
|
|
|
|
callback();
|
2017-12-22 16:55:03 +01:00
|
|
|
});
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find(".open-chat:contains('"+name+"')")
|
|
|
|
.parent().find('.remove-xmpp-contact')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2018-03-27 19:07:55 +02:00
|
|
|
expect(sent_IQ.toLocaleString()).toBe(
|
|
|
|
"<iq type='set' xmlns='jabber:client'>"+
|
|
|
|
"<query xmlns='jabber:iq:roster'><item jid='max.frankfurter@localhost' subscription='remove'/></query>"+
|
|
|
|
"</iq>");
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).find(".open-chat:contains('"+name+"')").length).toEqual(0);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("do not have a header if there aren't any",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.openControlBox();
|
|
|
|
var name = mock.cur_names[0];
|
|
|
|
var contact;
|
|
|
|
contact = _converse.roster.create({
|
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
fullname: name
|
|
|
|
});
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
2018-03-27 19:07:55 +02:00
|
|
|
spyOn(contact, 'removeFromRoster').and.callThrough();
|
2017-12-22 16:55:03 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback) {
|
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
|
|
|
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).find('.roster-group').css('display')).toEqual('block');
|
|
|
|
$(_converse.rosterview.el).find(".open-chat:contains('"+name+"')")
|
|
|
|
.parent().find('.remove-xmpp-contact')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2018-01-03 20:02:05 +01:00
|
|
|
expect($(_converse.rosterview.el).find('.roster-group').length).toEqual(0);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can change their status to online and be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
2018-05-22 16:44:58 +02:00
|
|
|
test_utils.waitUntil(() => $(_converse.rosterview.el).find('.roster-group li').length, 700)
|
|
|
|
.then(function () {
|
2017-12-22 16:55:03 +01:00
|
|
|
var jid, t;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
2018-01-03 20:02:05 +01:00
|
|
|
var $roster = $(_converse.rosterview.el);
|
2017-12-22 16:55:03 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'online');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = _.reduce($roster.find('.roster-group').find('.current-xmpp-contact.online a.open-chat'), function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can change their status to busy and be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
var jid, t;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
2018-01-03 20:02:05 +01:00
|
|
|
var $roster = $(_converse.rosterview.el);
|
2017-12-22 16:55:03 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'dnd');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = _.reduce($roster.find('.roster-group .current-xmpp-contact.dnd a.open-chat'),
|
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can change their status to away and be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
var jid, t;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
2018-01-03 20:02:05 +01:00
|
|
|
var $roster = $(_converse.rosterview.el);
|
2017-12-22 16:55:03 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'away');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = _.reduce($roster.find('.roster-group .current-xmpp-contact.away a.open-chat'),
|
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can change their status to xa and be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
var jid, t;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
2018-01-03 20:02:05 +01:00
|
|
|
var $roster = $(_converse.rosterview.el);
|
2017-12-22 16:55:03 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'xa');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = _.reduce($roster.find('.roster-group .current-xmpp-contact.xa a.open-chat'),
|
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can change their status to unavailable and be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 500)
|
|
|
|
.then(function () {
|
|
|
|
var jid, t;
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
2018-01-03 20:02:05 +01:00
|
|
|
var $roster = $(_converse.rosterview.el);
|
2017-12-22 16:55:03 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'unavailable');
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = _.reduce($roster.find('.roster-group .current-xmpp-contact.unavailable a.open-chat'),
|
|
|
|
function (result, value) {
|
|
|
|
return result + _.trim(value.textContent);
|
|
|
|
}, '');
|
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("are ordered according to status: online, busy, away, xa, unavailable, offline",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
_addContacts(_converse);
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
var i, jid;
|
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'online');
|
2017-12-22 16:55:03 +01:00
|
|
|
}
|
|
|
|
for (i=3; i<6; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'dnd');
|
2017-12-22 16:55:03 +01:00
|
|
|
}
|
|
|
|
for (i=6; i<9; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'away');
|
2017-12-22 16:55:03 +01:00
|
|
|
}
|
|
|
|
for (i=9; i<12; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'xa');
|
2017-12-22 16:55:03 +01:00
|
|
|
}
|
|
|
|
for (i=12; i<15; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-22 16:44:58 +02:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'unavailable');
|
2017-12-22 16:55:03 +01:00
|
|
|
}
|
|
|
|
return test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li.online').length
|
2017-12-22 16:55:03 +01:00
|
|
|
})
|
|
|
|
}).then(function () {
|
|
|
|
return test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('li:first').text().trim() === 'Candice van der Knijff'
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 900);
|
|
|
|
}).then(function () {
|
|
|
|
var i;
|
2018-01-03 20:02:05 +01:00
|
|
|
var contacts = $(_converse.rosterview.el).find('.current-xmpp-contact');
|
2017-12-22 16:55:03 +01:00
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (i=3; i<6; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (i=6; i<9; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (i=9; i<12; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (i=12; i<15; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (i=15; i<mock.cur_names.length; i++) {
|
|
|
|
expect($(contacts[i]).hasClass('offline')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('both')).toBeTruthy();
|
|
|
|
expect($(contacts[i]).hasClass('online')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('dnd')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('away')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('xa')).toBeFalsy();
|
|
|
|
expect($(contacts[i]).hasClass('unavailable')).toBeFalsy();
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Requesting Contacts", function () {
|
|
|
|
|
|
|
|
it("can be added to the roster and they will be sorted alphabetically",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
var i, children;
|
|
|
|
var names = [];
|
2018-01-04 17:12:09 +01:00
|
|
|
var addName = function (item) {
|
2017-12-22 16:55:03 +01:00
|
|
|
if (!$(item).hasClass('request-actions')) {
|
|
|
|
names.push($(item).text().replace(/^\s+|\s+$/g, ''));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
spyOn(_converse.rosterview, 'update').and.callThrough();
|
|
|
|
spyOn(_converse.controlboxtoggle, 'showControlBox').and.callThrough();
|
|
|
|
for (i=0; i<mock.req_names.length; i++) {
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: mock.req_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: null,
|
|
|
|
requesting: true,
|
|
|
|
fullname: mock.req_names[i]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-04 17:12:09 +01:00
|
|
|
return _converse.rosterview.get('Contact requests').el.querySelectorAll('li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
2018-01-04 17:12:09 +01:00
|
|
|
children = _converse.rosterview.get('Contact requests').el.querySelectorAll('.requesting-xmpp-contact span');
|
2017-12-22 16:55:03 +01:00
|
|
|
names = [];
|
2018-01-04 17:12:09 +01:00
|
|
|
_.each(children, addName);
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(names.join('')).toEqual(mock.req_names.slice(0,mock.req_names.length+1).sort().join(''));
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("do not have a header if there aren't any",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2018-03-18 04:35:34 +01:00
|
|
|
test_utils.openControlBox();
|
2017-12-22 16:55:03 +01:00
|
|
|
var name = mock.req_names[0];
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
_converse.roster.create({
|
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: null,
|
|
|
|
requesting: true,
|
|
|
|
fullname: name
|
|
|
|
});
|
|
|
|
test_utils.waitUntil(function () {
|
2018-03-18 04:35:34 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible li').length;
|
|
|
|
}, 900).then(function () {
|
2018-01-04 17:12:09 +01:00
|
|
|
expect(u.isVisible(_converse.rosterview.get('Contact requests').el)).toEqual(true);
|
2018-03-18 04:35:34 +01:00
|
|
|
expect($(_converse.rosterview.el).find('.roster-group:visible li').length).toBe(1);
|
|
|
|
$(_converse.rosterview.el).find('.roster-group:visible li .decline-xmpp-request')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2018-01-04 17:12:09 +01:00
|
|
|
expect(u.isVisible(_converse.rosterview.get('Contact requests').el)).toEqual(false);
|
2017-12-22 16:55:03 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be collapsed under their own header",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group:visible li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
checkHeaderToggling.apply(
|
|
|
|
_converse,
|
2018-01-04 17:12:09 +01:00
|
|
|
[_converse.rosterview.get('Contact requests').el]
|
2017-12-22 16:55:03 +01:00
|
|
|
).then(done);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can have their requests accepted by the user",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2018-03-18 04:35:34 +01:00
|
|
|
test_utils.openControlBox();
|
2017-12-22 16:55:03 +01:00
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
// TODO: Testing can be more thorough here, the user is
|
|
|
|
// actually not accepted/authorized because of
|
|
|
|
// mock_connection.
|
|
|
|
var name = mock.req_names.sort()[0];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
var contact = _converse.roster.get(jid);
|
|
|
|
spyOn(_converse.roster, 'sendContactAddIQ').and.callFake(function (jid, fullname, groups, callback) {
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
spyOn(contact, 'authorize').and.callFake(function () { return contact; });
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find(".req-contact-name:contains('"+name+"')")
|
2018-03-18 04:35:34 +01:00
|
|
|
.parent().parent().find('.accept-xmpp-request')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(_converse.roster.sendContactAddIQ).toHaveBeenCalled();
|
|
|
|
expect(contact.authorize).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can have their requests denied by the user",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
_converse.rosterview.update(); // XXX: Hack to make sure $roster element is attaced.
|
|
|
|
var name = mock.req_names.sort()[1];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
var contact = _converse.roster.get(jid);
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
spyOn(contact, 'unauthorize').and.callFake(function () { return contact; });
|
2018-01-03 20:02:05 +01:00
|
|
|
$(_converse.rosterview.el).find(".req-contact-name:contains('"+name+"')")
|
2018-03-18 04:35:34 +01:00
|
|
|
.parent().parent().find('.decline-xmpp-request')[0].click();
|
2017-12-22 16:55:03 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
expect(contact.unauthorize).toHaveBeenCalled();
|
|
|
|
// There should now be one less contact
|
|
|
|
expect(_converse.roster.length).toEqual(mock.req_names.length-1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("are persisted even if other contacts' change their presence ", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
|
|
|
|
|
|
|
/* This is a regression test.
|
|
|
|
* https://github.com/jcbrand/_converse.js/issues/262
|
|
|
|
*/
|
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(0);
|
|
|
|
|
|
|
|
var stanza = $pres({from: 'data@enterprise/resource', type: 'subscribe'});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
test_utils.waitUntil(function () {
|
|
|
|
return $('a:contains("Contact requests")').length;
|
|
|
|
}, 700).then(function () {
|
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(1);
|
|
|
|
expect(_.includes(_converse.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
|
|
|
|
// Taken from the spec
|
|
|
|
// http://xmpp.org/rfcs/rfc3921.html#rfc.section.7.3
|
|
|
|
stanza = $iq({
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'result',
|
|
|
|
id: 'roster_1'
|
|
|
|
}).c('query', {
|
|
|
|
xmlns: 'jabber:iq:roster',
|
|
|
|
}).c('item', {
|
|
|
|
jid: 'romeo@example.net',
|
|
|
|
name: 'Romeo',
|
|
|
|
subscription:'both'
|
|
|
|
}).c('group').t('Friends').up().up()
|
|
|
|
.c('item', {
|
|
|
|
jid: 'mercutio@example.org',
|
|
|
|
name: 'Mercutio',
|
|
|
|
subscription:'from'
|
|
|
|
}).c('group').t('Friends').up().up()
|
|
|
|
.c('item', {
|
|
|
|
jid: 'benvolio@example.org',
|
|
|
|
name: 'Benvolio',
|
|
|
|
subscription:'both'
|
|
|
|
}).c('group').t('Friends');
|
|
|
|
_converse.roster.onReceivedFromServer(stanza.tree());
|
|
|
|
expect(_.includes(_converse.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("All Contacts", function () {
|
|
|
|
|
|
|
|
it("are saved to, and can be retrieved from browserStorage",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.createContacts(_converse, 'all').openControlBox();
|
|
|
|
var new_attrs, old_attrs, attrs;
|
|
|
|
var num_contacts = _converse.roster.length;
|
|
|
|
var new_roster = new _converse.RosterContacts();
|
|
|
|
// Roster items are yet to be fetched from browserStorage
|
|
|
|
expect(new_roster.length).toEqual(0);
|
|
|
|
new_roster.browserStorage = _converse.roster.browserStorage;
|
|
|
|
new_roster.fetch();
|
|
|
|
expect(new_roster.length).toEqual(num_contacts);
|
|
|
|
// Check that the roster items retrieved from browserStorage
|
|
|
|
// have the same attributes values as the original ones.
|
|
|
|
attrs = ['jid', 'fullname', 'subscription', 'ask'];
|
|
|
|
for (var i=0; i<attrs.length; i++) {
|
|
|
|
new_attrs = _.map(_.map(new_roster.models, 'attributes'), attrs[i]);
|
|
|
|
old_attrs = _.map(_.map(_converse.roster.models, 'attributes'), attrs[i]);
|
|
|
|
// Roster items in storage are not necessarily sorted,
|
|
|
|
// so we have to sort them here to do a proper
|
|
|
|
// comparison
|
|
|
|
expect(_.isEqual(new_attrs.sort(), old_attrs.sort())).toEqual(true);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("will show fullname and jid properties on tooltip",
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.createContacts(_converse, 'all').openControlBox();
|
|
|
|
test_utils.waitUntil(function () {
|
2018-01-03 20:02:05 +01:00
|
|
|
return $(_converse.rosterview.el).find('.roster-group li').length;
|
2017-12-22 16:55:03 +01:00
|
|
|
}, 700).then(function () {
|
|
|
|
var jid, name, i;
|
|
|
|
for (i=0; i<mock.cur_names.length; i++) {
|
|
|
|
name = mock.cur_names[i];
|
|
|
|
jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-01-03 20:02:05 +01:00
|
|
|
var $dd = $(_converse.rosterview.el).find("li:contains('"+name+"')").children().first();
|
2017-12-22 16:55:03 +01:00
|
|
|
var dd_text = $dd.text();
|
|
|
|
var dd_title = $dd.attr('title');
|
|
|
|
expect(_.trim(dd_text)).toBe(name);
|
|
|
|
expect(dd_title).toContain(name);
|
|
|
|
expect(dd_title).toContain(jid);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|