xmpp.chapril.org-conversejs/spec/headline.js

95 lines
3.7 KiB
JavaScript
Raw Normal View History

2016-03-20 00:03:00 +01:00
(function (root, factory) {
define([
"jquery",
2016-11-30 13:18:58 +01:00
"converse-api",
"utils",
2016-03-20 00:03:00 +01:00
"mock",
"test_utils"
], factory);
2016-11-30 13:18:58 +01:00
} (this, function ($, converse_api, utils, mock, test_utils) {
2016-03-20 00:03:00 +01:00
"use strict";
var $msg = converse_api.env.$msg,
_ = converse_api.env._;
2016-04-07 15:09:20 +02:00
describe("A headlines box", function () {
2016-03-20 00:03:00 +01:00
it("will not open nor display non-headline messages", mock.initConverse(function (converse) {
2016-04-07 15:09:20 +02:00
/* 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
*/
test_utils.openControlBox();
test_utils.openContactsPanel(converse);
2016-04-07 15:09:20 +02:00
sinon.spy(utils, 'isHeadlineMessage');
runs(function () {
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));
});
waits(250);
runs(function () {
expect(utils.isHeadlineMessage.called).toBeTruthy();
expect(utils.isHeadlineMessage.returned(false)).toBeTruthy();
utils.isHeadlineMessage.restore();
});
}));
2016-04-07 15:09:20 +02:00
it("will open and display headline messages", mock.initConverse(function (converse) {
2016-03-20 00:03:00 +01:00
/*
* <message from='notify.example.com'
* to='romeo@im.example.com'
* type='headline'
* xml:lang='en'>
* <subject>SIEVE</subject>
* <body>&lt;juliet@example.com&gt; You got mail.</body>
* <x xmlns='jabber:x:oob'>
* <url>
* imap://romeo@example.com/INBOX;UIDVALIDITY=385759043/;UID=18
* </url>
* </x>
* </message>
*/
test_utils.openControlBox();
test_utils.openContactsPanel(converse);
sinon.spy(utils, 'isHeadlineMessage');
2016-03-20 00:03:00 +01:00
runs(function () {
var stanza = $msg({
'type': 'headline',
'from': 'notify.example.com',
'to': 'dummy@localhost',
'xml:lang': 'en'
})
.c('subject').t('SIEVE').up()
.c('body').t('&lt;juliet@example.com&gt; 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));
});
waits(250);
runs(function () {
expect(
_.includes(
2016-03-20 00:03:00 +01:00
converse.chatboxviews.keys(),
'notify.example.com')
).toBeTruthy();
expect(utils.isHeadlineMessage.called).toBeTruthy();
expect(utils.isHeadlineMessage.returned(true)).toBeTruthy();
utils.isHeadlineMessage.restore(); // unwraps
2016-03-20 00:03:00 +01:00
});
}));
2016-03-20 00:03:00 +01:00
});
}));