2017-05-16 11:56:40 +02:00
|
|
|
(function (root, factory) {
|
2018-06-03 16:40:20 +02:00
|
|
|
define(["jasmine", "mock", "test-utils"], factory);
|
|
|
|
} (this, function (jasmine, mock, test_utils) {
|
2017-05-16 11:56:40 +02:00
|
|
|
var _ = converse.env._;
|
2017-05-23 20:42:12 +02:00
|
|
|
var $msg = converse.env.$msg;
|
2018-06-04 19:53:33 +02:00
|
|
|
var $iq = converse.env.$iq;
|
|
|
|
var $pres = converse.env.$pres;
|
2017-07-10 21:14:48 +02:00
|
|
|
var Promise = converse.env.Promise;
|
2018-06-04 19:53:33 +02:00
|
|
|
var Strophe = converse.env.Strophe;
|
|
|
|
var u = converse.env.utils;
|
2017-05-16 11:56:40 +02:00
|
|
|
|
2018-06-04 19:53:33 +02:00
|
|
|
describe("A list of open rooms", function () {
|
2017-05-16 11:56:40 +02:00
|
|
|
|
2018-06-04 19:53:33 +02:00
|
|
|
it("is shown in the \"Rooms\" panel", mock.initConverseWithPromises(
|
2018-07-30 18:16:32 +02:00
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'],
|
2018-03-14 20:01:33 +01:00
|
|
|
{ allow_bookmarks: false // Makes testing easier, otherwise we
|
2017-05-16 11:56:40 +02:00
|
|
|
// have to mock stanza traffic.
|
|
|
|
},
|
2017-07-11 10:41:11 +02:00
|
|
|
function (done, _converse) {
|
2018-03-14 20:01:33 +01:00
|
|
|
test_utils.openControlBox();
|
2018-07-30 18:16:32 +02:00
|
|
|
const controlbox = _converse.chatboxviews.get('controlbox');
|
|
|
|
let list = controlbox.el.querySelector('div.rooms-list-container');
|
2017-05-16 13:31:31 +02:00
|
|
|
expect(_.includes(list.classList, 'hidden')).toBeTruthy();
|
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
let room_els;
|
|
|
|
|
|
|
|
test_utils.openChatRoom(_converse, 'room', 'conference.shakespeare.lit', 'JC')
|
|
|
|
.then(() => {
|
|
|
|
expect(_.isUndefined(_converse.rooms_list_view)).toBeFalsy();
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
expect(room_els[0].innerText).toBe('room@conference.shakespeare.lit');
|
|
|
|
return test_utils.openChatRoom(_converse, 'lounge', 'localhost', 'dummy');
|
|
|
|
}).then(() => {
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(2);
|
|
|
|
|
|
|
|
var view = _converse.chatboxviews.get('room@conference.shakespeare.lit');
|
|
|
|
view.close();
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
expect(room_els[0].innerText).toBe('lounge@localhost');
|
|
|
|
list = controlbox.el.querySelector('div.rooms-list-container');
|
|
|
|
expect(_.includes(list.classList, 'hidden')).toBeFalsy();
|
|
|
|
|
|
|
|
view = _converse.chatboxviews.get('lounge@localhost');
|
|
|
|
view.close();
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(0);
|
|
|
|
|
|
|
|
list = controlbox.el.querySelector('div.rooms-list-container');
|
|
|
|
expect(_.includes(list.classList, 'hidden')).toBeTruthy();
|
|
|
|
done();
|
2018-08-28 14:58:33 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2017-05-16 11:56:40 +02:00
|
|
|
}
|
|
|
|
));
|
|
|
|
});
|
2017-05-23 14:39:35 +02:00
|
|
|
|
2018-07-02 23:29:57 +02:00
|
|
|
describe("A groupchat shown in the groupchats list", function () {
|
|
|
|
|
|
|
|
it("is highlighted if its currently open", mock.initConverseWithPromises(
|
2018-07-30 18:16:32 +02:00
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'],
|
2018-07-02 23:29:57 +02:00
|
|
|
{ whitelisted_plugins: ['converse-roomslist'],
|
|
|
|
allow_bookmarks: false // Makes testing easier, otherwise we
|
|
|
|
// have to mock stanza traffic.
|
|
|
|
}, function (done, _converse) {
|
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
spyOn(_converse, 'isSingleton').and.callFake(() => true);
|
2018-07-02 23:29:57 +02:00
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
let room_els, item;
|
2018-07-02 23:29:57 +02:00
|
|
|
test_utils.openControlBox();
|
2018-07-30 18:16:32 +02:00
|
|
|
_converse.api.rooms.open('coven@chat.shakespeare.lit', {'nick': 'some1'})
|
|
|
|
.then(() => {
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".available-chatroom");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
|
|
|
|
item = room_els[0];
|
|
|
|
expect(u.hasClass('open', item)).toBe(true);
|
|
|
|
expect(item.textContent.trim()).toBe('coven@chat.shakespeare.lit');
|
|
|
|
return _converse.api.rooms.open('balcony@chat.shakespeare.lit', {'nick': 'some1'});
|
|
|
|
}).then(() => {
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(2);
|
|
|
|
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".available-chatroom.open");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
item = room_els[0];
|
|
|
|
expect(item.textContent.trim()).toBe('balcony@chat.shakespeare.lit');
|
|
|
|
done();
|
2018-08-28 14:58:33 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2018-07-02 23:29:57 +02:00
|
|
|
}));
|
2018-06-04 19:53:33 +02:00
|
|
|
|
|
|
|
it("has an info icon which opens a details modal when clicked", mock.initConverseWithPromises(
|
2018-07-30 18:16:32 +02:00
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'],
|
2018-06-04 19:53:33 +02:00
|
|
|
{ whitelisted_plugins: ['converse-roomslist'],
|
|
|
|
allow_bookmarks: false // Makes testing easier, otherwise we
|
|
|
|
// have to mock stanza traffic.
|
|
|
|
}, function (done, _converse) {
|
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
let view;
|
2018-06-04 19:53:33 +02:00
|
|
|
test_utils.openControlBox();
|
2018-07-30 18:16:32 +02:00
|
|
|
_converse.api.rooms.open('coven@chat.shakespeare.lit', {'nick': 'some1'})
|
|
|
|
.then(() => {
|
|
|
|
view = _converse.chatboxviews.get('coven@chat.shakespeare.lit');
|
|
|
|
const last_stanza = _.last(_converse.connection.IQ_stanzas).nodeTree;
|
|
|
|
const IQ_id = last_stanza.getAttribute('id');
|
|
|
|
const features_stanza = $iq({
|
|
|
|
'from': 'coven@chat.shakespeare.lit',
|
|
|
|
'id': IQ_id,
|
|
|
|
'to': 'dummy@localhost/desktop',
|
|
|
|
'type': 'result'
|
|
|
|
})
|
|
|
|
.c('query', { 'xmlns': 'http://jabber.org/protocol/disco#info'})
|
|
|
|
.c('identity', {
|
|
|
|
'category': 'conference',
|
|
|
|
'name': 'A Dark Cave',
|
|
|
|
'type': 'text'
|
|
|
|
}).up()
|
|
|
|
.c('feature', {'var': 'http://jabber.org/protocol/muc'}).up()
|
|
|
|
.c('feature', {'var': 'muc_passwordprotected'}).up()
|
|
|
|
.c('feature', {'var': 'muc_hidden'}).up()
|
|
|
|
.c('feature', {'var': 'muc_temporary'}).up()
|
|
|
|
.c('feature', {'var': 'muc_open'}).up()
|
|
|
|
.c('feature', {'var': 'muc_unmoderated'}).up()
|
|
|
|
.c('feature', {'var': 'muc_nonanonymous'}).up()
|
|
|
|
.c('feature', {'var': 'urn:xmpp:mam:0'}).up()
|
|
|
|
.c('x', { 'xmlns':'jabber:x:data', 'type':'result'})
|
|
|
|
.c('field', {'var':'FORM_TYPE', 'type':'hidden'})
|
|
|
|
.c('value').t('http://jabber.org/protocol/muc#roominfo').up().up()
|
|
|
|
.c('field', {'type':'text-single', 'var':'muc#roominfo_description', 'label':'Description'})
|
|
|
|
.c('value').t('This is the description').up().up()
|
|
|
|
.c('field', {'type':'text-single', 'var':'muc#roominfo_occupants', 'label':'Number of occupants'})
|
|
|
|
.c('value').t(0);
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(features_stanza));
|
|
|
|
return test_utils.waitUntil(() => view.model.get('connection_status') === converse.ROOMSTATUS.CONNECTING)
|
|
|
|
}).then(function () {
|
2018-06-04 19:53:33 +02:00
|
|
|
var presence = $pres({
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
from: 'coven@chat.shakespeare.lit/some1',
|
|
|
|
id: 'DC352437-C019-40EC-B590-AF29E879AF97'
|
|
|
|
}).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
|
|
|
|
.c('item').attrs({
|
|
|
|
affiliation: 'member',
|
|
|
|
jid: _converse.bare_jid,
|
|
|
|
role: 'participant'
|
|
|
|
}).up()
|
|
|
|
.c('status').attrs({code:'110'});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(presence));
|
|
|
|
|
|
|
|
const room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(1);
|
2018-07-02 15:23:49 +02:00
|
|
|
const info_el = _converse.rooms_list_view.el.querySelector(".room-info");
|
2018-06-04 19:53:33 +02:00
|
|
|
info_el.click();
|
|
|
|
|
|
|
|
const modal = view.model.room_details_modal;
|
|
|
|
return test_utils.waitUntil(() => u.isVisible(modal.el), 2000);
|
|
|
|
}).then(() => {
|
|
|
|
const modal = view.model.room_details_modal;
|
|
|
|
let els = modal.el.querySelectorAll('p.room-info');
|
2018-07-02 15:23:49 +02:00
|
|
|
expect(els[0].textContent).toBe("Name: A Dark Cave")
|
2018-07-25 12:05:09 +02:00
|
|
|
expect(els[1].textContent).toBe("Groupchat address (JID): coven@chat.shakespeare.lit")
|
2018-06-04 19:53:33 +02:00
|
|
|
expect(els[2].textContent).toBe("Description: This is the description")
|
|
|
|
expect(els[3].textContent).toBe("Online users: 1")
|
|
|
|
const features_list = modal.el.querySelector('.features-list');
|
|
|
|
expect(features_list.textContent.replace(/(\n|\s{2,})/g, '')).toBe(
|
2018-07-25 12:05:09 +02:00
|
|
|
'Password protected - This groupchat requires a password before entry'+
|
|
|
|
'Hidden - This groupchat is not publicly searchable'+
|
|
|
|
'Open - Anyone can join this groupchat'+
|
|
|
|
'Temporary - This groupchat will disappear once the last person leaves'+
|
|
|
|
'Not anonymous - All other groupchat participants can see your XMPP username'+
|
|
|
|
'Not moderated - This groupchat is not being moderated'
|
2018-06-04 19:53:33 +02:00
|
|
|
);
|
|
|
|
const presence = $pres({
|
|
|
|
to: 'dummy@localhost/_converse.js-29092160',
|
|
|
|
from: 'coven@chat.shakespeare.lit/newguy'
|
|
|
|
})
|
|
|
|
.c('x', {xmlns: Strophe.NS.MUC_USER})
|
|
|
|
.c('item', {
|
|
|
|
'affiliation': 'none',
|
|
|
|
'jid': 'newguy@localhost/_converse.js-290929789',
|
|
|
|
'role': 'participant'
|
|
|
|
});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(presence));
|
|
|
|
|
|
|
|
els = modal.el.querySelectorAll('p.room-info');
|
|
|
|
expect(els[3].textContent).toBe("Online users: 2")
|
2018-07-02 15:23:49 +02:00
|
|
|
|
|
|
|
view.model.set({'subject': {'author': 'someone', 'text': 'Hatching dark plots'}});
|
|
|
|
els = modal.el.querySelectorAll('p.room-info');
|
|
|
|
expect(els[0].textContent).toBe("Name: A Dark Cave")
|
2018-07-25 12:05:09 +02:00
|
|
|
expect(els[1].textContent).toBe("Groupchat address (JID): coven@chat.shakespeare.lit")
|
2018-07-02 15:23:49 +02:00
|
|
|
expect(els[2].textContent).toBe("Description: This is the description")
|
|
|
|
expect(els[3].textContent).toBe("Topic: Hatching dark plots")
|
|
|
|
expect(els[4].textContent).toBe("Topic author: someone")
|
|
|
|
expect(els[5].textContent).toBe("Online users: 2")
|
2018-06-04 19:53:33 +02:00
|
|
|
done();
|
2018-07-02 15:23:49 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2018-06-04 19:53:33 +02:00
|
|
|
}));
|
2017-05-23 20:42:12 +02:00
|
|
|
|
2017-07-11 10:41:11 +02:00
|
|
|
it("can be closed", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'],
|
2017-05-23 14:39:35 +02:00
|
|
|
{ whitelisted_plugins: ['converse-roomslist'],
|
|
|
|
allow_bookmarks: false // Makes testing easier, otherwise we
|
|
|
|
// have to mock stanza traffic.
|
|
|
|
},
|
2017-07-11 10:41:11 +02:00
|
|
|
function (done, _converse) {
|
2017-05-23 20:42:12 +02:00
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
spyOn(window, 'confirm').and.callFake(() => true);
|
2017-05-23 20:42:12 +02:00
|
|
|
expect(_converse.chatboxes.length).toBe(1);
|
2018-07-30 18:16:32 +02:00
|
|
|
test_utils.openChatRoom(_converse, 'lounge', 'conference.shakespeare.lit', 'JC')
|
|
|
|
.then(() => {
|
|
|
|
expect(_converse.chatboxes.length).toBe(2);
|
|
|
|
var room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
var close_el = _converse.rooms_list_view.el.querySelector(".close-room");
|
|
|
|
close_el.click();
|
|
|
|
expect(window.confirm).toHaveBeenCalledWith(
|
|
|
|
'Are you sure you want to leave the groupchat lounge@conference.shakespeare.lit?');
|
|
|
|
room_els = _converse.rooms_list_view.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(0);
|
|
|
|
expect(_converse.chatboxes.length).toBe(1);
|
|
|
|
done();
|
|
|
|
});
|
2017-05-23 20:42:12 +02:00
|
|
|
}));
|
2017-05-24 08:40:09 +02:00
|
|
|
|
2017-07-10 21:14:48 +02:00
|
|
|
it("shows unread messages directed at the user", mock.initConverseWithAsync(
|
2018-08-16 14:19:36 +02:00
|
|
|
{ whitelisted_plugins: ['converse-roomslist'],
|
|
|
|
allow_bookmarks: false // Makes testing easier, otherwise we
|
|
|
|
// have to mock stanza traffic.
|
|
|
|
}, function (done, _converse) {
|
2017-07-10 21:14:48 +02:00
|
|
|
|
2018-08-18 11:28:51 +02:00
|
|
|
let view, nick;
|
|
|
|
const room_jid = 'kitchen@conference.shakespeare.lit';
|
|
|
|
|
2018-08-16 14:19:36 +02:00
|
|
|
test_utils.waitUntil(() => !_.isUndefined(_converse.rooms_list_view), 500)
|
|
|
|
.then(() => test_utils.openAndEnterChatRoom(_converse, 'kitchen', 'conference.shakespeare.lit', 'romeo'))
|
|
|
|
.then(() => {
|
2018-08-18 11:28:51 +02:00
|
|
|
view = _converse.chatboxviews.get(room_jid);
|
2018-08-16 14:19:36 +02:00
|
|
|
view.model.set({'minimized': true});
|
|
|
|
const contact_jid = mock.cur_names[5].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-08-18 11:28:51 +02:00
|
|
|
nick = mock.chatroom_names[0];
|
2018-08-16 14:19:36 +02:00
|
|
|
view.model.onMessage(
|
|
|
|
$msg({
|
|
|
|
from: room_jid+'/'+nick,
|
|
|
|
id: (new Date()).getTime(),
|
|
|
|
to: 'dummy@localhost',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t('foo').tree());
|
2017-07-12 09:55:43 +02:00
|
|
|
|
2018-08-16 14:19:36 +02:00
|
|
|
// If the user isn't mentioned, the counter doesn't get incremented, but the text of the groupchat is bold
|
|
|
|
var room_el = _converse.rooms_list_view.el.querySelector(
|
|
|
|
".available-chatroom"
|
|
|
|
);
|
|
|
|
expect(_.includes(room_el.classList, 'unread-msgs'));
|
2017-07-12 09:55:43 +02:00
|
|
|
|
2018-08-16 14:19:36 +02:00
|
|
|
// If the user is mentioned, the counter also gets updated
|
|
|
|
view.model.onMessage(
|
|
|
|
$msg({
|
|
|
|
from: room_jid+'/'+nick,
|
|
|
|
id: (new Date()).getTime(),
|
|
|
|
to: 'dummy@localhost',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t('romeo: Your attention is required').tree()
|
|
|
|
);
|
2018-08-18 11:28:51 +02:00
|
|
|
return test_utils.waitUntil(() => _converse.rooms_list_view.el.querySelectorAll(".msgs-indicator"));
|
|
|
|
}).then(() => {
|
|
|
|
spyOn(view.model, 'incrementUnreadMsgCounter').and.callThrough();
|
|
|
|
const indicator_el = _converse.rooms_list_view.el.querySelector(".msgs-indicator");
|
2018-08-16 14:19:36 +02:00
|
|
|
expect(indicator_el.textContent).toBe('1');
|
|
|
|
view.model.onMessage(
|
|
|
|
$msg({
|
|
|
|
from: room_jid+'/'+nick,
|
|
|
|
id: (new Date()).getTime(),
|
|
|
|
to: 'dummy@localhost',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t('romeo: and another thing...').tree()
|
|
|
|
);
|
2018-08-18 11:28:51 +02:00
|
|
|
return test_utils.waitUntil(() => view.model.incrementUnreadMsgCounter.calls.count());
|
|
|
|
}).then(() => {
|
|
|
|
let indicator_el = _converse.rooms_list_view.el.querySelector(".msgs-indicator");
|
2018-08-16 14:19:36 +02:00
|
|
|
expect(indicator_el.textContent).toBe('2');
|
2017-07-12 09:55:43 +02:00
|
|
|
|
2018-08-16 14:19:36 +02:00
|
|
|
// When the chat gets maximized again, the unread indicators are removed
|
|
|
|
view.model.set({'minimized': false});
|
|
|
|
indicator_el = _converse.rooms_list_view.el.querySelector(".msgs-indicator");
|
|
|
|
expect(_.isNull(indicator_el));
|
2018-08-18 11:28:51 +02:00
|
|
|
const room_el = _converse.rooms_list_view.el.querySelector(".available-chatroom");
|
2018-08-16 14:19:36 +02:00
|
|
|
expect(_.includes(room_el.classList, 'unread-msgs')).toBeFalsy();
|
|
|
|
done();
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2017-05-24 08:40:09 +02:00
|
|
|
}));
|
2017-05-23 14:39:35 +02:00
|
|
|
});
|
2017-05-16 11:56:40 +02:00
|
|
|
}));
|