2020-12-29 12:52:53 +01:00
/*global mock, converse, _ */
2020-04-22 13:11:48 +02:00
2020-12-29 12:52:53 +01:00
const { Promise , Strophe , $msg , dayjs , sizzle } = converse . env ;
2020-04-22 13:11:48 +02:00
const u = converse . env . utils ;
describe ( "A Chat Message" , function ( ) {
2020-06-01 16:05:00 +02:00
it ( "will be demarcated if it's the first newly received message" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } ,
2020-06-01 16:05:00 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
await _converse . handleMessageStanza ( mock . createChatMessage ( _converse , contact _jid , 'This message will be read' ) ) ;
2020-12-08 12:54:14 +01:00
const msg _el = await u . waitUntil ( ( ) => view . querySelector ( 'converse-chat-message' ) ) ;
2020-06-03 09:17:13 +02:00
expect ( msg _el . querySelector ( '.chat-msg__text' ) . textContent ) . toBe ( 'This message will be read' ) ;
expect ( view . model . get ( 'num_unread' ) ) . toBe ( 0 ) ;
2020-06-01 16:05:00 +02:00
_converse . windowState = 'hidden' ;
await _converse . handleMessageStanza ( mock . createChatMessage ( _converse , contact _jid , 'This message will be new' ) ) ;
await u . waitUntil ( ( ) => view . model . messages . length ) ;
expect ( view . model . get ( 'num_unread' ) ) . toBe ( 1 ) ;
expect ( view . model . get ( 'first_unread_id' ) ) . toBe ( view . model . messages . last ( ) . get ( 'id' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( 'converse-chat-message' ) . length === 2 ) ;
const last _msg _el = view . querySelector ( 'converse-chat-message:last-child' ) ;
2020-06-01 16:05:00 +02:00
expect ( last _msg _el . firstElementChild ? . textContent ) . toBe ( 'New messages' ) ;
done ( ) ;
} ) ) ;
2020-04-22 13:11:48 +02:00
it ( "is rejected if it's an unencapsulated forwarded message" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2020-04-22 13:11:48 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' , 2 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const forwarded _contact _jid = mock . cur _names [ 1 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
let models = await _converse . api . chats . get ( ) ;
expect ( models . length ) . toBe ( 1 ) ;
const received _stanza = u . toStanza ( `
< message to = '${_converse.jid}' from = '${contact_jid}' type = 'chat' id = '${_converse.connection.getUniqueId()}' >
< body > A most courteous exposition ! < / b o d y >
< forwarded xmlns = 'urn:xmpp:forward:0' >
< delay xmlns = 'urn:xmpp:delay' stamp = '2019-07-10T23:08:25Z' / >
< message from = '${forwarded_contact_jid}'
id = '0202197'
to = '${_converse.bare_jid}'
type = 'chat'
xmlns = 'jabber:client' >
< body > Yet I should kill thee with much cherishing . < / b o d y >
< mood xmlns = 'http://jabber.org/protocol/mood' >
< amorous / >
< / m o o d >
< / m e s s a g e >
< / f o r w a r d e d >
< / m e s s a g e >
` );
_converse . connection . _dataRecv ( mock . createRequest ( received _stanza ) ) ;
const sent _stanzas = _converse . connection . sent _stanzas ;
const sent _stanza = await u . waitUntil ( ( ) => sent _stanzas . filter ( s => s . querySelector ( 'error' ) ) . pop ( ) ) ;
expect ( Strophe . serialize ( sent _stanza ) ) . toBe (
` <message id=" ${ received _stanza . getAttribute ( 'id' ) } " to=" ${ contact _jid } " type="error" xmlns="jabber:client"> ` +
'<error type="cancel">' +
'<not-allowed xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/>' +
'<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">' +
'Forwarded messages not part of an encapsulating protocol are not supported</text>' +
'</error>' +
'</message>' ) ;
models = await _converse . api . chats . get ( ) ;
expect ( models . length ) . toBe ( 1 ) ;
done ( ) ;
} ) ) ;
it ( "can be received out of order, and will still be displayed in the right order" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length )
2020-04-22 13:11:48 +02:00
_converse . filter _by _resource = true ;
let msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "message" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2018-01-02T13:08:25Z' } )
. tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
const view = _converse . api . chatviews . get ( sender _jid ) ;
msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "Older message" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2017-12-31T22:08:25Z' } )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 2 ) ;
2020-04-22 13:11:48 +02:00
msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "Inbetween message" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2018-01-01T13:18:23Z' } )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 3 ) ;
2020-04-22 13:11:48 +02:00
msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "another inbetween message" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2018-01-01T13:18:23Z' } )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 4 ) ;
2020-04-22 13:11:48 +02:00
msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "An earlier message on the next day" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2018-01-02T12:18:23Z' } )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 5 ) ;
2020-04-22 13:11:48 +02:00
msg = $msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "newer message from the next day" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : '2018-01-02T22:28:23Z' } )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 6 ) ;
2020-04-22 13:11:48 +02:00
// Insert <composing> message, to also check that
// text messages are inserted correctly with
// temporary chat events in the chat contents.
msg = $msg ( {
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'xmlns' : 'jabber:client' ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'composing' , { 'xmlns' : Strophe . NS . CHATSTATES } ) . up ( )
. tree ( ) ;
_converse . handleMessageStanza ( msg ) ;
2020-12-08 12:54:14 +01:00
const csntext = await u . waitUntil ( ( ) => view . querySelector ( '.chat-content__notifications' ) . textContent ) ;
2020-05-15 14:33:31 +02:00
expect ( csntext . trim ( ) ) . toEqual ( 'Mercutio is typing' ) ;
2020-04-22 13:11:48 +02:00
msg = $msg ( {
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'xmlns' : 'jabber:client' ,
'from' : sender _jid ,
'type' : 'chat' } )
. c ( 'composing' , { 'xmlns' : Strophe . NS . CHATSTATES } ) . up ( )
. c ( 'body' ) . t ( "latest message" )
. tree ( ) ;
2021-02-08 11:27:42 +01:00
2020-04-22 13:11:48 +02:00
await _converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 7 ) ;
2020-04-22 13:11:48 +02:00
view . clearSpinner ( ) ; //cleanup
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.date-separator' ) . length ) . toEqual ( 4 ) ;
2020-04-22 13:11:48 +02:00
2021-03-10 12:17:23 +01:00
let day = sizzle ( '.date-separator:first' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( day . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( '2017-12-31T00:00:00' ) . toISOString ( ) ) ;
2021-03-10 12:17:23 +01:00
let time = sizzle ( 'time:first' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( time . textContent ) . toEqual ( 'Sunday Dec 31st 2017' )
2021-03-10 12:17:23 +01:00
day = sizzle ( '.date-separator:first' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( day . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toBe ( 'Older message' ) ;
2021-03-10 12:17:23 +01:00
let el = sizzle ( '.chat-msg:first' , view ) . pop ( ) . querySelector ( '.chat-msg__text' )
2020-04-22 13:11:48 +02:00
expect ( u . hasClass ( 'chat-msg--followup' , el ) ) . toBe ( false ) ;
expect ( el . textContent ) . toEqual ( 'Older message' ) ;
2021-03-10 12:17:23 +01:00
time = sizzle ( 'time.separator-text:eq(1)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( time . textContent ) . toEqual ( "Monday Jan 1st 2018" ) ;
2021-03-10 12:17:23 +01:00
day = sizzle ( '.date-separator:eq(1)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( day . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( '2018-01-01T00:00:00' ) . toISOString ( ) ) ;
expect ( day . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toBe ( 'Inbetween message' ) ;
2021-03-10 12:17:23 +01:00
el = sizzle ( '.chat-msg:eq(1)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( el . querySelector ( '.chat-msg__text' ) . textContent ) . toEqual ( 'Inbetween message' ) ;
2020-05-15 14:33:31 +02:00
expect ( el . parentElement . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toEqual ( 'another inbetween message' ) ;
2021-03-10 12:17:23 +01:00
el = sizzle ( '.chat-msg:eq(2)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( el . querySelector ( '.chat-msg__text' ) . textContent )
. toEqual ( 'another inbetween message' ) ;
expect ( u . hasClass ( 'chat-msg--followup' , el ) ) . toBe ( true ) ;
2021-03-10 12:17:23 +01:00
time = sizzle ( 'time.separator-text:nth(2)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( time . textContent ) . toEqual ( "Tuesday Jan 2nd 2018" ) ;
2021-03-10 12:17:23 +01:00
day = sizzle ( '.date-separator:nth(2)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( day . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( '2018-01-02T00:00:00' ) . toISOString ( ) ) ;
expect ( day . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toBe ( 'An earlier message on the next day' ) ;
2021-03-10 12:17:23 +01:00
el = sizzle ( '.chat-msg:eq(3)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( el . querySelector ( '.chat-msg__text' ) . textContent ) . toEqual ( 'An earlier message on the next day' ) ;
expect ( u . hasClass ( 'chat-msg--followup' , el ) ) . toBe ( false ) ;
2021-03-10 12:17:23 +01:00
el = sizzle ( '.chat-msg:eq(4)' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( el . querySelector ( '.chat-msg__text' ) . textContent ) . toEqual ( 'message' ) ;
2020-05-15 14:33:31 +02:00
expect ( el . parentElement . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toEqual ( 'newer message from the next day' ) ;
2020-04-22 13:11:48 +02:00
expect ( u . hasClass ( 'chat-msg--followup' , el ) ) . toBe ( false ) ;
2021-03-10 12:17:23 +01:00
day = sizzle ( '.date-separator:last' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( day . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( ) . startOf ( 'day' ) . toISOString ( ) ) ;
expect ( day . nextElementSibling . querySelector ( '.chat-msg__text' ) . textContent ) . toBe ( 'latest message' ) ;
expect ( u . hasClass ( 'chat-msg--followup' , el ) ) . toBe ( false ) ;
done ( ) ;
} ) ) ;
it ( "is ignored if it's a malformed headline message" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
// Ideally we wouldn't have to filter out headline
// messages, but Prosody gives them the wrong 'type' :(
2020-04-24 17:33:32 +02:00
spyOn ( converse . env . log , 'info' ) ;
2020-04-22 13:11:48 +02:00
sinon . spy ( _converse . api . chatboxes , 'get' ) ;
const msg = $msg ( {
from : 'montague.lit' ,
to : _converse . bare _jid ,
type : 'chat' ,
id : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( "This headline message will not be shown" ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
2020-04-24 17:33:32 +02:00
expect ( converse . env . log . info ) . toHaveBeenCalledWith (
"handleMessageStanza: Ignoring incoming server message from JID: montague.lit"
) ;
2020-04-22 13:11:48 +02:00
expect ( _converse . api . chatboxes . get . called ) . toBeFalsy ( ) ;
// Remove sinon spies
_converse . api . chatboxes . get . restore ( ) ;
done ( ) ;
} ) ) ;
it ( "can be a carbon message, as defined in XEP-0280" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
const include _nick = false ;
await mock . waitForRoster ( _converse , 'current' , 2 , include _nick ) ;
await mock . openControlBox ( _converse ) ;
// Send a message from a different resource
const msgtext = 'This is a carbon message' ;
const sender _jid = mock . cur _names [ 1 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const msg = $msg ( {
'from' : _converse . bare _jid ,
'id' : u . getUniqueId ( ) ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'xmlns' : 'jabber:client'
} ) . c ( 'received' , { 'xmlns' : 'urn:xmpp:carbons:2' } )
. c ( 'forwarded' , { 'xmlns' : 'urn:xmpp:forward:0' } )
. c ( 'message' , {
'xmlns' : 'jabber:client' ,
'from' : sender _jid ,
'to' : _converse . bare _jid + '/another-resource' ,
'type' : 'chat'
} ) . c ( 'body' ) . t ( msgtext ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
const chatbox = _converse . chatboxes . get ( sender _jid ) ;
const view = _converse . chatboxviews . get ( sender _jid ) ;
expect ( chatbox ) . toBeDefined ( ) ;
expect ( view ) . toBeDefined ( ) ;
// Check that the message was received and check the message parameters
await u . waitUntil ( ( ) => chatbox . messages . length ) ;
const msg _obj = chatbox . messages . models [ 0 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( msgtext ) ;
expect ( msg _obj . get ( 'fullname' ) ) . toBeUndefined ( ) ;
expect ( msg _obj . get ( 'nickname' ) ) . toBe ( null ) ;
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'them' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( false ) ;
// Now check that the message appears inside the chatbox in the DOM
2021-03-10 12:17:23 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg .chat-msg__text' ) ) ;
2020-04-22 13:11:48 +02:00
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( '.chat-msg .chat-msg__text' ) . textContent ) . toEqual ( msgtext ) ;
expect ( view . querySelector ( '.chat-msg__time' ) . textContent . match ( /^[0-9][0-9]:[0-9][0-9]/ ) ) . toBeTruthy ( ) ;
2020-04-22 13:11:48 +02:00
await u . waitUntil ( ( ) => chatbox . vcard . get ( 'fullname' ) === 'Juliet Capulet' )
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( 'span.chat-msg__author' ) . textContent . trim ( ) ) . toBe ( 'Juliet Capulet' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "can be a carbon message that this user sent from a different client, as defined in XEP-0280" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed ( _converse , 'montague.lit' , [ ] , [ 'vcard-temp' ] ) ;
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
// Send a message from a different resource
const msgtext = 'This is a sent carbon message' ;
const recipient _jid = mock . cur _names [ 5 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const msg = $msg ( {
'from' : _converse . bare _jid ,
'id' : u . getUniqueId ( ) ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'xmlns' : 'jabber:client'
} ) . c ( 'sent' , { 'xmlns' : 'urn:xmpp:carbons:2' } )
. c ( 'forwarded' , { 'xmlns' : 'urn:xmpp:forward:0' } )
. c ( 'message' , {
'xmlns' : 'jabber:client' ,
'from' : _converse . bare _jid + '/another-resource' ,
'to' : recipient _jid ,
'type' : 'chat'
} ) . c ( 'body' ) . t ( msgtext ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
// Check that the chatbox and its view now exist
const chatbox = await _converse . api . chats . get ( recipient _jid ) ;
const view = _converse . api . chatviews . get ( recipient _jid ) ;
expect ( chatbox ) . toBeDefined ( ) ;
expect ( view ) . toBeDefined ( ) ;
// Check that the message was received and check the message parameters
expect ( chatbox . messages . length ) . toEqual ( 1 ) ;
const msg _obj = chatbox . messages . models [ 0 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( msgtext ) ;
expect ( msg _obj . get ( 'fullname' ) ) . toEqual ( _converse . xmppstatus . get ( 'fullname' ) ) ;
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'me' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( false ) ;
// Now check that the message appears inside the chatbox in the DOM
2020-12-08 12:54:14 +01:00
const msg _el = await u . waitUntil ( ( ) => view . querySelector ( '.chat-content .chat-msg .chat-msg__text' ) ) ;
2020-05-15 14:33:31 +02:00
expect ( msg _el . textContent ) . toEqual ( msgtext ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "will be discarded if it's a malicious message meant to look like a carbon copy" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
/ * < m e s s a g e f r o m = " m a l l o r y @ e v i l . e x a m p l e " t o = " b @ x m p p . e x a m p l e " >
* < received xmlns = 'urn:xmpp:carbons:2' >
* < forwarded xmlns = 'urn:xmpp:forward:0' >
* < message from = "alice@xmpp.example" to = "bob@xmpp.example/client1" >
* < body > Please come to Creepy Valley tonight , alone ! < / b o d y >
* < / m e s s a g e >
* < / f o r w a r d e d >
* < / r e c e i v e d >
* < / m e s s a g e >
* /
const msgtext = 'Please come to Creepy Valley tonight, alone!' ;
const sender _jid = mock . cur _names [ 1 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const impersonated _jid = mock . cur _names [ 2 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const msg = $msg ( {
'from' : sender _jid ,
'id' : u . getUniqueId ( ) ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'xmlns' : 'jabber:client'
} ) . c ( 'received' , { 'xmlns' : 'urn:xmpp:carbons:2' } )
. c ( 'forwarded' , { 'xmlns' : 'urn:xmpp:forward:0' } )
. c ( 'message' , {
'xmlns' : 'jabber:client' ,
'from' : impersonated _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat'
} ) . c ( 'body' ) . t ( msgtext ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
// Check that chatbox for impersonated user is not created.
let chatbox = await _converse . api . chats . get ( impersonated _jid ) ;
expect ( chatbox ) . toBe ( null ) ;
// Check that the chatbox for the malicous user is not created
chatbox = await _converse . api . chats . get ( sender _jid ) ;
expect ( chatbox ) . toBe ( null ) ;
done ( ) ;
} ) ) ;
it ( "will indicate when it has a time difference of more than a day between it and its predecessor" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
const include _nick = false ;
await mock . waitForRoster ( _converse , 'current' , 2 , include _nick ) ;
await mock . openControlBox ( _converse ) ;
spyOn ( _converse . api , "trigger" ) . and . callThrough ( ) ;
const contact _name = mock . cur _names [ 1 ] ;
const contact _jid = contact _name . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length ) ;
2020-04-22 13:11:48 +02:00
await mock . openChatBoxFor ( _converse , contact _jid ) ;
2020-05-15 14:33:31 +02:00
2020-04-22 13:11:48 +02:00
const one _day _ago = dayjs ( ) . subtract ( 1 , 'day' ) ;
const chatbox = _converse . chatboxes . get ( contact _jid ) ;
const view = _converse . chatboxviews . get ( contact _jid ) ;
let message = 'This is a day old message' ;
let msg = $msg ( {
from : contact _jid ,
to : _converse . connection . jid ,
type : 'chat' ,
id : one _day _ago . toDate ( ) . getTime ( )
} ) . c ( 'body' ) . t ( message ) . up ( )
. c ( 'delay' , { xmlns : 'urn:xmpp:delay' , from : 'montague.lit' , stamp : one _day _ago . toISOString ( ) } )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length ) ;
2020-04-22 13:11:48 +02:00
expect ( _converse . api . trigger ) . toHaveBeenCalledWith ( 'message' , jasmine . any ( Object ) ) ;
expect ( chatbox . messages . length ) . toEqual ( 1 ) ;
let msg _obj = chatbox . messages . models [ 0 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( message ) ;
expect ( msg _obj . get ( 'fullname' ) ) . toBeUndefined ( ) ;
expect ( msg _obj . get ( 'nickname' ) ) . toBe ( null ) ;
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'them' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( true ) ;
await u . waitUntil ( ( ) => chatbox . vcard . get ( 'fullname' ) === 'Juliet Capulet' )
2021-02-08 11:27:42 +01:00
expect ( view . querySelector ( '.chat-msg .chat-msg__text' ) . textContent ) . toEqual ( message ) ;
expect ( view . querySelector ( '.chat-msg__time' ) . textContent . match ( /^[0-9][0-9]:[0-9][0-9]/ ) ) . toBeTruthy ( ) ;
expect ( view . querySelector ( 'span.chat-msg__author' ) . textContent . trim ( ) ) . toBe ( 'Juliet Capulet' ) ;
2020-04-22 13:11:48 +02:00
2021-02-08 11:27:42 +01:00
expect ( view . querySelectorAll ( '.date-separator' ) . length ) . toEqual ( 1 ) ;
let day = view . querySelector ( '.date-separator' ) ;
2020-04-22 13:11:48 +02:00
expect ( day . getAttribute ( 'class' ) ) . toEqual ( 'message date-separator' ) ;
expect ( day . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( one _day _ago . startOf ( 'day' ) ) . toISOString ( ) ) ;
2021-02-08 11:27:42 +01:00
let time = view . querySelector ( 'time.separator-text' ) ;
2020-04-22 13:11:48 +02:00
expect ( time . textContent ) . toEqual ( dayjs ( one _day _ago . startOf ( 'day' ) ) . format ( "dddd MMM Do YYYY" ) ) ;
message = 'This is a current message' ;
msg = $msg ( {
from : contact _jid ,
to : _converse . connection . jid ,
type : 'chat' ,
id : new Date ( ) . getTime ( )
} ) . c ( 'body' ) . t ( message ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length === 2 ) ;
2020-04-22 13:11:48 +02:00
expect ( _converse . api . trigger ) . toHaveBeenCalledWith ( 'message' , jasmine . any ( Object ) ) ;
// Check that there is a <time> element, with the required props.
2021-02-08 11:27:42 +01:00
expect ( view . querySelectorAll ( 'time.separator-text' ) . length ) . toEqual ( 2 ) ; // There are now two time elements
2020-04-22 13:11:48 +02:00
const message _date = new Date ( ) ;
2021-02-08 11:27:42 +01:00
day = sizzle ( '.date-separator:last' , view ) ;
2020-04-22 13:11:48 +02:00
expect ( day . length ) . toEqual ( 1 ) ;
expect ( day [ 0 ] . getAttribute ( 'class' ) ) . toEqual ( 'message date-separator' ) ;
expect ( day [ 0 ] . getAttribute ( 'data-isodate' ) ) . toEqual ( dayjs ( message _date ) . startOf ( 'day' ) . toISOString ( ) ) ;
2021-02-08 11:27:42 +01:00
time = sizzle ( 'time.separator-text:last' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( time . textContent ) . toEqual ( dayjs ( message _date ) . startOf ( 'day' ) . format ( "dddd MMM Do YYYY" ) ) ;
// Normal checks for the 2nd message
expect ( chatbox . messages . length ) . toEqual ( 2 ) ;
msg _obj = chatbox . messages . models [ 1 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( message ) ;
expect ( msg _obj . get ( 'fullname' ) ) . toBeUndefined ( ) ;
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'them' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( false ) ;
2021-02-08 11:27:42 +01:00
const msg _txt = sizzle ( '.chat-msg:last .chat-msg__text' , view ) . pop ( ) . textContent ;
2020-04-22 13:11:48 +02:00
expect ( msg _txt ) . toEqual ( message ) ;
2021-02-08 11:27:42 +01:00
expect ( view . querySelector ( 'converse-chat-message:last-child .chat-msg__text' ) . textContent ) . toEqual ( message ) ;
expect ( view . querySelector ( 'converse-chat-message:last-child .chat-msg__time' ) . textContent . match ( /^[0-9][0-9]:[0-9][0-9]/ ) ) . toBeTruthy ( ) ;
expect ( view . querySelector ( 'converse-chat-message:last-child .chat-msg__author' ) . textContent . trim ( ) ) . toBe ( 'Juliet Capulet' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "is sanitized to prevent Javascript injection attacks" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid )
const view = _converse . api . chatviews . get ( contact _jid ) ;
const message = '<p>This message contains <em>some</em> <b>markup</b></p>' ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
await mock . sendMessage ( view , message ) ;
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
2021-02-09 16:40:59 +01:00
const msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( msg . textContent ) . toEqual ( message ) ;
2020-05-15 14:33:31 +02:00
expect ( msg . innerHTML . replace ( /<!---->/g , '' ) ) . toEqual ( '<p>This message contains <em>some</em> <b>markup</b></p>' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "can contain hyperlinks, which will be clickable" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid )
const view = _converse . api . chatviews . get ( contact _jid ) ;
const message = 'This message contains a hyperlink: www.opkode.com' ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length ) ;
2021-02-09 16:40:59 +01:00
const msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( msg . textContent ) . toEqual ( message ) ;
2020-07-09 06:27:56 +02:00
await u . waitUntil ( ( ) => msg . innerHTML . replace ( /<!---->/g , '' ) ===
'This message contains a hyperlink: <a target="_blank" rel="noopener" href="http://www.opkode.com">www.opkode.com</a>' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2020-08-27 23:26:51 +02:00
it ( "will remove url query parameters from hyperlinks as set" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { 'filter_url_query_params' : [ 'utm_medium' , 'utm_content' , 's' ] } ,
2020-08-27 23:26:51 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
2020-09-01 07:26:20 +02:00
let message = 'This message contains a hyperlink with forbidden query params: https://www.opkode.com/?id=0&utm_content=1&utm_medium=2&s=1' ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length ) ;
2021-02-09 16:40:59 +01:00
let msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) ;
2020-08-27 23:26:51 +02:00
await u . waitUntil ( ( ) => msg . innerHTML . replace ( /<!---->/g , '' ) ===
'This message contains a hyperlink with forbidden query params: <a target="_blank" rel="noopener" href="https://www.opkode.com/?id=0">https://www.opkode.com/?id=0</a>' ) ;
2020-09-01 07:26:20 +02:00
// Test assigning a string to filter_url_query_params
_converse . api . settings . set ( 'filter_url_query_params' , 'utm_medium' ) ;
message = 'Another message with a hyperlink with forbidden query params: https://www.opkode.com/?id=0&utm_content=1&utm_medium=2&s=1' ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length === 2 ) ;
2021-02-09 16:40:59 +01:00
msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) ;
2021-02-11 15:05:04 +01:00
expect ( msg . textContent ) . toEqual ( message ) ;
2020-09-01 07:26:20 +02:00
await u . waitUntil ( ( ) => msg . innerHTML . replace ( /<!---->/g , '' ) ===
'Another message with a hyperlink with forbidden query params: ' +
'<a target="_blank" rel="noopener" href="https://www.opkode.com/?id=0&utm_content=1&s=1">https://www.opkode.com/?id=0&utm_content=1&s=1</a>' ) ;
2020-08-27 23:26:51 +02:00
done ( ) ;
} ) ) ;
2021-01-29 11:08:28 +01:00
it ( "will render newlines" , mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
const view = await mock . openChatBoxFor ( _converse , contact _jid ) ;
let stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Hey \ nHave you heard the news ? < / b o d y >
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( '.chat-msg__text' ) . innerHTML . replace ( /<!---->/g , '' ) ) . toBe ( 'Hey\nHave you heard the news?' ) ;
2020-04-22 13:11:48 +02:00
stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Hey \ n \ n \ nHave you heard the news ? < / b o d y >
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length === 2 ) ;
2021-03-10 12:17:23 +01:00
const text = view . querySelector ( 'converse-chat-message:last-child .chat-msg__text' ) . innerHTML . replace ( /<!---->/g , '' ) ;
2021-02-08 11:27:42 +01:00
expect ( text ) . toBe ( 'Hey\n\u200B\nHave you heard the news?' ) ;
2020-04-22 13:11:48 +02:00
stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Hey \ nHave you heard \ nthe news ? < / b o d y >
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length === 3 ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( 'converse-chat-message:last-child .chat-msg__text' ) . innerHTML . replace ( /<!---->/g , '' ) ) . toBe ( 'Hey\nHave you heard\nthe news?' ) ;
2021-01-18 11:27:01 +01:00
stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Hey \ nHave you heard \ n \ n \ nthe news ? \ nhttps : //conversejs.org</body>
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length === 4 ) ;
2021-01-18 12:11:48 +01:00
await u . waitUntil ( ( ) => {
2021-03-10 12:17:23 +01:00
const text = view . querySelector ( 'converse-chat-message:last-child .chat-msg__text' ) . innerHTML . replace ( /<!---->/g , '' ) ;
2021-01-18 12:11:48 +01:00
return text === 'Hey\nHave you heard\n\u200B\nthe news?\n<a target="_blank" rel="noopener" href="https://conversejs.org/">https://conversejs.org</a>' ;
} ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2021-01-29 11:08:28 +01:00
it ( "will render images from their URLs" , mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
const base _url = 'https://conversejs.org' ;
let message = base _url + "/logo/conversejs-filled.svg" ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length , 1000 )
2020-04-22 13:11:48 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
let msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' ) . pop ( ) ;
2020-05-15 14:33:31 +02:00
expect ( msg . innerHTML . replace ( /<!---->/g , '' ) . trim ( ) ) . toEqual (
` <a class="chat-image__link" target="_blank" rel="noopener" href=" ${ base _url } /logo/conversejs-filled.svg"> ` +
2020-07-09 08:57:25 +02:00
` <img class="chat-image img-thumbnail" src="https://conversejs.org/logo/conversejs-filled.svg"> ` +
2020-05-15 14:33:31 +02:00
` </a> ` ) ;
2020-04-22 13:11:48 +02:00
message += "?param1=val1¶m2=val2" ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length === 2 , 1000 ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' ) . pop ( ) ;
2020-05-15 14:33:31 +02:00
expect ( msg . innerHTML . replace ( /<!---->/g , '' ) . trim ( ) ) . toEqual (
` <a class="chat-image__link" target="_blank" rel="noopener" href=" ${ base _url } /logo/conversejs-filled.svg?param1=val1&param2=val2"> ` +
` <img class="chat-image img-thumbnail" src=" ${ message . replace ( /&/g , '&' ) } "> ` +
` </a> ` ) ;
2020-04-22 13:11:48 +02:00
// Test now with two images in one message
message += ' hello world ' + base _url + "/logo/conversejs-filled.svg" ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length === 4 , 1000 ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' ) . pop ( ) ;
expect ( msg . textContent . trim ( ) ) . toEqual ( 'hello world' ) ;
2020-08-31 20:29:51 +02:00
expect ( msg . querySelectorAll ( 'img.chat-image' ) . length ) . toEqual ( 2 ) ;
2020-08-28 23:12:21 +02:00
// Configured image URLs are rendered
_converse . api . settings . set ( 'image_urls_regex' , /^https?:\/\/(?:www.)?(?:imgur\.com\/\w{7})\/?$/i ) ;
2020-08-31 20:29:51 +02:00
message = 'https://imgur.com/oxymPax' ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length === 5 , 1000 ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.chat-content .chat-image' ) . length ) . toBe ( 5 ) ;
2020-08-28 01:05:12 +02:00
2020-08-31 20:29:51 +02:00
// Check that the Imgur URL gets a .png attached to make it render
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => Array . from ( view . querySelectorAll ( '.chat-content .chat-image' ) ) . pop ( ) . src . endsWith ( 'png' ) , 1000 ) ;
2020-08-28 01:05:12 +02:00
done ( ) ;
} ) ) ;
it ( "will render images from approved URLs only" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { 'show_images_inline' : [ 'conversejs.org' ] } ,
2020-08-28 01:05:12 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' ) ;
const base _url = 'https://conversejs.org' ;
2020-08-31 20:58:39 +02:00
let message = 'https://imgur.com/oxymPax.png' ;
2020-08-28 01:05:12 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg' ) . length === 1 ) ;
2020-08-31 20:58:39 +02:00
2020-08-28 01:05:12 +02:00
message = base _url + "/logo/conversejs-filled.svg" ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg' ) . length === 2 , 1000 ) ;
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length === 1 , 1000 )
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.chat-content .chat-image' ) . length ) . toBe ( 1 ) ;
2020-08-28 01:05:12 +02:00
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2020-07-09 08:57:25 +02:00
it ( "will fall back to rendering images as URLs" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2020-07-09 08:57:25 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' ) ;
const base _url = 'https://conversejs.org' ;
const message = base _url + "/logo/non-existing.svg" ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-image' ) . length , 1000 )
2020-07-09 08:57:25 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
const msg = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' ) . pop ( ) ;
await u . waitUntil ( ( ) => msg . innerHTML . replace ( /<!---->/g , '' ) . trim ( ) ==
2020-07-14 14:06:52 +02:00
` <a target="_blank" rel="noopener" href="https://conversejs.org/logo/non-existing.svg">https://conversejs.org/logo/non-existing.svg</a> ` , 1000 ) ;
2020-07-09 08:57:25 +02:00
done ( ) ;
} ) ) ;
2021-02-08 22:55:04 +01:00
it ( "will fall back to rendering URLs that match image_urls_regex as URLs" ,
mock . initConverse (
[ 'rosterGroupsFetched' , 'chatBoxesFetched' ] , {
'show_images_inline' : [ 'twimg.com' ] ,
'image_urls_regex' : /^https?:\/\/(www.)?(pbs\.twimg\.com\/)/i
} ,
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' ) ;
const message = "https://pbs.twimg.com/media/string?format=jpg&name=small" ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2021-02-11 15:05:04 +01:00
await mock . sendMessage ( view , message ) ;
2021-02-08 22:55:04 +01:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
2021-02-09 16:40:59 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-content .chat-msg' ) , 1000 ) ;
const msg = view . querySelector ( '.chat-content .chat-msg .chat-msg__text' ) ;
2021-02-08 22:55:04 +01:00
await u . waitUntil ( ( ) => msg . innerHTML . replace ( /<!---->/g , '' ) . trim ( ) ==
` <a target="_blank" rel="noopener" href="https://pbs.twimg.com/media/string?format=jpg&name=small">https://pbs.twimg.com/media/string?format=jpg&name=small</a> ` , 1000 ) ;
done ( ) ;
} ) ) ;
2020-04-22 13:11:48 +02:00
it ( "will render the message time as configured" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2020-04-22 13:11:48 +02:00
async function ( done , _converse ) {
2018-11-20 18:10:55 +01:00
2021-03-09 12:55:44 +01:00
const { api } = _converse ;
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
2021-03-09 12:55:44 +01:00
api . settings . set ( 'time_format' , 'hh:mm' ) ;
2020-04-22 13:11:48 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid )
const view = _converse . api . chatviews . get ( contact _jid ) ;
const message = 'This message is sent from this chatbox' ;
await mock . sendMessage ( view , message ) ;
const chatbox = await _converse . api . chats . get ( contact _jid ) ;
expect ( chatbox . messages . models . length , 1 ) ;
const msg _object = chatbox . messages . models [ 0 ] ;
2020-12-08 12:54:14 +01:00
const msg _author = view . querySelector ( '.chat-content .chat-msg:last-child .chat-msg__author' ) ;
2020-04-22 13:11:48 +02:00
expect ( msg _author . textContent . trim ( ) ) . toBe ( 'Romeo Montague' ) ;
2020-12-08 12:54:14 +01:00
const msg _time = view . querySelector ( '.chat-content .chat-msg:last-child .chat-msg__time' ) ;
2021-03-09 12:55:44 +01:00
const time = dayjs ( msg _object . get ( 'time' ) ) . format ( api . settings . get ( 'time_format' ) ) ;
2020-04-22 13:11:48 +02:00
expect ( msg _time . textContent ) . toBe ( time ) ;
done ( ) ;
} ) ) ;
it ( "will be correctly identified and rendered as a followup message" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ ] , { 'debounced_content_rendering' : false } ,
2020-04-22 13:11:48 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
const base _time = new Date ( ) ;
const ONE _MINUTE _LATER = 60000 ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length , 300 ) ;
2020-04-22 13:11:48 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
_converse . filter _by _resource = true ;
jasmine . clock ( ) . install ( ) ;
jasmine . clock ( ) . mockDate ( base _time ) ;
_converse . handleMessageStanza ( $msg ( {
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( 'A message' ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ) ;
await new Promise ( resolve => _converse . on ( 'chatBoxViewInitialized' , resolve ) ) ;
const view = _converse . api . chatviews . get ( sender _jid ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
jasmine . clock ( ) . tick ( 3 * ONE _MINUTE _LATER ) ;
_converse . handleMessageStanza ( $msg ( {
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( "Another message 3 minutes later" ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
jasmine . clock ( ) . tick ( 11 * ONE _MINUTE _LATER ) ;
_converse . handleMessageStanza ( $msg ( {
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( "Another message 14 minutes since we started" ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
jasmine . clock ( ) . tick ( 1 * ONE _MINUTE _LATER ) ;
_converse . handleMessageStanza ( $msg ( {
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : _converse . connection . getUniqueId ( )
} ) . c ( 'body' ) . t ( "Another message 1 minute and 1 second since the previous one" ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
jasmine . clock ( ) . tick ( 1 * ONE _MINUTE _LATER ) ;
await mock . sendMessage ( view , "Another message within 10 minutes, but from a different person" ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.message' ) . length ) . toBe ( 6 ) ;
expect ( view . querySelectorAll ( '.chat-msg' ) . length ) . toBe ( 5 ) ;
2020-05-15 14:33:31 +02:00
const nth _child = ( n ) => ` converse-chat-message:nth-child( ${ n } ) .chat-msg ` ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 2 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 2 ) } .chat-msg__text ` ) . textContent ) . toBe ( "A message" ) ;
2020-05-15 14:33:31 +02:00
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 3 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 3 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 3 minutes later" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 4 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 4 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 14 minutes since we started" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 5 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 5 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 1 minute and 1 second since the previous one" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 6 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 6 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message within 10 minutes, but from a different person" ) ;
// Let's add a delayed, inbetween message
_converse . handleMessageStanza (
$msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : _converse . bare _jid ,
'from' : sender _jid ,
'type' : 'chat'
} ) . c ( 'body' ) . t ( "A delayed message, sent 5 minutes since we started" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : dayjs ( base _time ) . add ( 5 , 'minutes' ) . toISOString ( ) } )
. tree ( ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.message' ) . length ) . toBe ( 7 ) ;
expect ( view . querySelectorAll ( '.chat-msg' ) . length ) . toBe ( 6 ) ;
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 2 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 2 ) } .chat-msg__text ` ) . textContent ) . toBe ( "A message" ) ;
2020-05-15 14:33:31 +02:00
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 3 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 3 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 3 minutes later" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 4 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 4 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"A delayed message, sent 5 minutes since we started" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 5 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 5 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 14 minutes since we started" ) ;
2020-05-15 14:33:31 +02:00
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 6 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 6 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 1 minute and 1 second since the previous one" ) ;
2020-05-15 14:33:31 +02:00
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 7 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 7 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-05-15 14:33:31 +02:00
"Another message within 10 minutes, but from a different person" ) ;
2020-04-22 13:11:48 +02:00
_converse . handleMessageStanza (
$msg ( {
'xmlns' : 'jabber:client' ,
'id' : _converse . connection . getUniqueId ( ) ,
'to' : sender _jid ,
'from' : _converse . bare _jid + "/some-other-resource" ,
'type' : 'chat' } )
. c ( 'body' ) . t ( "A carbon message 4 minutes later" ) . up ( )
. c ( 'delay' , { 'xmlns' : 'urn:xmpp:delay' , 'stamp' : dayjs ( base _time ) . add ( 4 , 'minutes' ) . toISOString ( ) } )
. tree ( ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-04-22 13:11:48 +02:00
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.chat-msg' ) . length ) . toBe ( 7 ) ;
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 2 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 2 ) } .chat-msg__text ` ) . textContent ) . toBe ( "A message" ) ;
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 3 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 3 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 3 minutes later" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 4 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 4 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"A carbon message 4 minutes later" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 5 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 5 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"A delayed message, sent 5 minutes since we started" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 6 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 6 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 14 minutes since we started" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 7 ) ) ) ) . toBe ( true ) ;
expect ( view . querySelector ( ` ${ nth _child ( 7 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message 1 minute and 1 second since the previous one" ) ;
2021-03-10 12:17:23 +01:00
expect ( u . hasClass ( 'chat-msg--followup' , view . querySelector ( nth _child ( 8 ) ) ) ) . toBe ( false ) ;
expect ( view . querySelector ( ` ${ nth _child ( 8 ) } .chat-msg__text ` ) . textContent ) . toBe (
2020-04-22 13:11:48 +02:00
"Another message within 10 minutes, but from a different person" ) ;
jasmine . clock ( ) . uninstall ( ) ;
done ( ) ;
} ) ) ;
2018-11-20 18:10:55 +01:00
2020-04-22 13:11:48 +02:00
describe ( "when sent" , function ( ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "will appear inside the chatbox it was sent from" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2018-10-13 23:25:01 +02:00
async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
spyOn ( _converse . api , "trigger" ) . and . callThrough ( ) ;
2019-06-03 07:58:51 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
await mock . openChatBoxFor ( _converse , contact _jid )
const view = _converse . chatboxviews . get ( contact _jid ) ;
const message = 'This message is sent from this chatbox' ;
2018-10-13 23:25:01 +02:00
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2020-04-22 13:11:48 +02:00
await mock . sendMessage ( view , message ) ;
2018-10-13 23:25:01 +02:00
expect ( view . model . sendMessage ) . toHaveBeenCalled ( ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . messages . length , 2 ) ;
expect ( _converse . api . trigger . calls . mostRecent ( ) . args , [ 'messageSend' , message ] ) ;
2021-02-09 16:40:59 +01:00
expect ( sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) . textContent ) . toEqual ( message ) ;
2018-10-13 23:25:01 +02:00
done ( ) ;
2018-08-15 11:02:24 +02:00
} ) ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "will be trimmed of leading and trailing whitespace" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2018-11-18 15:24:34 +01:00
async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
2019-06-03 07:58:51 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
await mock . openChatBoxFor ( _converse , contact _jid )
const view = _converse . chatboxviews . get ( contact _jid ) ;
const message = ' \nThis message is sent from this chatbox \n \n' ;
await mock . sendMessage ( view , message ) ;
expect ( view . model . messages . at ( 0 ) . get ( 'message' ) ) . toEqual ( message . trim ( ) ) ;
2021-02-09 16:40:59 +01:00
const message _el = sizzle ( '.chat-content .chat-msg:last .chat-msg__text' , view ) . pop ( ) ;
2020-04-22 13:11:48 +02:00
expect ( message _el . textContent ) . toEqual ( message . trim ( ) ) ;
2018-11-18 15:24:34 +01:00
done ( ) ;
2018-04-29 15:40:24 +02:00
} ) ) ;
2020-04-22 13:11:48 +02:00
} ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
describe ( "when received from someone else" , function ( ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "will open a chatbox and be displayed inside it" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
const include _nick = false ;
await mock . waitForRoster ( _converse , 'current' , 1 , include _nick ) ;
await mock . openControlBox ( _converse ) ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length , 300 ) ;
2020-04-22 13:11:48 +02:00
spyOn ( _converse . api , "trigger" ) . and . callThrough ( ) ;
const message = 'This is a received message' ;
2019-06-03 07:58:51 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
// We don't already have an open chatbox for this user
expect ( _converse . chatboxes . get ( sender _jid ) ) . not . toBeDefined ( ) ;
await _converse . handleMessageStanza (
$msg ( {
2018-10-13 23:25:01 +02:00
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
2020-02-07 12:24:02 +01:00
'id' : u . getUniqueId ( )
2020-04-22 13:11:48 +02:00
} ) . c ( 'body' ) . t ( message ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( )
) ;
const chatbox = await _converse . chatboxes . get ( sender _jid ) ;
expect ( chatbox ) . toBeDefined ( ) ;
2019-02-22 21:43:49 +01:00
const view = _converse . api . chatviews . get ( sender _jid ) ;
2020-04-22 13:11:48 +02:00
expect ( view ) . toBeDefined ( ) ;
2018-10-13 23:25:01 +02:00
2020-04-22 13:11:48 +02:00
expect ( _converse . api . trigger ) . toHaveBeenCalledWith ( 'message' , jasmine . any ( Object ) ) ;
// Check that the message was received and check the message parameters
await u . waitUntil ( ( ) => chatbox . messages . length ) ;
expect ( chatbox . messages . length ) . toEqual ( 1 ) ;
const msg _obj = chatbox . messages . models [ 0 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( message ) ;
expect ( msg _obj . get ( 'fullname' ) ) . toBeUndefined ( ) ;
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'them' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( false ) ;
// Now check that the message appears inside the chatbox in the DOM
2021-03-10 12:17:23 +01:00
const mel = await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg .chat-msg__text' ) ) ;
2020-04-22 13:11:48 +02:00
expect ( mel . textContent ) . toEqual ( message ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( '.chat-msg__time' ) . textContent . match ( /^[0-9][0-9]:[0-9][0-9]/ ) ) . toBeTruthy ( ) ;
2020-04-22 13:11:48 +02:00
await u . waitUntil ( ( ) => chatbox . vcard . get ( 'fullname' ) === mock . cur _names [ 0 ] ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( 'span.chat-msg__author' ) . textContent . trim ( ) ) . toBe ( 'Mercutio' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2018-10-13 23:25:01 +02:00
2020-04-22 13:11:48 +02:00
it ( "will be trimmed of leading and trailing whitespace" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-03-18 19:32:03 +01:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 1 , false ) ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length , 300 ) ;
2020-04-22 13:11:48 +02:00
const message = '\n\n This is a received message \n\n' ;
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await _converse . handleMessageStanza (
$msg ( {
2018-10-13 23:25:01 +02:00
'from' : sender _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
2020-04-22 13:11:48 +02:00
'id' : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( message ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( )
) ;
const view = _converse . api . chatviews . get ( sender _jid ) ;
await u . waitUntil ( ( ) => view . model . messages . length ) ;
expect ( view . model . messages . length ) . toEqual ( 1 ) ;
const msg _obj = view . model . messages . at ( 0 ) ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( message . trim ( ) ) ;
2021-03-10 12:17:23 +01:00
const mel = await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg .chat-msg__text' ) ) ;
2020-04-22 13:11:48 +02:00
expect ( mel . textContent ) . toEqual ( message . trim ( ) ) ;
2018-10-13 23:25:01 +02:00
done ( ) ;
2018-04-29 15:40:24 +02:00
} ) ) ;
2020-04-22 13:11:48 +02:00
describe ( "when a chatbox is opened for someone who is not in the roster" , function ( ) {
it ( "the VCard for that user is fetched and the chatbox updated with the results" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { 'allow_non_roster_messaging' : true } ,
2019-06-26 11:09:07 +02:00
async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 0 ) ;
2019-08-01 10:26:35 +02:00
spyOn ( _converse . api , "trigger" ) . and . callThrough ( ) ;
2019-06-26 11:09:07 +02:00
2020-04-22 13:11:48 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
var vcard _fetched = false ;
spyOn ( _converse . api . vcard , "get" ) . and . callFake ( function ( ) {
vcard _fetched = true ;
return Promise . resolve ( {
'fullname' : mock . cur _names [ 0 ] ,
'vcard_updated' : ( new Date ( ) ) . toISOString ( ) ,
'jid' : sender _jid
} ) ;
} ) ;
const message = 'This is a received message from someone not on the roster' ;
const 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 ( ) ;
2019-06-26 10:59:02 +02:00
2020-04-22 13:11:48 +02:00
// We don't already have an open chatbox for this user
expect ( _converse . chatboxes . get ( sender _jid ) ) . not . toBeDefined ( ) ;
2019-06-26 10:59:02 +02:00
2020-04-22 13:11:48 +02:00
await _converse . handleMessageStanza ( msg ) ;
const view = await u . waitUntil ( ( ) => _converse . api . chatviews . get ( sender _jid ) ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length ) ;
2020-04-22 13:11:48 +02:00
expect ( _converse . api . trigger ) . toHaveBeenCalledWith ( 'message' , jasmine . any ( Object ) ) ;
// Check that the chatbox and its view now exist
const chatbox = await _converse . api . chats . get ( sender _jid ) ;
expect ( chatbox . get ( 'fullname' ) === sender _jid ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg__author' ) . textContent . trim ( ) === 'Mercutio' ) ;
let author _el = view . querySelector ( '.chat-msg__author' ) ;
2020-04-22 13:11:48 +02:00
expect ( _ . includes ( author _el . textContent . trim ( ) , 'Mercutio' ) ) . toBeTruthy ( ) ;
await u . waitUntil ( ( ) => vcard _fetched , 100 ) ;
expect ( _converse . api . vcard . get ) . toHaveBeenCalled ( ) ;
await u . waitUntil ( ( ) => chatbox . vcard . get ( 'fullname' ) === mock . cur _names [ 0 ] )
2020-12-08 12:54:14 +01:00
author _el = view . querySelector ( '.chat-msg__author' ) ;
2021-02-08 11:27:42 +01:00
expect ( author _el . textContent . trim ( ) . includes ( 'Mercutio' ) ) . toBeTruthy ( ) ;
2019-06-26 10:59:02 +02:00
done ( ) ;
} ) ) ;
} ) ;
2018-08-15 17:22:24 +02:00
2020-04-22 13:11:48 +02:00
describe ( "who is not on the roster" , function ( ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "will open a chatbox and be displayed inside it if allow_non_roster_messaging is true" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ ] , { 'allow_non_roster_messaging' : false } ,
2018-10-13 23:25:01 +02:00
async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 0 ) ;
2021-03-09 12:55:44 +01:00
const { api } = _converse ;
spyOn ( api , "trigger" ) . and . callThrough ( ) ;
2020-04-22 13:11:48 +02:00
const message = 'This is a received message from someone not on the roster' ;
2019-06-03 07:58:51 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
const 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 ( ) ;
2018-10-13 23:25:01 +02:00
// We don't already have an open chatbox for this user
expect ( _converse . chatboxes . get ( sender _jid ) ) . not . toBeDefined ( ) ;
2020-04-22 13:11:48 +02:00
let chatbox = await _converse . api . chats . get ( sender _jid ) ;
expect ( chatbox ) . toBe ( null ) ;
await _converse . handleMessageStanza ( msg ) ;
let view = _converse . chatboxviews . get ( sender _jid ) ;
expect ( view ) . not . toBeDefined ( ) ;
2021-03-09 12:55:44 +01:00
api . settings . set ( 'allow_non_roster_messaging' , true ) ;
2020-04-22 13:11:48 +02:00
await _converse . handleMessageStanza ( msg ) ;
view = _converse . chatboxviews . get ( sender _jid ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length ) ;
2019-03-29 21:10:45 +01:00
expect ( _converse . api . trigger ) . toHaveBeenCalledWith ( 'message' , jasmine . any ( Object ) ) ;
2020-04-22 13:11:48 +02:00
// Check that the chatbox and its view now exist
chatbox = await _converse . api . chats . get ( sender _jid ) ;
expect ( chatbox ) . toBeDefined ( ) ;
expect ( view ) . toBeDefined ( ) ;
2018-10-13 23:25:01 +02:00
// Check that the message was received and check the message parameters
expect ( chatbox . messages . length ) . toEqual ( 1 ) ;
const msg _obj = chatbox . messages . models [ 0 ] ;
expect ( msg _obj . get ( 'message' ) ) . toEqual ( message ) ;
2020-04-22 13:11:48 +02:00
expect ( msg _obj . get ( 'fullname' ) ) . toEqual ( undefined ) ;
2018-10-13 23:25:01 +02:00
expect ( msg _obj . get ( 'sender' ) ) . toEqual ( 'them' ) ;
expect ( msg _obj . get ( 'is_delayed' ) ) . toEqual ( false ) ;
2020-04-22 13:11:48 +02:00
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg__author' ) . textContent . trim ( ) === 'Mercutio' ) ;
2018-10-13 23:25:01 +02:00
// Now check that the message appears inside the chatbox in the DOM
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( '.chat-msg .chat-msg__text' ) . textContent ) . toEqual ( message ) ;
expect ( view . querySelector ( '.chat-msg__time' ) . textContent . match ( /^[0-9][0-9]:[0-9][0-9]/ ) ) . toBeTruthy ( ) ;
expect ( view . querySelector ( 'span.chat-msg__author' ) . textContent . trim ( ) ) . toBe ( 'Mercutio' ) ;
2018-10-13 23:25:01 +02:00
done ( ) ;
2018-08-15 11:02:24 +02:00
} ) ) ;
2020-04-22 13:11:48 +02:00
} ) ;
2018-04-29 15:40:24 +02:00
2019-06-26 10:59:02 +02:00
2020-04-22 13:11:48 +02:00
describe ( "and for which then an error message is received from the server" , function ( ) {
2019-06-26 10:59:02 +02:00
2020-04-22 13:11:48 +02:00
it ( "will have the error message displayed after itself" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
// TODO: what could still be done for error
// messages... if the <error> element has type
// "cancel", then we know the messages wasn't sent,
// and can give the user a nicer indication of
// that.
/ * < m e s s a g e f r o m = " s c o t t y @ e n t e r p r i s e . c o m / _ c o n v e r s e . j s - 8 4 8 4 3 5 2 6 "
* to = "kirk@enterprise.com.com"
* type = "chat"
* id = "82bc02ce-9651-4336-baf0-fa04762ed8d2"
* xmlns = "jabber:client" >
* < body > yo < / b o d y >
* < active xmlns = "http://jabber.org/protocol/chatstates" / >
* < / m e s s a g e >
* /
const error _txt = 'Server-to-server connection failed: Connecting failed: connection timeout' ;
2020-04-24 17:33:32 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
await _converse . api . chats . open ( sender _jid )
let msg _text = 'This message will not be sent, due to an error' ;
const view = _converse . api . chatviews . get ( sender _jid ) ;
const message = await view . model . sendMessage ( msg _text ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg' ) . length ) ;
2021-03-10 12:17:23 +01:00
let msg _txt = sizzle ( '.chat-msg:last .chat-msg__text' , view ) . pop ( ) . textContent ;
2020-04-22 13:11:48 +02:00
expect ( msg _txt ) . toEqual ( msg _text ) ;
// We send another message, for which an error will
// not be received, to test that errors appear
// after the relevant message.
msg _text = 'This message will be sent, and also receive an error' ;
const second _message = await view . model . sendMessage ( msg _text ) ;
2021-03-10 12:17:23 +01:00
await u . waitUntil ( ( ) => sizzle ( '.chat-msg .chat-msg__text' , view ) . length === 2 , 1000 ) ;
msg _txt = sizzle ( '.chat-msg:last .chat-msg__text' , view ) . pop ( ) . textContent ;
2020-04-22 13:11:48 +02:00
expect ( msg _txt ) . toEqual ( msg _text ) ;
/ * < m e s s a g e x m l n s = " j a b b e r : c l i e n t "
* to = "scotty@enterprise.com/_converse.js-84843526"
* type = "error"
* id = "82bc02ce-9651-4336-baf0-fa04762ed8d2"
* from = "kirk@enterprise.com.com" >
* < error type = "cancel" >
* < remote - server - not - found xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" / >
* < text xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" > Server - to - server connection failed : Connecting failed : connection timeout < / t e x t >
* < / e r r o r >
* < / m e s s a g e >
* /
let stanza = $msg ( {
'to' : _converse . connection . jid ,
'type' : 'error' ,
'id' : message . get ( 'msgid' ) ,
'from' : sender _jid
} )
. c ( 'error' , { 'type' : 'cancel' } )
. c ( 'remote-server-not-found' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) . up ( )
. c ( 'text' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } )
. t ( 'Server-to-server connection failed: Connecting failed: connection timeout' ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-03-10 12:17:23 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-msg__error' ) . textContent . trim ( ) === error _txt ) ;
2020-05-15 14:33:31 +02:00
const other _error _txt = 'Server-to-server connection failed: Connecting failed: connection timeout' ;
2020-04-22 13:11:48 +02:00
stanza = $msg ( {
2018-10-13 23:25:01 +02:00
'to' : _converse . connection . jid ,
2020-04-22 13:11:48 +02:00
'type' : 'error' ,
'id' : second _message . get ( 'id' ) ,
'from' : sender _jid
} )
. c ( 'error' , { 'type' : 'cancel' } )
. c ( 'remote-server-not-found' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) . up ( )
. c ( 'text' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } )
2020-05-15 14:33:31 +02:00
. t ( other _error _txt ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-05-15 14:33:31 +02:00
await u . waitUntil ( ( ) =>
2021-03-10 12:17:23 +01:00
view . querySelector ( 'converse-chat-message:last-child .chat-msg__error' ) . textContent . trim ( ) === other _error _txt ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
// We don't render duplicates
stanza = $msg ( {
2018-10-13 23:25:01 +02:00
'to' : _converse . connection . jid ,
2020-04-22 13:11:48 +02:00
'type' : 'error' ,
'id' : '6fcdeee3-000f-4ce8-a17e-9ce28f0ae104' ,
'from' : sender _jid
} )
. c ( 'error' , { 'type' : 'cancel' } )
. c ( 'remote-server-not-found' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) . up ( )
. c ( 'text' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } )
. t ( 'Server-to-server connection failed: Connecting failed: connection timeout' ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.chat-msg__error' ) . length ) . toEqual ( 2 ) ;
2020-04-22 13:11:48 +02:00
msg _text = 'This message will be sent, and also receive an error' ;
const third _message = await view . model . sendMessage ( msg _text ) ;
2021-03-10 12:17:23 +01:00
await u . waitUntil ( ( ) => sizzle ( 'converse-chat-message:last-child .chat-msg__text' , view ) . pop ( ) ? . textContent === msg _text ) ;
2018-07-30 18:16:32 +02:00
2020-04-22 13:11:48 +02:00
// A different error message will however render
stanza = $msg ( {
2018-10-13 23:25:01 +02:00
'to' : _converse . connection . jid ,
2020-04-22 13:11:48 +02:00
'type' : 'error' ,
'id' : third _message . get ( 'id' ) ,
'from' : sender _jid
} )
. c ( 'error' , { 'type' : 'cancel' } )
. c ( 'not-allowed' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) . up ( )
. c ( 'text' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } )
. t ( 'Something else went wrong as well' ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-10-08 12:13:04 +02:00
await u . waitUntil ( ( ) => view . model . messages . length > 2 ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__error' ) . length === 3 ) ;
2020-06-25 10:22:44 +02:00
2021-02-08 11:27:42 +01:00
// Ensure messages with error are not editable or retractable
await u . waitUntil ( ( ) => ! view . model . messages . models . reduce ( ( acc , m ) => acc || m . get ( 'editable' ) , false ) , 1000 ) ;
view . querySelectorAll ( '.chat-msg' ) . forEach ( el => {
expect ( el . querySelector ( '.chat-msg__action-edit' ) ) . toBe ( null )
expect ( el . querySelector ( '.chat-msg__action-retract' ) ) . toBe ( null )
2020-06-25 10:22:44 +02:00
} )
2018-10-13 23:25:01 +02:00
done ( ) ;
} ) ) ;
2020-04-22 13:11:48 +02:00
it ( "will not show to the user an error message for a CSI message" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2018-10-13 23:25:01 +02:00
async function ( done , _converse ) {
2018-04-30 12:15:26 +02:00
2020-04-22 13:11:48 +02:00
// See #1317
// https://github.com/conversejs/converse.js/issues/1317
await mock . waitForRoster ( _converse , 'current' ) ;
await mock . openControlBox ( _converse ) ;
2018-04-30 12:15:26 +02:00
2020-04-22 13:11:48 +02:00
const contact _jid = mock . cur _names [ 5 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
2019-11-01 16:04:55 +01:00
2020-04-22 13:11:48 +02:00
const messages = _converse . connection . sent _stanzas . filter ( s => s . nodeName === 'message' ) ;
expect ( messages . length ) . toBe ( 1 ) ;
expect ( Strophe . serialize ( messages [ 0 ] ) ) . toBe (
` <message id=" ${ messages [ 0 ] . getAttribute ( 'id' ) } " to="tybalt@montague.lit" type="chat" xmlns="jabber:client"> ` +
` <active xmlns="http://jabber.org/protocol/chatstates"/> ` +
` <no-store xmlns="urn:xmpp:hints"/> ` +
` <no-permanent-store xmlns="urn:xmpp:hints"/> ` +
` </message> ` ) ;
2018-10-13 23:25:01 +02:00
2020-04-22 13:11:48 +02:00
const stanza = $msg ( {
'from' : contact _jid ,
'type' : 'error' ,
'id' : messages [ 0 ] . getAttribute ( 'id' )
} ) . c ( 'error' , { 'type' : 'cancel' , 'code' : '503' } )
. c ( 'service-unavailable' , { 'xmlns' : 'urn:ietf:params:xml:ns:xmpp-stanzas' } ) . up ( )
. c ( 'text' , { 'xmlns' : 'urn:ietf:params:xml:ns:xmpp-stanzas' } )
. t ( 'User session not found' )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
const view = _converse . chatboxviews . get ( contact _jid ) ;
2020-10-08 12:13:04 +02:00
const msg _text = 'This message will show!' ;
await view . model . sendMessage ( msg _text ) ;
2021-02-08 11:27:42 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-msg__text' ) . length ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelectorAll ( '.chat-error' ) . length ) . toEqual ( 0 ) ;
2018-10-13 23:25:01 +02:00
done ( ) ;
2018-08-15 11:02:24 +02:00
} ) ) ;
} ) ;
2018-04-30 12:15:26 +02:00
2020-04-22 13:11:48 +02:00
it ( "will cause the chat area to be scrolled down only if it was at the bottom originally" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , sender _jid )
const view = _converse . api . chatviews . get ( sender _jid ) ;
// Create enough messages so that there's a scrollbar.
const promises = [ ] ;
2021-03-10 12:17:23 +01:00
view . querySelector ( '.chat-content' ) . scrollTop = 0 ;
2020-06-30 10:59:11 +02:00
view . model . set ( 'scrolled' , true ) ;
2020-04-22 13:11:48 +02:00
for ( let i = 0 ; i < 20 ; i ++ ) {
_converse . handleMessageStanza ( $msg ( {
from : sender _jid ,
to : _converse . connection . jid ,
type : 'chat' ,
id : _converse . connection . getUniqueId ( ) ,
} ) . c ( 'body' ) . t ( 'Message: ' + i ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ) ;
2020-05-15 14:33:31 +02:00
promises . push ( new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ) ;
2020-04-22 13:11:48 +02:00
}
await Promise . all ( promises ) ;
2020-12-08 12:54:14 +01:00
const indicator _el = view . querySelector ( '.new-msgs-indicator' ) ;
2020-06-30 10:59:11 +02:00
expect ( u . isVisible ( indicator _el ) ) . toBeTruthy ( ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'scrolled' ) ) . toBe ( true ) ;
2021-03-10 12:17:23 +01:00
expect ( view . querySelector ( '.chat-content' ) . scrollTop ) . toBe ( 0 ) ;
2020-06-30 10:59:11 +02:00
indicator _el . click ( ) ;
expect ( u . isVisible ( indicator _el ) ) . toBeFalsy ( ) ;
expect ( view . model . get ( 'scrolled' ) ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "is ignored if it's intended for a different resource and filter_by_resource is set to true" ,
2021-01-29 11:08:28 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2018-04-29 15:40:24 +02:00
2021-03-09 12:55:44 +01:00
const { api } = _converse ;
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
2021-01-29 11:08:28 +01:00
const rosterview = document . querySelector ( 'converse-roster' ) ;
await u . waitUntil ( ( ) => rosterview . querySelectorAll ( '.roster-group' ) . length )
2020-04-22 13:11:48 +02:00
// Send a message from a different resource
2020-04-24 17:33:32 +02:00
spyOn ( converse . env . log , 'error' ) ;
2020-04-22 13:11:48 +02:00
spyOn ( _converse . api . chatboxes , 'create' ) . and . callThrough ( ) ;
2021-03-09 12:55:44 +01:00
api . settings . set ( 'filter_by_resource' , true ) ;
2020-04-22 13:11:48 +02:00
const sender _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
let msg = $msg ( {
from : sender _jid ,
to : _converse . bare _jid + "/some-other-resource" ,
type : 'chat' ,
id : u . getUniqueId ( )
} ) . c ( 'body' ) . t ( "This message will not be shown" ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
2018-04-29 15:40:24 +02:00
2020-04-24 17:33:32 +02:00
expect ( converse . env . log . error . calls . all ( ) . pop ( ) . args [ 0 ] ) . toBe (
"Ignoring incoming message intended for a different resource: romeo@montague.lit/some-other-resource" ,
2020-04-22 13:11:48 +02:00
) ;
expect ( _converse . api . chatboxes . create ) . not . toHaveBeenCalled ( ) ;
2021-03-09 12:55:44 +01:00
api . settings . set ( 'filter_by_resource' , false ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
const message = "This message sent to a different resource will be shown" ;
msg = $msg ( {
from : sender _jid ,
to : _converse . bare _jid + "/some-other-resource" ,
type : 'chat' ,
id : '134234623462346'
} ) . c ( 'body' ) . t ( message ) . up ( )
. c ( 'active' , { 'xmlns' : 'http://jabber.org/protocol/chatstates' } ) . tree ( ) ;
await _converse . handleMessageStanza ( msg ) ;
await u . waitUntil ( ( ) => _converse . chatboxviews . keys ( ) . length > 1 , 1000 ) ;
const view = _converse . chatboxviews . get ( sender _jid ) ;
await u . waitUntil ( ( ) => view . model . messages . length ) ;
expect ( _converse . api . chatboxes . create ) . toHaveBeenCalled ( ) ;
2021-02-09 16:40:59 +01:00
const last _message = await u . waitUntil ( ( ) => sizzle ( '.chat-content:last .chat-msg__text' , view ) . pop ( ) ) ;
2020-04-22 13:11:48 +02:00
const msg _txt = last _message . textContent ;
expect ( msg _txt ) . toEqual ( message ) ;
done ( ) ;
} ) ) ;
} ) ;
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
describe ( "which contains an OOB URL" , function ( ) {
2018-04-29 15:40:24 +02:00
2020-04-22 13:11:48 +02:00
it ( "will render audio from oob mp3 URLs" ,
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2020-04-22 13:11:48 +02:00
async function ( done , _converse ) {
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2018-07-07 14:20:49 +02:00
2020-04-22 13:11:48 +02:00
let stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Have you heard this funny audio ? < / b o d y >
< x xmlns = "jabber:x:oob" > < url > https : //montague.lit/audio.mp3</url></x>
< / m e s s a g e > ` )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg audio' ) . length , 1000 ) ;
let msg = view . querySelector ( '.chat-msg .chat-msg__text' ) ;
2020-04-22 13:11:48 +02:00
expect ( msg . classList . length ) . toEqual ( 1 ) ;
expect ( u . hasClass ( 'chat-msg__text' , msg ) ) . toBe ( true ) ;
expect ( msg . textContent ) . toEqual ( 'Have you heard this funny audio?' ) ;
2020-12-08 12:54:14 +01:00
let media = view . querySelector ( '.chat-msg .chat-msg__media' ) ;
2020-05-15 14:33:31 +02:00
expect ( media . innerHTML . replace ( /<!---->/g , '' ) . replace ( /(\r\n|\n|\r)/gm , "" ) . trim ( ) ) . toEqual (
` <audio controls="" src="https://montague.lit/audio.mp3"></audio> ` +
` <a target="_blank" rel="noopener" href="https://montague.lit/audio.mp3">Download audio file "audio.mp3"</a> ` ) ;
2020-04-22 13:11:48 +02:00
// If the <url> and <body> contents is the same, don't duplicate.
stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > https : //montague.lit/audio.mp3</body>
< x xmlns = "jabber:x:oob" > < url > https : //montague.lit/audio.mp3</url></x>
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-12-08 12:54:14 +01:00
msg = view . querySelector ( '.chat-msg:last-child .chat-msg__text' ) ;
2020-05-15 14:33:31 +02:00
expect ( msg . innerHTML . replace ( /<!---->/g , '' ) ) . toEqual ( 'Have you heard this funny audio?' ) ; // Emtpy
2020-12-08 12:54:14 +01:00
media = view . querySelector ( '.chat-msg:last-child .chat-msg__media' ) ;
2020-05-15 14:33:31 +02:00
expect ( media . innerHTML . replace ( /<!---->/g , '' ) . replace ( /(\r\n|\n|\r)/gm , "" ) . trim ( ) ) . toEqual (
` <audio controls="" src="https://montague.lit/audio.mp3"></audio> ` +
2020-04-22 13:11:48 +02:00
` <a target="_blank" rel="noopener" href="https://montague.lit/audio.mp3"> ` +
2020-05-15 14:33:31 +02:00
` Download audio file "audio.mp3"</a> ` ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2019-01-31 19:22:30 +01:00
2020-04-22 13:11:48 +02:00
it ( "will render video from oob mp4 URLs" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2019-01-31 19:22:30 +01:00
async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
2019-06-03 07:58:51 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
await mock . openChatBoxFor ( _converse , contact _jid )
2019-02-22 21:43:49 +01:00
const view = _converse . api . chatviews . get ( contact _jid ) ;
2020-04-22 13:11:48 +02:00
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
let stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Have you seen this funny video ? < / b o d y >
< x xmlns = "jabber:x:oob" > < url > https : //montague.lit/video.mp4</url></x>
2019-02-12 14:21:45 +01:00
< / m e s s a g e > ` ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg video' ) . length , 2000 )
let msg = view . querySelector ( '.chat-msg .chat-msg__text' ) ;
2020-04-22 13:11:48 +02:00
expect ( msg . classList . length ) . toBe ( 1 ) ;
expect ( msg . textContent ) . toEqual ( 'Have you seen this funny video?' ) ;
2020-12-08 12:54:14 +01:00
let media = view . querySelector ( '.chat-msg .chat-msg__media' ) ;
2020-04-22 13:11:48 +02:00
expect ( media . innerHTML . replace ( /(\r\n|\n|\r)/gm , "" ) ) . toEqual (
` <!----><video controls="" preload="metadata" style="max-height: 50vh" src="https://montague.lit/video.mp4"></video><!----> ` ) ;
2019-01-31 19:22:30 +01:00
2020-04-22 13:11:48 +02:00
// If the <url> and <body> contents is the same, don't duplicate.
stanza = u . toStanza ( `
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > https : //montague.lit/video.mp4</body>
< x xmlns = "jabber:x:oob" > < url > https : //montague.lit/video.mp4</url></x>
< / m e s s a g e > ` ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-12-08 12:54:14 +01:00
msg = view . querySelector ( '.chat-msg:last-child .chat-msg__text' ) ;
2020-05-15 14:33:31 +02:00
expect ( msg . innerHTML . replace ( /<!---->/g , '' ) ) . toEqual ( 'Have you seen this funny video?' ) ;
2020-12-08 12:54:14 +01:00
media = view . querySelector ( '.chat-msg:last-child .chat-msg__media' ) ;
2020-04-22 13:11:48 +02:00
expect ( media . innerHTML . replace ( /(\r\n|\n|\r)/gm , "" ) ) . toEqual (
` <!----><video controls="" preload="metadata" style="max-height: 50vh" src="https://montague.lit/video.mp4"></video><!----> ` ) ;
2019-01-31 19:22:30 +01:00
done ( ) ;
} ) ) ;
2020-04-22 13:11:48 +02:00
it ( "will render download links for files from oob URLs" ,
2019-02-13 19:31:05 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2019-02-13 19:31:05 +01:00
async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
const view = _converse . api . chatviews . get ( contact _jid ) ;
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
2019-02-13 19:31:05 +01:00
const stanza = u . toStanza ( `
2020-04-22 13:11:48 +02:00
< message from = "${contact_jid}"
type = "chat"
to = "romeo@montague.lit/orchard" >
< body > Have you downloaded this funny file ? < / b o d y >
< x xmlns = "jabber:x:oob" > < url > https : //montague.lit/funny.pdf</url></x>
2019-02-13 19:31:05 +01:00
< / m e s s a g e > ` ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-05-15 14:33:31 +02:00
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg a' ) . length , 1000 ) ;
const msg = view . querySelector ( '.chat-msg .chat-msg__text' ) ;
2020-04-22 13:11:48 +02:00
expect ( u . hasClass ( 'chat-msg__text' , msg ) ) . toBe ( true ) ;
expect ( msg . textContent ) . toEqual ( 'Have you downloaded this funny file?' ) ;
2020-12-08 12:54:14 +01:00
const media = view . querySelector ( '.chat-msg .chat-msg__media' ) ;
2020-04-22 13:11:48 +02:00
expect ( media . innerHTML . replace ( /(\r\n|\n|\r)/gm , "" ) ) . toEqual (
` <!----><a target="_blank" rel="noopener" href="https://montague.lit/funny.pdf"><!---->Download file "funny.pdf"<!----></a><!----> ` ) ;
2019-02-13 19:31:05 +01:00
done ( ) ;
} ) ) ;
2020-04-22 13:11:48 +02:00
it ( "will render images from oob URLs" ,
2019-02-12 14:21:45 +01:00
mock . initConverse (
2021-01-29 11:08:28 +01:00
[ 'chatBoxesFetched' ] , { } ,
2019-01-31 19:22:30 +01:00
async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
const base _url = 'https://conversejs.org' ;
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
2019-06-03 07:58:51 +02:00
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2020-04-22 13:11:48 +02:00
await mock . openChatBoxFor ( _converse , contact _jid )
2019-02-22 21:43:49 +01:00
const view = _converse . api . chatviews . get ( contact _jid ) ;
2020-04-22 13:11:48 +02:00
spyOn ( view . model , 'sendMessage' ) . and . callThrough ( ) ;
const url = base _url + "/logo/conversejs-filled.svg" ;
2019-01-31 19:22:30 +01:00
2020-04-22 13:11:48 +02:00
const stanza = u . toStanza ( `
< message from = "${contact_jid}"
2019-01-31 19:22:30 +01:00
type = "chat"
2020-04-22 13:11:48 +02:00
to = "romeo@montague.lit/orchard" >
< body > Have you seen this funny image ? < / b o d y >
< x xmlns = "jabber:x:oob" > < url > $ { url } < / u r l > < / x >
2019-02-12 14:21:45 +01:00
< / m e s s a g e > ` ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-09-29 13:38:44 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await new Promise ( resolve => view . model . messages . once ( 'rendered' , resolve ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelectorAll ( '.chat-content .chat-msg a' ) . length , 1000 ) ;
const msg = view . querySelector ( '.chat-msg .chat-msg__text' ) ;
2020-04-22 13:11:48 +02:00
expect ( u . hasClass ( 'chat-msg__text' , msg ) ) . toBe ( true ) ;
expect ( msg . textContent ) . toEqual ( 'Have you seen this funny image?' ) ;
2020-12-08 12:54:14 +01:00
const media = view . querySelector ( '.chat-msg .chat-msg__media' ) ;
2020-07-09 08:57:25 +02:00
expect ( media . innerHTML . replace ( /<!---->/g , '' ) . replace ( /(\r\n|\n|\r)/gm , "" ) ) . toEqual (
2020-09-29 13:38:44 +02:00
` <a target="_blank" rel="noopener" href=" ${ base _url } /logo/conversejs-filled.svg"> ` +
` Download image file "conversejs-filled.svg"</a> ` ) ;
2019-01-31 19:22:30 +01:00
done ( ) ;
} ) ) ;
} ) ;
2020-04-22 12:10:39 +02:00
} ) ;