2017-04-05 11:01:31 +02:00
|
|
|
/*global waitUntilPromise */
|
|
|
|
|
2016-06-27 23:50:38 +02:00
|
|
|
(function (root, factory) {
|
|
|
|
define([
|
2017-06-19 11:08:57 +02:00
|
|
|
"jasmine",
|
2016-06-27 23:50:38 +02:00
|
|
|
"jquery",
|
|
|
|
"mock",
|
2017-04-05 11:01:31 +02:00
|
|
|
"test-utils"
|
2016-06-27 23:50:38 +02:00
|
|
|
], factory);
|
2018-06-03 16:40:20 +02:00
|
|
|
} (this, function (jasmine, $, mock, test_utils) {
|
2016-06-27 23:50:38 +02:00
|
|
|
"use strict";
|
2018-10-26 10:15:01 +02:00
|
|
|
const $iq = converse.env.$iq,
|
|
|
|
$msg = converse.env.$msg,
|
|
|
|
Backbone = converse.env.Backbone,
|
|
|
|
Strophe = converse.env.Strophe,
|
|
|
|
sizzle = converse.env.sizzle,
|
|
|
|
_ = converse.env._,
|
|
|
|
u = converse.env.utils;
|
2016-06-27 23:50:38 +02:00
|
|
|
|
|
|
|
describe("A chat room", function () {
|
|
|
|
|
2017-07-11 10:41:11 +02:00
|
|
|
it("can be bookmarked", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
).then(function () {
|
2018-08-31 11:24:05 +02:00
|
|
|
let sent_stanza, IQ_id;
|
|
|
|
const sendIQ = _converse.connection.sendIQ;
|
2018-02-08 09:49:05 +01:00
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback, errback) {
|
|
|
|
sent_stanza = iq;
|
|
|
|
IQ_id = sendIQ.bind(this)(iq, callback, errback);
|
|
|
|
});
|
|
|
|
spyOn(_converse.connection, 'getUniqueId').and.callThrough();
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-08-31 11:24:05 +02:00
|
|
|
let view, bookmark;
|
2018-07-30 18:16:32 +02:00
|
|
|
test_utils.openChatRoom(_converse, 'theplay', 'conference.shakespeare.lit', 'JC')
|
|
|
|
.then(() => {
|
|
|
|
var jid = 'theplay@conference.shakespeare.lit';
|
|
|
|
view = _converse.chatboxviews.get(jid);
|
|
|
|
spyOn(view, 'renderBookmarkForm').and.callThrough();
|
|
|
|
spyOn(view, 'closeForm').and.callThrough();
|
|
|
|
return test_utils.waitUntil(() => !_.isNull(view.el.querySelector('.toggle-bookmark')));
|
|
|
|
}).then(() => {
|
2018-08-31 11:24:05 +02:00
|
|
|
bookmark = view.el.querySelector('.toggle-bookmark');
|
2018-07-30 18:16:32 +02:00
|
|
|
bookmark.click();
|
2018-02-08 09:49:05 +01:00
|
|
|
expect(view.renderBookmarkForm).toHaveBeenCalled();
|
|
|
|
|
|
|
|
view.el.querySelector('.button-cancel').click();
|
|
|
|
expect(view.closeForm).toHaveBeenCalled();
|
2018-07-30 18:16:32 +02:00
|
|
|
expect(u.hasClass('on-button', bookmark), false);
|
2018-02-08 09:49:05 +01:00
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
bookmark.click();
|
2018-02-08 09:49:05 +01:00
|
|
|
expect(view.renderBookmarkForm).toHaveBeenCalled();
|
|
|
|
|
|
|
|
/* Client uploads data:
|
2018-08-31 11:24:05 +02:00
|
|
|
* --------------------
|
|
|
|
* <iq from='juliet@capulet.lit/balcony' type='set' id='pip1'>
|
|
|
|
* <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
* <publish node='storage:bookmarks'>
|
|
|
|
* <item id='current'>
|
|
|
|
* <storage xmlns='storage:bookmarks'>
|
|
|
|
* <conference name='The Play's the Thing'
|
|
|
|
* autojoin='true'
|
|
|
|
* jid='theplay@conference.shakespeare.lit'>
|
|
|
|
* <nick>JC</nick>
|
|
|
|
* </conference>
|
|
|
|
* </storage>
|
|
|
|
* </item>
|
|
|
|
* </publish>
|
|
|
|
* <publish-options>
|
|
|
|
* <x xmlns='jabber:x:data' type='submit'>
|
|
|
|
* <field var='FORM_TYPE' type='hidden'>
|
|
|
|
* <value>http://jabber.org/protocol/pubsub#publish-options</value>
|
|
|
|
* </field>
|
|
|
|
* <field var='pubsub#persist_items'>
|
|
|
|
* <value>true</value>
|
|
|
|
* </field>
|
|
|
|
* <field var='pubsub#access_model'>
|
|
|
|
* <value>whitelist</value>
|
|
|
|
* </field>
|
|
|
|
* </x>
|
|
|
|
* </publish-options>
|
|
|
|
* </pubsub>
|
|
|
|
* </iq>
|
|
|
|
*/
|
2018-02-08 09:49:05 +01:00
|
|
|
expect(view.model.get('bookmarked')).toBeFalsy();
|
2018-08-31 11:24:05 +02:00
|
|
|
const form = view.el.querySelector('.chatroom-form');
|
|
|
|
form.querySelector('input[name="name"]').value = 'Play's the Thing';
|
|
|
|
form.querySelector('input[name="autojoin"]').checked = 'checked';
|
|
|
|
form.querySelector('input[name="nick"]').value = 'JC';
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-08-31 11:24:05 +02:00
|
|
|
_converse.connection.IQ_stanzas = [];
|
|
|
|
view.el.querySelector('.btn-primary').click();
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-08-31 11:24:05 +02:00
|
|
|
return test_utils.waitUntil(() => sent_stanza);
|
|
|
|
}).then(() => {
|
2018-02-07 17:30:44 +01:00
|
|
|
expect(sent_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
`<iq from="dummy@localhost/resource" id="${IQ_id}" type="set" xmlns="jabber:client">`+
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
`<publish node="storage:bookmarks">`+
|
|
|
|
`<item id="current">`+
|
|
|
|
`<storage xmlns="storage:bookmarks">`+
|
|
|
|
`<conference autojoin="true" jid="theplay@conference.shakespeare.lit" name="Play&apos;s the Thing">`+
|
|
|
|
`<nick>JC</nick>`+
|
|
|
|
`</conference>`+
|
|
|
|
`</storage>`+
|
|
|
|
`</item>`+
|
|
|
|
`</publish>`+
|
|
|
|
`<publish-options>`+
|
|
|
|
`<x type="submit" xmlns="jabber:x:data">`+
|
|
|
|
`<field type="hidden" var="FORM_TYPE">`+
|
|
|
|
`<value>http://jabber.org/protocol/pubsub#publish-options</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`<field var="pubsub#persist_items">`+
|
|
|
|
`<value>true</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`<field var="pubsub#access_model">`+
|
|
|
|
`<value>whitelist</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`</x>`+
|
|
|
|
`</publish-options>`+
|
|
|
|
`</pubsub>`+
|
|
|
|
`</iq>`
|
2018-02-07 17:30:44 +01:00
|
|
|
);
|
2018-02-08 09:49:05 +01:00
|
|
|
/* Server acknowledges successful storage
|
2018-08-31 11:24:05 +02:00
|
|
|
*
|
|
|
|
* <iq to='juliet@capulet.lit/balcony' type='result' id='pip1'/>
|
|
|
|
*/
|
|
|
|
const stanza = $iq({
|
2018-02-08 09:49:05 +01:00
|
|
|
'to':_converse.connection.jid,
|
|
|
|
'type':'result',
|
|
|
|
'id':IQ_id
|
|
|
|
});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-31 11:24:05 +02:00
|
|
|
return test_utils.waitUntil(() => view.model.get('bookmarked'));
|
|
|
|
}).then(() => {
|
|
|
|
expect(view.model.get('bookmarked')).toBeTruthy();
|
|
|
|
expect(u.hasClass('on-button', bookmark), true);
|
2018-02-08 09:49:05 +01:00
|
|
|
// We ignore this IQ stanza... (unless it's an error stanza), so
|
|
|
|
// nothing to test for here.
|
2018-02-07 17:30:44 +01:00
|
|
|
done();
|
2018-08-31 11:24:05 +02:00
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL));
|
2018-02-08 09:49:05 +01:00
|
|
|
});
|
|
|
|
}));
|
2016-09-23 09:41:55 +02:00
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
it("will be automatically opened if 'autojoin' is set on the bookmark", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
2016-09-23 09:41:55 +02:00
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
).then(function () {
|
|
|
|
var jid = 'lounge@localhost';
|
|
|
|
_converse.bookmarks.create({
|
2016-09-23 09:41:55 +02:00
|
|
|
'jid': jid,
|
|
|
|
'autojoin': false,
|
2018-02-08 09:49:05 +01:00
|
|
|
'name': 'The Lounge',
|
|
|
|
'nick': ' Othello'
|
2016-09-23 09:41:55 +02:00
|
|
|
});
|
2018-02-08 09:49:05 +01:00
|
|
|
expect(_.isUndefined(_converse.chatboxviews.get(jid))).toBeTruthy();
|
2016-09-23 09:41:55 +02:00
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
jid = 'theplay@conference.shakespeare.lit';
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.bookmarks.create({
|
2016-09-23 09:41:55 +02:00
|
|
|
'jid': jid,
|
|
|
|
'autojoin': true,
|
2018-02-08 09:49:05 +01:00
|
|
|
'name': 'The Play',
|
|
|
|
'nick': ' Othello'
|
|
|
|
});
|
|
|
|
expect(_.isUndefined(_converse.chatboxviews.get(jid))).toBeFalsy();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe("when bookmarked", function () {
|
|
|
|
|
|
|
|
it("displays that it's bookmarked through its bookmark icon", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
let view;
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
2018-07-30 18:16:32 +02:00
|
|
|
).then(() => test_utils.openChatRoom(_converse, 'lounge', 'localhost', 'dummy'))
|
|
|
|
.then(() => {
|
|
|
|
view = _converse.chatboxviews.get('lounge@localhost');
|
|
|
|
return test_utils.waitUntil(() => !_.isNull(view.el.querySelector('.toggle-bookmark')))
|
|
|
|
}).then(function () {
|
|
|
|
var bookmark_icon = view.el.querySelector('.toggle-bookmark');
|
|
|
|
expect(_.includes(bookmark_icon.classList, 'button-on')).toBeFalsy();
|
|
|
|
view.model.set('bookmarked', true);
|
|
|
|
expect(_.includes(bookmark_icon.classList, 'button-on')).toBeTruthy();
|
|
|
|
view.model.set('bookmarked', false);
|
|
|
|
expect(_.includes(bookmark_icon.classList, 'button-on')).toBeFalsy();
|
|
|
|
done();
|
2018-02-08 09:49:05 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("can be unbookmarked", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
let sent_stanza, IQ_id, view, sendIQ;
|
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
2018-07-30 18:16:32 +02:00
|
|
|
).then(() => {
|
|
|
|
sendIQ = _converse.connection.sendIQ;
|
|
|
|
return test_utils.openChatRoom(_converse, 'theplay', 'conference.shakespeare.lit', 'JC');
|
|
|
|
}).then(() => {
|
2018-02-08 09:49:05 +01:00
|
|
|
var jid = 'theplay@conference.shakespeare.lit';
|
2018-07-30 18:16:32 +02:00
|
|
|
view = _converse.chatboxviews.get(jid);
|
|
|
|
return test_utils.waitUntil(() => !_.isNull(view.el.querySelector('.toggle-bookmark')));
|
|
|
|
}).then(function () {
|
|
|
|
spyOn(view, 'toggleBookmark').and.callThrough();
|
|
|
|
spyOn(_converse.bookmarks, 'sendBookmarkStanza').and.callThrough();
|
|
|
|
view.delegateEvents();
|
2018-02-08 09:49:05 +01:00
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
_converse.bookmarks.create({
|
|
|
|
'jid': view.model.get('jid'),
|
|
|
|
'autojoin': false,
|
|
|
|
'name': 'The Play',
|
|
|
|
'nick': ' Othello'
|
2018-02-08 09:49:05 +01:00
|
|
|
});
|
2018-07-30 18:16:32 +02:00
|
|
|
expect(_converse.bookmarks.length).toBe(1);
|
|
|
|
expect(view.model.get('bookmarked')).toBeTruthy();
|
|
|
|
var bookmark_icon = view.el.querySelector('.toggle-bookmark');
|
|
|
|
expect(u.hasClass('button-on', bookmark_icon)).toBeTruthy();
|
|
|
|
|
|
|
|
spyOn(_converse.connection, 'sendIQ').and.callFake(function (iq, callback, errback) {
|
|
|
|
sent_stanza = iq;
|
|
|
|
IQ_id = sendIQ.bind(this)(iq, callback, errback);
|
2018-02-08 09:49:05 +01:00
|
|
|
});
|
2018-07-30 18:16:32 +02:00
|
|
|
spyOn(_converse.connection, 'getUniqueId').and.callThrough();
|
|
|
|
bookmark_icon.click();
|
|
|
|
expect(view.toggleBookmark).toHaveBeenCalled();
|
|
|
|
expect(u.hasClass('button-on', bookmark_icon)).toBeFalsy();
|
|
|
|
expect(_converse.bookmarks.length).toBe(0);
|
|
|
|
|
|
|
|
// Check that an IQ stanza is sent out, containing no
|
|
|
|
// conferences to bookmark (since we removed the one and
|
|
|
|
// only bookmark).
|
|
|
|
expect(sent_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
`<iq from="dummy@localhost/resource" id="${IQ_id}" type="set" xmlns="jabber:client">`+
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
`<publish node="storage:bookmarks">`+
|
|
|
|
`<item id="current">`+
|
|
|
|
`<storage xmlns="storage:bookmarks"/>`+
|
|
|
|
`</item>`+
|
|
|
|
`</publish>`+
|
|
|
|
`<publish-options>`+
|
|
|
|
`<x type="submit" xmlns="jabber:x:data">`+
|
|
|
|
`<field type="hidden" var="FORM_TYPE">`+
|
|
|
|
`<value>http://jabber.org/protocol/pubsub#publish-options</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`<field var="pubsub#persist_items">`+
|
|
|
|
`<value>true</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`<field var="pubsub#access_model">`+
|
|
|
|
`<value>whitelist</value>`+
|
|
|
|
`</field>`+
|
|
|
|
`</x>`+
|
|
|
|
`</publish-options>`+
|
|
|
|
`</pubsub>`+
|
|
|
|
`</iq>`
|
2018-07-30 18:16:32 +02:00
|
|
|
);
|
|
|
|
done();
|
2018-02-08 09:49:05 +01:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("and when autojoin is set", function () {
|
|
|
|
|
|
|
|
it("will be be opened and joined automatically upon login", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'], {}, function (done, _converse) {
|
|
|
|
|
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
).then(function () {
|
2018-03-16 20:48:31 +01:00
|
|
|
spyOn(_converse.api.rooms, 'create').and.callThrough();
|
2018-02-08 09:49:05 +01:00
|
|
|
var jid = 'theplay@conference.shakespeare.lit';
|
|
|
|
var model = _converse.bookmarks.create({
|
|
|
|
'jid': jid,
|
|
|
|
'autojoin': false,
|
|
|
|
'name': 'The Play',
|
|
|
|
'nick': ''
|
|
|
|
});
|
2018-03-16 20:48:31 +01:00
|
|
|
expect(_converse.api.rooms.create).not.toHaveBeenCalled();
|
2018-02-08 09:49:05 +01:00
|
|
|
_converse.bookmarks.remove(model);
|
|
|
|
|
|
|
|
_converse.bookmarks.create({
|
|
|
|
'jid': jid,
|
|
|
|
'autojoin': true,
|
|
|
|
'name': 'Hamlet',
|
|
|
|
'nick': ''
|
|
|
|
});
|
2018-03-16 20:48:31 +01:00
|
|
|
expect(_converse.api.rooms.create).toHaveBeenCalled();
|
2018-02-08 09:49:05 +01:00
|
|
|
done();
|
2016-09-23 09:41:55 +02:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2016-09-23 09:41:55 +02:00
|
|
|
});
|
2016-06-27 23:50:38 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("Bookmarks", function () {
|
|
|
|
|
2018-02-07 21:59:45 +01:00
|
|
|
it("can be pushed from the XMPP server", mock.initConverseWithPromises(
|
|
|
|
['send'], ['rosterGroupsFetched', 'connected'], {},
|
|
|
|
function (done, _converse) {
|
|
|
|
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
).then(function () {
|
2018-05-20 13:41:16 +02:00
|
|
|
return test_utils.waitUntil(() => _converse.bookmarks);
|
|
|
|
}).then(function () {
|
|
|
|
// Emit here instead of mocking fetching of bookmarks.
|
|
|
|
_converse.emit('bookmarksInitialized');
|
2018-02-07 21:59:45 +01:00
|
|
|
|
2018-05-20 13:41:16 +02:00
|
|
|
/* The stored data is automatically pushed to all of the user's
|
|
|
|
* connected resources.
|
|
|
|
*
|
|
|
|
* Publisher receives event notification
|
|
|
|
* -------------------------------------
|
|
|
|
* <message from='juliet@capulet.lit'
|
|
|
|
* to='juliet@capulet.lit/balcony'
|
|
|
|
* type='headline'
|
|
|
|
* id='rnfoo1'>
|
|
|
|
* <event xmlns='http://jabber.org/protocol/pubsub#event'>
|
|
|
|
* <items node='storage:bookmarks'>
|
|
|
|
* <item id='current'>
|
|
|
|
* <storage xmlns='storage:bookmarks'>
|
|
|
|
* <conference name='The Play's the Thing'
|
|
|
|
* autojoin='true'
|
|
|
|
* jid='theplay@conference.shakespeare.lit'>
|
|
|
|
* <nick>JC</nick>
|
|
|
|
* </conference>
|
|
|
|
* </storage>
|
|
|
|
* </item>
|
|
|
|
* </items>
|
|
|
|
* </event>
|
|
|
|
* </message>
|
|
|
|
*/
|
|
|
|
var stanza = $msg({
|
|
|
|
'from': 'dummy@localhost',
|
|
|
|
'to': 'dummy@localhost/resource',
|
|
|
|
'type': 'headline',
|
|
|
|
'id': 'rnfoo1'
|
|
|
|
}).c('event', {'xmlns': 'http://jabber.org/protocol/pubsub#event'})
|
|
|
|
.c('items', {'node': 'storage:bookmarks'})
|
|
|
|
.c('item', {'id': 'current'})
|
|
|
|
.c('storage', {'xmlns': 'storage:bookmarks'})
|
|
|
|
.c('conference', {'name': 'The Play's the Thing',
|
|
|
|
'autojoin': 'true',
|
|
|
|
'jid':'theplay@conference.shakespeare.lit'})
|
|
|
|
.c('nick').t('JC');
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
return test_utils.waitUntil(() => _converse.bookmarks.length);
|
|
|
|
}).then(function () {
|
|
|
|
expect(_converse.bookmarks.length).toBe(1);
|
|
|
|
expect(_converse.chatboxviews.get('theplay@conference.shakespeare.lit')).not.toBeUndefined();
|
|
|
|
done();
|
2018-02-07 21:59:45 +01:00
|
|
|
});
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2016-06-27 23:50:38 +02:00
|
|
|
|
2018-10-26 10:15:01 +02:00
|
|
|
|
2017-07-11 10:41:11 +02:00
|
|
|
it("can be retrieved from the XMPP server", mock.initConverseWithPromises(
|
2018-02-07 17:30:44 +01:00
|
|
|
['send'], ['chatBoxesFetched', 'roomsPanelRendered', 'rosterGroupsFetched'], {},
|
2018-10-26 10:15:01 +02:00
|
|
|
async function (done, _converse) {
|
2017-07-11 10:41:11 +02:00
|
|
|
|
2018-10-26 10:15:01 +02:00
|
|
|
await test_utils.waitUntilDiscoConfirmed(
|
2018-02-08 09:49:05 +01:00
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
2018-10-26 10:15:01 +02:00
|
|
|
);
|
|
|
|
/* Client requests all items
|
|
|
|
* -------------------------
|
|
|
|
*
|
|
|
|
* <iq from='juliet@capulet.lit/randomID' type='get' id='retrieve1'>
|
|
|
|
* <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
* <items node='storage:bookmarks'/>
|
|
|
|
* </pubsub>
|
|
|
|
* </iq>
|
|
|
|
*/
|
|
|
|
let IQ_id;
|
|
|
|
const call = await test_utils.waitUntil(() =>
|
|
|
|
_.filter(
|
|
|
|
_converse.connection.send.calls.all(),
|
|
|
|
call => {
|
|
|
|
const stanza = call.args[0];
|
|
|
|
if (!(stanza instanceof Element) || stanza.nodeName !== 'iq') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sizzle('items[node="storage:bookmarks"]', stanza).length) {
|
|
|
|
IQ_id = stanza.getAttribute('id');
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-09 09:45:12 +02:00
|
|
|
}
|
2018-10-26 10:15:01 +02:00
|
|
|
).pop()
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(Strophe.serialize(call.args[0])).toBe(
|
|
|
|
`<iq from="dummy@localhost/resource" id="${IQ_id}" type="get" xmlns="jabber:client">`+
|
|
|
|
'<pubsub xmlns="http://jabber.org/protocol/pubsub">'+
|
|
|
|
'<items node="storage:bookmarks"/>'+
|
|
|
|
'</pubsub>'+
|
|
|
|
'</iq>');
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Server returns all items
|
|
|
|
* ------------------------
|
|
|
|
* <iq type='result'
|
|
|
|
* to='juliet@capulet.lit/randomID'
|
|
|
|
* id='retrieve1'>
|
|
|
|
* <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
* <items node='storage:bookmarks'>
|
|
|
|
* <item id='current'>
|
|
|
|
* <storage xmlns='storage:bookmarks'>
|
|
|
|
* <conference name='The Play's the Thing'
|
|
|
|
* autojoin='true'
|
|
|
|
* jid='theplay@conference.shakespeare.lit'>
|
|
|
|
* <nick>JC</nick>
|
|
|
|
* </conference>
|
|
|
|
* </storage>
|
|
|
|
* </item>
|
|
|
|
* </items>
|
|
|
|
* </pubsub>
|
|
|
|
* </iq>
|
|
|
|
*/
|
|
|
|
expect(_converse.bookmarks.models.length).toBe(0);
|
|
|
|
|
|
|
|
spyOn(_converse.bookmarks, 'onBookmarksReceived').and.callThrough();
|
|
|
|
var stanza = $iq({'to': _converse.connection.jid, 'type':'result', 'id':IQ_id})
|
|
|
|
.c('pubsub', {'xmlns': Strophe.NS.PUBSUB})
|
|
|
|
.c('items', {'node': 'storage:bookmarks'})
|
|
|
|
.c('item', {'id': 'current'})
|
|
|
|
.c('storage', {'xmlns': 'storage:bookmarks'})
|
|
|
|
.c('conference', {
|
|
|
|
'name': 'The Play's the Thing',
|
|
|
|
'autojoin': 'true',
|
|
|
|
'jid': 'theplay@conference.shakespeare.lit'
|
|
|
|
}).c('nick').t('JC').up().up()
|
|
|
|
.c('conference', {
|
|
|
|
'name': 'Another room',
|
|
|
|
'autojoin': 'false',
|
|
|
|
'jid': 'another@conference.shakespeare.lit'
|
|
|
|
}); // Purposefully exclude the <nick> element to test #1043
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
await test_utils.waitUntil(() => _converse.bookmarks.onBookmarksReceived.calls.count());
|
|
|
|
expect(_converse.bookmarks.models.length).toBe(2);
|
|
|
|
expect(_converse.bookmarks.findWhere({'jid': 'theplay@conference.shakespeare.lit'}).get('autojoin')).toBe(true);
|
|
|
|
expect(_converse.bookmarks.findWhere({'jid': 'another@conference.shakespeare.lit'}).get('autojoin')).toBe(false);
|
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe("The rooms panel", function () {
|
|
|
|
|
|
|
|
it("shows a list of bookmarks", mock.initConverseWithPromises(
|
|
|
|
['send'], ['rosterGroupsFetched'], {},
|
|
|
|
async function (done, _converse) {
|
|
|
|
|
|
|
|
await test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
);
|
|
|
|
test_utils.openControlBox();
|
|
|
|
|
|
|
|
let IQ_id;
|
|
|
|
const call = await test_utils.waitUntil(() =>
|
|
|
|
_.filter(
|
|
|
|
_converse.connection.send.calls.all(),
|
|
|
|
call => {
|
|
|
|
const stanza = call.args[0];
|
|
|
|
if (!(stanza instanceof Element) || stanza.nodeName !== 'iq') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sizzle('items[node="storage:bookmarks"]', stanza).length) {
|
|
|
|
IQ_id = stanza.getAttribute('id');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
).pop()
|
|
|
|
);
|
|
|
|
expect(Strophe.serialize(call.args[0])).toBe(
|
|
|
|
`<iq from="dummy@localhost/resource" id="${IQ_id}" type="get" xmlns="jabber:client">`+
|
|
|
|
'<pubsub xmlns="http://jabber.org/protocol/pubsub">'+
|
|
|
|
'<items node="storage:bookmarks"/>'+
|
|
|
|
'</pubsub>'+
|
|
|
|
'</iq>'
|
|
|
|
);
|
|
|
|
|
|
|
|
const stanza = $iq({'to': _converse.connection.jid, 'type':'result', 'id':IQ_id})
|
2016-10-06 09:02:29 +02:00
|
|
|
.c('pubsub', {'xmlns': Strophe.NS.PUBSUB})
|
|
|
|
.c('items', {'node': 'storage:bookmarks'})
|
|
|
|
.c('item', {'id': 'current'})
|
|
|
|
.c('storage', {'xmlns': 'storage:bookmarks'})
|
|
|
|
.c('conference', {
|
|
|
|
'name': 'The Play's the Thing',
|
2018-10-26 10:15:01 +02:00
|
|
|
'autojoin': 'false',
|
2016-10-06 09:02:29 +02:00
|
|
|
'jid': 'theplay@conference.shakespeare.lit'
|
|
|
|
}).c('nick').t('JC').up().up()
|
2018-10-26 10:15:01 +02:00
|
|
|
.c('conference', {
|
|
|
|
'name': '1st Bookmark',
|
|
|
|
'autojoin': 'false',
|
|
|
|
'jid': 'first@conference.shakespeare.lit'
|
|
|
|
}).c('nick').t('JC').up().up()
|
|
|
|
.c('conference', {
|
|
|
|
'autojoin': 'false',
|
|
|
|
'jid': 'noname@conference.shakespeare.lit'
|
|
|
|
}).c('nick').t('JC').up().up()
|
|
|
|
.c('conference', {
|
|
|
|
'name': 'Bookmark with a very very long name that will be shortened',
|
|
|
|
'autojoin': 'false',
|
|
|
|
'jid': 'longname@conference.shakespeare.lit'
|
|
|
|
}).c('nick').t('JC').up().up()
|
2016-10-06 09:02:29 +02:00
|
|
|
.c('conference', {
|
|
|
|
'name': 'Another room',
|
|
|
|
'autojoin': 'false',
|
|
|
|
'jid': 'another@conference.shakespeare.lit'
|
2018-10-26 10:15:01 +02:00
|
|
|
}).c('nick').t('JC').up().up();
|
2016-12-20 10:30:20 +01:00
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-10-26 10:15:01 +02:00
|
|
|
await test_utils.waitUntil(() => document.querySelectorAll('#chatrooms div.bookmarks.rooms-list .room-item').length);
|
|
|
|
expect(document.querySelectorAll('#chatrooms div.bookmarks.rooms-list .room-item').length).toBe(5);
|
|
|
|
let els = document.querySelectorAll('#chatrooms div.bookmarks.rooms-list .room-item a.list-item-link');
|
|
|
|
expect(els[0].textContent).toBe("1st Bookmark");
|
|
|
|
expect(els[1].textContent).toBe("Another room");
|
|
|
|
expect(els[2].textContent).toBe("Bookmark with a very very long name that will be shortened");
|
|
|
|
expect(els[3].textContent).toBe("noname@conference.shakespeare.lit");
|
|
|
|
expect(els[4].textContent).toBe("The Play's the Thing");
|
|
|
|
|
|
|
|
spyOn(window, 'confirm').and.returnValue(true);
|
|
|
|
document.querySelector('#chatrooms .bookmarks.rooms-list .room-item:nth-child(2) a:nth-child(2)').click();
|
|
|
|
expect(window.confirm).toHaveBeenCalled();
|
|
|
|
await test_utils.waitUntil(() => document.querySelectorAll('#chatrooms div.bookmarks.rooms-list .room-item').length === 4)
|
|
|
|
els = document.querySelectorAll('#chatrooms div.bookmarks.rooms-list .room-item a.list-item-link');
|
|
|
|
expect(els[0].textContent).toBe("1st Bookmark");
|
|
|
|
expect(els[1].textContent).toBe("Bookmark with a very very long name that will be shortened");
|
|
|
|
expect(els[2].textContent).toBe("noname@conference.shakespeare.lit");
|
|
|
|
expect(els[3].textContent).toBe("The Play's the Thing");
|
|
|
|
done();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2016-11-03 16:12:52 +01:00
|
|
|
|
2018-10-26 10:15:01 +02:00
|
|
|
|
2017-07-11 10:41:11 +02:00
|
|
|
it("remembers the toggle state of the bookmarks list", mock.initConverseWithPromises(
|
2018-10-26 10:15:01 +02:00
|
|
|
['send'], ['rosterGroupsFetched'], {},
|
|
|
|
async function (done, _converse) {
|
2017-07-11 10:41:11 +02:00
|
|
|
|
2018-03-16 12:49:39 +01:00
|
|
|
test_utils.openControlBox();
|
2018-10-26 10:15:01 +02:00
|
|
|
await test_utils.waitUntilDiscoConfirmed(
|
2018-02-08 09:49:05 +01:00
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
2018-10-26 10:15:01 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
let IQ_id;
|
|
|
|
const call = await test_utils.waitUntil(() =>
|
|
|
|
_.filter(
|
|
|
|
_converse.connection.send.calls.all(),
|
|
|
|
call => {
|
|
|
|
const stanza = call.args[0];
|
|
|
|
if (!(stanza instanceof Element) || stanza.nodeName !== 'iq') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sizzle('items[node="storage:bookmarks"]', stanza).length) {
|
|
|
|
IQ_id = stanza.getAttribute('id');
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-07 17:30:44 +01:00
|
|
|
}
|
2018-10-26 10:15:01 +02:00
|
|
|
).pop()
|
|
|
|
);
|
|
|
|
expect(Strophe.serialize(call.args[0])).toBe(
|
|
|
|
`<iq from="dummy@localhost/resource" id="${IQ_id}" type="get" xmlns="jabber:client">`+
|
|
|
|
'<pubsub xmlns="http://jabber.org/protocol/pubsub">'+
|
|
|
|
'<items node="storage:bookmarks"/>'+
|
|
|
|
'</pubsub>'+
|
|
|
|
'</iq>'
|
|
|
|
);
|
|
|
|
|
|
|
|
const stanza = $iq({'to': _converse.connection.jid, 'type':'result', 'id':IQ_id})
|
|
|
|
.c('pubsub', {'xmlns': Strophe.NS.PUBSUB})
|
|
|
|
.c('items', {'node': 'storage:bookmarks'})
|
|
|
|
.c('item', {'id': 'current'})
|
|
|
|
.c('storage', {'xmlns': 'storage:bookmarks'});
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-02-07 17:30:44 +01:00
|
|
|
|
2018-10-26 10:15:01 +02:00
|
|
|
_converse.bookmarks.create({
|
|
|
|
'jid': 'theplay@conference.shakespeare.lit',
|
|
|
|
'autojoin': false,
|
|
|
|
'name': 'The Play',
|
|
|
|
'nick': ''
|
2017-07-11 17:21:13 +02:00
|
|
|
});
|
2018-10-26 10:15:01 +02:00
|
|
|
await test_utils.waitUntil(() => $('#chatrooms .bookmarks.rooms-list .room-item:visible').length);
|
|
|
|
expect($('#chatrooms .bookmarks.rooms-list').hasClass('collapsed')).toBeFalsy();
|
|
|
|
expect($('#chatrooms .bookmarks.rooms-list .room-item:visible').length).toBe(1);
|
|
|
|
expect(_converse.bookmarksview.list_model.get('toggle-state')).toBe(_converse.OPENED);
|
|
|
|
$('#chatrooms .bookmarks-toggle')[0].click();
|
|
|
|
expect($('#chatrooms .bookmarks.rooms-list').hasClass('collapsed')).toBeTruthy();
|
|
|
|
expect(_converse.bookmarksview.list_model.get('toggle-state')).toBe(_converse.CLOSED);
|
|
|
|
$('#chatrooms .bookmarks-toggle')[0].click();
|
|
|
|
expect($('#chatrooms .bookmarks.rooms-list').hasClass('collapsed')).toBeFalsy();
|
|
|
|
expect($('#chatrooms .bookmarks.rooms-list .room-item:visible').length).toBe(1);
|
|
|
|
expect(_converse.bookmarksview.list_model.get('toggle-state')).toBe(_converse.OPENED);
|
|
|
|
done();
|
2016-11-03 16:12:52 +01:00
|
|
|
}));
|
2016-10-06 09:02:29 +02:00
|
|
|
});
|
2016-06-27 23:50:38 +02:00
|
|
|
});
|
2017-05-23 14:59:37 +02:00
|
|
|
|
|
|
|
describe("When hide_open_bookmarks is true and a bookmarked room is opened", function () {
|
|
|
|
|
2017-07-11 10:41:11 +02:00
|
|
|
it("can be closed", mock.initConverseWithPromises(
|
|
|
|
null, ['rosterGroupsFetched'],
|
|
|
|
{ hide_open_bookmarks: true },
|
|
|
|
function (done, _converse) {
|
2017-05-23 14:59:37 +02:00
|
|
|
|
2018-07-30 18:16:32 +02:00
|
|
|
const jid = 'room@conference.example.org';
|
2018-02-08 09:49:05 +01:00
|
|
|
test_utils.waitUntilDiscoConfirmed(
|
|
|
|
_converse, _converse.bare_jid,
|
|
|
|
[{'category': 'pubsub', 'type': 'pep'}],
|
|
|
|
['http://jabber.org/protocol/pubsub#publish-options']
|
|
|
|
).then(function () {
|
2018-02-07 17:30:44 +01:00
|
|
|
// XXX Create bookmarks view here, otherwise we need to mock stanza
|
|
|
|
// traffic for it to get created.
|
|
|
|
_converse.bookmarksview = new _converse.BookmarksView(
|
|
|
|
{'model': _converse.bookmarks}
|
|
|
|
);
|
|
|
|
_converse.emit('bookmarksInitialized');
|
2017-05-23 14:59:37 +02:00
|
|
|
|
2018-02-07 17:30:44 +01:00
|
|
|
// Check that it's there
|
|
|
|
_converse.bookmarks.create({
|
|
|
|
'jid': jid,
|
|
|
|
'autojoin': false,
|
|
|
|
'name': 'The Play',
|
|
|
|
'nick': ' Othello'
|
|
|
|
});
|
|
|
|
expect(_converse.bookmarks.length).toBe(1);
|
|
|
|
var room_els = _converse.bookmarksview.el.querySelectorAll(".open-room");
|
|
|
|
expect(room_els.length).toBe(1);
|
|
|
|
|
|
|
|
// Check that it disappears once the room is opened
|
|
|
|
var bookmark = _converse.bookmarksview.el.querySelector(".open-room");
|
|
|
|
bookmark.click();
|
2018-07-30 18:16:32 +02:00
|
|
|
return test_utils.waitUntil(() => _converse.chatboxviews.get(jid));
|
|
|
|
}).then(() => {
|
2018-02-07 17:30:44 +01:00
|
|
|
expect(u.hasClass('hidden', _converse.bookmarksview.el.querySelector(".available-chatroom"))).toBeTruthy();
|
|
|
|
// Check that it reappears once the room is closed
|
2018-07-30 18:16:32 +02:00
|
|
|
const view = _converse.chatboxviews.get(jid);
|
2018-02-07 17:30:44 +01:00
|
|
|
view.close();
|
|
|
|
expect(u.hasClass('hidden', _converse.bookmarksview.el.querySelector(".available-chatroom"))).toBeFalsy();
|
|
|
|
done();
|
|
|
|
});
|
2017-05-23 14:59:37 +02:00
|
|
|
}));
|
|
|
|
});
|
2016-06-27 23:50:38 +02:00
|
|
|
}));
|