2021-02-01 14:38:42 +01:00
|
|
|
/*global mock, converse */
|
2020-04-22 13:11:48 +02:00
|
|
|
|
2020-12-29 12:52:53 +01:00
|
|
|
const { Strophe } = converse.env;
|
2020-04-22 13:11:48 +02:00
|
|
|
const $msg = converse.env.$msg;
|
|
|
|
const u = converse.env.utils;
|
|
|
|
|
|
|
|
describe("Notifications", function () {
|
|
|
|
// Implement the protocol defined in https://xmpp.org/extensions/xep-0313.html#config
|
|
|
|
|
|
|
|
describe("When show_desktop_notifications is set to true", function () {
|
|
|
|
describe("And the desktop is not focused", function () {
|
|
|
|
describe("an HTML5 Notification", function () {
|
2016-03-08 11:42:52 +01:00
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
it("is shown when a new private message is received",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {}, async (done, _converse) => {
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current');
|
2021-02-01 14:38:42 +01:00
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
const message = 'This message will show a desktop notification';
|
|
|
|
const sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit',
|
|
|
|
msg = $msg({
|
|
|
|
from: sender_jid,
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'chat',
|
|
|
|
id: u.getUniqueId()
|
|
|
|
}).c('body').t(message).up()
|
|
|
|
.c('active', {'xmlns': 'http://jabber.org/protocol/chatstates'}).tree();
|
|
|
|
await _converse.handleMessageStanza(msg); // This will emit 'message'
|
|
|
|
await u.waitUntil(() => _converse.api.chatviews.get(sender_jid));
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Notification).toHaveBeenCalled();
|
2019-02-12 14:21:45 +01:00
|
|
|
done();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2016-03-08 11:42:52 +01:00
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
it("is shown when you are mentioned in a groupchat",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {}, async (done, _converse) => {
|
2017-07-11 10:41:11 +02:00
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
await mock.waitForRoster(_converse, 'current');
|
|
|
|
await mock.openAndEnterChatRoom(_converse, 'lounge@montague.lit', 'romeo');
|
|
|
|
const view = _converse.api.chatviews.get('lounge@montague.lit');
|
2020-12-08 12:54:14 +01:00
|
|
|
if (!view.querySelectorAll('.chat-area').length) {
|
2018-10-26 10:15:01 +02:00
|
|
|
view.renderChatArea();
|
|
|
|
}
|
2021-02-01 14:38:42 +01:00
|
|
|
|
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2020-04-22 13:11:48 +02:00
|
|
|
|
2020-08-26 00:02:53 +02:00
|
|
|
// Test mention with setting false
|
|
|
|
const nick = mock.chatroom_names[0];
|
|
|
|
const makeMsg = text => $msg({
|
|
|
|
from: 'lounge@montague.lit/'+nick,
|
|
|
|
id: u.getUniqueId(),
|
|
|
|
to: 'romeo@montague.lit',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t(text).tree();
|
|
|
|
_converse.connection._dataRecv(mock.createRequest(makeMsg('romeo: this will NOT show a notification')));
|
2020-05-15 14:33:31 +02:00
|
|
|
await new Promise(resolve => view.model.messages.once('rendered', resolve));
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Notification).not.toHaveBeenCalled();
|
2020-04-22 13:11:48 +02:00
|
|
|
|
2020-08-26 00:02:53 +02:00
|
|
|
// Test reference
|
|
|
|
const message_with_ref = $msg({
|
|
|
|
from: 'lounge@montague.lit/'+nick,
|
|
|
|
id: u.getUniqueId(),
|
|
|
|
to: 'romeo@montague.lit',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t('romeo: this will show a notification').up()
|
|
|
|
.c('reference', {'xmlns':'urn:xmpp:reference:0', 'begin':'0', 'end':'5', 'type':'mention', 'uri':'xmpp:romeo@montague.lit'}).tree();
|
|
|
|
_converse.connection._dataRecv(mock.createRequest(message_with_ref));
|
|
|
|
await new Promise(resolve => view.model.messages.once('rendered', resolve));
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Notification.calls.count()).toBe(1);
|
2020-08-26 00:02:53 +02:00
|
|
|
|
|
|
|
// Test mention with setting true
|
|
|
|
_converse.api.settings.set('notify_all_room_messages', true);
|
|
|
|
_converse.connection._dataRecv(mock.createRequest(makeMsg('romeo: this will show a notification')));
|
|
|
|
await new Promise(resolve => view.model.messages.once('rendered', resolve));
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Notification.calls.count()).toBe(2);
|
2020-04-22 13:11:48 +02:00
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
2021-01-29 14:15:27 +01:00
|
|
|
it("is shown for headline messages", mock.initConverse([], {}, async (done, _converse) => {
|
2020-04-22 13:11:48 +02:00
|
|
|
|
2021-02-01 14:38:42 +01:00
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2021-01-29 14:15:27 +01:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current', 0);
|
2020-04-22 13:11:48 +02:00
|
|
|
const stanza = $msg({
|
|
|
|
'type': 'headline',
|
|
|
|
'from': 'notify.example.com',
|
|
|
|
'to': 'romeo@montague.lit',
|
|
|
|
'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(mock.createRequest(stanza));
|
2020-10-28 13:05:39 +01:00
|
|
|
|
2021-01-29 14:15:27 +01:00
|
|
|
await u.waitUntil(() => _converse.chatboxviews.keys().length === 2);
|
2020-04-22 13:11:48 +02:00
|
|
|
const view = _converse.chatboxviews.get('notify.example.com');
|
2020-05-15 14:33:31 +02:00
|
|
|
await new Promise(resolve => view.model.messages.once('rendered', resolve));
|
2020-04-24 17:33:32 +02:00
|
|
|
expect(_converse.chatboxviews.keys().includes('notify.example.com')).toBeTruthy();
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Notification).toHaveBeenCalled();
|
2018-10-26 10:15:01 +02:00
|
|
|
done();
|
2016-11-03 11:01:09 +01:00
|
|
|
}));
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
it("is not shown for full JID headline messages if allow_non_roster_messaging is false", mock.initConverse((done, _converse) => {
|
|
|
|
_converse.allow_non_roster_messaging = false;
|
2021-02-02 10:30:13 +01:00
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2020-04-22 13:11:48 +02:00
|
|
|
const stanza = $msg({
|
|
|
|
'type': 'headline',
|
|
|
|
'from': 'someone@notify.example.com',
|
|
|
|
'to': 'romeo@montague.lit',
|
|
|
|
'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(mock.createRequest(stanza));
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(_converse.chatboxviews.keys().includes('someone@notify.example.com')).toBeFalsy();
|
|
|
|
expect(window.Notification).not.toHaveBeenCalled();
|
2020-04-22 13:11:48 +02:00
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("is shown when a user changes their chat state (if show_chat_state_notifications is true)",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {show_chat_state_notifications: true},
|
2020-04-22 13:11:48 +02:00
|
|
|
async (done, _converse) => {
|
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current', 3);
|
2021-02-02 10:30:13 +01:00
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2020-04-22 13:11:48 +02:00
|
|
|
const jid = mock.cur_names[2].replace(/ /g,'.').toLowerCase() + '@montague.lit';
|
2021-02-01 14:38:42 +01:00
|
|
|
_converse.roster.get(jid).presence.set('show', 'dnd');
|
|
|
|
expect(window.Notification).toHaveBeenCalled();
|
2020-04-22 13:11:48 +02:00
|
|
|
done()
|
|
|
|
}));
|
2016-03-08 11:42:52 +01:00
|
|
|
});
|
|
|
|
});
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
describe("When a new contact request is received", function () {
|
|
|
|
it("an HTML5 Notification is received", mock.initConverse((done, _converse) => {
|
2021-02-02 10:30:13 +01:00
|
|
|
const stub = jasmine.createSpyObj('MyNotification', ['onclick', 'close']);
|
|
|
|
spyOn(window, 'Notification').and.returnValue(stub);
|
2021-02-01 14:38:42 +01:00
|
|
|
_converse.api.trigger('contactRequest', {'getDisplayName': () => 'Peter Parker'});
|
|
|
|
expect(window.Notification).toHaveBeenCalled();
|
2020-04-22 13:11:48 +02:00
|
|
|
done();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("When play_sounds is set to true", function () {
|
|
|
|
describe("A notification sound", function () {
|
|
|
|
|
2021-01-29 14:15:27 +01:00
|
|
|
it("is played when the current user is mentioned in a groupchat", mock.initConverse([], {}, async (done, _converse) => {
|
2021-03-09 12:55:44 +01:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current');
|
2020-04-22 13:11:48 +02:00
|
|
|
await mock.openAndEnterChatRoom(_converse, 'lounge@montague.lit', 'romeo');
|
2021-03-09 12:55:44 +01:00
|
|
|
const { api } = _converse;
|
|
|
|
api.settings.set('play_sounds', true);
|
2021-02-01 14:38:42 +01:00
|
|
|
|
|
|
|
const stub = jasmine.createSpyObj('MyAudio', ['play', 'canPlayType']);
|
|
|
|
spyOn(window, 'Audio').and.returnValue(stub);
|
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
const view = _converse.chatboxviews.get('lounge@montague.lit');
|
2020-12-08 12:54:14 +01:00
|
|
|
if (!view.querySelectorAll('.chat-area').length) {
|
2020-04-22 13:11:48 +02:00
|
|
|
view.renderChatArea();
|
|
|
|
}
|
|
|
|
let text = 'This message will play a sound because it mentions romeo';
|
|
|
|
let message = $msg({
|
|
|
|
from: 'lounge@montague.lit/otheruser',
|
|
|
|
id: '1',
|
|
|
|
to: 'romeo@montague.lit',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t(text);
|
2020-08-26 00:02:53 +02:00
|
|
|
_converse.api.settings.set('notify_all_room_messages', true);
|
2020-04-24 17:33:32 +02:00
|
|
|
await view.model.handleMessageStanza(message.nodeTree);
|
2021-02-01 14:38:42 +01:00
|
|
|
await u.waitUntil(() => window.Audio.calls.count());
|
|
|
|
expect(window.Audio).toHaveBeenCalled();
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
text = "This message won't play a sound";
|
|
|
|
message = $msg({
|
|
|
|
from: 'lounge@montague.lit/otheruser',
|
|
|
|
id: '2',
|
|
|
|
to: 'romeo@montague.lit',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t(text);
|
2020-04-24 17:33:32 +02:00
|
|
|
await view.model.handleMessageStanza(message.nodeTree);
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Audio, 1);
|
2021-03-09 12:55:44 +01:00
|
|
|
api.settings.set('play_sounds', false);
|
2020-04-22 13:11:48 +02:00
|
|
|
|
|
|
|
text = "This message won't play a sound because it is sent by romeo";
|
|
|
|
message = $msg({
|
|
|
|
from: 'lounge@montague.lit/romeo',
|
|
|
|
id: '3',
|
|
|
|
to: 'romeo@montague.lit',
|
|
|
|
type: 'groupchat'
|
|
|
|
}).c('body').t(text);
|
2020-04-24 17:33:32 +02:00
|
|
|
await view.model.handleMessageStanza(message.nodeTree);
|
2021-02-01 14:38:42 +01:00
|
|
|
expect(window.Audio, 1);
|
2020-04-22 13:11:48 +02:00
|
|
|
done();
|
|
|
|
}));
|
|
|
|
});
|
2016-03-08 11:42:52 +01:00
|
|
|
});
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
describe("A Favicon Message Counter", function () {
|
|
|
|
|
|
|
|
it("is incremented when the message is received and the window is not focused",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {'show_tab_notifications': false}, async function (done, _converse) {
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current');
|
|
|
|
await mock.openControlBox(_converse);
|
|
|
|
|
|
|
|
const favico = jasmine.createSpyObj('favico', ['badge']);
|
|
|
|
spyOn(converse.env, 'Favico').and.returnValue(favico);
|
|
|
|
|
|
|
|
const sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
|
|
|
|
const previous_state = _converse.windowState;
|
|
|
|
const msg = $msg({
|
|
|
|
from: sender_jid,
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'chat',
|
|
|
|
id: u.getUniqueId()
|
|
|
|
}).c('body').t('This message will increment the message counter').up()
|
|
|
|
.c('active', {'xmlns': Strophe.NS.CHATSTATES}).tree();
|
|
|
|
_converse.windowState = 'hidden';
|
|
|
|
|
|
|
|
spyOn(_converse.api, "trigger").and.callThrough();
|
|
|
|
|
|
|
|
await _converse.handleMessageStanza(msg);
|
|
|
|
expect(_converse.api.trigger).toHaveBeenCalledWith('message', jasmine.any(Object));
|
|
|
|
|
|
|
|
expect(favico.badge.calls.count()).toBe(0);
|
|
|
|
|
2020-11-25 16:26:33 +01:00
|
|
|
_converse.api.settings.set('show_tab_notifications', true);
|
2020-11-05 14:44:22 +01:00
|
|
|
const msg2 = $msg({
|
|
|
|
from: sender_jid,
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'chat',
|
|
|
|
id: u.getUniqueId()
|
|
|
|
}).c('body').t('This message increment the message counter AND update the page title').up()
|
|
|
|
.c('active', {'xmlns': Strophe.NS.CHATSTATES}).tree();
|
|
|
|
|
|
|
|
await _converse.handleMessageStanza(msg2);
|
|
|
|
await u.waitUntil(() => favico.badge.calls.count() === 1);
|
|
|
|
expect(favico.badge.calls.mostRecent().args.pop()).toBe(2);
|
|
|
|
|
|
|
|
const view = _converse.chatboxviews.get(sender_jid);
|
|
|
|
expect(view.model.get('num_unread')).toBe(2);
|
|
|
|
|
|
|
|
// Check that it's cleared when the window is focused
|
|
|
|
_converse.windowState = 'hidden';
|
|
|
|
_converse.saveWindowState({'type': 'focus'});
|
|
|
|
await u.waitUntil(() => favico.badge.calls.count() === 2);
|
|
|
|
expect(favico.badge.calls.mostRecent().args.pop()).toBe(0);
|
|
|
|
|
|
|
|
expect(view.model.get('num_unread')).toBe(0);
|
|
|
|
_converse.windowSate = previous_state;
|
|
|
|
done();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("is not incremented when the message is received and the window is focused",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {}, async function (done, _converse) {
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current');
|
|
|
|
await mock.openControlBox(_converse);
|
|
|
|
|
|
|
|
const favico = jasmine.createSpyObj('favico', ['badge']);
|
|
|
|
spyOn(converse.env, 'Favico').and.returnValue(favico);
|
|
|
|
|
|
|
|
_converse.saveWindowState({'type': 'focus'});
|
|
|
|
const message = 'This message will not increment the message counter';
|
|
|
|
const sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit',
|
|
|
|
msg = $msg({
|
|
|
|
from: sender_jid,
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'chat',
|
|
|
|
id: u.getUniqueId()
|
|
|
|
}).c('body').t(message).up()
|
|
|
|
.c('active', {'xmlns': Strophe.NS.CHATSTATES}).tree();
|
|
|
|
await _converse.handleMessageStanza(msg);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
const view = _converse.chatboxviews.get(sender_jid);
|
|
|
|
expect(view.model.get('num_unread')).toBe(0);
|
|
|
|
expect(favico.badge.calls.count()).toBe(0);
|
|
|
|
done();
|
|
|
|
}, 500);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it("is incremented from zero when chatbox was closed after viewing previously received messages and the window is not focused now",
|
2021-01-29 14:15:27 +01:00
|
|
|
mock.initConverse([], {}, async function (done, _converse) {
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
await mock.waitForRoster(_converse, 'current');
|
|
|
|
const favico = jasmine.createSpyObj('favico', ['badge']);
|
|
|
|
spyOn(converse.env, 'Favico').and.returnValue(favico);
|
|
|
|
const message = 'This message will always increment the message counter from zero';
|
|
|
|
const sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
|
2021-02-09 10:00:23 +01:00
|
|
|
const msgFactory = () => $msg({
|
|
|
|
from: sender_jid,
|
|
|
|
to: _converse.connection.jid,
|
|
|
|
type: 'chat',
|
|
|
|
id: u.getUniqueId()
|
|
|
|
})
|
|
|
|
.c('body').t(message).up()
|
|
|
|
.c('active', {'xmlns': Strophe.NS.CHATSTATES})
|
|
|
|
.tree();
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
// leave converse-chat page
|
|
|
|
_converse.windowState = 'hidden';
|
|
|
|
await _converse.handleMessageStanza(msgFactory());
|
|
|
|
let view = _converse.chatboxviews.get(sender_jid);
|
|
|
|
await u.waitUntil(() => favico.badge.calls.count() === 1, 1000);
|
|
|
|
expect(favico.badge.calls.mostRecent().args.pop()).toBe(1);
|
2021-02-09 10:00:23 +01:00
|
|
|
expect(view.model.get('num_unread')).toBe(1);
|
2020-11-05 14:44:22 +01:00
|
|
|
|
|
|
|
// come back to converse-chat page
|
|
|
|
_converse.saveWindowState({'type': 'focus'});
|
2021-02-09 10:00:23 +01:00
|
|
|
|
|
|
|
|
2020-12-08 12:54:14 +01:00
|
|
|
await u.waitUntil(() => u.isVisible(view));
|
2021-02-09 10:00:23 +01:00
|
|
|
expect(view.model.get('num_unread')).toBe(0);
|
|
|
|
|
2020-11-05 14:44:22 +01:00
|
|
|
await u.waitUntil(() => favico.badge.calls.count() === 2);
|
|
|
|
expect(favico.badge.calls.mostRecent().args.pop()).toBe(0);
|
|
|
|
|
|
|
|
// close chatbox and leave converse-chat page again
|
|
|
|
view.close();
|
|
|
|
_converse.windowState = 'hidden';
|
|
|
|
|
|
|
|
// check that msg_counter is incremented from zero again
|
|
|
|
await _converse.handleMessageStanza(msgFactory());
|
|
|
|
view = _converse.chatboxviews.get(sender_jid);
|
2020-12-08 12:54:14 +01:00
|
|
|
await u.waitUntil(() => u.isVisible(view));
|
2020-11-05 14:44:22 +01:00
|
|
|
await u.waitUntil(() => favico.badge.calls.count() === 3);
|
|
|
|
expect(favico.badge.calls.mostRecent().args.pop()).toBe(1);
|
|
|
|
done();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2020-04-22 12:10:39 +02:00
|
|
|
});
|