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 { $iq , $pres , $msg , omemo , Strophe } = converse . env ;
2020-04-22 13:11:48 +02:00
const u = converse . env . utils ;
async function deviceListFetched ( _converse , jid ) {
const selector = ` iq[to=" ${ jid } "] items[node="eu.siacs.conversations.axolotl.devicelist"] ` ;
const stanza = await u . waitUntil (
( ) => Array . from ( _converse . connection . IQ _stanzas ) . filter ( iq => iq . querySelector ( selector ) ) . pop ( )
) ;
await u . waitUntil ( ( ) => _converse . devicelists . get ( jid ) ) ;
return stanza ;
}
function ownDeviceHasBeenPublished ( _converse ) {
return _ . filter (
Array . from ( _converse . connection . IQ _stanzas ) ,
iq => iq . querySelector ( 'iq[from="' + _converse . bare _jid + '"] publish[node="eu.siacs.conversations.axolotl.devicelist"]' )
) . pop ( ) ;
}
function bundleHasBeenPublished ( _converse ) {
const selector = 'publish[node="eu.siacs.conversations.axolotl.bundles:123456789"]' ;
return Array . from ( _converse . connection . IQ _stanzas ) . filter ( iq => iq . querySelector ( selector ) ) . pop ( ) ;
}
function bundleFetched ( _converse , jid , device _id ) {
return _ . filter (
Array . from ( _converse . connection . IQ _stanzas ) ,
iq => iq . querySelector ( ` iq[to=" ${ jid } "] items[node="eu.siacs.conversations.axolotl.bundles: ${ device _id } "] ` )
) . pop ( ) ;
}
async function initializedOMEMO ( _converse ) {
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , _converse . bare _jid ) ) ;
let stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '482886413b977930064a5888b92134fe' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => ownDeviceHasBeenPublished ( _converse ) )
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-09-18 12:55:24 +02:00
2020-04-22 13:11:48 +02:00
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) )
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await _converse . api . waitUntil ( 'OMEMOInitialized' ) ;
}
2020-09-18 12:56:10 +02:00
describe ( "The OMEMO module" , function ( ) {
2020-04-22 13:11:48 +02:00
it ( "adds methods for encrypting and decrypting messages via AES GCM" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
const message = 'This message will be encrypted'
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
2020-09-06 12:30:30 +02:00
const payload = await omemo . encryptMessage ( message ) ;
const result = await omemo . decryptMessage ( payload ) ;
2020-04-22 13:11:48 +02:00
expect ( result ) . toBe ( message ) ;
done ( ) ;
} ) ) ;
it ( "enables encrypted messages to be sent and received" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
let sent _stanza ;
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
let stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . connection . jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
const devicelist = _converse . devicelists . get ( { 'jid' : contact _jid } ) ;
await u . waitUntil ( ( ) => devicelist . devices . length === 1 ) ;
const view = _converse . chatboxviews . get ( contact _jid ) ;
view . model . set ( 'omemo_active' , true ) ;
2020-12-08 12:54:14 +01:00
const textarea = view . querySelector ( '.chat-textarea' ) ;
2020-04-22 13:11:48 +02:00
textarea . value = 'This message will be encrypted' ;
2021-02-11 15:05:04 +01:00
const bottom _panel = view . querySelector ( 'converse-chat-bottom-panel' ) ;
bottom _panel . onKeyDown ( {
2020-04-22 13:11:48 +02:00
target : textarea ,
preventDefault : function preventDefault ( ) { } ,
keyCode : 13 // Enter
} ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , contact _jid , '555' ) ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:555" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '1111' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '2222' ) ) . up ( )
. c ( 'identityKey' ) . t ( btoa ( '3333' ) ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1001' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1002' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1003' ) ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , _converse . bare _jid , '482886413b977930064a5888b92134fe' ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:482886413b977930064a5888b92134fe" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '100000' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '200000' ) ) . up ( )
. c ( 'identityKey' ) . t ( btoa ( '300000' ) ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1991' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1992' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1993' ) ) ;
spyOn ( _converse . connection , 'send' ) . and . callFake ( stanza => { sent _stanza = stanza } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => sent _stanza ) ;
expect ( sent _stanza . toLocaleString ( ) ) . toBe (
` <message from="romeo@montague.lit/orchard" id=" ${ sent _stanza . nodeTree . getAttribute ( "id" ) } " ` +
` to="mercutio@montague.lit" ` +
` type="chat" xmlns="jabber:client"> ` +
` <body>This is an OMEMO encrypted message which your client doesn’ t seem to support. Find more information on https://conversations.im/omemo</body> ` +
` <request xmlns="urn:xmpp:receipts"/> ` +
` <encrypted xmlns="eu.siacs.conversations.axolotl"> ` +
` <header sid="123456789"> ` +
` <key rid="482886413b977930064a5888b92134fe">YzFwaDNSNzNYNw==</key> ` +
` <key rid="555">YzFwaDNSNzNYNw==</key> ` +
` <iv> ${ sent _stanza . nodeTree . querySelector ( "iv" ) . textContent } </iv> ` +
` </header> ` +
` <payload> ${ sent _stanza . nodeTree . querySelector ( "payload" ) . textContent } </payload> ` +
` </encrypted> ` +
` <store xmlns="urn:xmpp:hints"/> ` +
` </message> ` ) ;
// Test reception of an encrypted message
2020-09-06 12:30:30 +02:00
let obj = await omemo . encryptMessage ( 'This is an encrypted message from the contact' )
2020-04-22 13:11:48 +02:00
// XXX: Normally the key will be encrypted via libsignal.
2020-09-06 12:30:30 +02:00
// However, we're mocking libsignal in the tests, so we include it as plaintext in the message.
2020-04-22 13:11:48 +02:00
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : _converse . connection . getUniqueId ( )
} ) . c ( 'body' ) . t ( 'This is a fallback message' ) . up ( )
. c ( 'encrypted' , { 'xmlns' : Strophe . NS . OMEMO } )
. c ( 'header' , { 'sid' : '555' } )
. c ( 'key' , { 'rid' : _converse . omemo _store . get ( 'device_id' ) } ) . t ( u . arrayBufferToBase64 ( obj . key _and _tag ) ) . up ( )
. c ( 'iv' ) . t ( obj . iv )
. up ( ) . up ( )
. c ( 'payload' ) . t ( obj . payload ) ;
_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-04-22 13:11:48 +02:00
expect ( view . model . messages . length ) . toBe ( 2 ) ;
2020-12-08 12:54:14 +01:00
expect ( view . querySelectorAll ( '.chat-msg__body' ) [ 1 ] . textContent . trim ( ) )
2020-04-22 13:11:48 +02:00
. toBe ( 'This is an encrypted message from the contact' ) ;
// #1193 Check for a received message without <body> tag
2020-09-06 12:30:30 +02:00
obj = await omemo . encryptMessage ( 'Another received encrypted message without fallback' )
2020-04-22 13:11:48 +02:00
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : _converse . connection . getUniqueId ( )
} ) . c ( 'encrypted' , { 'xmlns' : Strophe . NS . OMEMO } )
. c ( 'header' , { 'sid' : '555' } )
. c ( 'key' , { 'rid' : _converse . omemo _store . get ( 'device_id' ) } ) . t ( u . arrayBufferToBase64 ( obj . key _and _tag ) ) . up ( )
. c ( 'iv' ) . t ( obj . iv )
. up ( ) . up ( )
. c ( 'payload' ) . t ( obj . payload ) ;
_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-04-22 13:11:48 +02:00
await u . waitUntil ( ( ) => view . model . messages . length > 1 ) ;
expect ( view . model . messages . length ) . toBe ( 3 ) ;
2020-12-08 12:54:14 +01:00
expect ( view . querySelectorAll ( '.chat-msg__body' ) [ 2 ] . textContent . trim ( ) )
2020-04-22 13:11:48 +02:00
. toBe ( 'Another received encrypted message without fallback' ) ;
done ( ) ;
} ) ) ;
it ( "enables encrypted groupchat messages to be sent and received" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
// MEMO encryption works only in members only conferences
// that are non-anonymous.
const features = [
'http://jabber.org/protocol/muc' ,
'jabber:iq:register' ,
'muc_passwordprotected' ,
'muc_hidden' ,
'muc_temporary' ,
'muc_membersonly' ,
'muc_unmoderated' ,
'muc_nonanonymous'
] ;
await mock . openAndEnterChatRoom ( _converse , 'lounge@montague.lit' , 'romeo' , features ) ;
const view = _converse . chatboxviews . get ( 'lounge@montague.lit' ) ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
2021-02-11 15:05:04 +01:00
const toolbar = await u . waitUntil ( ( ) => view . querySelector ( '.chat-toolbar' ) ) ;
2020-09-18 12:55:24 +02:00
const el = await u . waitUntil ( ( ) => toolbar . querySelector ( '.toggle-omemo' ) ) ;
el . click ( ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
// newguy enters the room
const contact _jid = 'newguy@montague.lit' ;
let stanza = $pres ( {
'to' : 'romeo@montague.lit/orchard' ,
'from' : 'lounge@montague.lit/newguy'
} )
. c ( 'x' , { xmlns : Strophe . NS . MUC _USER } )
. c ( 'item' , {
'affiliation' : 'none' ,
'jid' : 'newguy@montague.lit/_converse.js-290929789' ,
'role' : 'participant'
} ) . tree ( ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
// Wait for Converse to fetch newguy's device list
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ contact _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
// The server returns his device list
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '4e30f35051b7b8b42abe083742187228' } ) . up ( )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
const devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 1 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '4e30f35051b7b8b42abe083742187228' ) ;
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
2020-06-08 12:12:49 +02:00
const icon = toolbar . querySelector ( '.toggle-omemo converse-icon' ) ;
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( false ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
2020-12-08 12:54:14 +01:00
const textarea = view . querySelector ( '.chat-textarea' ) ;
2020-04-22 13:11:48 +02:00
textarea . value = 'This message will be encrypted' ;
2021-02-11 15:05:04 +01:00
const bottom _panel = view . querySelector ( 'converse-muc-bottom-panel' ) ;
bottom _panel . onKeyDown ( {
2020-04-22 13:11:48 +02:00
target : textarea ,
preventDefault : function preventDefault ( ) { } ,
keyCode : 13 // Enter
} ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , contact _jid , '4e30f35051b7b8b42abe083742187228' ) , 1000 ) ;
console . log ( "Bundle fetched 4e30f35051b7b8b42abe083742187228" ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:4e30f35051b7b8b42abe083742187228" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '1111' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '2222' ) ) . up ( )
. c ( 'identityKey' ) . t ( btoa ( '3333' ) ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1001' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1002' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1003' ) ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , _converse . bare _jid , '482886413b977930064a5888b92134fe' ) , 1000 ) ;
console . log ( "Bundle fetched 482886413b977930064a5888b92134fe" ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:482886413b977930064a5888b92134fe" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '100000' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '200000' ) ) . up ( )
. c ( 'identityKey' ) . t ( btoa ( '300000' ) ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1991' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1992' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1993' ) ) ;
spyOn ( _converse . connection , 'send' ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . connection . send . calls . count ( ) , 1000 ) ;
const sent _stanza = _converse . connection . send . calls . all ( ) [ 0 ] . args [ 0 ] ;
expect ( Strophe . serialize ( sent _stanza ) ) . toBe (
` <message from="romeo@montague.lit/orchard" ` +
` id=" ${ sent _stanza . nodeTree . getAttribute ( "id" ) } " ` +
` to="lounge@montague.lit" ` +
` type="groupchat" ` +
` xmlns="jabber:client"> ` +
` <body>This is an OMEMO encrypted message which your client doesn’ t seem to support. Find more information on https://conversations.im/omemo</body> ` +
` <encrypted xmlns="eu.siacs.conversations.axolotl"> ` +
` <header sid="123456789"> ` +
` <key rid="482886413b977930064a5888b92134fe">YzFwaDNSNzNYNw==</key> ` +
` <key rid="4e30f35051b7b8b42abe083742187228">YzFwaDNSNzNYNw==</key> ` +
` <iv> ${ sent _stanza . nodeTree . querySelector ( "iv" ) . textContent } </iv> ` +
` </header> ` +
` <payload> ${ sent _stanza . nodeTree . querySelector ( "payload" ) . textContent } </payload> ` +
` </encrypted> ` +
` <store xmlns="urn:xmpp:hints"/> ` +
` </message> ` ) ;
done ( ) ;
} ) ) ;
it ( "will create a new device based on a received carbon message" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed ( _converse , _converse . bare _jid , [ ] , [ Strophe . NS . SID ] ) ;
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
2020-09-06 12:30:30 +02:00
const my _devicelist = _converse . devicelists . get ( { 'jid' : _converse . bare _jid } ) ;
expect ( my _devicelist . devices . length ) . toBe ( 2 ) ;
2020-04-22 13:11:48 +02:00
const stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . connection . jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
2020-09-06 12:30:30 +02:00
const contact _devicelist = _converse . devicelists . get ( { 'jid' : contact _jid } ) ;
await u . waitUntil ( ( ) => contact _devicelist . devices . length === 1 ) ;
2020-04-22 13:11:48 +02:00
const view = _converse . chatboxviews . get ( contact _jid ) ;
view . model . set ( 'omemo_active' , true ) ;
// Test reception of an encrypted carbon message
2020-09-06 12:30:30 +02:00
const obj = await omemo . encryptMessage ( 'This is an encrypted carbon message from another device of mine' )
2020-04-22 13:11:48 +02:00
const carbon = u . toStanza ( `
< message xmlns = "jabber:client" to = "romeo@montague.lit/orchard" from = "romeo@montague.lit" type = "chat" >
< sent xmlns = "urn:xmpp:carbons:2" >
< forwarded xmlns = "urn:xmpp:forward:0" >
< message xmlns = "jabber:client"
from = "romeo@montague.lit/gajim.HE02SW1L"
xml : lang = "en"
to = "${contact_jid}/gajim.0LATM5V2"
type = "chat" id = "87141781-61d6-4eb3-9a31-429935a61b76" >
< archived xmlns = "urn:xmpp:mam:tmp" by = "romeo@montague.lit" id = "1554033877043470" / >
< stanza - id xmlns = "urn:xmpp:sid:0" by = "romeo@montague.lit" id = "1554033877043470" / >
< request xmlns = "urn:xmpp:receipts" / >
< active xmlns = "http://jabber.org/protocol/chatstates" / >
< origin - id xmlns = "urn:xmpp:sid:0" id = "87141781-61d6-4eb3-9a31-429935a61b76" / >
< encrypted xmlns = "eu.siacs.conversations.axolotl" >
< header sid = "988349631" >
< key rid = "${_converse.omemo_store.get('device_id')}"
prekey = "true" > $ { u . arrayBufferToBase64 ( obj . key _and _tag ) } < / k e y >
< iv > $ { obj . iv } < / i v >
< / h e a d e r >
< payload > $ { obj . payload } < / p a y l o a d >
< / e n c r y p t e d >
< encryption xmlns = "urn:xmpp:eme:0" namespace = "eu.siacs.conversations.axolotl" name = "OMEMO" / >
< store xmlns = "urn:xmpp:hints" / >
< / m e s s a g e >
< / f o r w a r d e d >
< / s e n t >
< / m e s s a g e >
` );
2020-09-18 12:55:24 +02:00
_converse . connection . IQ _stanzas = [ ] ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( carbon ) ) ;
2020-09-18 12:55:24 +02:00
// The message received is a prekey message, so missing prekeys are
// generated and a new bundle published.
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) ) ;
const result _iq = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( result _iq ) ) ;
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
expect ( view . model . messages . length ) . toBe ( 1 ) ;
2020-06-04 17:26:18 +02:00
2020-12-08 12:54:14 +01:00
expect ( view . querySelector ( '.chat-msg__text' ) . textContent . trim ( ) )
2020-04-22 13:11:48 +02:00
. toBe ( 'This is an encrypted carbon message from another device of mine' ) ;
2020-09-06 12:30:30 +02:00
expect ( contact _devicelist . devices . length ) . toBe ( 1 ) ;
// Check that the new device id has been added to my devices
expect ( my _devicelist . devices . length ) . toBe ( 3 ) ;
expect ( my _devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '482886413b977930064a5888b92134fe' ) ;
expect ( my _devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '123456789' ) ;
expect ( my _devicelist . devices . at ( 2 ) . get ( 'id' ) ) . toBe ( '988349631' ) ;
expect ( my _devicelist . devices . get ( '988349631' ) . get ( 'active' ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
2020-12-08 12:54:14 +01:00
const textarea = view . querySelector ( '.chat-textarea' ) ;
2020-04-22 13:11:48 +02:00
textarea . value = 'This is an encrypted message from this device' ;
2021-02-11 15:05:04 +01:00
const bottom _panel = view . querySelector ( 'converse-chat-bottom-panel' ) ;
bottom _panel . onKeyDown ( {
2020-04-22 13:11:48 +02:00
target : textarea ,
preventDefault : function preventDefault ( ) { } ,
keyCode : 13 // Enter
} ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , _converse . bare _jid , '988349631' ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ _converse . bare _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.bundles:988349631"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
done ( ) ;
} ) ) ;
it ( "gracefully handles auth errors when trying to send encrypted groupchat messages" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
// MEMO encryption works only in members only conferences
// that are non-anonymous.
const features = [
'http://jabber.org/protocol/muc' ,
'jabber:iq:register' ,
'muc_passwordprotected' ,
'muc_hidden' ,
'muc_temporary' ,
'muc_membersonly' ,
'muc_unmoderated' ,
'muc_nonanonymous'
] ;
await mock . openAndEnterChatRoom ( _converse , 'lounge@montague.lit' , 'romeo' , features ) ;
const view = _converse . chatboxviews . get ( 'lounge@montague.lit' ) ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
const contact _jid = 'newguy@montague.lit' ;
let stanza = $pres ( {
'to' : 'romeo@montague.lit/orchard' ,
'from' : 'lounge@montague.lit/newguy'
} )
. c ( 'x' , { xmlns : Strophe . NS . MUC _USER } )
. c ( 'item' , {
'affiliation' : 'none' ,
'jid' : 'newguy@montague.lit/_converse.js-290929789' ,
'role' : 'participant'
} ) . tree ( ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2021-02-11 15:05:04 +01:00
const toolbar = await u . waitUntil ( ( ) => view . querySelector ( '.chat-toolbar' ) ) ;
2020-09-18 12:55:24 +02:00
const toggle = await u . waitUntil ( ( ) => toolbar . querySelector ( '.toggle-omemo' ) ) ;
2020-04-22 13:11:48 +02:00
toggle . click ( ) ;
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( true ) ;
2021-02-11 15:05:04 +01:00
const textarea = await u . waitUntil ( ( ) => view . querySelector ( '.chat-textarea' ) ) ;
2020-04-22 13:11:48 +02:00
textarea . value = 'This message will be encrypted' ;
2021-02-11 15:05:04 +01:00
const bottom _panel = view . querySelector ( 'converse-muc-bottom-panel' ) ;
bottom _panel . onKeyDown ( {
2020-04-22 13:11:48 +02:00
target : textarea ,
preventDefault : function preventDefault ( ) { } ,
keyCode : 13 // Enter
} ) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ contact _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '4e30f35051b7b8b42abe083742187228' } ) . up ( )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
const devicelist = _converse . devicelists . get ( contact _jid ) ;
await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( devicelist . devices . length ) . toBe ( 1 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '4e30f35051b7b8b42abe083742187228' ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , _converse . bare _jid , '482886413b977930064a5888b92134fe' ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:482886413b977930064a5888b92134fe" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '100000' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '200000' ) ) . up ( )
. c ( 'identityKey' ) . t ( btoa ( '300000' ) ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1991' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1992' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1993' ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , contact _jid , '4e30f35051b7b8b42abe083742187228' ) ) ;
/ * < i q x m l n s = " j a b b e r : c l i e n t " t o = " j c @ o p k o d e . c o m / c o n v e r s e . j s - 3 4 1 8 3 9 0 7 " t y p e = " e r r o r " i d = " 9 4 5 c 8 a b 3 - b 5 6 1 - 4 d 8 a - 9 2 d a - 7 7 c 2 2 6 b b 1 6 8 9 : s e n d I Q " f r o m = " j o r i s @ k o n u r o . n e t " >
* < pubsub xmlns = "http://jabber.org/protocol/pubsub" >
* < items node = "eu.siacs.conversations.axolotl.bundles:7580" / >
* < / p u b s u b >
* < error code = "401" type = "auth" >
* < presence - subscription - required xmlns = "http://jabber.org/protocol/pubsub#errors" / >
* < not - authorized xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" / >
* < / e r r o r >
* < / i q >
* /
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : 'http://jabber.org/protocol/pubsub' } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:4e30f35051b7b8b42abe083742187228" } ) . up ( ) . up ( )
. c ( 'error' , { 'code' : '401' , 'type' : 'auth' } )
. c ( 'presence-subscription-required' , { 'xmlns' : "http://jabber.org/protocol/pubsub#errors" } ) . up ( )
. c ( 'not-authorized' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => document . querySelectorAll ( '.alert-danger' ) . length , 2000 ) ;
const header = document . querySelector ( '.alert-danger .modal-title' ) ;
expect ( header . textContent ) . toBe ( "Error" ) ;
expect ( u . ancestor ( header , '.modal-content' ) . querySelector ( '.modal-body p' ) . textContent . trim ( ) )
. toBe ( "Sorry, we're unable to send an encrypted message because newguy@montague.lit requires you " +
"to be subscribed to their presence in order to see their OMEMO information" ) ;
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( false ) ;
2020-12-08 12:54:14 +01:00
expect ( view . querySelector ( '.chat-textarea' ) . value ) . toBe ( 'This message will be encrypted' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "can receive a PreKeySignalMessage" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
_converse . NUM _PREKEYS = 5 ; // Restrict to 5, otherwise the resulting stanza is too large to easily test
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
2020-09-06 12:30:30 +02:00
const obj = await omemo . encryptMessage ( 'This is an encrypted message from the contact' ) ;
2020-04-22 13:11:48 +02:00
// XXX: Normally the key will be encrypted via libsignal.
// However, we're mocking libsignal in the tests, so we include
// it as plaintext in the message.
let stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . connection . jid ,
'type' : 'chat' ,
'id' : 'qwerty'
} ) . c ( 'body' ) . t ( 'This is a fallback message' ) . up ( )
. c ( 'encrypted' , { 'xmlns' : Strophe . NS . OMEMO } )
. c ( 'header' , { 'sid' : '555' } )
. c ( 'key' , {
'prekey' : 'true' ,
'rid' : _converse . omemo _store . get ( 'device_id' )
} ) . t ( u . arrayBufferToBase64 ( obj . key _and _tag ) ) . up ( )
. c ( 'iv' ) . t ( obj . iv )
. up ( ) . up ( )
. c ( 'payload' ) . t ( obj . payload ) ;
const generateMissingPreKeys = _converse . omemo _store . generateMissingPreKeys ;
spyOn ( _converse . omemo _store , 'generateMissingPreKeys' ) . and . callFake ( ( ) => {
// Since it's difficult to override
// decryptPreKeyWhisperMessage, where a prekey will be
// removed from the store, we do it here, before the
// missing prekeys are generated.
_converse . omemo _store . removePreKey ( 1 ) ;
return generateMissingPreKeys . apply ( _converse . omemo _store , arguments ) ;
} ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2020-09-06 12:30:30 +02:00
let iq _stanza = await deviceListFetched ( _converse , contact _jid ) ;
2020-04-22 13:11:48 +02:00
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . connection . jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
// XXX: the bundle gets published twice, we want to make sure
// that we wait for the 2nd, so we clear all the already sent
// stanzas.
_converse . connection . IQ _stanzas = [ ] ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
2020-06-08 12:12:49 +02:00
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) , 1000 ) ;
2020-04-22 13:11:48 +02:00
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " type="set" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <publish node="eu.siacs.conversations.axolotl.bundles:123456789"> ` +
` <item> ` +
` <bundle xmlns="eu.siacs.conversations.axolotl"> ` +
` <signedPreKeyPublic signedPreKeyId="0"> ${ btoa ( "1234" ) } </signedPreKeyPublic> ` +
` <signedPreKeySignature> ${ btoa ( "11112222333344445555" ) } </signedPreKeySignature> ` +
` <identityKey> ${ btoa ( "1234" ) } </identityKey> ` +
` <prekeys> ` +
` <preKeyPublic preKeyId="0"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` <preKeyPublic preKeyId="1"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` <preKeyPublic preKeyId="2"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` <preKeyPublic preKeyId="3"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` <preKeyPublic preKeyId="4"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` </prekeys> ` +
` </bundle> ` +
` </item> ` +
` </publish> ` +
` <publish-options> ` +
` <x type="submit" xmlns="jabber:x:data"> ` +
` <field type="hidden" var="FORM_TYPE"> ` +
` <value>http://jabber.org/protocol/pubsub#publish-options</value> ` +
` </field> ` +
` <field var="pubsub#access_model"> ` +
` <value>open</value> ` +
` </field> ` +
` </x> ` +
` </publish-options> ` +
` </pubsub> ` +
` </iq> ` )
const own _device = _converse . devicelists . get ( _converse . bare _jid ) . devices . get ( _converse . omemo _store . get ( 'device_id' ) ) ;
expect ( own _device . get ( 'bundle' ) . prekeys . length ) . toBe ( 5 ) ;
expect ( _converse . omemo _store . generateMissingPreKeys ) . toHaveBeenCalled ( ) ;
done ( ) ;
} ) ) ;
it ( "updates device lists based on PEP messages" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ ] , { 'allow_non_roster_messaging' : true } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
2020-02-03 22:18:12 +01:00
) ;
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' ;
// Wait until own devices are fetched
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , _converse . bare _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to="romeo@montague.lit" type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
let stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . chatboxes . length ) . toBe ( 1 ) ;
expect ( _converse . devicelists . length ) . toBe ( 1 ) ;
const devicelist = _converse . devicelists . get ( _converse . bare _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 2 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '555' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '123456789' ) ;
iq _stanza = await u . waitUntil ( ( ) => ownDeviceHasBeenPublished ( _converse ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await _converse . api . waitUntil ( 'OMEMOInitialized' ) ;
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_01' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.devicelist' } )
. c ( 'item' )
. c ( 'list' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'device' , { 'id' : '1234' } )
. c ( 'device' , { 'id' : '4223' } )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
let devices = _converse . devicelists . get ( contact _jid ) . devices ;
expect ( devices . length ) . toBe ( 2 ) ;
expect ( _ . map ( devices . models , 'attributes.id' ) . sort ( ) . join ( ) ) . toBe ( '1234,4223' ) ;
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_02' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.devicelist' } )
. c ( 'item' )
. c ( 'list' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'device' , { 'id' : '4223' } )
. c ( 'device' , { 'id' : '4224' } )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
expect ( devices . length ) . toBe ( 3 ) ;
expect ( _ . map ( devices . models , 'attributes.id' ) . sort ( ) . join ( ) ) . toBe ( '1234,4223,4224' ) ;
expect ( devices . get ( '1234' ) . get ( 'active' ) ) . toBe ( false ) ;
expect ( devices . get ( '4223' ) . get ( 'active' ) ) . toBe ( true ) ;
expect ( devices . get ( '4224' ) . get ( 'active' ) ) . toBe ( true ) ;
// Check that own devicelist gets updated
stanza = $msg ( {
'from' : _converse . bare _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_03' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.devicelist' } )
. c ( 'item' )
. c ( 'list' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'device' , { 'id' : '123456789' } )
. c ( 'device' , { 'id' : '555' } )
. c ( 'device' , { 'id' : '777' } )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devices = _converse . devicelists . get ( _converse . bare _jid ) . devices ;
expect ( devices . length ) . toBe ( 3 ) ;
expect ( _ . map ( devices . models , 'attributes.id' ) . sort ( ) . join ( ) ) . toBe ( '123456789,555,777' ) ;
expect ( devices . get ( '123456789' ) . get ( 'active' ) ) . toBe ( true ) ;
expect ( devices . get ( '555' ) . get ( 'active' ) ) . toBe ( true ) ;
expect ( devices . get ( '777' ) . get ( 'active' ) ) . toBe ( true ) ;
_converse . connection . IQ _stanzas = [ ] ;
// Check that own device gets re-added
stanza = $msg ( {
'from' : _converse . bare _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_04' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.devicelist' } )
. c ( 'item' )
. c ( 'list' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'device' , { 'id' : '444' } )
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => ownDeviceHasBeenPublished ( _converse ) ) ;
// Check that our own device is added again, but that removed
// devices are not added.
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( ` id ` ) } " type="set" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <publish node="eu.siacs.conversations.axolotl.devicelist"> ` +
2020-09-18 12:49:02 +02:00
` <item id="current"> ` +
2020-04-22 13:11:48 +02:00
` <list xmlns="eu.siacs.conversations.axolotl"> ` +
` <device id="123456789"/> ` +
` <device id="444"/> ` +
` </list> ` +
` </item> ` +
` </publish> ` +
` <publish-options> ` +
` <x type="submit" xmlns="jabber:x:data"> ` +
` <field type="hidden" var="FORM_TYPE"> ` +
` <value>http://jabber.org/protocol/pubsub#publish-options</value> ` +
` </field> ` +
` <field var="pubsub#access_model"> ` +
` <value>open</value> ` +
` </field> ` +
` </x> ` +
` </publish-options> ` +
` </pubsub> ` +
` </iq> ` ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devices = _converse . devicelists . get ( _converse . bare _jid ) . devices ;
// The device id for this device (123456789) was also generated and added to the list,
// which is why we have 2 devices now.
expect ( devices . length ) . toBe ( 4 ) ;
expect ( _ . map ( devices . models , 'attributes.id' ) . sort ( ) . join ( ) ) . toBe ( '123456789,444,555,777' ) ;
expect ( devices . get ( '123456789' ) . get ( 'active' ) ) . toBe ( true ) ;
expect ( devices . get ( '444' ) . get ( 'active' ) ) . toBe ( true ) ;
expect ( devices . get ( '555' ) . get ( 'active' ) ) . toBe ( false ) ;
expect ( devices . get ( '777' ) . get ( 'active' ) ) . toBe ( false ) ;
done ( ) ;
} ) ) ;
it ( "updates device bundles based on PEP messages" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
2018-12-19 08:14:58 +01:00
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
2020-04-22 13:11:48 +02:00
await mock . waitForRoster ( _converse , 'current' ) ;
const contact _jid = mock . cur _names [ 3 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
2019-07-11 22:50:30 +02:00
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , _converse . bare _jid ) ) ;
2020-04-22 13:11:48 +02:00
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to="romeo@montague.lit" type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
2018-10-15 23:18:06 +02:00
let stanza = $iq ( {
2020-04-22 13:11:48 +02:00
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . devicelists . length ) . toBe ( 1 ) ;
let devicelist = _converse . devicelists . get ( _converse . bare _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 2 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '555' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '123456789' ) ;
iq _stanza = await u . waitUntil ( ( ) => ownDeviceHasBeenPublished ( _converse ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await _converse . api . waitUntil ( 'OMEMOInitialized' ) ;
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_01' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.bundles:555' } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( '1111' ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( '2222' ) . up ( )
. c ( 'identityKey' ) . t ( '3333' ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1001' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '1002' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '1003' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 1 ) ;
let device = devicelist . devices . at ( 0 ) ;
expect ( device . get ( 'bundle' ) . identity _key ) . toBe ( '3333' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . public _key ) . toBe ( '1111' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . id ) . toBe ( 4223 ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . signature ) . toBe ( '2222' ) ;
expect ( device . get ( 'bundle' ) . prekeys . length ) . toBe ( 3 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 0 ] . id ) . toBe ( 1001 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 1 ] . id ) . toBe ( 1002 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 2 ] . id ) . toBe ( 1003 ) ;
stanza = $msg ( {
'from' : contact _jid ,
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_02' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.bundles:555' } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( '5555' ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( '6666' ) . up ( )
. c ( 'identityKey' ) . t ( '7777' ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '2001' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2002' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2003' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 1 ) ;
device = devicelist . devices . at ( 0 ) ;
expect ( device . get ( 'bundle' ) . identity _key ) . toBe ( '7777' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . public _key ) . toBe ( '5555' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . id ) . toBe ( 4223 ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . signature ) . toBe ( '6666' ) ;
expect ( device . get ( 'bundle' ) . prekeys . length ) . toBe ( 3 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 0 ] . id ) . toBe ( 2001 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 1 ] . id ) . toBe ( 2002 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 2 ] . id ) . toBe ( 2003 ) ;
stanza = $msg ( {
2018-10-15 23:18:06 +02:00
'from' : _converse . bare _jid ,
2020-04-22 13:11:48 +02:00
'to' : _converse . bare _jid ,
'type' : 'headline' ,
'id' : 'update_03' ,
} ) . c ( 'event' , { 'xmlns' : 'http://jabber.org/protocol/pubsub#event' } )
. c ( 'items' , { 'node' : 'eu.siacs.conversations.axolotl.bundles:123456789' } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '9999' } ) . t ( '8888' ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( '3333' ) . up ( )
. c ( 'identityKey' ) . t ( '1111' ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '3001' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3002' } ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3003' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devicelist = _converse . devicelists . get ( _converse . bare _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 2 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '555' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '123456789' ) ;
device = devicelist . devices . at ( 1 ) ;
expect ( device . get ( 'bundle' ) . identity _key ) . toBe ( '1111' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . public _key ) . toBe ( '8888' ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . id ) . toBe ( 9999 ) ;
expect ( device . get ( 'bundle' ) . signed _prekey . signature ) . toBe ( '3333' ) ;
expect ( device . get ( 'bundle' ) . prekeys . length ) . toBe ( 3 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 0 ] . id ) . toBe ( 3001 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 1 ] . id ) . toBe ( 3002 ) ;
expect ( device . get ( 'bundle' ) . prekeys [ 2 ] . id ) . toBe ( 3003 ) ;
done ( ) ;
} ) ) ;
it ( "publishes a bundle with which an encrypted session can be created" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
_converse . NUM _PREKEYS = 2 ; // Restrict to 2, otherwise the resulting stanza is too large to easily test
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , _converse . bare _jid ) ) ;
let stanza = $iq ( {
'from' : contact _jid ,
2019-05-20 12:38:33 +02:00
'id' : iq _stanza . getAttribute ( 'id' ) ,
2018-10-15 23:18:06 +02:00
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '482886413b977930064a5888b92134fe' } ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
expect ( _converse . devicelists . length ) . toBe ( 1 ) ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
iq _stanza = await ownDeviceHasBeenPublished ( _converse ) ;
2018-10-15 23:18:06 +02:00
stanza = $iq ( {
'from' : _converse . bare _jid ,
2019-05-20 12:38:33 +02:00
'id' : iq _stanza . getAttribute ( 'id' ) ,
2018-10-15 23:18:06 +02:00
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " type="set" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <publish node="eu.siacs.conversations.axolotl.bundles:123456789"> ` +
` <item> ` +
` <bundle xmlns="eu.siacs.conversations.axolotl"> ` +
` <signedPreKeyPublic signedPreKeyId="0"> ${ btoa ( "1234" ) } </signedPreKeyPublic> ` +
` <signedPreKeySignature> ${ btoa ( "11112222333344445555" ) } </signedPreKeySignature> ` +
` <identityKey> ${ btoa ( "1234" ) } </identityKey> ` +
` <prekeys> ` +
` <preKeyPublic preKeyId="0"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` <preKeyPublic preKeyId="1"> ${ btoa ( "1234" ) } </preKeyPublic> ` +
` </prekeys> ` +
` </bundle> ` +
` </item> ` +
` </publish> ` +
` <publish-options> ` +
` <x type="submit" xmlns="jabber:x:data"> ` +
` <field type="hidden" var="FORM_TYPE"> ` +
` <value>http://jabber.org/protocol/pubsub#publish-options</value> ` +
` </field> ` +
` <field var="pubsub#access_model"> ` +
` <value>open</value> ` +
` </field> ` +
` </x> ` +
` </publish-options> ` +
` </pubsub> ` +
` </iq> ` )
2018-10-15 23:18:06 +02:00
stanza = $iq ( {
'from' : _converse . bare _jid ,
2019-05-20 12:38:33 +02:00
'id' : iq _stanza . getAttribute ( 'id' ) ,
2018-10-15 23:18:06 +02:00
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
2020-04-22 13:11:48 +02:00
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
2018-10-15 23:18:06 +02:00
await _converse . api . waitUntil ( 'OMEMOInitialized' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
2018-12-19 17:18:36 +01:00
2020-04-22 13:11:48 +02:00
it ( "adds a toolbar button for starting an encrypted chat session" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2018-12-19 17:18:36 +01:00
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
2018-08-27 14:25:34 +02:00
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' ;
2018-10-15 23:18:06 +02:00
2020-04-22 13:11:48 +02:00
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , _converse . bare _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to="romeo@montague.lit" type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
2018-10-15 23:18:06 +02:00
2020-04-22 13:11:48 +02:00
let stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '482886413b977930064a5888b92134fe' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . devicelists . length ) . toBe ( 1 ) ;
let devicelist = _converse . devicelists . get ( _converse . bare _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 2 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '482886413b977930064a5888b92134fe' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '123456789' ) ;
// Check that own device was published
iq _stanza = await u . waitUntil ( ( ) => ownDeviceHasBeenPublished ( _converse ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( ` id ` ) } " type="set" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <publish node="eu.siacs.conversations.axolotl.devicelist"> ` +
2020-09-18 12:49:02 +02:00
` <item id="current"> ` +
2020-04-22 13:11:48 +02:00
` <list xmlns="eu.siacs.conversations.axolotl"> ` +
` <device id="482886413b977930064a5888b92134fe"/> ` +
` <device id="123456789"/> ` +
` </list> ` +
` </item> ` +
` </publish> ` +
` <publish-options> ` +
` <x type="submit" xmlns="jabber:x:data"> ` +
` <field type="hidden" var="FORM_TYPE"> ` +
` <value>http://jabber.org/protocol/pubsub#publish-options</value> ` +
` </field> ` +
` <field var="pubsub#access_model"> ` +
` <value>open</value> ` +
` </field> ` +
` </x> ` +
` </publish-options> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
const iq _el = await u . waitUntil ( ( ) => bundleHasBeenPublished ( _converse ) ) ;
expect ( iq _el . getAttributeNames ( ) . sort ( ) . join ( ) ) . toBe ( [ "from" , "type" , "xmlns" , "id" ] . sort ( ) . join ( ) ) ;
expect ( iq _el . querySelector ( 'prekeys' ) . childNodes . length ) . toBe ( 100 ) ;
const signed _prekeys = iq _el . querySelectorAll ( 'signedPreKeyPublic' ) ;
expect ( signed _prekeys . length ) . toBe ( 1 ) ;
const signed _prekey = signed _prekeys [ 0 ] ;
expect ( signed _prekey . getAttribute ( 'signedPreKeyId' ) ) . toBe ( '0' )
expect ( iq _el . querySelectorAll ( 'signedPreKeySignature' ) . length ) . toBe ( 1 ) ;
expect ( iq _el . querySelectorAll ( 'identityKey' ) . length ) . toBe ( 1 ) ;
stanza = $iq ( {
'from' : _converse . bare _jid ,
'id' : iq _el . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await _converse . api . waitUntil ( 'OMEMOInitialized' , 1000 ) ;
await mock . openChatBoxFor ( _converse , contact _jid ) ;
iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ contact _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '368866411b877c30064a5f62b917cffe' } ) . up ( )
. c ( 'device' , { 'id' : '3300659945416e274474e469a1f0154c' } ) . up ( )
. c ( 'device' , { 'id' : '4e30f35051b7b8b42abe083742187228' } ) . up ( )
. c ( 'device' , { 'id' : 'ae890ac52d0df67ed7cfdf51b644e901' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
devicelist = _converse . devicelists . get ( contact _jid ) ;
await u . waitUntil ( ( ) => devicelist . devices . length ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 4 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '368866411b877c30064a5f62b917cffe' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( '3300659945416e274474e469a1f0154c' ) ;
expect ( devicelist . devices . at ( 2 ) . get ( 'id' ) ) . toBe ( '4e30f35051b7b8b42abe083742187228' ) ;
expect ( devicelist . devices . at ( 3 ) . get ( 'id' ) ) . toBe ( 'ae890ac52d0df67ed7cfdf51b644e901' ) ;
2021-01-26 14:01:37 +01:00
await u . waitUntil ( ( ) => _converse . chatboxviews . get ( contact _jid ) . querySelector ( '.chat-toolbar' ) ) ;
2020-04-22 13:11:48 +02:00
const view = _converse . chatboxviews . get ( contact _jid ) ;
2020-12-08 12:54:14 +01:00
const toolbar = view . querySelector ( '.chat-toolbar' ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( undefined ) ;
2020-06-08 12:12:49 +02:00
const toggle = toolbar . querySelector ( '.toggle-omemo' ) ;
2020-04-22 13:11:48 +02:00
expect ( toggle === null ) . toBe ( false ) ;
2020-06-08 12:12:49 +02:00
expect ( u . hasClass ( 'fa-unlock' , toggle . querySelector ( 'converse-icon' ) ) ) . toBe ( true ) ;
expect ( u . hasClass ( 'fa-lock' , toggle . querySelector ( '.converse-icon' ) ) ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
view . delegateEvents ( ) ; // We need to rebind all events otherwise our spy won't be called
toolbar . querySelector ( '.toggle-omemo' ) . click ( ) ;
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => u . hasClass ( 'fa-lock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) ;
let icon = toolbar . querySelector ( '.toggle-omemo converse-icon' ) ;
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( false ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
2020-12-08 12:54:14 +01:00
const textarea = view . querySelector ( '.chat-textarea' ) ;
2020-04-22 13:11:48 +02:00
textarea . value = 'This message will be sent encrypted' ;
2021-02-11 15:05:04 +01:00
const bottom _panel = view . querySelector ( 'converse-chat-bottom-panel' ) ;
bottom _panel . onKeyDown ( {
2020-04-22 13:11:48 +02:00
target : textarea ,
preventDefault : function preventDefault ( ) { } ,
keyCode : 13
} ) ;
view . model . save ( { 'omemo_supported' : false } ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => toolbar . querySelector ( '.toggle-omemo' ) . disabled ) ;
icon = toolbar . querySelector ( '.toggle-omemo converse-icon' ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( false ) ;
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
view . model . save ( { 'omemo_supported' : true } ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => ! toolbar . querySelector ( '.toggle-omemo' ) . disabled ) ;
icon = toolbar . querySelector ( '.toggle-omemo converse-icon' ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( false ) ;
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "adds a toolbar button for starting an encrypted groupchat session" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
2021-01-26 14:01:37 +01:00
await mock . waitForRoster ( _converse , 'current' , 0 ) ;
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
// MEMO encryption works only in members-only conferences that are non-anonymous.
const features = [
'http://jabber.org/protocol/muc' ,
'jabber:iq:register' ,
'muc_passwordprotected' ,
'muc_hidden' ,
'muc_temporary' ,
'muc_membersonly' ,
'muc_unmoderated' ,
'muc_nonanonymous'
] ;
await mock . openAndEnterChatRoom ( _converse , 'lounge@montague.lit' , 'romeo' , features ) ;
const view = _converse . chatboxviews . get ( 'lounge@montague.lit' ) ;
await u . waitUntil ( ( ) => initializedOMEMO ( _converse ) ) ;
2021-02-11 15:05:04 +01:00
const toolbar = await u . waitUntil ( ( ) => view . querySelector ( '.chat-toolbar' ) ) ;
2020-09-18 12:55:24 +02:00
let toggle = await u . waitUntil ( ( ) => toolbar . querySelector ( '.toggle-omemo' ) ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( undefined ) ;
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( true ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => ! toggle . disabled ) ;
let icon = toolbar . querySelector ( '.toggle-omemo converse-icon' ) ;
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( true ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
toggle . click ( ) ;
toggle = toolbar . querySelector ( '.toggle-omemo' ) ;
2020-06-08 12:12:49 +02:00
expect ( ! ! toggle . disabled ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( true ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => ! u . hasClass ( 'fa-unlock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) ;
expect ( u . hasClass ( 'fa-lock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
let contact _jid = 'newguy@montague.lit' ;
let stanza = $pres ( {
to : 'romeo@montague.lit/orchard' ,
from : 'lounge@montague.lit/newguy'
} )
. c ( 'x' , { xmlns : Strophe . NS . MUC _USER } )
. c ( 'item' , {
'affiliation' : 'none' ,
'jid' : 'newguy@montague.lit/_converse.js-290929789' ,
'role' : 'participant'
} ) . tree ( ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ contact _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '4e30f35051b7b8b42abe083742187228' } ) . up ( )
. c ( 'device' , { 'id' : 'ae890ac52d0df67ed7cfdf51b644e901' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => _converse . omemo _store ) ;
expect ( _converse . devicelists . length ) . toBe ( 2 ) ;
await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
const devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . length ) . toBe ( 2 ) ;
expect ( devicelist . devices . at ( 0 ) . get ( 'id' ) ) . toBe ( '4e30f35051b7b8b42abe083742187228' ) ;
expect ( devicelist . devices . at ( 1 ) . get ( 'id' ) ) . toBe ( 'ae890ac52d0df67ed7cfdf51b644e901' ) ;
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
toggle = toolbar . querySelector ( '.toggle-omemo' ) ;
expect ( toggle === null ) . toBe ( false ) ;
2020-06-08 12:12:49 +02:00
expect ( ! ! toggle . disabled ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( true ) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => ! u . hasClass ( 'fa-unlock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) ;
expect ( u . hasClass ( 'fa-lock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( true ) ;
2020-04-22 13:11:48 +02:00
// Test that the button gets disabled when the room becomes
// anonymous or semi-anonymous
view . model . features . save ( { 'nonanonymous' : false , 'semianonymous' : true } ) ;
await u . waitUntil ( ( ) => ! view . model . get ( 'omemo_supported' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.toggle-omemo' ) . disabled ) ;
2020-04-22 13:11:48 +02:00
view . model . features . save ( { 'nonanonymous' : true , 'semianonymous' : false } ) ;
await u . waitUntil ( ( ) => view . model . get ( 'omemo_supported' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.toggle-omemo' ) !== null ) ;
2020-06-08 12:12:49 +02:00
expect ( u . hasClass ( 'fa-unlock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( true ) ;
expect ( u . hasClass ( 'fa-lock' , toolbar . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( false ) ;
2020-12-08 12:54:14 +01:00
expect ( ! ! view . querySelector ( '.toggle-omemo' ) . disabled ) . toBe ( false ) ;
2020-04-22 13:11:48 +02:00
// Test that the button gets disabled when the room becomes open
view . model . features . save ( { 'membersonly' : false , 'open' : true } ) ;
await u . waitUntil ( ( ) => ! view . model . get ( 'omemo_supported' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.toggle-omemo' ) . disabled ) ;
2020-04-22 13:11:48 +02:00
view . model . features . save ( { 'membersonly' : true , 'open' : false } ) ;
await u . waitUntil ( ( ) => view . model . get ( 'omemo_supported' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => ! view . querySelector ( '.toggle-omemo' ) . disabled ) ;
2020-06-08 12:12:49 +02:00
2020-12-08 12:54:14 +01:00
expect ( u . hasClass ( 'fa-unlock' , view . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( true ) ;
expect ( u . hasClass ( 'fa-lock' , view . querySelector ( '.toggle-omemo converse-icon' ) ) ) . toBe ( false ) ;
2020-06-08 12:12:49 +02:00
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_supported' ) ) . toBe ( true ) ;
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( false ) ;
2020-12-08 12:54:14 +01:00
view . querySelector ( '.toggle-omemo' ) . click ( ) ;
2020-04-22 13:11:48 +02:00
expect ( view . model . get ( 'omemo_active' ) ) . toBe ( true ) ;
// Someone enters the room who doesn't have OMEMO support, while we
// have OMEMO activated...
contact _jid = 'oldguy@montague.lit' ;
stanza = $pres ( {
to : 'romeo@montague.lit/orchard' ,
from : 'lounge@montague.lit/oldguy'
} )
. c ( 'x' , { xmlns : Strophe . NS . MUC _USER } )
. c ( 'item' , {
'affiliation' : 'none' ,
'jid' : ` ${ contact _jid } /_converse.js-290929788 ` ,
'role' : 'participant'
} ) . tree ( ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to=" ${ contact _jid } " type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.devicelist"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'error'
} ) . c ( 'error' , { 'type' : 'cancel' } )
. c ( 'item-not-found' , { 'xmlns' : "urn:ietf:params:xml:ns:xmpp-stanzas" } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => ! view . model . get ( 'omemo_supported' ) ) ;
2020-12-08 12:54:14 +01:00
await u . waitUntil ( ( ) => view . querySelector ( '.chat-error .chat-info__message' ) ? . textContent . trim ( ) ===
2020-04-22 13:11:48 +02:00
"oldguy doesn't appear to have a client that supports OMEMO. " +
"Encrypted chat will no longer be possible in this grouchat."
) ;
2020-06-08 12:12:49 +02:00
await u . waitUntil ( ( ) => toolbar . querySelector ( '.toggle-omemo' ) . disabled ) ;
2020-12-08 12:54:14 +01:00
icon = view . querySelector ( '.toggle-omemo converse-icon' ) ;
2020-06-08 12:12:49 +02:00
expect ( u . hasClass ( 'fa-unlock' , icon ) ) . toBe ( true ) ;
expect ( u . hasClass ( 'fa-lock' , icon ) ) . toBe ( false ) ;
expect ( toolbar . querySelector ( '.toggle-omemo' ) . title ) . toBe ( 'This groupchat needs to be members-only and non-anonymous in order to support OMEMO encrypted messages' ) ;
2020-04-22 13:11:48 +02:00
done ( ) ;
} ) ) ;
it ( "shows OMEMO device fingerprints in the user details modal" ,
2021-01-26 14:01:37 +01:00
mock . initConverse ( [ 'chatBoxesFetched' ] , { } , async function ( done , _converse ) {
2020-04-22 13:11:48 +02:00
await mock . waitUntilDiscoConfirmed (
_converse , _converse . bare _jid ,
[ { 'category' : 'pubsub' , 'type' : 'pep' } ] ,
[ 'http://jabber.org/protocol/pubsub#publish-options' ]
) ;
await mock . waitForRoster ( _converse , 'current' , 1 ) ;
const contact _jid = mock . cur _names [ 0 ] . replace ( / /g , '.' ) . toLowerCase ( ) + '@montague.lit' ;
await mock . openChatBoxFor ( _converse , contact _jid )
// We simply emit, to avoid doing all the setup work
_converse . api . trigger ( 'OMEMOInitialized' ) ;
const view = _converse . chatboxviews . get ( contact _jid ) ;
2020-12-08 12:54:14 +01:00
const show _modal _button = view . querySelector ( '.show-user-details-modal' ) ;
2020-04-22 13:11:48 +02:00
show _modal _button . click ( ) ;
2020-12-02 18:37:32 +01:00
const modal = _converse . api . modal . get ( 'user-details-modal' ) ;
2020-04-22 13:11:48 +02:00
await u . waitUntil ( ( ) => u . isVisible ( modal . el ) , 1000 ) ;
let iq _stanza = await u . waitUntil ( ( ) => deviceListFetched ( _converse , contact _jid ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to="mercutio@montague.lit" type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"><items node="eu.siacs.conversations.axolotl.devicelist"/></pubsub> ` +
` </iq> ` ) ;
let stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } )
. c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.devicelist" } )
. c ( 'item' , { 'xmlns' : "http://jabber.org/protocol/pubsub" } ) // TODO: must have an id attribute
. c ( 'list' , { 'xmlns' : "eu.siacs.conversations.axolotl" } )
. c ( 'device' , { 'id' : '555' } ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => u . isVisible ( modal . el ) , 1000 ) ;
iq _stanza = await u . waitUntil ( ( ) => bundleFetched ( _converse , contact _jid , '555' ) ) ;
expect ( Strophe . serialize ( iq _stanza ) ) . toBe (
` <iq from="romeo@montague.lit" id=" ${ iq _stanza . getAttribute ( "id" ) } " to="mercutio@montague.lit" type="get" xmlns="jabber:client"> ` +
` <pubsub xmlns="http://jabber.org/protocol/pubsub"> ` +
` <items node="eu.siacs.conversations.axolotl.bundles:555"/> ` +
` </pubsub> ` +
` </iq> ` ) ;
stanza = $iq ( {
'from' : contact _jid ,
'id' : iq _stanza . getAttribute ( 'id' ) ,
'to' : _converse . bare _jid ,
'type' : 'result' ,
} ) . c ( 'pubsub' , {
'xmlns' : 'http://jabber.org/protocol/pubsub'
} ) . c ( 'items' , { 'node' : "eu.siacs.conversations.axolotl.bundles:555" } )
. c ( 'item' )
. c ( 'bundle' , { 'xmlns' : 'eu.siacs.conversations.axolotl' } )
. c ( 'signedPreKeyPublic' , { 'signedPreKeyId' : '4223' } ) . t ( btoa ( '1111' ) ) . up ( )
. c ( 'signedPreKeySignature' ) . t ( btoa ( '2222' ) ) . up ( )
. c ( 'identityKey' ) . t ( 'BQmHEOHjsYm3w5M8VqxAtqJmLCi7CaxxsdZz6G0YpuMI' ) . up ( )
. c ( 'prekeys' )
. c ( 'preKeyPublic' , { 'preKeyId' : '1' } ) . t ( btoa ( '1001' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '2' } ) . t ( btoa ( '1002' ) ) . up ( )
. c ( 'preKeyPublic' , { 'preKeyId' : '3' } ) . t ( btoa ( '1003' ) ) ;
_converse . connection . _dataRecv ( mock . createRequest ( stanza ) ) ;
await u . waitUntil ( ( ) => modal . el . querySelectorAll ( '.fingerprints .fingerprint' ) . length ) ;
expect ( modal . el . querySelectorAll ( '.fingerprints .fingerprint' ) . length ) . toBe ( 1 ) ;
const el = modal . el . querySelector ( '.fingerprints .fingerprint' ) ;
expect ( el . textContent . trim ( ) ) . toBe (
u . formatFingerprint ( u . arrayBufferToHex ( u . base64ToArrayBuffer ( 'BQmHEOHjsYm3w5M8VqxAtqJmLCi7CaxxsdZz6G0YpuMI' ) ) )
) ;
expect ( modal . el . querySelectorAll ( 'input[type="radio"]' ) . length ) . toBe ( 2 ) ;
const devicelist = _converse . devicelists . get ( contact _jid ) ;
expect ( devicelist . devices . get ( '555' ) . get ( 'trusted' ) ) . toBe ( 0 ) ;
let trusted _radio = modal . el . querySelector ( 'input[type="radio"][name="555"][value="1"]' ) ;
expect ( trusted _radio . checked ) . toBe ( true ) ;
let untrusted _radio = modal . el . querySelector ( 'input[type="radio"][name="555"][value="-1"]' ) ;
expect ( untrusted _radio . checked ) . toBe ( false ) ;
// Test that the device can be set to untrusted
untrusted _radio . click ( ) ;
trusted _radio = document . querySelector ( 'input[type="radio"][name="555"][value="1"]' ) ;
expect ( trusted _radio . hasAttribute ( 'checked' ) ) . toBe ( false ) ;
expect ( devicelist . devices . get ( '555' ) . get ( 'trusted' ) ) . toBe ( - 1 ) ;
untrusted _radio = document . querySelector ( 'input[type="radio"][name="555"][value="-1"]' ) ;
expect ( untrusted _radio . hasAttribute ( 'checked' ) ) . toBe ( true ) ;
trusted _radio . click ( ) ;
expect ( devicelist . devices . get ( '555' ) . get ( 'trusted' ) ) . toBe ( 1 ) ;
done ( ) ;
} ) ) ;
2020-04-22 12:10:39 +02:00
} ) ;