2012-12-09 18:55:23 +01:00
|
|
|
(function (root, factory) {
|
|
|
|
define([
|
2013-05-11 14:20:07 +02:00
|
|
|
"mock"
|
2013-08-05 09:25:29 +02:00
|
|
|
], function (mock_connection) {
|
|
|
|
return factory(mock_connection);
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
|
|
|
);
|
2013-08-05 09:25:29 +02:00
|
|
|
} (this, function (mock_connection) {
|
|
|
|
return describe("Converse.js", function() {
|
2012-12-09 18:55:23 +01:00
|
|
|
// Names from http://www.fakenamegenerator.com/
|
2013-04-14 01:58:53 +02:00
|
|
|
var req_names = [
|
2013-04-17 12:07:50 +02:00
|
|
|
'Louw Spekman', 'Mohamad Stet', 'Dominik Beyer'
|
2013-04-14 01:58:53 +02:00
|
|
|
];
|
|
|
|
var pend_names = [
|
2013-08-24 15:33:06 +02:00
|
|
|
'Suleyman van Beusichem', 'Nanja van Yperen', 'Nicole Diederich'
|
2013-04-14 01:58:53 +02:00
|
|
|
];
|
|
|
|
var cur_names = [
|
2012-12-09 18:55:23 +01:00
|
|
|
'Max Frankfurter', 'Candice van der Knijff', 'Irini Vlastuin', 'Rinse Sommer', 'Annegreet Gomez',
|
|
|
|
'Robin Schook', 'Marcel Eberhardt', 'Simone Brauer', 'Asmaa Haakman', 'Felix Amsel',
|
2013-09-13 10:57:28 +02:00
|
|
|
'Lena Grunewald', 'Laura Grunewald', 'Mandy Seiler', 'Sven Bosch', 'Nuriye Cuypers',
|
|
|
|
'Staal Burger', 'Brenner Brand', 'Vleis Visagie'
|
2012-12-09 18:55:23 +01:00
|
|
|
];
|
2013-04-15 09:57:46 +02:00
|
|
|
var num_contacts = req_names.length + pend_names.length + cur_names.length;
|
2013-04-19 21:03:26 +02:00
|
|
|
var open_controlbox;
|
|
|
|
|
2013-05-14 22:39:13 +02:00
|
|
|
closeAllChatBoxes = function () {
|
|
|
|
var i, chatbox, num_chatboxes = converse.chatboxes.models.length;
|
|
|
|
for (i=num_chatboxes-1; i>-1; i--) {
|
|
|
|
chatbox = converse.chatboxes.models[i];
|
|
|
|
converse.chatboxesview.views[chatbox.get('id')].closeChat();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
openControlBox = function () {
|
|
|
|
if (!$("div#controlbox").is(':visible')) {
|
|
|
|
$('.toggle-online-users').click();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-04-18 00:10:28 +02:00
|
|
|
describe("The Control Box", $.proxy(function () {
|
2013-04-14 01:09:26 +02:00
|
|
|
it("is not shown by default", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.is(':visible')).toEqual(false);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 01:09:26 +02:00
|
|
|
|
2013-04-19 21:03:26 +02:00
|
|
|
open_controlbox = $.proxy(function () {
|
|
|
|
// This spec will only pass if the controlbox is not currently
|
|
|
|
// open yet.
|
|
|
|
expect($("div#controlbox").is(':visible')).toBe(false);
|
2013-04-14 01:58:53 +02:00
|
|
|
spyOn(this, 'toggleControlBox').andCallThrough();
|
2013-05-11 14:20:07 +02:00
|
|
|
spyOn(this, 'showControlBox').andCallThrough();
|
2013-04-19 00:32:46 +02:00
|
|
|
$('.toggle-online-users').click();
|
2013-04-14 01:58:53 +02:00
|
|
|
expect(this.toggleControlBox).toHaveBeenCalled();
|
2013-05-11 14:20:07 +02:00
|
|
|
expect(this.showControlBox).toHaveBeenCalled();
|
2013-04-19 21:03:26 +02:00
|
|
|
expect($("div#controlbox").is(':visible')).toBe(true);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse);
|
2013-04-19 21:03:26 +02:00
|
|
|
it("can be opened by clicking a DOM element with class 'toggle-online-users'", open_controlbox);
|
2013-07-25 09:45:35 +02:00
|
|
|
|
2013-04-18 00:10:28 +02:00
|
|
|
describe("The Status Widget", $.proxy(function () {
|
2013-08-04 15:39:46 +02:00
|
|
|
it("shows the user's chat status, which is online by default", $.proxy(function () {
|
|
|
|
var view = this.xmppstatusview;
|
|
|
|
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');
|
|
|
|
}, converse));
|
|
|
|
|
2013-04-18 00:10:28 +02:00
|
|
|
it("can be used to set the current user's chat status", $.proxy(function () {
|
2013-04-18 22:13:28 +02:00
|
|
|
var view = this.xmppstatusview;
|
|
|
|
spyOn(view, 'toggleOptions').andCallThrough();
|
|
|
|
spyOn(view, 'setStatus').andCallThrough();
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
2013-04-19 22:11:40 +02:00
|
|
|
runs(function () {
|
|
|
|
view.$el.find('a.choose-xmpp-status').click();
|
|
|
|
expect(view.toggleOptions).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
waits(250);
|
2013-04-18 22:13:28 +02:00
|
|
|
runs(function () {
|
|
|
|
spyOn(view, 'updateStatusUI').andCallThrough();
|
|
|
|
view.initialize(); // Rebind events for spy
|
2013-08-04 15:39:46 +02:00
|
|
|
$(view.$el.find('.dropdown dd ul li a')[1]).click();
|
2013-04-18 22:13:28 +02:00
|
|
|
expect(view.setStatus).toHaveBeenCalled();
|
|
|
|
});
|
2013-04-19 22:11:40 +02:00
|
|
|
waits(250);
|
2013-04-18 22:13:28 +02:00
|
|
|
runs($.proxy(function () {
|
|
|
|
expect(view.updateStatusUI).toHaveBeenCalled();
|
2013-08-04 15:39:46 +02:00
|
|
|
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');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-04-18 00:10:28 +02:00
|
|
|
|
|
|
|
it("can be used to set a custom status message", $.proxy(function () {
|
2013-04-18 22:13:28 +02:00
|
|
|
var view = this.xmppstatusview;
|
2013-08-04 15:39:46 +02:00
|
|
|
this.xmppstatus.save({'status': 'online'});
|
2013-04-18 22:13:28 +02:00
|
|
|
spyOn(view, 'setStatusMessage').andCallThrough();
|
|
|
|
spyOn(view, 'renderStatusChangeForm').andCallThrough();
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
2013-04-19 21:03:26 +02:00
|
|
|
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 () {
|
2013-04-18 22:13:28 +02:00
|
|
|
view.$el.find('form input.custom-xmpp-status').val(msg);
|
2013-04-19 21:03:26 +02:00
|
|
|
});
|
2013-04-19 22:11:40 +02:00
|
|
|
waits(250);
|
2013-04-19 21:03:26 +02:00
|
|
|
runs (function () {
|
2013-04-18 22:13:28 +02:00
|
|
|
view.$el.find('form#set-custom-xmpp-status').submit();
|
|
|
|
expect(view.setStatusMessage).toHaveBeenCalled();
|
|
|
|
expect(view.$el.find('a.choose-xmpp-status').hasClass('online')).toBe(true);
|
2013-05-21 13:55:42 +02:00
|
|
|
expect(view.$el.find('a.choose-xmpp-status').attr('data-value')).toBe(msg);
|
2013-04-18 22:13:28 +02:00
|
|
|
});
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-04-18 00:10:28 +02:00
|
|
|
|
|
|
|
describe("The Contacts Roster", $.proxy(function () {
|
2013-04-15 09:12:42 +02:00
|
|
|
describe("Pending Contacts", $.proxy(function () {
|
2013-05-14 22:39:13 +02:00
|
|
|
beforeEach(function () {
|
|
|
|
if (!$("div#controlbox").is(':visible')) {
|
|
|
|
$('.toggle-online-users').click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
it("do not have a heading if there aren't any", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').css('display')).toEqual('none');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 01:09:26 +02:00
|
|
|
|
2013-08-24 15:33:06 +02:00
|
|
|
it("can be added to the roster", $.proxy(function () {
|
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
|
|
|
spyOn(this.xmppstatus, 'sendPresence');
|
|
|
|
this.roster.create({
|
|
|
|
jid: pend_names[0].replace(' ','.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: pend_names[0],
|
|
|
|
is_last: true
|
|
|
|
});
|
|
|
|
expect(this.rosterview.$el.is(':visible')).toEqual(true);
|
|
|
|
expect(this.xmppstatus.sendPresence).toHaveBeenCalled();
|
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
|
|
|
}, converse));
|
|
|
|
|
|
|
|
it("can be removed by the user", $.proxy(function () {
|
|
|
|
var view = _.toArray(this.rosterview.rosteritemviews).pop();
|
|
|
|
spyOn(window, 'confirm').andReturn(true);
|
|
|
|
spyOn(this.connection.roster, 'remove').andCallThrough();
|
|
|
|
spyOn(this.connection.roster, 'unauthorize');
|
|
|
|
spyOn(this.rosterview.model, 'remove').andCallThrough();
|
|
|
|
//spyOn(view, 'removeContact').andCallThrough();
|
|
|
|
|
|
|
|
runs($.proxy(function () {
|
|
|
|
view.$el.find('.remove-xmpp-contact').click();
|
|
|
|
}, converse));
|
|
|
|
waits(500);
|
|
|
|
runs($.proxy(function () {
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
//expect(view.removeContact).toHaveBeenCalled();
|
|
|
|
expect(this.connection.roster.remove).toHaveBeenCalled();
|
|
|
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
|
|
|
expect(this.rosterview.model.remove).toHaveBeenCalled();
|
|
|
|
// The element must now be detached from the DOM.
|
|
|
|
expect(view.$el.closest('html').length).toBeFalsy();
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
|
|
|
|
it("will lose their own heading once the last one has been removed", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').is(':visible')).toBeFalsy();
|
|
|
|
}, converse));
|
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
|
|
|
var i, t, is_last;
|
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
2013-08-04 15:39:46 +02:00
|
|
|
spyOn(this.xmppstatus, 'sendPresence');
|
2013-04-15 09:12:42 +02:00
|
|
|
for (i=0; i<pend_names.length; i++) {
|
2013-07-25 09:45:35 +02:00
|
|
|
is_last = i===(pend_names.length-1);
|
2013-04-15 09:12:42 +02:00
|
|
|
this.roster.create({
|
|
|
|
jid: pend_names[i].replace(' ','.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'subscribe',
|
|
|
|
fullname: pend_names[i],
|
|
|
|
is_last: is_last
|
|
|
|
});
|
|
|
|
if (is_last) {
|
2013-08-04 15:39:46 +02:00
|
|
|
expect(this.xmppstatus.sendPresence).toHaveBeenCalled();
|
2013-04-15 09:12:42 +02:00
|
|
|
} else {
|
2013-08-24 15:33:06 +02:00
|
|
|
expect(this.xmppstatus.sendPresence).not.toHaveBeenCalled();
|
2013-04-15 09:12:42 +02:00
|
|
|
}
|
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = this.rosterview.$el.find('dt#pending-xmpp-contacts').siblings('dd.pending-xmpp-contact').text();
|
|
|
|
expect(t).toEqual(pend_names.slice(0,i+1).sort().join(''));
|
2013-04-14 03:06:30 +02:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 03:06:30 +02:00
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
it("will have their own heading once they have been added", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').css('display')).toEqual('block');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-08-24 15:33:06 +02:00
|
|
|
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 03:06:30 +02:00
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
describe("Existing Contacts", $.proxy(function () {
|
2013-09-13 10:35:00 +02:00
|
|
|
beforeEach($.proxy(function () {
|
|
|
|
openControlBox();
|
|
|
|
}, converse));
|
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
it("do not have a heading if there aren't any", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#xmpp-contacts').css('display')).toEqual('none');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-13 00:16:50 +02:00
|
|
|
|
2013-04-15 09:12:42 +02:00
|
|
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
|
|
|
var i, t;
|
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
|
|
|
for (i=0; i<cur_names.length; i++) {
|
|
|
|
this.roster.create({
|
|
|
|
jid: cur_names[i].replace(' ','.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'both',
|
|
|
|
ask: null,
|
|
|
|
fullname: cur_names[i],
|
2013-07-25 09:45:35 +02:00
|
|
|
is_last: i===(cur_names.length-1)
|
2013-04-15 09:12:42 +02:00
|
|
|
});
|
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.offline').find('a.open-chat').text();
|
|
|
|
expect(t).toEqual(cur_names.slice(0,i+1).sort().join(''));
|
2013-04-13 00:16:50 +02:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
it("will have their own heading once they have been added", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#xmpp-contacts').css('display')).toEqual('block');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-13 00:16:50 +02:00
|
|
|
|
2013-04-12 23:20:31 +02:00
|
|
|
it("can change their status to online and be sorted alphabetically", $.proxy(function () {
|
2013-04-13 00:56:53 +02:00
|
|
|
var item, view, jid, t;
|
2013-04-12 20:30:41 +02:00
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=0; i<3; i++) {
|
2013-04-14 01:58:53 +02:00
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
2013-04-12 20:30:41 +02:00
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
2012-12-09 18:55:23 +01:00
|
|
|
spyOn(view, 'render').andCallThrough();
|
|
|
|
item = view.model;
|
2013-04-12 23:08:30 +02:00
|
|
|
item.set('chat_status', 'online');
|
2012-12-09 18:55:23 +01:00
|
|
|
expect(view.render).toHaveBeenCalled();
|
2013-04-12 20:30:41 +02:00
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
2012-12-09 18:55:23 +01:00
|
|
|
|
|
|
|
// Check that they are sorted alphabetically
|
2013-04-12 20:30:41 +02:00
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
|
2013-04-14 01:58:53 +02:00
|
|
|
expect(t).toEqual(cur_names.slice(0,i+1).sort().join(''));
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2012-12-09 18:55:23 +01:00
|
|
|
|
2013-04-12 23:20:31 +02:00
|
|
|
it("can change their status to busy and be sorted alphabetically", $.proxy(function () {
|
2013-04-13 00:56:53 +02:00
|
|
|
var item, view, jid, t;
|
2013-04-12 20:30:41 +02:00
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=3; i<6; i++) {
|
2013-04-14 01:58:53 +02:00
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
2013-04-12 20:30:41 +02:00
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
2012-12-09 18:55:23 +01:00
|
|
|
spyOn(view, 'render').andCallThrough();
|
|
|
|
item = view.model;
|
2013-04-12 23:08:30 +02:00
|
|
|
item.set('chat_status', 'dnd');
|
2012-12-09 18:55:23 +01:00
|
|
|
expect(view.render).toHaveBeenCalled();
|
2013-04-12 20:30:41 +02:00
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
2012-12-09 18:55:23 +01:00
|
|
|
// Check that they are sorted alphabetically
|
2013-04-12 23:08:30 +02:00
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
|
2013-04-17 12:07:50 +02:00
|
|
|
expect(t).toEqual(cur_names.slice(3,i+1).sort().join(''));
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2012-12-09 18:55:23 +01:00
|
|
|
|
2013-04-12 23:20:31 +02:00
|
|
|
it("can change their status to away and be sorted alphabetically", $.proxy(function () {
|
2013-04-13 00:56:53 +02:00
|
|
|
var item, view, jid, t;
|
2013-04-12 20:30:41 +02:00
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=6; i<9; i++) {
|
2013-04-14 01:58:53 +02:00
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
2013-04-12 20:30:41 +02:00
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
2012-12-09 18:55:23 +01:00
|
|
|
spyOn(view, 'render').andCallThrough();
|
|
|
|
item = view.model;
|
2013-04-12 23:08:30 +02:00
|
|
|
item.set('chat_status', 'away');
|
2012-12-09 18:55:23 +01:00
|
|
|
expect(view.render).toHaveBeenCalled();
|
2013-04-12 20:30:41 +02:00
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
2012-12-09 18:55:23 +01:00
|
|
|
|
|
|
|
// Check that they are sorted alphabetically
|
2013-04-12 20:30:41 +02:00
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
|
2013-04-17 12:07:50 +02:00
|
|
|
expect(t).toEqual(cur_names.slice(6,i+1).sort().join(''));
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2012-12-09 18:55:23 +01:00
|
|
|
|
2013-09-13 10:57:28 +02:00
|
|
|
it("can change their status to xa and be sorted alphabetically", $.proxy(function () {
|
2013-04-13 00:56:53 +02:00
|
|
|
var item, view, jid, t;
|
2013-04-12 20:30:41 +02:00
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=9; i<12; i++) {
|
2013-09-13 10:57:28 +02:00
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
|
|
|
spyOn(view, 'render').andCallThrough();
|
|
|
|
item = view.model;
|
|
|
|
item.set('chat_status', 'xa');
|
|
|
|
expect(view.render).toHaveBeenCalled();
|
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
|
|
|
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.xa').find('a.open-chat').text();
|
|
|
|
expect(t).toEqual(cur_names.slice(9,i+1).sort().join(''));
|
|
|
|
}
|
|
|
|
}, converse));
|
|
|
|
|
|
|
|
it("can change their status to unavailable and be sorted alphabetically", $.proxy(function () {
|
|
|
|
var item, view, jid, t;
|
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
|
|
|
for (i=12; i<15; i++) {
|
2013-04-14 01:58:53 +02:00
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
2013-04-12 20:30:41 +02:00
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
2012-12-09 18:55:23 +01:00
|
|
|
spyOn(view, 'render').andCallThrough();
|
|
|
|
item = view.model;
|
2013-04-12 23:08:30 +02:00
|
|
|
item.set('chat_status', 'unavailable');
|
2012-12-09 18:55:23 +01:00
|
|
|
expect(view.render).toHaveBeenCalled();
|
2013-04-12 20:30:41 +02:00
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
2012-12-09 18:55:23 +01:00
|
|
|
|
|
|
|
// Check that they are sorted alphabetically
|
2013-04-12 20:30:41 +02:00
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
|
2013-09-13 10:57:28 +02:00
|
|
|
expect(t).toEqual(cur_names.slice(12, i+1).sort().join(''));
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2012-12-09 18:55:23 +01:00
|
|
|
|
2013-09-13 10:57:28 +02:00
|
|
|
it("are ordered according to status: online, busy, away, xa, unavailable, offline", $.proxy(function () {
|
2013-04-12 20:30:41 +02:00
|
|
|
var contacts = this.rosterview.$el.find('dd.current-xmpp-contact');
|
2012-12-09 18:55:23 +01:00
|
|
|
var i;
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=0; i<3; i++) {
|
2012-12-09 18:55:23 +01:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('online');
|
|
|
|
}
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=3; i<6; i++) {
|
2013-04-12 23:08:30 +02:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('dnd');
|
2012-12-09 18:55:23 +01:00
|
|
|
}
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=6; i<9; i++) {
|
2012-12-09 18:55:23 +01:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('away');
|
|
|
|
}
|
2013-04-17 12:07:50 +02:00
|
|
|
for (i=9; i<12; i++) {
|
2013-09-13 10:57:28 +02:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('xa');
|
|
|
|
}
|
|
|
|
for (i=12; i<15; i++) {
|
2012-12-09 18:55:23 +01:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('unavailable');
|
|
|
|
}
|
2013-09-13 10:57:28 +02:00
|
|
|
for (i=15; i<cur_names.length; i++) {
|
2012-12-09 18:55:23 +01:00
|
|
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('offline');
|
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
describe("Requesting Contacts", $.proxy(function () {
|
|
|
|
// by default the dts are hidden from css class and only later they will be hidden
|
|
|
|
// by jQuery therefore for the first check we will see if visible instead of none
|
|
|
|
it("do not have a heading if there aren't any", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#xmpp-contact-requests').is(':visible')).toEqual(false);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
|
|
|
var i, t;
|
|
|
|
spyOn(this.rosterview, 'render').andCallThrough();
|
|
|
|
spyOn(this, 'showControlBox').andCallThrough();
|
|
|
|
for (i=0; i<req_names.length; i++) {
|
|
|
|
this.roster.create({
|
|
|
|
jid: req_names[i].replace(' ','.').toLowerCase() + '@localhost',
|
|
|
|
subscription: 'none',
|
|
|
|
ask: 'request',
|
|
|
|
fullname: req_names[i],
|
2013-07-25 09:45:35 +02:00
|
|
|
is_last: i===(req_names.length-1)
|
2013-04-15 09:12:42 +02:00
|
|
|
});
|
|
|
|
expect(this.rosterview.render).toHaveBeenCalled();
|
|
|
|
// Check that they are sorted alphabetically
|
|
|
|
t = this.rosterview.$el.find('dt#xmpp-contact-requests').siblings('dd.requesting-xmpp-contact').text().replace(/AcceptDecline/g, '');
|
|
|
|
expect(t).toEqual(req_names.slice(0,i+1).sort().join(''));
|
|
|
|
// When a requesting contact is added, the controlbox must
|
|
|
|
// be opened.
|
|
|
|
expect(this.showControlBox).toHaveBeenCalled();
|
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
it("will have their own heading once they have been added", $.proxy(function () {
|
|
|
|
expect(this.rosterview.$el.find('dt#xmpp-contact-requests').css('display')).toEqual('block');
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
it("can have their requests accepted by the user", $.proxy(function () {
|
2013-04-15 09:57:46 +02:00
|
|
|
// TODO: Testing can be more thorough here, the user is
|
|
|
|
// actually not accepted/authorized because of
|
|
|
|
// mock_connection.
|
|
|
|
var jid = req_names.sort()[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
var view = this.rosterview.rosteritemviews[jid];
|
|
|
|
spyOn(this.connection.roster, 'authorize');
|
|
|
|
spyOn(view, 'acceptRequest').andCallThrough();
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
var accept_button = view.$el.find('.accept-xmpp-request');
|
|
|
|
accept_button.click();
|
|
|
|
expect(view.acceptRequest).toHaveBeenCalled();
|
|
|
|
expect(this.connection.roster.authorize).toHaveBeenCalled();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
it("can have their requests denied by the user", $.proxy(function () {
|
2013-04-15 09:57:46 +02:00
|
|
|
var jid = req_names.sort()[1].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
var view = this.rosterview.rosteritemviews[jid];
|
|
|
|
spyOn(this.connection.roster, 'unauthorize');
|
|
|
|
spyOn(this.rosterview, 'removeRosterItem').andCallThrough();
|
|
|
|
spyOn(view, 'declineRequest').andCallThrough();
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
var accept_button = view.$el.find('.decline-xmpp-request');
|
|
|
|
accept_button.click();
|
|
|
|
expect(view.declineRequest).toHaveBeenCalled();
|
|
|
|
expect(this.rosterview.removeRosterItem).toHaveBeenCalled();
|
|
|
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
|
|
|
// There should now be one less contact
|
2013-07-25 09:45:35 +02:00
|
|
|
expect(this.roster.length).toEqual(num_contacts-1);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
describe("All Contacts", $.proxy(function () {
|
|
|
|
it("are saved to, and can be retrieved from, localStorage", $.proxy(function () {
|
|
|
|
var new_attrs, old_attrs, attrs, old_roster;
|
2013-05-14 22:45:21 +02:00
|
|
|
var num_contacts = this.roster.length;
|
2013-04-18 00:10:28 +02:00
|
|
|
new_roster = new this.RosterItems();
|
|
|
|
// Roster items are yet to be fetched from localStorage
|
|
|
|
expect(new_roster.length).toEqual(0);
|
2013-04-15 09:12:42 +02:00
|
|
|
|
2013-04-18 00:10:28 +02:00
|
|
|
new_roster.localStorage = new Backbone.LocalStorage(
|
2013-04-15 09:12:42 +02:00
|
|
|
hex_sha1('converse.rosteritems-dummy@localhost'));
|
|
|
|
|
2013-04-18 00:10:28 +02:00
|
|
|
new_roster.fetch();
|
2013-05-14 22:45:21 +02:00
|
|
|
expect(this.roster.length).toEqual(num_contacts);
|
2013-04-15 09:12:42 +02:00
|
|
|
// Check that the roster items retrieved from localStorage
|
|
|
|
// have the same attributes values as the original ones.
|
|
|
|
attrs = ['jid', 'fullname', 'subscription', 'ask'];
|
|
|
|
for (i=0; i<attrs.length; i++) {
|
2013-04-18 00:10:28 +02:00
|
|
|
new_attrs = _.pluck(_.pluck(new_roster.models, 'attributes'), attrs[i]);
|
|
|
|
old_attrs = _.pluck(_.pluck(this.roster.models, 'attributes'), attrs[i]);
|
2013-04-15 09:12:42 +02: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);
|
|
|
|
}
|
|
|
|
this.rosterview.render();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-15 09:12:42 +02:00
|
|
|
|
|
|
|
afterEach($.proxy(function () {
|
|
|
|
// Contacts retrieved from localStorage have chat_status of
|
2013-07-25 09:45:35 +02:00
|
|
|
// "offline".
|
2013-04-15 09:12:42 +02:00
|
|
|
// In the next test suite, we need some online contacts, so
|
|
|
|
// we make some online now
|
|
|
|
for (i=0; i<5; i++) {
|
|
|
|
jid = cur_names[i].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
|
|
|
view.model.set('chat_status', 'online');
|
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2012-12-09 18:55:23 +01:00
|
|
|
|
2013-04-20 00:38:54 +02:00
|
|
|
describe("The 'Add Contact' widget", $.proxy(function () {
|
|
|
|
it("opens up an add form when you click on it", $.proxy(function () {
|
|
|
|
var panel = this.chatboxesview.views.controlbox.contactspanel;
|
|
|
|
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();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-20 00:38:54 +02:00
|
|
|
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 02:38:27 +02:00
|
|
|
|
2013-04-20 00:38:54 +02:00
|
|
|
describe("A Chatbox", $.proxy(function () {
|
2013-04-16 21:40:48 +02:00
|
|
|
it("is created when you click on a roster item", $.proxy(function () {
|
2013-04-13 01:09:25 +02:00
|
|
|
var i, $el, click, jid, view;
|
|
|
|
// showControlBox was called earlier, so the controlbox is
|
|
|
|
// visible, but no other chat boxes have been created.
|
|
|
|
expect(this.chatboxes.length).toEqual(1);
|
|
|
|
|
|
|
|
var online_contacts = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.online').find('a.open-chat');
|
|
|
|
for (i=0; i<online_contacts.length; i++) {
|
|
|
|
$el = $(online_contacts[i]);
|
|
|
|
jid = $el.text().replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
view = this.rosterview.rosteritemviews[jid];
|
|
|
|
spyOn(view, 'openChat').andCallThrough();
|
2013-04-13 01:24:55 +02:00
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
$el.click();
|
2013-04-13 01:09:25 +02:00
|
|
|
expect(view.openChat).toHaveBeenCalled();
|
|
|
|
expect(this.chatboxes.length).toEqual(i+2);
|
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-13 01:13:30 +02:00
|
|
|
|
|
|
|
it("can be saved to, and retrieved from, localStorage", $.proxy(function () {
|
2013-04-17 00:09:16 +02:00
|
|
|
// We instantiate a new ChatBoxes collection, which by default
|
|
|
|
// will be empty.
|
2013-04-19 20:17:54 +02:00
|
|
|
var newchatboxes = new this.ChatBoxes();
|
|
|
|
expect(newchatboxes.length).toEqual(0);
|
2013-04-17 00:09:16 +02:00
|
|
|
// The chatboxes will then be fetched from localStorage inside the
|
|
|
|
// onConnected method
|
2013-04-19 20:17:54 +02:00
|
|
|
newchatboxes.onConnected();
|
|
|
|
expect(newchatboxes.length).toEqual(6);
|
2013-05-08 17:29:18 +02:00
|
|
|
// Check that the chatboxes items retrieved from localStorage
|
2013-04-13 01:13:30 +02:00
|
|
|
// have the same attributes values as the original ones.
|
|
|
|
attrs = ['id', 'box_id', 'visible'];
|
|
|
|
for (i=0; i<attrs.length; i++) {
|
2013-04-19 20:17:54 +02:00
|
|
|
new_attrs = _.pluck(_.pluck(newchatboxes.models, 'attributes'), attrs[i]);
|
2013-04-17 00:09:16 +02:00
|
|
|
old_attrs = _.pluck(_.pluck(this.chatboxes.models, 'attributes'), attrs[i]);
|
2013-04-13 01:13:30 +02:00
|
|
|
expect(_.isEqual(new_attrs, old_attrs)).toEqual(true);
|
|
|
|
}
|
|
|
|
this.rosterview.render();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-13 01:24:55 +02:00
|
|
|
|
2013-04-15 09:57:46 +02:00
|
|
|
it("can be closed again by clicking a DOM element with class 'close-chatbox-button'", $.proxy(function () {
|
2013-04-17 00:09:16 +02:00
|
|
|
var chatbox, view, $el,
|
|
|
|
num_open_chats = this.chatboxes.length;
|
|
|
|
for (i=0; i<num_open_chats; i++) {
|
|
|
|
chatbox = this.chatboxes.models[0];
|
2013-04-14 00:03:04 +02:00
|
|
|
view = this.chatboxesview.views[chatbox.get('id')];
|
2013-04-13 01:24:55 +02:00
|
|
|
spyOn(view, 'closeChat').andCallThrough();
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
view.$el.find('.close-chatbox-button').click();
|
|
|
|
expect(view.closeChat).toHaveBeenCalled();
|
|
|
|
}
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-14 00:03:04 +02:00
|
|
|
|
|
|
|
it("will be removed from localStorage when closed", $.proxy(function () {
|
2013-04-19 20:17:54 +02:00
|
|
|
var newchatboxes = new this.ChatBoxes();
|
|
|
|
expect(newchatboxes.length).toEqual(0);
|
2013-04-17 00:09:16 +02:00
|
|
|
// onConnected will fetch chatboxes in localStorage, but
|
|
|
|
// because there aren't any open chatboxes, there won't be any
|
|
|
|
// in localStorage either.
|
2013-04-19 20:17:54 +02:00
|
|
|
newchatboxes.onConnected();
|
|
|
|
expect(newchatboxes.length).toEqual(0);
|
2013-04-19 21:03:26 +02:00
|
|
|
|
|
|
|
// Lets open the controlbox again, purely for visual feedback
|
2013-07-25 09:45:35 +02:00
|
|
|
open_controlbox();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-16 21:40:48 +02:00
|
|
|
|
|
|
|
describe("A Chat Message", $.proxy(function () {
|
2013-04-17 00:09:16 +02:00
|
|
|
it("can be received which will open a chatbox and be displayed inside it", $.proxy(function () {
|
|
|
|
var message = 'This is a received message';
|
2013-04-16 21:40:48 +02:00
|
|
|
var sender_jid = cur_names[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
msg = $msg({
|
|
|
|
from: sender_jid,
|
2013-07-25 09:45:35 +02:00
|
|
|
to: this.connection.jid,
|
|
|
|
type: 'chat',
|
2013-04-17 00:09:16 +02:00
|
|
|
id: (new Date()).getTime()
|
|
|
|
}).c('body').t(message).up()
|
2013-04-16 21:40:48 +02:00
|
|
|
.c('active', {'xmlns': 'http://jabber.org/protocol/chatstates'}).tree();
|
|
|
|
|
2013-04-17 00:09:16 +02:00
|
|
|
// We don't already have an open chatbox for this user
|
|
|
|
expect(this.chatboxes.get(sender_jid)).not.toBeDefined();
|
|
|
|
|
|
|
|
runs($.proxy(function () {
|
|
|
|
// messageReceived is a handler for received XMPP
|
|
|
|
// messages
|
|
|
|
this.chatboxes.messageReceived(msg);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-17 00:09:16 +02:00
|
|
|
waits(500);
|
|
|
|
runs($.proxy(function () {
|
|
|
|
// Check that the chatbox and its view now exist
|
|
|
|
var chatbox = this.chatboxes.get(sender_jid);
|
|
|
|
var chatboxview = this.chatboxesview.views[sender_jid];
|
|
|
|
expect(chatbox).toBeDefined();
|
|
|
|
expect(chatboxview).toBeDefined();
|
|
|
|
// Check that the message was received and check the
|
|
|
|
// message parameters
|
|
|
|
expect(chatbox.messages.length).toEqual(1);
|
|
|
|
var msg_obj = chatbox.messages.models[0];
|
|
|
|
expect(msg_obj.get('message')).toEqual(message);
|
|
|
|
// XXX: This is stupid, fullname is actually only the
|
|
|
|
// users first name
|
|
|
|
expect(msg_obj.get('fullname')).toEqual(cur_names[0].split(' ')[0]);
|
|
|
|
expect(msg_obj.get('sender')).toEqual('them');
|
|
|
|
expect(msg_obj.get('delayed')).toEqual(false);
|
|
|
|
// Now check that the message appears inside the
|
|
|
|
// chatbox in the DOM
|
2013-07-24 22:58:53 +02:00
|
|
|
var $chat_content = chatboxview.$el.find('.chat-content');
|
|
|
|
var msg_txt = $chat_content.find('.chat-message').find('.chat-message-content').text();
|
|
|
|
expect(msg_txt).toEqual(message);
|
|
|
|
var sender_txt = $chat_content.find('span.chat-message-them').text();
|
|
|
|
expect(sender_txt.match(/^[0-9][0-9]:[0-9][0-9] /)).toBeTruthy();
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-04-16 21:40:48 +02:00
|
|
|
|
|
|
|
it("can be sent from a chatbox, and will appear inside it", $.proxy(function () {
|
2013-04-17 23:51:00 +02:00
|
|
|
var contact_jid = cur_names[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
var view = this.chatboxesview.views[contact_jid];
|
2013-04-18 22:13:28 +02:00
|
|
|
var message = 'This message is sent from this chatbox';
|
2013-04-17 23:51:00 +02:00
|
|
|
spyOn(view, 'sendMessage').andCallThrough();
|
2013-09-13 12:18:27 +02:00
|
|
|
view.$el.find('.chat-textarea').val(message).text(message);
|
2013-04-17 23:51:00 +02:00
|
|
|
view.$el.find('textarea.chat-textarea').trigger($.Event('keypress', {keyCode: 13}));
|
|
|
|
expect(view.sendMessage).toHaveBeenCalled();
|
|
|
|
expect(view.model.messages.length, 2);
|
|
|
|
var txt = view.$el.find('.chat-content').find('.chat-message').last().find('.chat-message-content').text();
|
|
|
|
expect(txt).toEqual(message);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-09-13 12:18:27 +02:00
|
|
|
|
|
|
|
describe("Special Messages", $.proxy(function () {
|
|
|
|
it("'/clear' can be used to clear messages in a conversation", $.proxy(function () {
|
|
|
|
var contact_jid = cur_names[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
var view = this.chatboxesview.views[contact_jid];
|
|
|
|
var message = 'This message is another sent from this chatbox';
|
|
|
|
// Lets make sure there is at least one message already
|
|
|
|
// (e.g for when this test is run on its own).
|
|
|
|
view.$el.find('.chat-textarea').val(message).text(message);
|
|
|
|
view.$el.find('textarea.chat-textarea').trigger($.Event('keypress', {keyCode: 13}));
|
|
|
|
expect(view.model.messages.length > 0).toBeTruthy();
|
|
|
|
expect(view.model.messages.localStorage.records.length > 0).toBeTruthy();
|
|
|
|
|
|
|
|
message = '/clear';
|
|
|
|
var old_length = view.model.messages.length;
|
|
|
|
spyOn(view, 'sendMessage').andCallThrough();
|
|
|
|
view.$el.find('.chat-textarea').val(message).text(message);
|
|
|
|
view.$el.find('textarea.chat-textarea').trigger($.Event('keypress', {keyCode: 13}));
|
|
|
|
expect(view.sendMessage).toHaveBeenCalled();
|
|
|
|
expect(view.model.messages.length, 0); // The messages must be removed from the modal
|
|
|
|
expect(view.model.messages.localStorage.records.length, 0); // And also from localStorage
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-13 00:56:53 +02:00
|
|
|
|
2013-09-13 12:18:27 +02:00
|
|
|
|
2013-05-08 17:42:19 +02:00
|
|
|
describe("A Message Counter", $.proxy(function () {
|
2013-05-09 17:12:51 +02:00
|
|
|
beforeEach($.proxy(function () {
|
|
|
|
converse.clearMsgCounter();
|
|
|
|
}, converse));
|
|
|
|
|
2013-05-08 17:42:19 +02:00
|
|
|
it("is incremented when the message is received and the window is not focused", $.proxy(function () {
|
|
|
|
expect(this.msg_counter).toBe(0);
|
|
|
|
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
|
|
|
$(window).trigger('blur');
|
|
|
|
var message = 'This message will increment the message counter';
|
|
|
|
var sender_jid = cur_names[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
msg = $msg({
|
|
|
|
from: sender_jid,
|
2013-07-25 09:45:35 +02:00
|
|
|
to: this.connection.jid,
|
|
|
|
type: 'chat',
|
2013-05-08 17:42:19 +02:00
|
|
|
id: (new Date()).getTime()
|
|
|
|
}).c('body').t(message).up()
|
|
|
|
.c('active', {'xmlns': 'http://jabber.org/protocol/chatstates'}).tree();
|
|
|
|
this.chatboxes.messageReceived(msg);
|
|
|
|
expect(converse.incrementMsgCounter).toHaveBeenCalled();
|
|
|
|
expect(this.msg_counter).toBe(1);
|
|
|
|
}, converse));
|
|
|
|
|
|
|
|
it("is cleared when the window is focused", $.proxy(function () {
|
|
|
|
spyOn(converse, 'clearMsgCounter').andCallThrough();
|
2013-05-11 14:20:07 +02:00
|
|
|
runs(function () {
|
|
|
|
$(window).trigger('focus');
|
|
|
|
});
|
|
|
|
waits(50);
|
|
|
|
runs(function () {
|
|
|
|
expect(converse.clearMsgCounter).toHaveBeenCalled();
|
|
|
|
});
|
2013-05-08 17:42:19 +02:00
|
|
|
}, converse));
|
|
|
|
|
|
|
|
it("is not incremented when the message is received and the window is focused", $.proxy(function () {
|
|
|
|
expect(this.msg_counter).toBe(0);
|
|
|
|
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
|
|
|
$(window).trigger('focus');
|
|
|
|
var message = 'This message will not increment the message counter';
|
|
|
|
var sender_jid = cur_names[0].replace(' ','.').toLowerCase() + '@localhost';
|
|
|
|
msg = $msg({
|
|
|
|
from: sender_jid,
|
2013-07-25 09:45:35 +02:00
|
|
|
to: this.connection.jid,
|
|
|
|
type: 'chat',
|
2013-05-08 17:42:19 +02:00
|
|
|
id: (new Date()).getTime()
|
|
|
|
}).c('body').t(message).up()
|
|
|
|
.c('active', {'xmlns': 'http://jabber.org/protocol/chatstates'}).tree();
|
|
|
|
this.chatboxes.messageReceived(msg);
|
|
|
|
expect(converse.incrementMsgCounter).not.toHaveBeenCalled();
|
|
|
|
expect(this.msg_counter).toBe(0);
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
|
2013-05-08 16:53:50 +02:00
|
|
|
describe("The Controlbox Tabs", $.proxy(function () {
|
2013-05-08 17:29:18 +02:00
|
|
|
beforeEach($.proxy(function () {
|
2013-05-14 22:39:13 +02:00
|
|
|
closeAllChatBoxes();
|
|
|
|
openControlBox();
|
2013-05-08 17:29:18 +02:00
|
|
|
}, converse));
|
|
|
|
|
2013-05-08 16:53:50 +02:00
|
|
|
it("contains two tabs, 'Contacts' and 'ChatRooms'", $.proxy(function () {
|
2013-04-19 22:11:40 +02:00
|
|
|
var cbview = this.chatboxesview.views.controlbox;
|
|
|
|
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);
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-19 22:11:40 +02:00
|
|
|
|
|
|
|
describe("The Chatrooms Panel", $.proxy(function () {
|
2013-05-14 22:39:13 +02:00
|
|
|
beforeEach($.proxy(function () {
|
|
|
|
closeAllChatBoxes();
|
|
|
|
openControlBox();
|
|
|
|
}, converse));
|
|
|
|
|
2013-04-19 22:11:40 +02:00
|
|
|
it("is opened by clicking the 'Chatrooms' tab", $.proxy(function () {
|
|
|
|
var cbview = this.chatboxesview.views.controlbox;
|
|
|
|
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
|
|
|
|
runs(function () {
|
|
|
|
$tabs.find('li').last().find('a').click(); // Clicks the chatrooms tab
|
|
|
|
});
|
|
|
|
waits(250);
|
|
|
|
runs(function () {
|
|
|
|
expect($contacts.is(':visible')).toBe(false);
|
|
|
|
expect($chatrooms.is(':visible')).toBe(true);
|
|
|
|
expect(cbview.switchTab).toHaveBeenCalled();
|
|
|
|
});
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
2013-04-19 22:11:40 +02:00
|
|
|
|
|
|
|
it("contains a form through which a new chatroom can be created", $.proxy(function () {
|
|
|
|
var roomspanel = this.chatboxesview.views.controlbox.roomspanel;
|
|
|
|
var $input = roomspanel.$el.find('input.new-chatroom-name');
|
2013-05-21 16:49:10 +02:00
|
|
|
var $nick = roomspanel.$el.find('input.new-chatroom-nick');
|
2013-05-08 16:53:50 +02:00
|
|
|
var $server = roomspanel.$el.find('input.new-chatroom-server');
|
2013-04-19 22:11:40 +02:00
|
|
|
expect($input.length).toBe(1);
|
2013-05-08 16:53:50 +02:00
|
|
|
expect($server.length).toBe(1);
|
2013-05-14 22:39:13 +02:00
|
|
|
expect($('.chatroom:visible').length).toBe(0); // There shouldn't be any chatrooms open currently
|
2013-04-19 22:11:40 +02:00
|
|
|
spyOn(roomspanel, 'createChatRoom').andCallThrough();
|
|
|
|
roomspanel.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
runs(function () {
|
|
|
|
$input.val('Lounge');
|
2013-05-21 16:49:10 +02:00
|
|
|
$nick.val('dummy');
|
2013-05-08 16:53:50 +02:00
|
|
|
$server.val('muc.localhost');
|
2013-04-19 22:11:40 +02:00
|
|
|
});
|
|
|
|
waits('250');
|
|
|
|
runs(function () {
|
|
|
|
roomspanel.$el.find('form').submit();
|
|
|
|
expect(roomspanel.createChatRoom).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
waits('250');
|
|
|
|
runs($.proxy(function () {
|
2013-05-14 22:39:13 +02:00
|
|
|
expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom
|
2013-04-20 10:41:10 +02:00
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
|
|
|
}, converse));
|
2013-08-05 09:25:29 +02:00
|
|
|
});
|
2012-12-09 18:55:23 +01:00
|
|
|
}));
|