12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115 |
- (function (root, factory) {
- define([
- "jquery",
- "mock",
- "test_utils"
- ], function ($, mock, test_utils) {
- return factory($, mock, test_utils);
- }
- );
- } (this, function ($, mock, test_utils) {
- 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();
- };
- describe("The Control Box", $.proxy(function (mock, test_utils) {
- beforeEach(function () {
- runs(function () {
- test_utils.openControlBox();
- });
- });
- it("can be opened by clicking a DOM element with class 'toggle-controlbox'", $.proxy(function () {
- runs(function () {
- test_utils.closeControlBox();
- });
- waits(50);
- runs(function () {
- // This spec will only pass if the controlbox is not currently
- // open yet.
- expect($("div#controlbox").is(':visible')).toBe(false);
- spyOn(this.controlboxtoggle, 'onClick').andCallThrough();
- spyOn(this.controlboxtoggle, 'showControlBox').andCallThrough();
- spyOn(converse, 'emit');
- // Redelegate so that the spies are now registered as the event handlers (specifically for 'onClick')
- this.controlboxtoggle.delegateEvents();
- $('.toggle-controlbox').click();
- }.bind(converse));
- waits(50);
- runs(function () {
- expect(this.controlboxtoggle.onClick).toHaveBeenCalled();
- expect(this.controlboxtoggle.showControlBox).toHaveBeenCalled();
- expect(this.emit).toHaveBeenCalledWith('controlBoxOpened', jasmine.any(Object));
- expect($("div#controlbox").is(':visible')).toBe(true);
- }.bind(converse));
- }, converse));
- describe("The Status Widget", $.proxy(function () {
- beforeEach(function () {
- test_utils.openControlBox();
- });
- 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));
- it("can be used to set the current user's chat status", $.proxy(function () {
- var view = this.xmppstatusview;
- spyOn(view, 'toggleOptions').andCallThrough();
- spyOn(view, 'setStatus').andCallThrough();
- spyOn(converse, 'emit');
- 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
- $(view.$el.find('.dropdown dd ul li a')[1]).click(); // Change status to "dnd"
- expect(view.setStatus).toHaveBeenCalled();
- expect(converse.emit).toHaveBeenCalledWith('statusChanged', 'dnd');
- });
- waits(250);
- runs($.proxy(function () {
- 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');
- }, converse));
- }, converse));
- it("can be used to set a custom status message", $.proxy(function () {
- var view = this.xmppstatusview;
- this.xmppstatus.save({'status': 'online'});
- spyOn(view, 'setStatusMessage').andCallThrough();
- spyOn(view, 'renderStatusChangeForm').andCallThrough();
- spyOn(converse, 'emit');
- 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();
- expect(converse.emit).toHaveBeenCalledWith('statusMessageChanged', msg);
- 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);
- });
- }, converse));
- }, converse));
- }, converse, mock, test_utils));
- describe("The Contacts Roster", $.proxy(function (mock, utils) {
- function _clearContacts () {
- utils.clearBrowserStorage();
- converse.rosterview.model.reset();
- }
- describe("The live filter", $.proxy(function () {
- it("will only appear when roster contacts flow over the visible area", $.proxy(function () {
- _clearContacts();
- var $filter = converse.rosterview.$('.roster-filter');
- var names = mock.cur_names;
- expect($filter.length).toBe(1);
- expect($filter.is(':visible')).toBeFalsy();
- for (i=0; i<names.length; i++) {
- converse.roster.create({
- ask: null,
- fullname: names[i],
- jid: names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- requesting: 'false',
- subscription: 'both'
- });
- converse.rosterview.update(); // XXX: Will normally called as event handler
- if (converse.rosterview.$roster.hasScrollBar()) {
- expect($filter.is(':visible')).toBeTruthy();
- } else {
- expect($filter.is(':visible')).toBeFalsy();
- }
- }
- }, converse));
- it("can be used to filter the contacts shown", function () {
- var $filter;
- var $roster;
- runs(function () {
- _clearContacts();
- converse.roster_groups = true;
- utils.createGroupedContacts();
- $filter = converse.rosterview.$('.roster-filter');
- $roster = converse.rosterview.$roster;
- });
- waits(350); // Needed, due to debounce
- runs(function () {
- 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');
- });
- waits(350); // Needed, due to debounce
- 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');
- $filter.val("an");
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- runs (function () {
- expect($roster.find('dd:visible').length).toBe(5);
- expect($roster.find('dt:visible').length).toBe(4);
- $filter.val("xxx");
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- runs (function () {
- expect($roster.find('dd:visible').length).toBe(0);
- expect($roster.find('dt:visible').length).toBe(0);
- $filter.val(""); // Check that contacts are shown again, when the filter string is cleared.
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- runs(function () {
- expect($roster.find('dd:visible').length).toBe(15);
- expect($roster.find('dt:visible').length).toBe(5);
- });
- converse.roster_groups = false;
- });
- it("can be used to filter the groups shown", function () {
- var $filter;
- var $roster;
- var $type;
- runs(function () {
- converse.roster_groups = true;
- _clearContacts();
- utils.createGroupedContacts();
- $filter = converse.rosterview.$('.roster-filter');
- $roster = converse.rosterview.$roster;
- $type = converse.rosterview.$('.filter-type');
- $type.val('groups');
- });
- waits(350); // Needed, due to debounce
- runs(function () {
- expect($roster.find('dd:visible').length).toBe(15);
- expect($roster.find('dt:visible').length).toBe(5);
- $filter.val("colleagues");
- expect($roster.find('dd:visible').length).toBe(15); // because no keydown event
- expect($roster.find('dt:visible').length).toBe(5); // ditto
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- 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);
- $filter.val("xxx");
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- runs (function () {
- expect($roster.find('dt:visible').length).toBe(0);
- $filter.val(""); // Check that groups are shown again, when the filter string is cleared.
- $filter.trigger('keydown');
- });
- waits(350); // Needed, due to debounce
- runs(function () {
- expect($roster.find('dd:visible').length).toBe(15);
- expect($roster.find('dt:visible').length).toBe(5);
- });
- converse.roster_groups = false;
- });
- it("has a button with which its contents can be cleared", function () {
- converse.roster_groups = true;
- _clearContacts();
- utils.createGroupedContacts();
- var $filter = converse.rosterview.$('.roster-filter');
- var $roster = converse.rosterview.$roster;
- runs (function () {
- $filter.val("xxx");
- $filter.trigger('keydown');
- expect($filter.hasClass("x")).toBeFalsy();
- });
- waits(350); // Needed, due to debounce
- runs (function () {
- expect($filter.hasClass("x")).toBeTruthy();
- $filter.addClass("onX").click();
- expect($filter.val()).toBe("");
- });
- converse.roster_groups = false;
- });
- }, converse));
- describe("A Roster Group", $.proxy(function () {
- beforeEach(function () {
- converse.roster_groups = true;
- });
- afterEach(function () {
- converse.roster_groups = false;
- });
- it("can be used to organize existing contacts", $.proxy(function () {
- runs($.proxy(function () {
- _clearContacts();
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- converse.rosterview.render();
- utils.createContacts('pending');
- utils.createContacts('requesting');
- utils.createGroupedContacts();
- }, this));
- waits(50); // Needed, due to debounce
- runs($.proxy(function () {
- // Check that the groups appear alphabetically and that
- // requesting and pending contacts are last.
- var group_titles = $.map(this.rosterview.$el.find('dt'), function (o) { return $(o).text().trim(); });
- expect(group_titles).toEqual([
- "colleagues",
- "Family",
- "friends & acquaintences",
- "ænemies",
- "Ungrouped",
- "Contact requests",
- "Pending contacts"
- ]);
- // Check that usernames appear alphabetically per group
- _.each(_.keys(mock.groups), $.proxy(function (name) {
- var $contacts = this.rosterview.$('dt.roster-group[data-group="'+name+'"]').nextUntil('dt', 'dd');
- var names = $.map($contacts, function (o) { return $(o).text().trim(); });
- expect(names).toEqual(_.clone(names).sort());
- }, converse));
- }, this));
- }, converse));
- it("can share contacts with other roster groups", $.proxy(function () {
- var groups = ['colleagues', 'friends'];
- runs($.proxy(function () {
- _clearContacts();
- var i=0, j=0;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- converse.rosterview.render();
- for (i=0; i<mock.cur_names.length; i++) {
- this.roster.create({
- jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'both',
- ask: null,
- groups: groups,
- fullname: mock.cur_names[i]
- });
- }
- }, this));
- waits(50); // Needed, due to debounce
- runs($.proxy(function () {
- // Check that usernames appear alphabetically per group
- _.each(groups, $.proxy(function (name) {
- var $contacts = this.rosterview.$('dt.roster-group[data-group="'+name+'"]').nextUntil('dt', 'dd');
- var names = $.map($contacts, function (o) { return $(o).text().trim(); });
- expect(names).toEqual(_.clone(names).sort());
- expect(names.length).toEqual(mock.cur_names.length);
- }, this));
- }, this));
- }, converse));
- it("remembers whether it is closed or opened", $.proxy(function () {
- var i=0, j=0;
- var groups = {
- 'colleagues': 3,
- 'friends & acquaintences': 3,
- 'Ungrouped': 2
- };
- _.each(_.keys(groups), $.proxy(function (name) {
- j = i;
- for (i=j; i<j+groups[name]; i++) {
- this.roster.create({
- jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'both',
- ask: null,
- groups: name === 'ungrouped'? [] : [name],
- fullname: mock.cur_names[i]
- });
- }
- }, converse));
- var view = this.rosterview.get('colleagues');
- 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');
- }, converse));
- }, converse));
- describe("Pending Contacts", $.proxy(function () {
- function _clearContacts () {
- utils.clearBrowserStorage();
- converse.rosterview.model.reset();
- }
- function _addContacts () {
- _clearContacts();
- // Must be initialized, so that render is called and documentFragment set up.
- utils.createContacts('pending').openControlBox().openContactsPanel();
- }
- it("can be collapsed under their own header", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- checkHeaderToggling.apply(this, [this.rosterview.get('Pending contacts').$el]);
- }, this));
- }, converse));
- it("can be added to the roster", $.proxy(function () {
- _clearContacts();
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- runs($.proxy(function () {
- this.roster.create({
- jid: mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'none',
- ask: 'subscribe',
- fullname: mock.pend_names[0]
- });
- }, converse));
- waits(300);
- runs($.proxy(function () {
- expect(this.rosterview.$el.is(':visible')).toEqual(true);
- expect(this.rosterview.update).toHaveBeenCalled();
- }, converse));
- }, converse));
- it("are shown in the roster when show_only_online_users", $.proxy(function () {
- converse.show_only_online_users = true;
- runs(function () {
- _addContacts();
- });
- waits(50);
- spyOn(this.rosterview, 'update').andCallThrough();
- runs($.proxy(function () {
- expect(this.rosterview.$el.is(':visible')).toEqual(true);
- expect(this.rosterview.update).toHaveBeenCalled();
- }, converse));
- waits(300); // Needed, due to debounce
- runs ($.proxy(function () {
- expect(this.rosterview.$el.find('dd:visible').length).toBe(3);
- expect(this.rosterview.$el.find('dt:visible').length).toBe(1);
- }, converse));
- converse.show_only_online_users = false;
- }, converse));
- it("are shown in the roster when hide_offline_users", $.proxy(function () {
- converse.hide_offline_users = true;
- runs(function () {
- _addContacts();
- });
- waits(50);
- spyOn(this.rosterview, 'update').andCallThrough();
- runs($.proxy(function () {
- expect(this.rosterview.$el.is(':visible')).toEqual(true);
- expect(this.rosterview.update).toHaveBeenCalled();
- }, converse));
- waits(300); // Needed, due to debounce
- runs ($.proxy(function () {
- expect(this.rosterview.$el.find('dd:visible').length).toBe(3);
- expect(this.rosterview.$el.find('dt:visible').length).toBe(1);
- }, converse));
- converse.hide_offline_users = false;
- }, converse));
- it("can be removed by the user", $.proxy(function () {
- runs($.proxy(function () {
- _addContacts();
- }, this));
- waits(50);
- runs($.proxy(function () {
- /* FIXME: Monkepatch
- * After refactoring the mock connection to use a
- * Strophe.Connection object, these tests fail because "remove"
- * function in strophe.roster (line 292) gets called and it
- * then tries to actually remove the user which is not in the roster...
- */
- var old_remove = this.connection.roster.remove;
- this.connection.roster.remove = function (jid, callback) { callback(); };
- var name = mock.pend_names[0];
- var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
- spyOn(window, 'confirm').andReturn(true);
- spyOn(converse, 'emit');
- spyOn(this.connection.roster, 'remove').andCallThrough();
- spyOn(this.connection.roster, 'unauthorize');
- spyOn(this.rosterview.model, 'remove').andCallThrough();
- converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
- .siblings('.remove-xmpp-contact').click();
- expect(window.confirm).toHaveBeenCalled();
- expect(this.connection.roster.remove).toHaveBeenCalled();
- expect(this.connection.roster.unauthorize).toHaveBeenCalled();
- expect(this.rosterview.model.remove).toHaveBeenCalled();
- expect(converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')").length).toEqual(0);
- /* XXX Restore Monkeypatch */
- this.connection.roster.remove = old_remove;
- }, this));
- }, converse));
- it("do not have a header if there aren't any", $.proxy(function () {
- var name = mock.pend_names[0];
- runs($.proxy(function () {
- _clearContacts();
- }, this));
- waits(50);
- runs($.proxy(function () {
- spyOn(window, 'confirm').andReturn(true);
- this.roster.create({
- jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'none',
- ask: 'subscribe',
- fullname: name
- });
- expect(this.rosterview.get('Pending contacts').$el.is(':visible')).toEqual(true);
- converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
- .siblings('.remove-xmpp-contact').click();
- expect(window.confirm).toHaveBeenCalled();
- expect(this.rosterview.get('Pending contacts').$el.is(':visible')).toEqual(false);
- }, this));
- }, converse));
- it("will lose their own header once the last one has been removed", $.proxy(function () {
- _addContacts();
- var name;
- spyOn(window, 'confirm').andReturn(true);
- for (i=0; i<mock.pend_names.length; i++) {
- name = mock.pend_names[i];
- converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
- .siblings('.remove-xmpp-contact').click();
- }
- expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').is(':visible')).toBeFalsy();
- }, converse));
- it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
- _clearContacts();
- var i, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.pend_names.length; i++) {
- this.roster.create({
- jid: mock.pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'none',
- ask: 'subscribe',
- fullname: mock.pend_names[i]
- });
- expect(this.rosterview.update).toHaveBeenCalled();
- }
- // Check that they are sorted alphabetically
- t = this.rosterview.get('Pending contacts').$el.siblings('dd.pending-xmpp-contact').find('span').text();
- expect(t).toEqual(mock.pend_names.slice(0,i+1).sort().join(''));
- }, converse));
- }, converse));
- describe("Existing Contacts", $.proxy(function () {
- function _clearContacts () {
- utils.clearBrowserStorage();
- converse.rosterview.model.reset();
- }
- var _addContacts = function () {
- _clearContacts();
- utils.createContacts('current').openControlBox().openContactsPanel();
- };
- it("can be collapsed under their own header", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt.roster-group')]);
- }, this));
- }, converse));
- it("will be hidden when appearing under a collapsed group", $.proxy(function () {
- _addContacts();
- this.rosterview.$el.find('dt.roster-group').find('a.group-toggle').click();
- var name = "Max Mustermann";
- var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
- converse.roster.create({
- ask: null,
- fullname: name,
- jid: jid,
- requesting: false,
- subscription: 'both'
- });
- var view = this.rosterview.get('My contacts').get(jid);
- expect(view.$el.is(':visible')).toBe(false);
- }, converse));
- it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _clearContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var i, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- this.roster.create({
- jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'both',
- ask: null,
- fullname: mock.cur_names[i]
- });
- expect(this.rosterview.update).toHaveBeenCalled();
- }
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.offline').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
- }, this));
- }, converse));
- it("can be removed by the user", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- /* FIXME: Monkepatch
- * After refactoring the mock connection to use a
- * Strophe.Connection object, these tests fail because "remove"
- * function in strophe.roster (line 292) gets called and it
- * then tries to actually remove the user which is not in the roster...
- */
- var old_remove = this.connection.roster.remove;
- this.connection.roster.remove = function (jid, callback) { callback(); };
- var name = mock.cur_names[0];
- var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
- spyOn(window, 'confirm').andReturn(true);
- spyOn(converse, 'emit');
- spyOn(this.connection.roster, 'remove').andCallThrough();
- spyOn(this.connection.roster, 'unauthorize');
- spyOn(this.rosterview.model, 'remove').andCallThrough();
- converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
- .siblings('.remove-xmpp-contact').click();
- expect(window.confirm).toHaveBeenCalled();
- expect(this.connection.roster.remove).toHaveBeenCalled();
- expect(this.connection.roster.unauthorize).toHaveBeenCalled();
- expect(this.rosterview.model.remove).toHaveBeenCalled();
- expect(converse.rosterview.$el.find(".open-chat:contains('"+name+"')").length).toEqual(0);
- /* XXX Restore Monkeypatch */
- this.connection.roster.remove = old_remove;
- }, this));
- }, converse));
- it("do not have a header if there aren't any", $.proxy(function () {
- var name = mock.cur_names[0];
- runs(function () {
- _clearContacts();
- });
- waits(50);
- runs($.proxy(function () {
- spyOn(window, 'confirm').andReturn(true);
- this.roster.create({
- jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'both',
- ask: null,
- fullname: name
- });
- expect(this.rosterview.$el.find('dt.roster-group').css('display')).toEqual('block');
- converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
- .siblings('.remove-xmpp-contact').click();
- expect(window.confirm).toHaveBeenCalled();
- expect(this.rosterview.$el.find('dt.roster-group').css('display')).toEqual('none');
- }, this));
- }, converse));
- it("can change their status to online and be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var jid, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'online');
- expect(this.rosterview.update).toHaveBeenCalled();
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
- }
- }, this));
- }, converse));
- it("can change their status to busy and be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var jid, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'dnd');
- expect(this.rosterview.update).toHaveBeenCalled();
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
- }
- }, this));
- }, converse));
- it("can change their status to away and be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var jid, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'away');
- expect(this.rosterview.update).toHaveBeenCalled();
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
- }
- }, this));
- }, converse));
- it("can change their status to xa and be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var jid, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'xa');
- expect(this.rosterview.update).toHaveBeenCalled();
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.xa').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
- }
- }, this));
- }, converse));
- it("can change their status to unavailable and be sorted alphabetically", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var jid, t;
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- for (i=0; i<mock.cur_names.length; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'unavailable');
- expect(this.rosterview.update).toHaveBeenCalled();
- // Check that they are sorted alphabetically
- t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
- expect(t).toEqual(mock.cur_names.slice(0, i+1).sort().join(''));
- }
- }, this));
- }, converse));
- it("are ordered according to status: online, busy, away, xa, unavailable, offline", $.proxy(function () {
- runs(function () {
- _addContacts();
- });
- waits(50);
- runs($.proxy(function () {
- var i;
- for (i=0; i<3; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'online');
- }
- for (i=3; i<6; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'dnd');
- }
- for (i=6; i<9; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'away');
- }
- for (i=9; i<12; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'xa');
- }
- for (i=12; i<15; i++) {
- jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
- this.roster.get(jid).set('chat_status', 'unavailable');
- }
- var contacts = this.rosterview.$el.find('dd.current-xmpp-contact');
- for (i=0; i<3; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('online');
- }
- for (i=3; i<6; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('dnd');
- }
- for (i=6; i<9; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('away');
- }
- for (i=9; i<12; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('xa');
- }
- for (i=12; i<15; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('unavailable');
- }
- for (i=15; i<mock.cur_names.length; i++) {
- expect($(contacts[i]).attr('class').split(' ',1)[0]).toEqual('offline');
- }
- }, this));
- }, converse));
- }, converse));
- describe("Requesting Contacts", $.proxy(function () {
- beforeEach($.proxy(function () {
- runs(function () {
- utils.clearBrowserStorage();
- converse.rosterview.model.reset();
- utils.createContacts('requesting').openControlBox();
- });
- waits(50);
- runs(function () {
- utils.openContactsPanel();
- });
- }, converse));
- it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
- converse.rosterview.model.reset(); // We want to manually create users so that we can spy
- var i, children;
- var names = [];
- spyOn(converse, 'emit');
- spyOn(this.rosterview, 'update').andCallThrough();
- spyOn(this.controlboxtoggle, 'showControlBox').andCallThrough();
- var addName = function (idx, item) {
- if (!$(item).hasClass('request-actions')) {
- names.push($(item).text().replace(/^\s+|\s+$/g, ''));
- }
- };
- for (i=0; i<mock.req_names.length; i++) {
- this.roster.create({
- jid: mock.req_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'none',
- ask: null,
- requesting: true,
- fullname: mock.req_names[i]
- });
- expect(this.rosterview.update).toHaveBeenCalled();
- // When a requesting contact is added, the controlbox must
- // be opened.
- expect(this.controlboxtoggle.showControlBox).toHaveBeenCalled();
- }
- // Check that they are sorted alphabetically
- children = this.rosterview.get('Contact requests').$el.siblings('dd.requesting-xmpp-contact').children('span');
- names = [];
- children.each(addName);
- expect(names.join('')).toEqual(mock.req_names.slice(0,i+1).sort().join(''));
- }, converse));
- it("do not have a header if there aren't any", $.proxy(function () {
- converse.rosterview.model.reset(); // We want to manually create users so that we can spy
- var name = mock.req_names[0];
- runs($.proxy(function () {
- spyOn(window, 'confirm').andReturn(true);
- this.roster.create({
- jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
- subscription: 'none',
- ask: null,
- requesting: true,
- fullname: name
- });
- }, this));
- waits(50);
- runs($.proxy(function () {
- expect(this.rosterview.get('Contact requests').$el.is(':visible')).toEqual(true);
- converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
- .siblings('.request-actions')
- .find('.decline-xmpp-request').click();
- expect(window.confirm).toHaveBeenCalled();
- expect(this.rosterview.get('Contact requests').$el.is(':visible')).toEqual(false);
- }, this));
- }, converse));
- it("can be collapsed under their own header", $.proxy(function () {
- checkHeaderToggling.apply(this, [this.rosterview.get('Contact requests').$el]);
- }, converse));
- it("can have their requests accepted by the user", $.proxy(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';
- spyOn(this.connection.roster, 'authorize');
- converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
- .siblings('.request-actions')
- .find('.accept-xmpp-request').click();
- expect(this.connection.roster.authorize).toHaveBeenCalled();
- }, converse));
- it("can have their requests denied by the user", $.proxy(function () {
- this.rosterview.model.reset();
- runs($.proxy(function () {
- spyOn(converse, 'emit');
- spyOn(this.connection.roster, 'unauthorize');
- spyOn(window, 'confirm').andReturn(true);
- utils.createContacts('requesting').openControlBox();
- converse.rosterview.update(); // XXX: Hack to make sure $roster element is attaced.
- }, this));
- waits(50);
- runs($.proxy(function () {
- var name = mock.req_names.sort()[1];
- converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
- .siblings('.request-actions')
- .find('.decline-xmpp-request').click();
- }, this));
- waits(50);
- runs($.proxy(function () {
- expect(window.confirm).toHaveBeenCalled();
- expect(this.connection.roster.unauthorize).toHaveBeenCalled();
- // There should now be one less contact
- expect(this.roster.length).toEqual(mock.req_names.length-1);
- }, this));
- }, converse));
- it("are persisted even if other contacts' change their presence ", $.proxy(function() {
- /* This is a regression test.
- * https://github.com/jcbrand/converse.js/issues/262
- */
- this.rosterview.model.reset();
- spyOn(this.roster, 'clearCache').andCallThrough();
- expect(this.roster.pluck('jid').length).toBe(0);
- var stanza = $pres({from: 'data@enterprise/resource', type: 'subscribe'});
- this.connection._dataRecv(test_utils.createRequest(stanza));
- expect(this.roster.pluck('jid').length).toBe(1);
- expect(_.contains(this.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
- // Taken from the spec
- // http://xmpp.org/rfcs/rfc3921.html#rfc.section.7.3
- stanza = $iq({
- to: this.connection.jid,
- type: 'result',
- id: 'roster_1'
- }).c('query', {
- xmlns: 'jabber:iq:roster',
- }).c('item', {
- jid: 'romeo@example.net',
- name: 'Romeo',
- subscription:'both'
- }).c('group').t('Friends').up().up()
- .c('item', {
- jid: 'mercutio@example.org',
- name: 'Mercutio',
- subscription:'from'
- }).c('group').t('Friends').up().up()
- .c('item', {
- jid: 'benvolio@example.org',
- name: 'Benvolio',
- subscription:'both'
- }).c('group').t('Friends');
- this.connection.roster._onReceiveRosterSuccess(null, stanza.tree());
- expect(this.roster.clearCache).toHaveBeenCalled();
- expect(_.contains(this.roster.pluck('jid'), 'data@enterprise')).toBeTruthy();
- }, converse));
- }, converse));
- describe("All Contacts", $.proxy(function () {
- beforeEach($.proxy(function () {
- runs(function () {
- utils.clearBrowserStorage();
- converse.rosterview.model.reset();
- utils.createContacts('all').openControlBox();
- });
- waits(50);
- runs(function () {
- utils.openContactsPanel();
- });
- }, converse));
- it("are saved to, and can be retrieved from, browserStorage", $.proxy(function () {
- var new_attrs, old_attrs, attrs;
- var num_contacts = this.roster.length;
- new_roster = new this.RosterContacts();
- // Roster items are yet to be fetched from browserStorage
- expect(new_roster.length).toEqual(0);
- new_roster.browserStorage = this.roster.browserStorage;
- new_roster.fetch();
- expect(new_roster.length).toEqual(num_contacts);
- // Check that the roster items retrieved from browserStorage
- // have the same attributes values as the original ones.
- attrs = ['jid', 'fullname', 'subscription', 'ask'];
- for (i=0; i<attrs.length; i++) {
- new_attrs = _.pluck(_.pluck(new_roster.models, 'attributes'), attrs[i]);
- old_attrs = _.pluck(_.pluck(this.roster.models, 'attributes'), attrs[i]);
- // Roster items in storage are not necessarily sorted,
- // so we have to sort them here to do a proper
- // comparison
- expect(_.isEqual(new_attrs.sort(), old_attrs.sort())).toEqual(true);
- }
- }, converse));
-
- it("will show fullname and jid properties on tooltip", $.proxy(function () {
- var jid, name, i, t;
- for (i=0; i<mock.cur_names.length; i++) {
- name = mock.cur_names[i];
- jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
- var $dd = this.rosterview.$el.find("dd:contains('"+name+"')").children().first();
- 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);
- }
- }, converse));
-
- }, converse));
- }, converse, mock, test_utils));
- describe("The 'Add Contact' widget", $.proxy(function (mock, test_utils) {
- it("opens up an add form when you click on it", $.proxy(function () {
- var panel = this.chatboxviews.get('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();
- }, converse));
- }, converse, mock, test_utils));
- describe("The Controlbox Tabs", $.proxy(function () {
- beforeEach($.proxy(function () {
- runs(function () {
- test_utils.closeAllChatBoxes();
- });
- waits(50);
- runs(function () {
- test_utils.openControlBox();
- });
- }, converse));
- it("contains two tabs, 'Contacts' and 'ChatRooms'", $.proxy(function () {
- var cbview = this.chatboxviews.get('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);
- }, converse));
- describe("chatrooms panel", $.proxy(function () {
- beforeEach($.proxy(function () {
- runs(function () {
- test_utils.closeAllChatBoxes();
- });
- waits(50);
- runs(function () {
- test_utils.openControlBox();
- });
- }, converse));
- it("is opened by clicking the 'Chatrooms' tab", $.proxy(function () {
- var cbview = this.chatboxviews.get('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();
- });
- }, converse));
- it("contains a form through which a new chatroom can be created", $.proxy(function () {
- var roomspanel = this.chatboxviews.get('controlbox').roomspanel;
- 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');
- runs($.proxy(function () {
- expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom
- }, converse));
- }, converse));
- }, converse));
- }, converse, mock, test_utils));
- }));
|