Move mock.js to tests dir. Add utils.js
Both changes from tests-refactor branch
This commit is contained in:
parent
f9c096c061
commit
ff345dcf51
@ -1,19 +1,13 @@
|
|||||||
(function (root, factory) {
|
(function (root, factory) {
|
||||||
define([
|
define([
|
||||||
"mock"
|
"mock",
|
||||||
], function (mock_connection) {
|
"utils"
|
||||||
return factory(mock_connection);
|
], function (mock, utils) {
|
||||||
|
return factory(mock, utils);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} (this, function (mock_connection) {
|
} (this, function (mock, utils) {
|
||||||
return describe("ChatRooms", $.proxy(function() {
|
var chatrooms_spec_callback = function(mock, utils) {
|
||||||
var chatroom_names = [
|
|
||||||
'Dyon van de Wege', 'Thomas Kalb', 'Dirk Theissen', 'Felix Hofmann', 'Ka Lek', 'Anne Ebersbacher'
|
|
||||||
];
|
|
||||||
closeChatRoom = function (name) {
|
|
||||||
converse.chatboxesview.views['lounge@muc.localhost'].closeChat();
|
|
||||||
};
|
|
||||||
|
|
||||||
describe("A Chat Room", $.proxy(function () {
|
describe("A Chat Room", $.proxy(function () {
|
||||||
beforeEach($.proxy(function () {
|
beforeEach($.proxy(function () {
|
||||||
if (!$("div#controlbox").is(':visible')) {
|
if (!$("div#controlbox").is(':visible')) {
|
||||||
@ -35,12 +29,12 @@
|
|||||||
$participant_list;
|
$participant_list;
|
||||||
var roster = {}, room = {}, i;
|
var roster = {}, room = {}, i;
|
||||||
|
|
||||||
for (i=0; i<chatroom_names.length-1; i++) {
|
for (i=0; i<mock.chatroom_names.length-1; i++) {
|
||||||
roster[chatroom_names[i]] = {};
|
roster[mock.chatroom_names[i]] = {};
|
||||||
chatroomview.onChatRoomRoster(roster, room);
|
chatroomview.onChatRoomRoster(roster, room);
|
||||||
$participant_list = chatroomview.$el.find('.participant-list');
|
$participant_list = chatroomview.$el.find('.participant-list');
|
||||||
expect($participant_list.find('li').length).toBe(1+i);
|
expect($participant_list.find('li').length).toBe(1+i);
|
||||||
expect($($participant_list.find('li')[i]).text()).toBe(chatroom_names[i]);
|
expect($($participant_list.find('li')[i]).text()).toBe(mock.chatroom_names[i]);
|
||||||
}
|
}
|
||||||
roster[converse.bare_jid] = {};
|
roster[converse.bare_jid] = {};
|
||||||
chatroomview.onChatRoomRoster(roster, room);
|
chatroomview.onChatRoomRoster(roster, room);
|
||||||
@ -48,13 +42,13 @@
|
|||||||
|
|
||||||
it("indicates moderators by means of a special css class and tooltip", $.proxy(function () {
|
it("indicates moderators by means of a special css class and tooltip", $.proxy(function () {
|
||||||
var chatroomview = this.chatboxesview.views['lounge@muc.localhost'];
|
var chatroomview = this.chatboxesview.views['lounge@muc.localhost'];
|
||||||
var roster = {}, idx = chatroom_names.length-1;
|
var roster = {}, idx = mock.chatroom_names.length-1;
|
||||||
roster[chatroom_names[idx]] = {};
|
roster[mock.chatroom_names[idx]] = {};
|
||||||
roster[chatroom_names[idx]].role = 'moderator';
|
roster[mock.chatroom_names[idx]].role = 'moderator';
|
||||||
chatroomview.onChatRoomRoster(roster, {});
|
chatroomview.onChatRoomRoster(roster, {});
|
||||||
var occupant = chatroomview.$el.find('.participant-list').find('li');
|
var occupant = chatroomview.$el.find('.participant-list').find('li');
|
||||||
expect(occupant.length).toBe(1);
|
expect(occupant.length).toBe(1);
|
||||||
expect($(occupant).text()).toBe(chatroom_names[idx]);
|
expect($(occupant).text()).toBe(mock.chatroom_names[idx]);
|
||||||
expect($(occupant).attr('class')).toBe('moderator');
|
expect($(occupant).attr('class')).toBe('moderator');
|
||||||
expect($(occupant).attr('title')).toBe('This user is a moderator');
|
expect($(occupant).attr('title')).toBe('This user is a moderator');
|
||||||
}, converse));
|
}, converse));
|
||||||
@ -62,7 +56,7 @@
|
|||||||
it("shows received and sent groupchat messages", $.proxy(function () {
|
it("shows received and sent groupchat messages", $.proxy(function () {
|
||||||
var view = this.chatboxesview.views['lounge@muc.localhost'];
|
var view = this.chatboxesview.views['lounge@muc.localhost'];
|
||||||
if (!view.$el.find('.chat-area').length) { view.renderChatArea(); }
|
if (!view.$el.find('.chat-area').length) { view.renderChatArea(); }
|
||||||
var nick = chatroom_names[0];
|
var nick = mock.chatroom_names[0];
|
||||||
var text = 'This is a received message';
|
var text = 'This is a received message';
|
||||||
var message = $msg({
|
var message = $msg({
|
||||||
from: 'lounge@muc.localhost/'+nick,
|
from: 'lounge@muc.localhost/'+nick,
|
||||||
@ -268,5 +262,6 @@
|
|||||||
expect(view.$el.find('.chat-body p').text()).toBe("This room has reached it's maximum number of occupants");
|
expect(view.$el.find('.chat-body p').text()).toBe("This room has reached it's maximum number of occupants");
|
||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
};
|
||||||
|
return describe("ChatRooms", chatrooms_spec_callback.bind(converse, mock, utils));
|
||||||
}));
|
}));
|
||||||
|
138
spec/MainSpec.js
138
spec/MainSpec.js
@ -1,48 +1,19 @@
|
|||||||
(function (root, factory) {
|
(function (root, factory) {
|
||||||
define([
|
define([
|
||||||
"mock"
|
"mock",
|
||||||
], function (mock_connection) {
|
"utils"
|
||||||
return factory(mock_connection);
|
], function (mock, utils) {
|
||||||
|
return factory(mock, utils);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} (this, function (mock_connection) {
|
} (this, function (mock, utils) {
|
||||||
return describe("Converse.js", function() {
|
var spec_callback = function(mock, utils) {
|
||||||
// Names from http://www.fakenamegenerator.com/
|
|
||||||
var req_names = [
|
|
||||||
'Louw Spekman', 'Mohamad Stet', 'Dominik Beyer'
|
|
||||||
];
|
|
||||||
var pend_names = [
|
|
||||||
'Suleyman van Beusichem', 'Nanja van Yperen', 'Nicole Diederich'
|
|
||||||
];
|
|
||||||
var cur_names = [
|
|
||||||
'Max Frankfurter', 'Candice van der Knijff', 'Irini Vlastuin', 'Rinse Sommer', 'Annegreet Gomez',
|
|
||||||
'Robin Schook', 'Marcel Eberhardt', 'Simone Brauer', 'Asmaa Haakman', 'Felix Amsel',
|
|
||||||
'Lena Grunewald', 'Laura Grunewald', 'Mandy Seiler', 'Sven Bosch', 'Nuriye Cuypers',
|
|
||||||
'Staal Burger', 'Brenner Brand', 'Vleis Visagie'
|
|
||||||
];
|
|
||||||
var num_contacts = req_names.length + pend_names.length + cur_names.length;
|
|
||||||
var open_controlbox;
|
|
||||||
|
|
||||||
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();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
describe("The Control Box", $.proxy(function () {
|
describe("The Control Box", $.proxy(function () {
|
||||||
it("is not shown by default", $.proxy(function () {
|
it("is not shown by default", $.proxy(function () {
|
||||||
expect(this.rosterview.$el.is(':visible')).toEqual(false);
|
expect(this.rosterview.$el.is(':visible')).toEqual(false);
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
open_controlbox = $.proxy(function () {
|
var open_controlbox = $.proxy(function () {
|
||||||
// This spec will only pass if the controlbox is not currently
|
// This spec will only pass if the controlbox is not currently
|
||||||
// open yet.
|
// open yet.
|
||||||
expect($("div#controlbox").is(':visible')).toBe(false);
|
expect($("div#controlbox").is(':visible')).toBe(false);
|
||||||
@ -129,10 +100,10 @@
|
|||||||
it("can be added to the roster", $.proxy(function () {
|
it("can be added to the roster", $.proxy(function () {
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
this.roster.create({
|
this.roster.create({
|
||||||
jid: pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
|
jid: mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
subscription: 'none',
|
subscription: 'none',
|
||||||
ask: 'subscribe',
|
ask: 'subscribe',
|
||||||
fullname: pend_names[0],
|
fullname: mock.pend_names[0],
|
||||||
is_last: true
|
is_last: true
|
||||||
});
|
});
|
||||||
expect(this.rosterview.$el.is(':visible')).toEqual(true);
|
expect(this.rosterview.$el.is(':visible')).toEqual(true);
|
||||||
@ -169,19 +140,19 @@
|
|||||||
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
||||||
var i, t, is_last;
|
var i, t, is_last;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=0; i<pend_names.length; i++) {
|
for (i=0; i<mock.pend_names.length; i++) {
|
||||||
is_last = i===(pend_names.length-1);
|
is_last = i===(mock.pend_names.length-1);
|
||||||
this.roster.create({
|
this.roster.create({
|
||||||
jid: pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
jid: mock.pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
subscription: 'none',
|
subscription: 'none',
|
||||||
ask: 'subscribe',
|
ask: 'subscribe',
|
||||||
fullname: pend_names[i],
|
fullname: mock.pend_names[i],
|
||||||
is_last: is_last
|
is_last: is_last
|
||||||
});
|
});
|
||||||
expect(this.rosterview.render).toHaveBeenCalled();
|
expect(this.rosterview.render).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#pending-xmpp-contacts').siblings('dd.pending-xmpp-contact').text();
|
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(''));
|
expect(t).toEqual(mock.pend_names.slice(0,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -193,7 +164,7 @@
|
|||||||
|
|
||||||
describe("Existing Contacts", $.proxy(function () {
|
describe("Existing Contacts", $.proxy(function () {
|
||||||
beforeEach($.proxy(function () {
|
beforeEach($.proxy(function () {
|
||||||
openControlBox();
|
utils.openControlBox();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("do not have a heading if there aren't any", $.proxy(function () {
|
it("do not have a heading if there aren't any", $.proxy(function () {
|
||||||
@ -203,18 +174,18 @@
|
|||||||
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
||||||
var i, t;
|
var i, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=0; i<cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
this.roster.create({
|
this.roster.create({
|
||||||
jid: cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
subscription: 'both',
|
subscription: 'both',
|
||||||
ask: null,
|
ask: null,
|
||||||
fullname: cur_names[i],
|
fullname: mock.cur_names[i],
|
||||||
is_last: i===(cur_names.length-1)
|
is_last: i===(mock.cur_names.length-1)
|
||||||
});
|
});
|
||||||
expect(this.rosterview.render).toHaveBeenCalled();
|
expect(this.rosterview.render).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
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(''));
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -226,7 +197,7 @@
|
|||||||
var item, view, jid, t;
|
var item, view, jid, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=0; i<3; i++) {
|
for (i=0; i<3; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(view, 'render').andCallThrough();
|
spyOn(view, 'render').andCallThrough();
|
||||||
item = view.model;
|
item = view.model;
|
||||||
@ -236,7 +207,7 @@
|
|||||||
|
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
|
||||||
expect(t).toEqual(cur_names.slice(0,i+1).sort().join(''));
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -244,7 +215,7 @@
|
|||||||
var item, view, jid, t;
|
var item, view, jid, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=3; i<6; i++) {
|
for (i=3; i<6; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(view, 'render').andCallThrough();
|
spyOn(view, 'render').andCallThrough();
|
||||||
item = view.model;
|
item = view.model;
|
||||||
@ -253,7 +224,7 @@
|
|||||||
expect(this.rosterview.render).toHaveBeenCalled();
|
expect(this.rosterview.render).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
|
||||||
expect(t).toEqual(cur_names.slice(3,i+1).sort().join(''));
|
expect(t).toEqual(mock.cur_names.slice(3,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -261,7 +232,7 @@
|
|||||||
var item, view, jid, t;
|
var item, view, jid, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=6; i<9; i++) {
|
for (i=6; i<9; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(view, 'render').andCallThrough();
|
spyOn(view, 'render').andCallThrough();
|
||||||
item = view.model;
|
item = view.model;
|
||||||
@ -271,7 +242,7 @@
|
|||||||
|
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
|
||||||
expect(t).toEqual(cur_names.slice(6,i+1).sort().join(''));
|
expect(t).toEqual(mock.cur_names.slice(6,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -279,7 +250,7 @@
|
|||||||
var item, view, jid, t;
|
var item, view, jid, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=9; i<12; i++) {
|
for (i=9; i<12; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(view, 'render').andCallThrough();
|
spyOn(view, 'render').andCallThrough();
|
||||||
item = view.model;
|
item = view.model;
|
||||||
@ -289,7 +260,7 @@
|
|||||||
|
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
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(''));
|
expect(t).toEqual(mock.cur_names.slice(9,i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -297,7 +268,7 @@
|
|||||||
var item, view, jid, t;
|
var item, view, jid, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
for (i=12; i<15; i++) {
|
for (i=12; i<15; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(view, 'render').andCallThrough();
|
spyOn(view, 'render').andCallThrough();
|
||||||
item = view.model;
|
item = view.model;
|
||||||
@ -307,7 +278,7 @@
|
|||||||
|
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
|
t = this.rosterview.$el.find('dt#xmpp-contacts').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
|
||||||
expect(t).toEqual(cur_names.slice(12, i+1).sort().join(''));
|
expect(t).toEqual(mock.cur_names.slice(12, i+1).sort().join(''));
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -329,7 +300,7 @@
|
|||||||
for (i=12; i<15; i++) {
|
for (i=12; i<15; i++) {
|
||||||
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('unavailable');
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('unavailable');
|
||||||
}
|
}
|
||||||
for (i=15; i<cur_names.length; i++) {
|
for (i=15; i<mock.cur_names.length; i++) {
|
||||||
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('offline');
|
expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('offline');
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
@ -348,18 +319,18 @@
|
|||||||
var i, t;
|
var i, t;
|
||||||
spyOn(this.rosterview, 'render').andCallThrough();
|
spyOn(this.rosterview, 'render').andCallThrough();
|
||||||
spyOn(this.controlboxtoggle, 'showControlBox').andCallThrough();
|
spyOn(this.controlboxtoggle, 'showControlBox').andCallThrough();
|
||||||
for (i=0; i<req_names.length; i++) {
|
for (i=0; i<mock.req_names.length; i++) {
|
||||||
this.roster.create({
|
this.roster.create({
|
||||||
jid: req_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
jid: mock.req_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
subscription: 'none',
|
subscription: 'none',
|
||||||
ask: 'request',
|
ask: 'request',
|
||||||
fullname: req_names[i],
|
fullname: mock.req_names[i],
|
||||||
is_last: i===(req_names.length-1)
|
is_last: i===(mock.req_names.length-1)
|
||||||
});
|
});
|
||||||
expect(this.rosterview.render).toHaveBeenCalled();
|
expect(this.rosterview.render).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// Check that they are sorted alphabetically
|
||||||
t = this.rosterview.$el.find('dt#xmpp-contact-requests').siblings('dd.requesting-xmpp-contact').text().replace(/AcceptDecline/g, '');
|
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(''));
|
expect(t).toEqual(mock.req_names.slice(0,i+1).sort().join(''));
|
||||||
// When a requesting contact is added, the controlbox must
|
// When a requesting contact is added, the controlbox must
|
||||||
// be opened.
|
// be opened.
|
||||||
expect(this.controlboxtoggle.showControlBox).toHaveBeenCalled();
|
expect(this.controlboxtoggle.showControlBox).toHaveBeenCalled();
|
||||||
@ -374,7 +345,7 @@
|
|||||||
// TODO: Testing can be more thorough here, the user is
|
// TODO: Testing can be more thorough here, the user is
|
||||||
// actually not accepted/authorized because of
|
// actually not accepted/authorized because of
|
||||||
// mock_connection.
|
// mock_connection.
|
||||||
var jid = req_names.sort()[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var jid = mock.req_names.sort()[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
var view = this.rosterview.rosteritemviews[jid];
|
var view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(this.connection.roster, 'authorize');
|
spyOn(this.connection.roster, 'authorize');
|
||||||
spyOn(view, 'acceptRequest').andCallThrough();
|
spyOn(view, 'acceptRequest').andCallThrough();
|
||||||
@ -386,7 +357,7 @@
|
|||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("can have their requests denied by the user", $.proxy(function () {
|
it("can have their requests denied by the user", $.proxy(function () {
|
||||||
var jid = req_names.sort()[1].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var jid = mock.req_names.sort()[1].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
var view = this.rosterview.rosteritemviews[jid];
|
var view = this.rosterview.rosteritemviews[jid];
|
||||||
spyOn(this.connection.roster, 'unauthorize');
|
spyOn(this.connection.roster, 'unauthorize');
|
||||||
spyOn(this.rosterview, 'removeRosterItemView').andCallThrough();
|
spyOn(this.rosterview, 'removeRosterItemView').andCallThrough();
|
||||||
@ -398,7 +369,7 @@
|
|||||||
expect(this.rosterview.removeRosterItemView).toHaveBeenCalled();
|
expect(this.rosterview.removeRosterItemView).toHaveBeenCalled();
|
||||||
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
||||||
// There should now be one less contact
|
// There should now be one less contact
|
||||||
expect(this.roster.length).toEqual(num_contacts-1);
|
expect(this.roster.length).toEqual(mock.num_contacts-1);
|
||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -435,7 +406,7 @@
|
|||||||
// In the next test suite, we need some online contacts, so
|
// In the next test suite, we need some online contacts, so
|
||||||
// we make some online now
|
// we make some online now
|
||||||
for (i=0; i<5; i++) {
|
for (i=0; i<5; i++) {
|
||||||
jid = cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.rosteritemviews[jid];
|
view = this.rosterview.rosteritemviews[jid];
|
||||||
view.model.set('chat_status', 'online');
|
view.model.set('chat_status', 'online');
|
||||||
}
|
}
|
||||||
@ -457,6 +428,7 @@
|
|||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
describe("A Chatbox", $.proxy(function () {
|
describe("A Chatbox", $.proxy(function () {
|
||||||
|
|
||||||
it("is created when you click on a roster item", $.proxy(function () {
|
it("is created when you click on a roster item", $.proxy(function () {
|
||||||
var i, $el, click, jid, view;
|
var i, $el, click, jid, view;
|
||||||
// showControlBox was called earlier, so the controlbox is
|
// showControlBox was called earlier, so the controlbox is
|
||||||
@ -476,6 +448,9 @@
|
|||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
|
it("has a toolbar", $.proxy(function () {
|
||||||
|
}, converse));
|
||||||
|
|
||||||
it("can be saved to, and retrieved from, localStorage", $.proxy(function () {
|
it("can be saved to, and retrieved from, localStorage", $.proxy(function () {
|
||||||
// We instantiate a new ChatBoxes collection, which by default
|
// We instantiate a new ChatBoxes collection, which by default
|
||||||
// will be empty.
|
// will be empty.
|
||||||
@ -519,13 +494,13 @@
|
|||||||
expect(newchatboxes.length).toEqual(0);
|
expect(newchatboxes.length).toEqual(0);
|
||||||
|
|
||||||
// Lets open the controlbox again, purely for visual feedback
|
// Lets open the controlbox again, purely for visual feedback
|
||||||
open_controlbox();
|
utils.openControlBox();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
describe("A Chat Message", $.proxy(function () {
|
describe("A Chat Message", $.proxy(function () {
|
||||||
it("can be received which will open a chatbox and be displayed inside it", $.proxy(function () {
|
it("can be received which will open a chatbox and be displayed inside it", $.proxy(function () {
|
||||||
var message = 'This is a received message';
|
var message = 'This is a received message';
|
||||||
var sender_jid = cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
msg = $msg({
|
msg = $msg({
|
||||||
from: sender_jid,
|
from: sender_jid,
|
||||||
to: this.connection.jid,
|
to: this.connection.jid,
|
||||||
@ -556,7 +531,7 @@
|
|||||||
expect(msg_obj.get('message')).toEqual(message);
|
expect(msg_obj.get('message')).toEqual(message);
|
||||||
// XXX: This is stupid, fullname is actually only the
|
// XXX: This is stupid, fullname is actually only the
|
||||||
// users first name
|
// users first name
|
||||||
expect(msg_obj.get('fullname')).toEqual(cur_names[0].split(' ')[0]);
|
expect(msg_obj.get('fullname')).toEqual(mock.cur_names[0].split(' ')[0]);
|
||||||
expect(msg_obj.get('sender')).toEqual('them');
|
expect(msg_obj.get('sender')).toEqual('them');
|
||||||
expect(msg_obj.get('delayed')).toEqual(false);
|
expect(msg_obj.get('delayed')).toEqual(false);
|
||||||
// Now check that the message appears inside the
|
// Now check that the message appears inside the
|
||||||
@ -570,7 +545,7 @@
|
|||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("can be sent from a chatbox, and will appear inside it", $.proxy(function () {
|
it("can be sent from a chatbox, and will appear inside it", $.proxy(function () {
|
||||||
var contact_jid = cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
var view = this.chatboxesview.views[contact_jid];
|
var view = this.chatboxesview.views[contact_jid];
|
||||||
var message = 'This message is sent from this chatbox';
|
var message = 'This message is sent from this chatbox';
|
||||||
spyOn(view, 'sendMessage').andCallThrough();
|
spyOn(view, 'sendMessage').andCallThrough();
|
||||||
@ -585,7 +560,7 @@
|
|||||||
|
|
||||||
describe("Special Messages", $.proxy(function () {
|
describe("Special Messages", $.proxy(function () {
|
||||||
it("'/clear' can be used to clear messages in a conversation", $.proxy(function () {
|
it("'/clear' can be used to clear messages in a conversation", $.proxy(function () {
|
||||||
var contact_jid = cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
var view = this.chatboxesview.views[contact_jid];
|
var view = this.chatboxesview.views[contact_jid];
|
||||||
var message = 'This message is another sent from this chatbox';
|
var message = 'This message is another sent from this chatbox';
|
||||||
// Lets make sure there is at least one message already
|
// Lets make sure there is at least one message already
|
||||||
@ -619,7 +594,7 @@
|
|||||||
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
||||||
$(window).trigger('blur');
|
$(window).trigger('blur');
|
||||||
var message = 'This message will increment the message counter';
|
var message = 'This message will increment the message counter';
|
||||||
var sender_jid = cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
msg = $msg({
|
msg = $msg({
|
||||||
from: sender_jid,
|
from: sender_jid,
|
||||||
to: this.connection.jid,
|
to: this.connection.jid,
|
||||||
@ -648,7 +623,7 @@
|
|||||||
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
spyOn(converse, 'incrementMsgCounter').andCallThrough();
|
||||||
$(window).trigger('focus');
|
$(window).trigger('focus');
|
||||||
var message = 'This message will not increment the message counter';
|
var message = 'This message will not increment the message counter';
|
||||||
var sender_jid = cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
msg = $msg({
|
msg = $msg({
|
||||||
from: sender_jid,
|
from: sender_jid,
|
||||||
to: this.connection.jid,
|
to: this.connection.jid,
|
||||||
@ -664,8 +639,8 @@
|
|||||||
|
|
||||||
describe("The Controlbox Tabs", $.proxy(function () {
|
describe("The Controlbox Tabs", $.proxy(function () {
|
||||||
beforeEach($.proxy(function () {
|
beforeEach($.proxy(function () {
|
||||||
closeAllChatBoxes();
|
utils.closeAllChatBoxes();
|
||||||
openControlBox();
|
utils.openControlBox();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("contains two tabs, 'Contacts' and 'ChatRooms'", $.proxy(function () {
|
it("contains two tabs, 'Contacts' and 'ChatRooms'", $.proxy(function () {
|
||||||
@ -680,8 +655,8 @@
|
|||||||
|
|
||||||
describe("The Chatrooms Panel", $.proxy(function () {
|
describe("The Chatrooms Panel", $.proxy(function () {
|
||||||
beforeEach($.proxy(function () {
|
beforeEach($.proxy(function () {
|
||||||
closeAllChatBoxes();
|
utils.closeAllChatBoxes();
|
||||||
openControlBox();
|
utils.openControlBox();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("is opened by clicking the 'Chatrooms' tab", $.proxy(function () {
|
it("is opened by clicking the 'Chatrooms' tab", $.proxy(function () {
|
||||||
@ -730,5 +705,6 @@
|
|||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
}, converse));
|
||||||
});
|
};
|
||||||
|
return describe("Converse.js", spec_callback.bind(converse, mock, utils));
|
||||||
}));
|
}));
|
||||||
|
@ -5,7 +5,26 @@
|
|||||||
return factory();
|
return factory();
|
||||||
});
|
});
|
||||||
}(this, function (converse) {
|
}(this, function (converse) {
|
||||||
var mock_connection = {
|
var mock = {};
|
||||||
|
// Names from http://www.fakenamegenerator.com/
|
||||||
|
mock.req_names = [
|
||||||
|
'Louw Spekman', 'Mohamad Stet', 'Dominik Beyer'
|
||||||
|
];
|
||||||
|
mock.pend_names = [
|
||||||
|
'Suleyman van Beusichem', 'Nanja van Yperen', 'Nicole Diederich'
|
||||||
|
];
|
||||||
|
mock.cur_names = [
|
||||||
|
'Max Frankfurter', 'Candice van der Knijff', 'Irini Vlastuin', 'Rinse Sommer', 'Annegreet Gomez',
|
||||||
|
'Robin Schook', 'Marcel Eberhardt', 'Simone Brauer', 'Asmaa Haakman', 'Felix Amsel',
|
||||||
|
'Lena Grunewald', 'Laura Grunewald', 'Mandy Seiler', 'Sven Bosch', 'Nuriye Cuypers'
|
||||||
|
];
|
||||||
|
mock.num_contacts = mock.req_names.length + mock.pend_names.length + mock.cur_names.length;
|
||||||
|
|
||||||
|
mock.chatroom_names = [
|
||||||
|
'Dyon van de Wege', 'Thomas Kalb', 'Dirk Theissen', 'Felix Hofmann', 'Ka Lek', 'Anne Ebersbacher'
|
||||||
|
];
|
||||||
|
|
||||||
|
mock.mock_connection = {
|
||||||
'muc': {
|
'muc': {
|
||||||
'listRooms': function () {},
|
'listRooms': function () {},
|
||||||
'join': function () {},
|
'join': function () {},
|
||||||
@ -48,5 +67,5 @@
|
|||||||
'items': function () {}
|
'items': function () {}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return mock_connection;
|
return mock;
|
||||||
}));
|
}));
|
61
tests/utils.js
Normal file
61
tests/utils.js
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(function (root, factory) {
|
||||||
|
define("utils", ['jquery'],
|
||||||
|
function($) {
|
||||||
|
return factory($);
|
||||||
|
});
|
||||||
|
}(this, function ($) {
|
||||||
|
var utils = {};
|
||||||
|
|
||||||
|
utils.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();
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.removeAllChatBoxes = 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();
|
||||||
|
converse.chatboxesview.views[chatbox.get('id')].$el.remove();
|
||||||
|
}
|
||||||
|
converse.chatboxesview.views.controlbox.closeChat();
|
||||||
|
converse.chatboxesview.views.controlbox.$el.remove();
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.initRoster = function () {
|
||||||
|
converse.roster.localStorage._clear();
|
||||||
|
converse.initRoster();
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.openControlBox = function () {
|
||||||
|
if (!$("#controlbox").is(':visible')) {
|
||||||
|
$('.toggle-online-users').click();
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.openContactsPanel = function () {
|
||||||
|
var cbview = converse.chatboxesview.views.controlbox;
|
||||||
|
var $tabs = cbview.$el.find('#controlbox-tabs');
|
||||||
|
$tabs.find('li').first().find('a').click();
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.createContactsRoster = function () {
|
||||||
|
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],
|
||||||
|
is_last: i===(cur_names.length-1)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
return utils;
|
||||||
|
}));
|
@ -18,6 +18,8 @@ require.config({
|
|||||||
"salsa20": "components/otr/build/dep/salsa20",
|
"salsa20": "components/otr/build/dep/salsa20",
|
||||||
"crypto.aes": "components/crypto-js/build/rollups/aes",
|
"crypto.aes": "components/crypto-js/build/rollups/aes",
|
||||||
// Extra test dependencies
|
// Extra test dependencies
|
||||||
|
"mock": "tests/mock",
|
||||||
|
"utils": "tests/utils",
|
||||||
"jasmine": "components/jasmine/lib/jasmine-core/jasmine",
|
"jasmine": "components/jasmine/lib/jasmine-core/jasmine",
|
||||||
"jasmine-html": "components/jasmine/lib/jasmine-core/jasmine-html",
|
"jasmine-html": "components/jasmine/lib/jasmine-core/jasmine-html",
|
||||||
"jasmine-console-reporter": "node_modules/jasmine-reporters/src/jasmine.console_reporter",
|
"jasmine-console-reporter": "node_modules/jasmine-reporters/src/jasmine.console_reporter",
|
||||||
@ -85,7 +87,7 @@ require([
|
|||||||
"converse",
|
"converse",
|
||||||
"mock",
|
"mock",
|
||||||
"jasmine-html"
|
"jasmine-html"
|
||||||
], function($, converse, mock_connection, jasmine) {
|
], function($, converse, mock, jasmine) {
|
||||||
// Set up converse.js
|
// Set up converse.js
|
||||||
window.localStorage.clear();
|
window.localStorage.clear();
|
||||||
converse.initialize({
|
converse.initialize({
|
||||||
@ -93,7 +95,7 @@ require([
|
|||||||
xhr_user_search: false,
|
xhr_user_search: false,
|
||||||
auto_subscribe: false,
|
auto_subscribe: false,
|
||||||
animate: false,
|
animate: false,
|
||||||
connection: mock_connection,
|
connection: mock.mock_connection,
|
||||||
testing: true
|
testing: true
|
||||||
}, function (converse) {
|
}, function (converse) {
|
||||||
window.converse = converse;
|
window.converse = converse;
|
||||||
@ -117,7 +119,7 @@ require([
|
|||||||
jasmineEnv.specFilter = function(spec) {
|
jasmineEnv.specFilter = function(spec) {
|
||||||
return htmlReporter.specFilter(spec);
|
return htmlReporter.specFilter(spec);
|
||||||
};
|
};
|
||||||
jasmineEnv.updateInterval = 200;
|
jasmineEnv.updateInterval = 20;
|
||||||
}
|
}
|
||||||
jasmineEnv.execute();
|
jasmineEnv.execute();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user