2013-11-02 12:37:38 +01:00
|
|
|
(function (root, factory) {
|
2017-02-14 15:08:39 +01:00
|
|
|
define(["mock", "converse-core", "test_utils"], factory);
|
2016-12-20 10:30:20 +01:00
|
|
|
} (this, function (mock, converse, test_utils) {
|
|
|
|
var _ = converse.env._;
|
|
|
|
var $ = converse.env.jQuery;
|
|
|
|
var $pres = converse.env.$pres;
|
|
|
|
var $iq = converse.env.$iq;
|
2014-07-20 20:45:59 +02:00
|
|
|
|
|
|
|
var checkHeaderToggling = function ($header) {
|
|
|
|
var $toggle = $header.find('a.group-toggle');
|
|
|
|
expect($header.css('display')).toEqual('block');
|
|
|
|
expect($header.nextUntil('dt', 'dd').length === $header.nextUntil('dt', 'dd:visible').length).toBeTruthy();
|
|
|
|
expect($toggle.hasClass('icon-closed')).toBeFalsy();
|
|
|
|
expect($toggle.hasClass('icon-opened')).toBeTruthy();
|
|
|
|
$toggle.click();
|
|
|
|
expect($toggle.hasClass('icon-closed')).toBeTruthy();
|
|
|
|
expect($toggle.hasClass('icon-opened')).toBeFalsy();
|
|
|
|
expect($header.nextUntil('dt', 'dd').length === $header.nextUntil('dt', 'dd:hidden').length).toBeTruthy();
|
|
|
|
$toggle.click();
|
|
|
|
expect($toggle.hasClass('icon-closed')).toBeFalsy();
|
|
|
|
expect($toggle.hasClass('icon-opened')).toBeTruthy();
|
|
|
|
expect($header.nextUntil('dt', 'dd').length === $header.nextUntil('dt', 'dd:visible').length).toBeTruthy();
|
|
|
|
};
|
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("The Control Box", function () {
|
2014-03-04 14:48:16 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be opened by clicking a DOM element with class 'toggle-controlbox'", mock.initConverse(function (_converse) {
|
2014-02-28 03:04:52 +01:00
|
|
|
runs(function () {
|
|
|
|
// This spec will only pass if the controlbox is not currently
|
|
|
|
// open yet.
|
|
|
|
expect($("div#controlbox").is(':visible')).toBe(false);
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.controlboxtoggle, 'onClick').andCallThrough();
|
|
|
|
spyOn(_converse.controlboxtoggle, 'showControlBox').andCallThrough();
|
|
|
|
spyOn(_converse, 'emit');
|
2014-02-28 03:04:52 +01:00
|
|
|
// Redelegate so that the spies are now registered as the event handlers (specifically for 'onClick')
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.controlboxtoggle.delegateEvents();
|
2014-06-16 00:03:34 +02:00
|
|
|
$('.toggle-controlbox').click();
|
2016-12-20 10:30:20 +01:00
|
|
|
}.bind(_converse));
|
2014-06-29 18:30:01 +02:00
|
|
|
waits(50);
|
2014-02-28 03:04:52 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.controlboxtoggle.onClick).toHaveBeenCalled();
|
|
|
|
expect(_converse.controlboxtoggle.showControlBox).toHaveBeenCalled();
|
|
|
|
expect(_converse.emit).toHaveBeenCalledWith('controlBoxOpened', jasmine.any(Object));
|
2014-02-28 03:04:52 +01:00
|
|
|
expect($("div#controlbox").is(':visible')).toBe(true);
|
2016-12-20 10:30:20 +01:00
|
|
|
}.bind(_converse));
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-03-04 14:48:16 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("The Status Widget", function () {
|
2014-03-04 14:48:16 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("shows the user's chat status, which is online by default", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var view = _converse.xmppstatusview;
|
2013-11-02 12:37:38 +01:00
|
|
|
expect(view.$el.find('a.choose-xmpp-status').hasClass('online')).toBe(true);
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').attr('data-value')).toBe('I am online');
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to set the current user's chat status", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var view = _converse.xmppstatusview;
|
2013-11-02 12:37:38 +01:00
|
|
|
spyOn(view, 'toggleOptions').andCallThrough();
|
|
|
|
spyOn(view, 'setStatus').andCallThrough();
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
2013-11-02 12:37:38 +01:00
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
runs(function () {
|
|
|
|
view.$el.find('a.choose-xmpp-status').click();
|
|
|
|
expect(view.toggleOptions).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
waits(250);
|
|
|
|
runs(function () {
|
|
|
|
spyOn(view, 'updateStatusUI').andCallThrough();
|
|
|
|
view.initialize(); // Rebind events for spy
|
2013-12-15 17:13:39 +01:00
|
|
|
$(view.$el.find('.dropdown dd ul li a')[1]).click(); // Change status to "dnd"
|
2013-11-02 12:37:38 +01:00
|
|
|
expect(view.setStatus).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.emit).toHaveBeenCalledWith('statusChanged', 'dnd');
|
2013-11-02 12:37:38 +01:00
|
|
|
});
|
|
|
|
waits(250);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2013-11-02 12:37:38 +01:00
|
|
|
expect(view.updateStatusUI).toHaveBeenCalled();
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').hasClass('online')).toBe(false);
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').hasClass('dnd')).toBe(true);
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').attr('data-value')).toBe('I am busy');
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to set a custom status message", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var view = _converse.xmppstatusview;
|
|
|
|
_converse.xmppstatus.save({'status': 'online'});
|
2013-11-02 12:37:38 +01:00
|
|
|
spyOn(view, 'setStatusMessage').andCallThrough();
|
|
|
|
spyOn(view, 'renderStatusChangeForm').andCallThrough();
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
2013-11-02 12:37:38 +01:00
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
view.$el.find('a.change-xmpp-status-message').click();
|
|
|
|
expect(view.renderStatusChangeForm).toHaveBeenCalled();
|
|
|
|
// The async testing here is used only to provide time for
|
|
|
|
// visual feedback
|
|
|
|
var msg = 'I am happy';
|
|
|
|
runs (function () {
|
|
|
|
view.$el.find('form input.custom-xmpp-status').val(msg);
|
|
|
|
});
|
|
|
|
waits(250);
|
|
|
|
runs (function () {
|
|
|
|
view.$el.find('form#set-custom-xmpp-status').submit();
|
|
|
|
expect(view.setStatusMessage).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.emit).toHaveBeenCalledWith('statusMessageChanged', msg);
|
2013-11-02 12:37:38 +01:00
|
|
|
expect(view.$el.find('a.choose-xmpp-status').hasClass('online')).toBe(true);
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').attr('data-value')).toBe(msg);
|
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("The Contacts Roster", function () {
|
2014-03-04 14:48:16 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("The live filter", function () {
|
2016-03-13 18:40:36 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("will only appear when roster contacts flow over the visible area", mock.initConverse(function (_converse) {
|
|
|
|
var $filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
var names = mock.cur_names;
|
2016-04-02 13:30:54 +02:00
|
|
|
runs(function () {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.update(); // XXX: Will normally called as event handler
|
2016-04-02 13:30:54 +02:00
|
|
|
});
|
|
|
|
waits(5); // Needed, due to debounce
|
|
|
|
runs(function () {
|
|
|
|
expect($filter.length).toBe(1);
|
|
|
|
expect($filter.is(':visible')).toBeFalsy();
|
|
|
|
for (var i=0; i<names.length; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2016-04-02 13:30:54 +02:00
|
|
|
ask: null,
|
|
|
|
fullname: names[i],
|
|
|
|
jid: names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
requesting: 'false',
|
|
|
|
subscription: 'both'
|
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.update(); // XXX: Will normally called as event handler
|
2016-04-02 13:30:54 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
waits(5); // Needed, due to debounce
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
|
|
|
if (_converse.rosterview.$roster.hasScrollBar()) {
|
2014-08-18 20:37:38 +02:00
|
|
|
expect($filter.is(':visible')).toBeTruthy();
|
|
|
|
} else {
|
|
|
|
expect($filter.is(':visible')).toBeFalsy();
|
|
|
|
}
|
2016-04-02 13:30:54 +02:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-08-02 15:05:27 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to filter the contacts shown", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
var $filter;
|
|
|
|
var $roster;
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = true;
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
|
|
|
});
|
|
|
|
waits(50);
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
|
|
|
$roster = _converse.rosterview.$roster;
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(5); // Needed, due to debounce in "update" method
|
2014-08-18 20:37:38 +02:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
2014-08-18 20:37:38 +02:00
|
|
|
expect($roster.find('dd:visible').length).toBe(15);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5);
|
|
|
|
$filter.val("candice");
|
|
|
|
expect($roster.find('dd:visible').length).toBe(15); // because no keydown event
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5); // ditto
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(1);
|
|
|
|
expect($roster.find('dd:visible').eq(0).text().trim()).toBe('Candice van der Knijff');
|
|
|
|
expect($roster.find('dt:visible').length).toBe(1);
|
|
|
|
expect($roster.find('dt:visible').eq(0).text()).toBe('colleagues');
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
$filter.val("an");
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(5);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(4);
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
$filter.val("xxx");
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(0);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(0);
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-31 21:20:28 +02:00
|
|
|
$filter.val(""); // Check that contacts are shown again, when the filter string is cleared.
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-31 21:20:28 +02:00
|
|
|
runs(function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(15);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5);
|
2014-08-18 20:37:38 +02:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = false;
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-08-02 15:05:27 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to filter the groups shown", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
var $filter;
|
|
|
|
var $roster;
|
|
|
|
var $type;
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = true;
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
|
|
|
});
|
|
|
|
waits(50); // Needed, due to debounce in "update" method
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
|
|
|
$roster = _converse.rosterview.$roster;
|
|
|
|
$type = _converse.rosterview.$('.filter-type');
|
2014-10-27 23:06:11 +01:00
|
|
|
$type.val('groups');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs(function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(15);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5);
|
|
|
|
$filter.val("colleagues");
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(50); // Needed, due to debounce
|
|
|
|
runs(function () {
|
2014-08-18 20:37:38 +02:00
|
|
|
expect($roster.find('dd:visible').length).toBe(15); // because no keydown event
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5); // ditto
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dt:visible').length).toBe(1);
|
|
|
|
expect($roster.find('dt:visible').eq(0).text()).toBe('colleagues');
|
|
|
|
// Check that all contacts under the group are shown
|
|
|
|
expect($roster.find('dt:visible').nextUntil('dt', 'dd:hidden').length).toBe(0);
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
$filter.val("xxx");
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dt:visible').length).toBe(0);
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-31 21:20:28 +02:00
|
|
|
$filter.val(""); // Check that groups are shown again, when the filter string is cleared.
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-31 21:20:28 +02:00
|
|
|
runs(function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(15);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5);
|
2014-08-18 20:37:38 +02:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = false;
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-08-02 15:05:27 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("has a button with which its contents can be cleared", mock.initConverse(function (_converse) {
|
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
|
|
|
var $filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
2014-08-18 20:37:38 +02:00
|
|
|
$filter.val("xxx");
|
|
|
|
$filter.trigger('keydown');
|
|
|
|
expect($filter.hasClass("x")).toBeFalsy();
|
|
|
|
});
|
2016-04-02 13:30:54 +02:00
|
|
|
waits(550); // Needed, due to debounce
|
2014-08-18 20:37:38 +02:00
|
|
|
runs (function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.roster-filter');
|
2014-08-18 20:37:38 +02:00
|
|
|
expect($filter.hasClass("x")).toBeTruthy();
|
|
|
|
$filter.addClass("onX").click();
|
|
|
|
expect($filter.val()).toBe("");
|
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = false;
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2016-07-18 10:41:06 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to filter contacts by their chat state", mock.initConverse(function (_converse) {
|
2016-07-18 10:41:06 +02:00
|
|
|
var $filter;
|
|
|
|
var $roster;
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = true;
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
2016-07-18 10:41:06 +02:00
|
|
|
var jid = mock.cur_names[3].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'online');
|
2016-07-18 10:41:06 +02:00
|
|
|
|
|
|
|
runs(function () {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.filter_view.delegateEvents();
|
|
|
|
var $type = _converse.rosterview.$('.filter-type');
|
2016-07-18 10:41:06 +02:00
|
|
|
$type.val('state').trigger('change');
|
|
|
|
});
|
|
|
|
waits(300); // Needed, due to debounce in "update" method
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
$filter = _converse.rosterview.$('.state-type');
|
|
|
|
$roster = _converse.rosterview.$roster;
|
2016-07-18 10:41:06 +02:00
|
|
|
expect($roster.find('dd:visible').length).toBe(15);
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5);
|
|
|
|
$filter.val("online");
|
|
|
|
expect($roster.find('dd:visible').length).toBe(15); // because no change event yet
|
|
|
|
expect($roster.find('dt:visible').length).toBe(5); // ditto
|
|
|
|
$filter.trigger('change');
|
|
|
|
});
|
|
|
|
waits(550); // Needed, due to debounce
|
|
|
|
runs (function () {
|
|
|
|
expect($roster.find('dd:visible').length).toBe(1);
|
|
|
|
expect($roster.find('dd:visible').eq(0).text().trim()).toBe('Rinse Sommer');
|
|
|
|
expect($roster.find('dt:visible').length).toBe(1);
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
var $type = _converse.rosterview.$('.filter-type');
|
2016-07-18 10:41:06 +02:00
|
|
|
$type.val('contacts').trigger('change');
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = false;
|
2016-07-18 10:41:06 +02:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
2014-08-18 20:37:38 +02:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("A Roster Group", function () {
|
2014-07-31 18:20:20 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be used to organize existing contacts", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster_groups = true;
|
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
|
|
|
_converse.rosterview.render();
|
|
|
|
test_utils.createContacts(_converse, 'pending');
|
|
|
|
test_utils.createContacts(_converse, 'requesting');
|
|
|
|
test_utils.createGroupedContacts(_converse);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-10-27 23:06:11 +01:00
|
|
|
waits(50); // Needed, due to debounce
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that the groups appear alphabetically and that
|
|
|
|
// requesting and pending contacts are last.
|
2016-12-20 10:30:20 +01:00
|
|
|
var group_titles = $.map(_converse.rosterview.$el.find('dt'), function (o) { return $(o).text().trim(); });
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(group_titles).toEqual([
|
2016-06-21 19:48:18 +02:00
|
|
|
"Contact requests",
|
2014-10-27 23:06:11 +01:00
|
|
|
"colleagues",
|
|
|
|
"Family",
|
|
|
|
"friends & acquaintences",
|
|
|
|
"ænemies",
|
|
|
|
"Ungrouped",
|
|
|
|
"Pending contacts"
|
|
|
|
]);
|
|
|
|
// Check that usernames appear alphabetically per group
|
2016-11-03 11:01:09 +01:00
|
|
|
_.each(_.keys(mock.groups), function (name) {
|
2016-12-20 10:30:20 +01:00
|
|
|
var $contacts = _converse.rosterview.$('dt.roster-group[data-group="'+name+'"]').nextUntil('dt', 'dd');
|
2014-10-27 23:06:11 +01:00
|
|
|
var names = $.map($contacts, function (o) { return $(o).text().trim(); });
|
|
|
|
expect(names).toEqual(_.clone(names).sort());
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2014-07-31 21:50:34 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can share contacts with other roster groups", mock.initConverse(function (_converse) {
|
|
|
|
_converse.roster_groups = true;
|
2014-08-01 21:36:20 +02:00
|
|
|
var groups = ['colleagues', 'friends'];
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2015-10-25 18:49:35 +01:00
|
|
|
var i=0;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
|
|
|
_converse.rosterview.render();
|
2014-10-27 23:06:11 +01:00
|
|
|
for (i=0; i<mock.cur_names.length; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-10-27 23:06:11 +01:00
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: groups,
|
|
|
|
fullname: mock.cur_names[i]
|
|
|
|
});
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-10-27 23:06:11 +01:00
|
|
|
waits(50); // Needed, due to debounce
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that usernames appear alphabetically per group
|
2016-11-03 11:01:09 +01:00
|
|
|
_.each(groups, function (name) {
|
2016-12-20 10:30:20 +01:00
|
|
|
var $contacts = _converse.rosterview.$('dt.roster-group[data-group="'+name+'"]').nextUntil('dt', 'dd');
|
2014-10-27 23:06:11 +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);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2014-07-31 18:20:20 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("remembers whether it is closed or opened", mock.initConverse(function (_converse) {
|
|
|
|
_converse.roster_groups = true;
|
2014-08-18 20:37:38 +02:00
|
|
|
var i=0, j=0;
|
2014-08-03 20:48:49 +02:00
|
|
|
var groups = {
|
|
|
|
'colleagues': 3,
|
|
|
|
'friends & acquaintences': 3,
|
|
|
|
'Ungrouped': 2
|
|
|
|
};
|
2016-11-03 11:01:09 +01:00
|
|
|
_.each(_.keys(groups), function (name) {
|
2014-08-03 20:48:49 +02:00
|
|
|
j = i;
|
|
|
|
for (i=j; i<j+groups[name]; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-08-03 20:48:49 +02:00
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
groups: name === 'ungrouped'? [] : [name],
|
2014-08-04 18:00:30 +02:00
|
|
|
fullname: mock.cur_names[i]
|
2014-08-03 20:48:49 +02:00
|
|
|
});
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
var view = _converse.rosterview.get('colleagues');
|
2014-08-03 20:48:49 +02:00
|
|
|
var $toggle = view.$el.find('a.group-toggle');
|
|
|
|
expect(view.model.get('state')).toBe('opened');
|
|
|
|
$toggle.click();
|
|
|
|
expect(view.model.get('state')).toBe('closed');
|
|
|
|
$toggle.click();
|
|
|
|
expect(view.model.get('state')).toBe('opened');
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
2014-07-31 18:20:20 +02:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("Pending Contacts", function () {
|
2014-07-25 09:58:42 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
function _addContacts (_converse) {
|
2014-07-25 09:58:42 +02:00
|
|
|
// Must be initialized, so that render is called and documentFragment set up.
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createContacts(_converse, 'pending').openControlBox().openContactsPanel(_converse);
|
2014-08-03 23:07:48 +02:00
|
|
|
}
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be collapsed under their own header", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
checkHeaderToggling.apply(_converse, [_converse.rosterview.get('Pending contacts').$el]);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2014-07-04 20:37:37 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be added to the roster", mock.initConverse(function (_converse) {
|
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2013-12-18 15:30:19 +01:00
|
|
|
jid: mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
2014-08-04 18:00:30 +02:00
|
|
|
fullname: mock.pend_names[0]
|
2013-12-18 15:30:19 +01:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2013-12-18 15:30:19 +01:00
|
|
|
waits(300);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.is(':visible')).toEqual(true);
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("are shown in the roster when show_only_online_users", mock.initConverse(function (_converse) {
|
|
|
|
_converse.show_only_online_users = true;
|
2014-12-11 01:32:59 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-12-11 01:32:59 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2016-07-18 10:41:06 +02:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.is(':visible')).toEqual(true);
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2016-07-18 10:41:06 +02:00
|
|
|
});
|
2014-12-11 01:32:59 +01:00
|
|
|
waits(300); // Needed, due to debounce
|
2016-07-18 10:41:06 +02:00
|
|
|
runs (function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find('dd:visible').length).toBe(3);
|
|
|
|
expect(_converse.rosterview.$el.find('dt:visible').length).toBe(1);
|
2016-07-18 10:41:06 +02:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.show_only_online_users = false;
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-12-11 01:32:59 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("are shown in the roster when hide_offline_users", mock.initConverse(function (_converse) {
|
|
|
|
_converse.hide_offline_users = true;
|
2015-04-06 11:10:05 +02:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-12-11 01:32:59 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.is(':visible')).toEqual(true);
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-12-11 01:32:59 +01:00
|
|
|
waits(300); // Needed, due to debounce
|
2016-11-03 11:01:09 +01:00
|
|
|
runs (function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find('dd:visible').length).toBe(3);
|
|
|
|
expect(_converse.rosterview.$el.find('dt:visible').length).toBe(1);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.hide_offline_users = false;
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-12-11 01:32:59 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be removed by the user", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-10-27 23:06:11 +01:00
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var name = mock.pend_names[0];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
var contact = _converse.roster.get(jid);
|
2014-10-27 23:06:11 +01:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
2015-04-06 11:10:05 +02:00
|
|
|
spyOn(contact, 'unauthorize').andCallFake(function () { return contact; });
|
|
|
|
spyOn(contact, 'removeFromRoster');
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').andCallFake(function (iq, callback) {
|
2015-04-06 11:10:05 +02:00
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.remove-xmpp-contact').click();
|
2014-08-01 20:09:32 +02:00
|
|
|
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
2015-04-06 11:10:05 +02:00
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
|
|
|
expect(_converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')").length).toEqual(0);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("do not have a header if there aren't any", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
|
|
|
test_utils.openControlBox();
|
|
|
|
var name = mock.pend_names[0];
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-10-27 23:06:11 +01:00
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: name
|
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(20);
|
|
|
|
runs(function () {
|
2015-04-06 11:10:05 +02:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').andCallFake(function (iq, callback) {
|
2015-04-06 11:10:05 +02:00
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.get('Pending contacts').$el.is(':visible')).toEqual(true);
|
|
|
|
_converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.remove-xmpp-contact').click();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
|
|
|
expect(_converse.rosterview.get('Pending contacts').$el.is(':visible')).toEqual(false);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2014-08-01 20:09:32 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("will lose their own header once the last one has been removed", mock.initConverse(function (_converse) {
|
|
|
|
_addContacts(_converse);
|
2014-08-01 20:09:32 +02:00
|
|
|
var name;
|
2014-07-04 20:37:37 +02:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.pend_names.length; i++) {
|
2014-08-01 20:09:32 +02:00
|
|
|
name = mock.pend_names[i];
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.remove-xmpp-contact').click();
|
2014-07-04 20:37:37 +02:00
|
|
|
}
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find('dt#pending-xmpp-contacts').is(':visible')).toBeFalsy();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be added to the roster and they will be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-08-04 18:00:30 +02:00
|
|
|
var i, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2013-11-02 12:37:38 +01:00
|
|
|
for (i=0; i<mock.pend_names.length; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2013-11-02 12:37:38 +01:00
|
|
|
jid: mock.pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
2014-08-04 18:00:30 +02:00
|
|
|
fullname: mock.pend_names[i]
|
2013-11-02 12:37:38 +01:00
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2013-11-02 12:37:38 +01:00
|
|
|
}
|
2014-07-24 20:48:52 +02:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.get('Pending contacts').$el.siblings('dd.pending-xmpp-contact').find('span').text();
|
2014-07-24 20:48:52 +02:00
|
|
|
expect(t).toEqual(mock.pend_names.slice(0,i+1).sort().join(''));
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-07-29 19:53:57 +02:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("Existing Contacts", function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
var _addContacts = function (_converse) {
|
|
|
|
test_utils.createContacts(_converse, 'current').openControlBox().openContactsPanel(_converse);
|
2014-07-29 19:53:57 +02:00
|
|
|
};
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be collapsed under their own header", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
checkHeaderToggling.apply(_converse, [_converse.rosterview.$el.find('dt.roster-group')]);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("will be hidden when appearing under a collapsed group", mock.initConverse(function (_converse) {
|
2017-02-17 10:45:34 +01:00
|
|
|
_converse.roster_groups = false;
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
|
|
|
_converse.rosterview.$el.find('dt.roster-group').find('a.group-toggle').click();
|
2014-08-04 18:48:48 +02:00
|
|
|
var name = "Max Mustermann";
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-08-04 18:48:48 +02:00
|
|
|
ask: null,
|
|
|
|
fullname: name,
|
|
|
|
jid: jid,
|
|
|
|
requesting: false,
|
|
|
|
subscription: 'both'
|
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
var view = _converse.rosterview.get('My contacts').get(jid);
|
2014-08-04 18:48:48 +02:00
|
|
|
expect(view.$el.is(':visible')).toBe(false);
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2014-08-04 18:48:48 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be added to the roster and they will be sorted alphabetically", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
var i, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
|
|
|
for (i=0; i<mock.cur_names.length; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-10-27 23:06:11 +01:00
|
|
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
fullname: mock.cur_names[i]
|
|
|
|
});
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(10);
|
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.offline').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be removed by the user", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var name = mock.cur_names[0];
|
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
var contact = _converse.roster.get(jid);
|
2014-10-27 23:06:11 +01:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
2015-04-06 11:10:05 +02:00
|
|
|
spyOn(contact, 'removeFromRoster');
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').andCallFake(function (iq, callback) {
|
2015-04-06 11:10:05 +02:00
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
2014-10-27 23:06:11 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().find('.remove-xmpp-contact').click();
|
2014-10-27 23:06:11 +01:00
|
|
|
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
2015-04-06 11:10:05 +02:00
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find(".open-chat:contains('"+name+"')").length).toEqual(0);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2014-08-01 20:09:32 +02:00
|
|
|
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("do not have a header if there aren't any", mock.initConverse(function (_converse) {
|
2014-08-01 20:09:32 +02:00
|
|
|
var name = mock.cur_names[0];
|
2016-11-03 11:01:09 +01:00
|
|
|
var contact;
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
contact = _converse.roster.create({
|
2014-10-27 23:06:11 +01:00
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
fullname: name
|
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
|
|
|
runs(function () {
|
2015-04-06 11:10:05 +02:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
|
|
|
spyOn(contact, 'removeFromRoster');
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').andCallFake(function (iq, callback) {
|
2015-04-06 11:10:05 +02:00
|
|
|
if (typeof callback === "function") { return callback(); }
|
|
|
|
});
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find('dt.roster-group').css('display')).toEqual('block');
|
|
|
|
_converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().find('.remove-xmpp-contact').click();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.connection.sendIQ).toHaveBeenCalled();
|
2015-04-06 11:10:05 +02:00
|
|
|
expect(contact.removeFromRoster).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.$el.find('dt.roster-group').css('display')).toEqual('none');
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2014-08-01 20:09:32 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can change their status to online and be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var jid, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
2014-10-27 23:06:11 +01:00
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'online');
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can change their status to busy and be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var jid, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
2014-10-27 23:06:11 +01:00
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'dnd');
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can change their status to away and be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var jid, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
2014-10-27 23:06:11 +01:00
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'away');
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can change their status to xa and be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var jid, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
2014-10-27 23:06:11 +01:00
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'xa');
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.xa').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can change their status to unavailable and be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var jid, t;
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<mock.cur_names.length; i++) {
|
2014-10-27 23:06:11 +01:00
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'unavailable');
|
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
t = _converse.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
|
2014-10-27 23:06:11 +01:00
|
|
|
expect(t).toEqual(mock.cur_names.slice(0, i+1).sort().join(''));
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("are ordered according to status: online, busy, away, xa, unavailable, offline", mock.initConverse(function (_converse) {
|
2014-10-27 23:06:11 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
_addContacts(_converse);
|
2014-10-27 23:06:11 +01:00
|
|
|
});
|
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2015-10-25 18:49:35 +01:00
|
|
|
var i, jid;
|
2014-10-27 23:06:11 +01:00
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'online');
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=3; i<6; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'dnd');
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=6; i<9; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'away');
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=9; i<12; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'xa');
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=12; i<15; i++) {
|
|
|
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.get(jid).set('chat_status', 'unavailable');
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
2014-06-30 20:26:45 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
var contacts = _converse.rosterview.$el.find('dd.current-xmpp-contact');
|
2014-10-27 23:06:11 +01:00
|
|
|
for (i=0; i<3; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=3; i<6; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=6; i<9; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=9; i<12; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=12; i<15; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
|
|
|
for (i=15; i<mock.cur_names.length; i++) {
|
2015-04-10 01:23:33 +02:00
|
|
|
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();
|
2014-10-27 23:06:11 +01:00
|
|
|
}
|
2014-07-04 20:37:37 +02:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Requesting Contacts", function () {
|
2014-07-04 20:37:37 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be added to the roster and they will be sorted alphabetically", mock.initConverse(function (_converse) {
|
2014-07-19 15:26:30 +02:00
|
|
|
var i, children;
|
|
|
|
var names = [];
|
2014-07-20 19:36:53 +02:00
|
|
|
var addName = function (idx, item) {
|
|
|
|
if (!$(item).hasClass('request-actions')) {
|
|
|
|
names.push($(item).text().replace(/^\s+|\s+$/g, ''));
|
|
|
|
}
|
|
|
|
};
|
2016-11-22 17:42:58 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.openContactsPanel(_converse);
|
2016-11-22 17:42:58 +01:00
|
|
|
});
|
|
|
|
waits(250);
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
spyOn(_converse, 'emit');
|
|
|
|
spyOn(_converse.rosterview, 'update').andCallThrough();
|
|
|
|
spyOn(_converse.controlboxtoggle, 'showControlBox').andCallThrough();
|
2016-11-22 17:42:58 +01:00
|
|
|
for (i=0; i<mock.req_names.length; i++) {
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2016-11-22 17:42:58 +01:00
|
|
|
jid: mock.req_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: null,
|
|
|
|
requesting: true,
|
|
|
|
fullname: mock.req_names[i]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
waits(250);
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.update).toHaveBeenCalled();
|
2016-11-22 17:42:58 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2016-12-20 10:30:20 +01:00
|
|
|
children = _converse.rosterview.get('Contact requests').$el.siblings('dd.requesting-xmpp-contact').find('span');
|
2016-11-22 17:42:58 +01:00
|
|
|
names = [];
|
|
|
|
children.each(addName);
|
|
|
|
expect(names.join('')).toEqual(mock.req_names.slice(0,mock.req_names.length+1).sort().join(''));
|
|
|
|
});
|
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("do not have a header if there aren't any", mock.initConverse(function (_converse) {
|
|
|
|
test_utils.openContactsPanel(_converse);
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2014-08-01 20:09:32 +02:00
|
|
|
var name = mock.req_names[0];
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.create({
|
2014-10-27 23:06:11 +01:00
|
|
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: null,
|
|
|
|
requesting: true,
|
|
|
|
fullname: name
|
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2016-11-22 17:42:58 +01:00
|
|
|
waits(350);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.get('Contact requests').$el.is(':visible')).toEqual(true);
|
|
|
|
_converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.request-actions')
|
2014-10-27 23:06:11 +01:00
|
|
|
.find('.decline-xmpp-request').click();
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.rosterview.get('Contact requests').$el.is(':visible')).toEqual(false);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can be collapsed under their own header", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(10);
|
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
checkHeaderToggling.apply(_converse, [_converse.rosterview.get('Contact requests').$el]);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can have their requests accepted by the user", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(10);
|
|
|
|
runs(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';
|
2016-12-20 10:30:20 +01:00
|
|
|
var contact = _converse.roster.get(jid);
|
|
|
|
spyOn(_converse.roster, 'sendContactAddIQ').andCallFake(function (jid, fullname, groups, callback) {
|
2016-11-03 11:01:09 +01:00
|
|
|
callback();
|
|
|
|
});
|
|
|
|
spyOn(contact, 'authorize').andCallFake(function () { return contact; });
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.request-actions')
|
2016-11-03 11:01:09 +01:00
|
|
|
.find('.accept-xmpp-request').click();
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.roster.sendContactAddIQ).toHaveBeenCalled();
|
2016-11-03 11:01:09 +01:00
|
|
|
expect(contact.authorize).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can have their requests denied by the user", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createContacts(_converse, 'requesting').openControlBox();
|
|
|
|
_converse.rosterview.update(); // XXX: Hack to make sure $roster element is attaced.
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
2014-10-27 23:06:11 +01:00
|
|
|
waits(50);
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2014-10-27 23:06:11 +01:00
|
|
|
var name = mock.req_names.sort()[1];
|
2015-04-06 12:26:08 +02:00
|
|
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
2016-12-20 10:30:20 +01:00
|
|
|
var contact = _converse.roster.get(jid);
|
2015-04-06 12:26:08 +02:00
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
|
|
|
spyOn(contact, 'unauthorize').andCallFake(function () { return contact; });
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
2017-02-02 16:37:41 +01:00
|
|
|
.parent().siblings('.request-actions')
|
2014-10-27 23:06:11 +01:00
|
|
|
.find('.decline-xmpp-request').click();
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
2015-04-06 12:26:08 +02:00
|
|
|
expect(contact.unauthorize).toHaveBeenCalled();
|
2014-10-27 23:06:11 +01:00
|
|
|
// There should now be one less contact
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.roster.length).toEqual(mock.req_names.length-1);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2014-10-24 18:58:42 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("are persisted even if other contacts' change their presence ", mock.initConverse(function (_converse) {
|
2014-10-24 18:58:42 +02:00
|
|
|
/* This is a regression test.
|
2016-12-20 10:30:20 +01:00
|
|
|
* https://github.com/jcbrand/_converse.js/issues/262
|
2014-10-24 18:58:42 +02:00
|
|
|
*/
|
2016-12-20 10:30:20 +01:00
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(0);
|
2014-10-24 18:58:42 +02:00
|
|
|
|
|
|
|
var stanza = $pres({from: 'data@enterprise/resource', type: 'subscribe'});
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
expect(_converse.roster.pluck('jid').length).toBe(1);
|
|
|
|
expect(_.includes(_converse.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
|
2014-10-24 18:58:42 +02:00
|
|
|
|
|
|
|
// Taken from the spec
|
|
|
|
// http://xmpp.org/rfcs/rfc3921.html#rfc.section.7.3
|
|
|
|
stanza = $iq({
|
2016-12-20 10:30:20 +01:00
|
|
|
to: _converse.connection.jid,
|
2014-10-24 18:58:42 +02:00
|
|
|
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');
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.roster.onReceivedFromServer(stanza.tree());
|
|
|
|
expect(_.includes(_converse.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("All Contacts", function () {
|
2014-07-04 20:37:37 +02:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("are saved to, and can be retrieved from browserStorage", mock.initConverse(function (_converse) {
|
|
|
|
test_utils.createContacts(_converse, 'all').openControlBox();
|
|
|
|
test_utils.openContactsPanel(_converse);
|
2014-10-24 21:45:48 +02:00
|
|
|
var new_attrs, old_attrs, attrs;
|
2016-12-20 10:30:20 +01:00
|
|
|
var num_contacts = _converse.roster.length;
|
|
|
|
var new_roster = new _converse.RosterContacts();
|
2014-06-30 19:21:16 +02:00
|
|
|
// Roster items are yet to be fetched from browserStorage
|
2013-11-02 12:37:38 +01:00
|
|
|
expect(new_roster.length).toEqual(0);
|
2016-12-20 10:30:20 +01:00
|
|
|
new_roster.browserStorage = _converse.roster.browserStorage;
|
2013-11-02 12:37:38 +01:00
|
|
|
new_roster.fetch();
|
2014-06-30 19:21:16 +02:00
|
|
|
expect(new_roster.length).toEqual(num_contacts);
|
|
|
|
// Check that the roster items retrieved from browserStorage
|
2013-11-02 12:37:38 +01:00
|
|
|
// have the same attributes values as the original ones.
|
|
|
|
attrs = ['jid', 'fullname', 'subscription', 'ask'];
|
2015-10-25 18:49:35 +01:00
|
|
|
for (var i=0; i<attrs.length; i++) {
|
2017-01-26 15:49:02 +01:00
|
|
|
new_attrs = _.map(_.map(new_roster.models, 'attributes'), attrs[i]);
|
2016-12-20 10:30:20 +01:00
|
|
|
old_attrs = _.map(_.map(_converse.roster.models, 'attributes'), attrs[i]);
|
2013-11-02 12:37:38 +01:00
|
|
|
// 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);
|
|
|
|
}
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("will show fullname and jid properties on tooltip", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2016-12-20 10:30:20 +01:00
|
|
|
test_utils.createContacts(_converse, 'all').openControlBox();
|
|
|
|
test_utils.openContactsPanel(_converse);
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
waits(10);
|
|
|
|
runs(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';
|
2016-12-20 10:30:20 +01:00
|
|
|
var $dd = _converse.rosterview.$el.find("dd:contains('"+name+"')").children().first();
|
2016-11-03 11:01:09 +01:00
|
|
|
var dd_text = $dd.text();
|
|
|
|
var dd_title = $dd.attr('title');
|
|
|
|
expect(dd_text).toBe(name);
|
|
|
|
expect(dd_title).toContain(name);
|
|
|
|
expect(dd_title).toContain(jid);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}));
|
2015-03-01 13:32:53 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
});
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("The 'Add Contact' widget", function () {
|
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("opens up an add form when you click on it", mock.initConverse(function (_converse) {
|
|
|
|
var panel = _converse.chatboxviews.get('controlbox').contactspanel;
|
2013-11-02 12:37:38 +01:00
|
|
|
spyOn(panel, 'toggleContactForm').andCallThrough();
|
|
|
|
panel.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
panel.$el.find('a.toggle-xmpp-contact-form').click();
|
|
|
|
expect(panel.toggleContactForm).toHaveBeenCalled();
|
|
|
|
// XXX: Awaiting more tests, close it again for now...
|
|
|
|
panel.$el.find('a.toggle-xmpp-contact-form').click();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("The Controlbox Tabs", function () {
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("contains two tabs, 'Contacts' and 'ChatRooms'", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var cbview = _converse.chatboxviews.get('controlbox');
|
2013-11-02 12:37:38 +01:00
|
|
|
var $panels = cbview.$el.find('.controlbox-panes');
|
|
|
|
expect($panels.children().length).toBe(2);
|
|
|
|
expect($panels.children().first().attr('id')).toBe('users');
|
|
|
|
expect($panels.children().first().is(':visible')).toBe(true);
|
|
|
|
expect($panels.children().last().attr('id')).toBe('chatrooms');
|
|
|
|
expect($panels.children().last().is(':visible')).toBe(false);
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("remembers which tab was open last", mock.initConverse(function (_converse) {
|
2016-11-03 15:10:08 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var cbview = _converse.chatboxviews.get('controlbox');
|
2016-11-03 15:10:08 +01:00
|
|
|
var $tabs = cbview.$el.find('#controlbox-tabs');
|
|
|
|
expect(cbview.model.get('active-panel')).toBe('users');
|
|
|
|
$tabs.find('li').last().find('a').click();
|
|
|
|
expect(cbview.model.get('active-panel')).toBe('chatrooms');
|
|
|
|
$tabs.find('li').first().find('a').click();
|
|
|
|
expect(cbview.model.get('active-panel')).toBe('users');
|
|
|
|
}));
|
|
|
|
|
2016-11-03 11:01:09 +01:00
|
|
|
describe("chatrooms panel", function () {
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("is opened by clicking the 'Chatrooms' tab", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var cbview = _converse.chatboxviews.get('controlbox');
|
2013-11-02 12:37:38 +01:00
|
|
|
var $tabs = cbview.$el.find('#controlbox-tabs');
|
|
|
|
var $panels = cbview.$el.find('.controlbox-panes');
|
|
|
|
var $contacts = $panels.children().first();
|
|
|
|
var $chatrooms = $panels.children().last();
|
|
|
|
spyOn(cbview, 'switchTab').andCallThrough();
|
|
|
|
cbview.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
2015-03-01 19:09:10 +01:00
|
|
|
$tabs.find('li').last().find('a').click(); // Clicks the chatrooms tab
|
|
|
|
expect($contacts.is(':visible')).toBe(false);
|
|
|
|
expect($chatrooms.is(':visible')).toBe(true);
|
|
|
|
expect(cbview.switchTab).toHaveBeenCalled();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2013-11-02 12:37:38 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("contains a form through which a new chatroom can be created", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var roomspanel = _converse.chatboxviews.get('controlbox').roomspanel;
|
2013-11-02 12:37:38 +01:00
|
|
|
var $input = roomspanel.$el.find('input.new-chatroom-name');
|
|
|
|
var $nick = roomspanel.$el.find('input.new-chatroom-nick');
|
|
|
|
var $server = roomspanel.$el.find('input.new-chatroom-server');
|
|
|
|
expect($input.length).toBe(1);
|
|
|
|
expect($server.length).toBe(1);
|
|
|
|
expect($('.chatroom:visible').length).toBe(0); // There shouldn't be any chatrooms open currently
|
|
|
|
spyOn(roomspanel, 'createChatRoom').andCallThrough();
|
|
|
|
roomspanel.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
runs(function () {
|
|
|
|
$input.val('Lounge');
|
|
|
|
$nick.val('dummy');
|
|
|
|
$server.val('muc.localhost');
|
|
|
|
});
|
|
|
|
waits('250');
|
|
|
|
runs(function () {
|
|
|
|
roomspanel.$el.find('form').submit();
|
|
|
|
expect(roomspanel.createChatRoom).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
waits('250');
|
2016-11-03 11:01:09 +01:00
|
|
|
runs(function () {
|
2013-11-02 12:37:38 +01:00
|
|
|
expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom
|
2016-11-03 11:01:09 +01:00
|
|
|
});
|
|
|
|
}));
|
2015-03-01 13:32:53 +01:00
|
|
|
|
2016-12-20 10:30:20 +01:00
|
|
|
it("can list rooms publically available on the server", mock.initConverse(function (_converse) {
|
2016-11-03 11:01:09 +01:00
|
|
|
test_utils.openControlBox();
|
2016-12-20 10:30:20 +01:00
|
|
|
var panel = _converse.chatboxviews.get('controlbox').roomspanel;
|
2015-03-01 19:09:10 +01:00
|
|
|
panel.$tabs.find('li').last().find('a').click(); // Click the chatrooms tab
|
|
|
|
panel.model.set({'muc_domain': 'muc.localhost'}); // Make sure the domain is set
|
2015-03-01 13:32:53 +01:00
|
|
|
// See: http://xmpp.org/extensions/xep-0045.html#disco-rooms
|
2015-03-01 19:09:10 +01:00
|
|
|
expect($('#available-chatrooms').children('dt').length).toBe(0);
|
|
|
|
expect($('#available-chatrooms').children('dd').length).toBe(0);
|
|
|
|
|
|
|
|
var iq = $iq({
|
|
|
|
from:'muc.localhost',
|
|
|
|
to:'dummy@localhost/pda',
|
|
|
|
type:'result'
|
|
|
|
}).c('query')
|
|
|
|
.c('item', { jid:'heath@chat.shakespeare.lit', name:'A Lonely Heath'}).up()
|
|
|
|
.c('item', { jid:'coven@chat.shakespeare.lit', name:'A Dark Cave'}).up()
|
|
|
|
.c('item', { jid:'forres@chat.shakespeare.lit', name:'The Palace'}).up()
|
|
|
|
.c('item', { jid:'inverness@chat.shakespeare.lit', name:'Macbeth's Castle'}).nodeTree;
|
|
|
|
|
|
|
|
panel.onRoomsFound(iq);
|
|
|
|
expect(panel.$('#available-chatrooms').children('dt').length).toBe(1);
|
|
|
|
expect(panel.$('#available-chatrooms').children('dt').first().text()).toBe("Rooms on muc.localhost");
|
|
|
|
expect(panel.$('#available-chatrooms').children('dd').length).toBe(4);
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
2013-11-02 12:37:38 +01:00
|
|
|
}));
|