98 lines
4.1 KiB
JavaScript
98 lines
4.1 KiB
JavaScript
(function (root, factory) {
|
|
define([
|
|
"jasmine",
|
|
"jquery",
|
|
"converse-core",
|
|
"utils",
|
|
"mock",
|
|
"test-utils"
|
|
], factory);
|
|
} (this, function (jasmine, $, converse, utils, mock, test_utils) {
|
|
"use strict";
|
|
var $msg = converse.env.$msg,
|
|
_ = converse.env._;
|
|
|
|
describe("A headlines box", function () {
|
|
|
|
it("will not open nor display non-headline messages", mock.initConverse(function (_converse) {
|
|
/* XMPP spam message:
|
|
*
|
|
* <message xmlns="jabber:client"
|
|
* to="dummy@localhost"
|
|
* type="chat"
|
|
* from="gapowa20102106@rds-rostov.ru/Adium">
|
|
* <nick xmlns="http://jabber.org/protocol/nick">-wwdmz</nick>
|
|
* <body>SORRY FOR THIS ADVERT</body
|
|
* </message
|
|
*/
|
|
sinon.spy(utils, 'isHeadlineMessage');
|
|
var stanza = $msg({
|
|
'xmlns': 'jabber:client',
|
|
'to': 'dummy@localhost',
|
|
'type': 'chat',
|
|
'from': 'gapowa20102106@rds-rostov.ru/Adium',
|
|
})
|
|
.c('nick', {'xmlns': "http://jabber.org/protocol/nick"}).t("-wwdmz").up()
|
|
.c('body').t('SORRY FOR THIS ADVERT');
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
expect(utils.isHeadlineMessage.called).toBeTruthy();
|
|
expect(utils.isHeadlineMessage.returned(false)).toBeTruthy();
|
|
utils.isHeadlineMessage.restore();
|
|
}));
|
|
|
|
it("will open and display headline messages", mock.initConverse(function (_converse) {
|
|
/* <message from='notify.example.com'
|
|
* to='romeo@im.example.com'
|
|
* type='headline'
|
|
* xml:lang='en'>
|
|
* <subject>SIEVE</subject>
|
|
* <body><juliet@example.com> You got mail.</body>
|
|
* <x xmlns='jabber:x:oob'>
|
|
* <url>
|
|
* imap://romeo@example.com/INBOX;UIDVALIDITY=385759043/;UID=18
|
|
* </url>
|
|
* </x>
|
|
* </message>
|
|
*/
|
|
sinon.spy(utils, 'isHeadlineMessage');
|
|
var stanza = $msg({
|
|
'type': 'headline',
|
|
'from': 'notify.example.com',
|
|
'to': 'dummy@localhost',
|
|
'xml:lang': 'en'
|
|
})
|
|
.c('subject').t('SIEVE').up()
|
|
.c('body').t('<juliet@example.com> You got mail.').up()
|
|
.c('x', {'xmlns': 'jabber:x:oob'})
|
|
.c('url').t('imap://romeo@example.com/INBOX;UIDVALIDITY=385759043/;UID=18');
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
expect(
|
|
_.includes(
|
|
_converse.chatboxviews.keys(),
|
|
'notify.example.com')
|
|
).toBeTruthy();
|
|
expect(utils.isHeadlineMessage.called).toBeTruthy();
|
|
expect(utils.isHeadlineMessage.returned(true)).toBeTruthy();
|
|
utils.isHeadlineMessage.restore(); // unwraps
|
|
}));
|
|
|
|
it("will not show a headline messages from a full JID if allow_non_roster_messaging is false", mock.initConverse(function (_converse) {
|
|
_converse.allow_non_roster_messaging = false;
|
|
sinon.spy(utils, 'isHeadlineMessage');
|
|
var stanza = $msg({
|
|
'type': 'headline',
|
|
'from': 'andre5114@jabber.snc.ru/Spark',
|
|
'to': 'dummy@localhost',
|
|
'xml:lang': 'en'
|
|
})
|
|
.c('nick').t('gpocy').up()
|
|
.c('body').t('Здравствуйте друзья');
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
expect(_.without('controlbox', _converse.chatboxviews.keys()).length).toBe(0);
|
|
expect(utils.isHeadlineMessage.called).toBeTruthy();
|
|
expect(utils.isHeadlineMessage.returned(true)).toBeTruthy();
|
|
utils.isHeadlineMessage.restore(); // unwraps
|
|
}));
|
|
});
|
|
}));
|