2018-05-12 19:37:44 +02:00
|
|
|
|
(function (root, factory) {
|
2018-06-30 23:03:36 +02:00
|
|
|
|
define(["jasmine", "mock", "test-utils"], factory);
|
|
|
|
|
} (this, function (jasmine, mock, test_utils) {
|
2018-05-12 19:37:44 +02:00
|
|
|
|
var Strophe = converse.env.Strophe;
|
|
|
|
|
var b64_sha1 = converse.env.b64_sha1;
|
|
|
|
|
var $iq = converse.env.$iq;
|
2018-05-20 13:41:16 +02:00
|
|
|
|
var $msg = converse.env.$msg;
|
2018-05-12 19:37:44 +02:00
|
|
|
|
var _ = converse.env._;
|
2018-05-15 16:37:25 +02:00
|
|
|
|
var u = converse.env.utils;
|
2018-05-12 19:37:44 +02:00
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
|
|
|
|
function deviceListFetched (_converse, jid) {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
return _.filter(
|
2018-08-26 19:33:34 +02:00
|
|
|
|
_converse.connection.IQ_stanzas,
|
|
|
|
|
iq => iq.nodeTree.querySelector(`iq[to="${jid}"] items[node="eu.siacs.conversations.axolotl.devicelist"]`)
|
2018-09-25 14:05:56 +02:00
|
|
|
|
).pop();
|
2018-08-26 19:33:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ownDeviceHasBeenPublished (_converse) {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
return _.filter(
|
2018-08-26 19:33:34 +02:00
|
|
|
|
_converse.connection.IQ_stanzas,
|
|
|
|
|
iq => iq.nodeTree.querySelector('iq[from="'+_converse.bare_jid+'"] publish[node="eu.siacs.conversations.axolotl.devicelist"]')
|
2018-09-25 14:05:56 +02:00
|
|
|
|
).pop();
|
2018-08-26 19:33:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function bundleHasBeenPublished (_converse) {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
return _.filter(
|
2018-08-26 19:33:34 +02:00
|
|
|
|
_converse.connection.IQ_stanzas,
|
|
|
|
|
iq => iq.nodeTree.querySelector('publish[node="eu.siacs.conversations.axolotl.bundles:123456789"]')
|
2018-09-25 14:05:56 +02:00
|
|
|
|
).pop();
|
2018-08-26 19:33:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function bundleFetched (_converse, jid, device_id) {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
return _.filter(
|
2018-08-26 19:33:34 +02:00
|
|
|
|
_converse.connection.IQ_stanzas,
|
|
|
|
|
(iq) => iq.nodeTree.querySelector(`iq[to="${jid}"] items[node="eu.siacs.conversations.axolotl.bundles:${device_id}"]`)
|
2018-09-25 14:05:56 +02:00
|
|
|
|
).pop();
|
2018-08-26 19:33:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-27 14:25:34 +02:00
|
|
|
|
function initializedOMEMO (_converse) {
|
|
|
|
|
return test_utils.waitUntil(() => deviceListFetched(_converse, _converse.bare_jid))
|
|
|
|
|
.then(iq_stanza => {
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-27 14:25:34 +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'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return test_utils.waitUntil(() => ownDeviceHasBeenPublished(_converse))
|
|
|
|
|
}).then(iq_stanza => {
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-27 14:25:34 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return test_utils.waitUntil(() => bundleHasBeenPublished(_converse))
|
|
|
|
|
}).then(iq_stanza => {
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-27 14:25:34 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return _converse.api.waitUntil('OMEMOInitialized');
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
2018-05-12 19:37:44 +02:00
|
|
|
|
describe("The OMEMO module", function() {
|
|
|
|
|
|
2018-08-04 19:41:06 +02:00
|
|
|
|
it("adds methods for encrypting and decrypting messages via AES GCM",
|
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
2018-08-04 20:20:05 +02:00
|
|
|
|
const message = 'This message will be encrypted'
|
|
|
|
|
let view;
|
2018-08-04 19:41:06 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
|
|
|
|
_converse.emit('rosterContactsFetched');
|
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
|
test_utils.openChatBoxFor(_converse, contact_jid)
|
2018-08-04 20:20:05 +02:00
|
|
|
|
.then((v) => {
|
|
|
|
|
view = v;
|
|
|
|
|
return view.model.encryptMessage(message);
|
2018-08-31 17:15:03 +02:00
|
|
|
|
}).then(payload => {
|
2018-08-04 19:41:06 +02:00
|
|
|
|
return view.model.decryptMessage(payload);
|
2018-08-31 17:15:03 +02:00
|
|
|
|
}).then(result => {
|
2018-08-04 20:20:05 +02:00
|
|
|
|
expect(result).toBe(message);
|
|
|
|
|
done();
|
|
|
|
|
});
|
2018-08-04 19:41:06 +02:00
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
2018-07-28 16:36:23 +02:00
|
|
|
|
it("enables encrypted messages to be sent and received",
|
2018-08-04 08:39:14 +02:00
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
2018-07-25 12:59:12 +02:00
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
let view, sent_stanza;
|
2018-07-25 12:59:12 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
2018-08-04 08:39:14 +02:00
|
|
|
|
_converse.emit('rosterContactsFetched');
|
2018-07-25 12:59:12 +02:00
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
|
|
2018-08-27 14:25:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => initializedOMEMO(_converse))
|
|
|
|
|
.then(() => test_utils.openChatBoxFor(_converse, contact_jid))
|
|
|
|
|
.then(() => test_utils.waitUntil(() => deviceListFetched(_converse, contact_jid)))
|
2018-08-26 19:33:34 +02:00
|
|
|
|
.then(iq_stanza => {
|
2018-07-25 12:59:12 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-18 18:26:41 +02:00
|
|
|
|
'to': _converse.connection.jid,
|
2018-07-25 12:59:12 +02:00
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-07-25 12:59:12 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
return test_utils.waitUntil(() => _converse.omemo_store);
|
|
|
|
|
}).then(() => {
|
2018-08-21 17:52:36 +02:00
|
|
|
|
const devicelist = _converse.devicelists.get({'jid': contact_jid});
|
2018-07-25 12:59:12 +02:00
|
|
|
|
expect(devicelist.devices.length).toBe(1);
|
|
|
|
|
|
2018-08-04 09:17:45 +02:00
|
|
|
|
view = _converse.chatboxviews.get(contact_jid);
|
2018-07-25 12:59:12 +02:00
|
|
|
|
view.model.set('omemo_active', true);
|
|
|
|
|
|
|
|
|
|
const textarea = view.el.querySelector('.chat-textarea');
|
|
|
|
|
textarea.value = 'This message will be encrypted';
|
|
|
|
|
view.keyPressed({
|
|
|
|
|
target: textarea,
|
|
|
|
|
preventDefault: _.noop,
|
|
|
|
|
keyCode: 13 // Enter
|
|
|
|
|
});
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => bundleFetched(_converse, contact_jid, '555'));
|
2018-09-25 14:05:56 +02:00
|
|
|
|
}).then(iq_stanza => {
|
2018-07-25 12:59:12 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-25 12:59:12 +02:00
|
|
|
|
'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'));
|
2018-07-28 16:36:23 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
|
|
|
|
return test_utils.waitUntil(() => bundleFetched(_converse, _converse.bare_jid, '482886413b977930064a5888b92134fe'));
|
2018-08-27 14:25:34 +02:00
|
|
|
|
}).then(iq_stanza => {
|
2018-07-28 16:36:23 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-28 16:36:23 +02:00
|
|
|
|
'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'));
|
2018-07-25 12:59:12 +02:00
|
|
|
|
|
|
|
|
|
spyOn(_converse.connection, 'send').and.callFake(stanza => { sent_stanza = stanza });
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return test_utils.waitUntil(() => sent_stanza);
|
2018-08-04 19:41:06 +02:00
|
|
|
|
}).then(() => {
|
2018-07-25 12:59:12 +02:00
|
|
|
|
expect(sent_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<message from="dummy@localhost/resource" id="${sent_stanza.nodeTree.getAttribute("id")}" `+
|
|
|
|
|
`to="max.frankfurter@localhost" `+
|
|
|
|
|
`type="chat" xmlns="jabber:client">`+
|
2018-07-25 12:59:12 +02:00
|
|
|
|
`<body>This is an OMEMO encrypted message which your client doesn’t seem to support. Find more information on https://conversations.im/omemo</body>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<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>`+
|
2018-07-25 12:59:12 +02:00
|
|
|
|
`</header>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<payload>${sent_stanza.nodeTree.querySelector("payload").textContent}</payload>`+
|
2018-07-25 12:59:12 +02:00
|
|
|
|
`</encrypted>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<store xmlns="urn:xmpp:hints"/>`+
|
2018-07-25 12:59:12 +02:00
|
|
|
|
`</message>`);
|
2018-07-28 16:36:23 +02:00
|
|
|
|
|
|
|
|
|
// Test reception of an encrypted message
|
2018-08-04 19:41:06 +02:00
|
|
|
|
return view.model.encryptMessage('This is an encrypted message from the contact')
|
2018-08-31 17:15:03 +02:00
|
|
|
|
}).then(obj => {
|
2018-08-04 19:41:06 +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.
|
2018-08-31 17:15:03 +02:00
|
|
|
|
|
|
|
|
|
// u.stringToArrayBuffer(atob(u.arrayBufferToBase64(obj.key_and_tag)));
|
|
|
|
|
// u.stringToArrayBuffer(u.arrayBufferToString(obj.key_and_tag));
|
2018-07-28 16:36:23 +02:00
|
|
|
|
const stanza = $msg({
|
|
|
|
|
'from': contact_jid,
|
|
|
|
|
'to': _converse.connection.jid,
|
|
|
|
|
'type': 'chat',
|
2018-08-27 14:25:34 +02:00
|
|
|
|
'id': 'qwerty'
|
2018-07-28 16:36:23 +02:00
|
|
|
|
}).c('body').t('This is a fallback message').up()
|
|
|
|
|
.c('encrypted', {'xmlns': Strophe.NS.OMEMO})
|
|
|
|
|
.c('header', {'sid': '555'})
|
2018-08-31 17:15:03 +02:00
|
|
|
|
.c('key', {'rid': _converse.omemo_store.get('device_id')}).t(u.arrayBufferToBase64(obj.key_and_tag)).up()
|
2018-08-04 22:01:38 +02:00
|
|
|
|
.c('iv').t(obj.iv)
|
2018-08-04 09:17:45 +02:00
|
|
|
|
.up().up()
|
2018-08-04 22:01:38 +02:00
|
|
|
|
.c('payload').t(obj.payload);
|
2018-07-28 16:36:23 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-04 19:41:06 +02:00
|
|
|
|
return test_utils.waitUntil(() => view.model.messages.length > 1);
|
|
|
|
|
}).then(() => {
|
2018-08-04 09:17:45 +02:00
|
|
|
|
expect(view.model.messages.length).toBe(2);
|
2018-08-04 22:01:38 +02:00
|
|
|
|
const last_msg = view.model.messages.at(1);
|
|
|
|
|
expect(view.el.querySelectorAll('.chat-msg__body')[1].textContent.trim())
|
|
|
|
|
.toBe('This is an encrypted message from the contact');
|
2018-07-25 12:59:12 +02:00
|
|
|
|
done();
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL))
|
2018-07-25 12:59:12 +02:00
|
|
|
|
}));
|
|
|
|
|
|
2018-08-27 14:25:34 +02:00
|
|
|
|
|
|
|
|
|
it("can receive a PreKeySignalMessage",
|
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
|
|
_converse.NUM_PREKEYS = 5; // Restrict to 5, otherwise the resulting stanza is too large to easily test
|
|
|
|
|
let view, sent_stanza;
|
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
|
|
|
|
_converse.emit('rosterContactsFetched');
|
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
|
|
|
|
|
|
return test_utils.waitUntil(() => initializedOMEMO(_converse))
|
|
|
|
|
.then(() => _converse.ChatBox.prototype.encryptMessage('This is an encrypted message from the contact'))
|
|
|
|
|
.then(obj => {
|
|
|
|
|
// 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.
|
|
|
|
|
const 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'})
|
2018-08-31 13:57:49 +02:00
|
|
|
|
.c('key', {
|
|
|
|
|
'prekey': 'true',
|
|
|
|
|
'rid': _converse.omemo_store.get('device_id')
|
2018-08-31 17:15:03 +02:00
|
|
|
|
}).t(u.arrayBufferToBase64(obj.key_and_tag)).up()
|
2018-08-27 14:25:34 +02:00
|
|
|
|
.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(test_utils.createRequest(stanza));
|
|
|
|
|
return test_utils.waitUntil(() => _converse.chatboxviews.get(contact_jid))
|
|
|
|
|
}).then(iq_stanza => deviceListFetched(_converse, contact_jid))
|
2018-09-25 14:05:56 +02:00
|
|
|
|
.then(iq_stanza => {
|
2018-08-27 14:25:34 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-27 14:25:34 +02:00
|
|
|
|
'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(test_utils.createRequest(stanza));
|
|
|
|
|
return test_utils.waitUntil(() => _converse.omemo_store);
|
|
|
|
|
}).then(() => test_utils.waitUntil(() => bundleHasBeenPublished(_converse)))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" type="set" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<publish node="eu.siacs.conversations.axolotl.bundles:123456789">`+
|
2018-08-27 14:25:34 +02:00
|
|
|
|
`<item>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<bundle xmlns="eu.siacs.conversations.axolotl">`+
|
|
|
|
|
`<signedPreKeyPublic signedPreKeyId="0">${btoa("1234")}</signedPreKeyPublic>`+
|
|
|
|
|
`<signedPreKeySignature>${btoa("11112222333344445555")}</signedPreKeySignature>`+
|
|
|
|
|
`<identityKey>${btoa("1234")}</identityKey>`+
|
2018-08-27 14:25:34 +02:00
|
|
|
|
`<prekeys>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<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>`+
|
2018-08-27 14:25:34 +02:00
|
|
|
|
`</prekeys>`+
|
|
|
|
|
`</bundle>`+
|
|
|
|
|
`</item>`+
|
|
|
|
|
`</publish>`+
|
|
|
|
|
`</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();
|
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL))
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
2018-05-20 15:10:37 +02:00
|
|
|
|
it("updates device lists based on PEP messages",
|
2018-05-20 13:41:16 +02:00
|
|
|
|
mock.initConverseWithPromises(
|
2018-10-10 20:12:29 +02:00
|
|
|
|
null, ['rosterGroupsFetched'], {'allow_non_roster_messaging': true},
|
2018-05-20 13:41:16 +02:00
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
2018-07-25 12:59:12 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-20 13:41:16 +02:00
|
|
|
|
|
2018-08-22 14:32:04 +02:00
|
|
|
|
// Wait until own devices are fetched
|
2018-08-26 19:33:34 +02:00
|
|
|
|
test_utils.waitUntil(() => deviceListFetched(_converse, _converse.bare_jid))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="dummy@localhost" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<items node="eu.siacs.conversations.axolotl.devicelist"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
2018-05-20 13:41:16 +02:00
|
|
|
|
const stanza = $iq({
|
2018-08-18 18:26:41 +02:00
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-05-20 13:41:16 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-05-20 13:41:16 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
return test_utils.waitUntil(() => _converse.omemo_store);
|
|
|
|
|
}).then(() => {
|
2018-10-10 20:12:29 +02:00
|
|
|
|
expect(_converse.chatboxes.length).toBe(1);
|
2018-05-20 13:41:16 +02:00
|
|
|
|
expect(_converse.devicelists.length).toBe(1);
|
|
|
|
|
const devicelist = _converse.devicelists.get(_converse.bare_jid);
|
2018-08-22 14:32:04 +02:00
|
|
|
|
expect(devicelist.devices.length).toBe(2);
|
2018-05-20 13:41:16 +02:00
|
|
|
|
expect(devicelist.devices.at(0).get('id')).toBe('555');
|
2018-08-22 14:32:04 +02:00
|
|
|
|
expect(devicelist.devices.at(1).get('id')).toBe('123456789');
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => ownDeviceHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-22 14:32:04 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => bundleHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-22 14:32:04 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return _converse.api.waitUntil('OMEMOInitialized');
|
|
|
|
|
}).then(() => {
|
2018-05-20 13:41:16 +02:00
|
|
|
|
let 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(test_utils.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(test_utils.createRequest(stanza));
|
|
|
|
|
|
|
|
|
|
expect(_converse.devicelists.length).toBe(2);
|
2018-08-23 10:07:51 +02:00
|
|
|
|
expect(devices.length).toBe(2);
|
|
|
|
|
expect(_.map(devices.models, 'attributes.id').sort().join()).toBe('4223,4224');
|
2018-05-20 13:41:16 +02:00
|
|
|
|
|
|
|
|
|
// 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'})
|
2018-08-22 14:32:04 +02:00
|
|
|
|
.c('device', {'id': '123456789'})
|
2018-05-20 13:41:16 +02:00
|
|
|
|
.c('device', {'id': '555'})
|
|
|
|
|
.c('device', {'id': '777'})
|
|
|
|
|
_converse.connection._dataRecv(test_utils.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');
|
|
|
|
|
|
|
|
|
|
_converse.connection.IQ_stanzas = [];
|
|
|
|
|
|
|
|
|
|
// Check that own device gets re-added
|
|
|
|
|
stanza = $msg({
|
|
|
|
|
'from': _converse.bare_jid,
|
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'headline',
|
2018-05-20 15:10:37 +02:00
|
|
|
|
'id': 'update_04',
|
2018-05-20 13:41:16 +02:00
|
|
|
|
}).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(test_utils.createRequest(stanza));
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => ownDeviceHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-05-20 13:41:16 +02:00
|
|
|
|
// Check that our own device is added again, but that removed
|
|
|
|
|
// devices are not added.
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute(`id`)}" type="set" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<publish node="eu.siacs.conversations.axolotl.devicelist">`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`<item>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<list xmlns="eu.siacs.conversations.axolotl">`+
|
|
|
|
|
`<device id="123456789"/>`+
|
|
|
|
|
`<device id="444"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</list>`+
|
|
|
|
|
`</item>`+
|
|
|
|
|
`</publish>`+
|
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-05-20 13:41:16 +02:00
|
|
|
|
expect(_converse.devicelists.length).toBe(2);
|
|
|
|
|
const devices = _converse.devicelists.get(_converse.bare_jid).devices;
|
|
|
|
|
// The device id for this device (123456789) was also generated and added to the list,
|
2018-08-23 10:07:51 +02:00
|
|
|
|
// which is why we have 2 devices now.
|
|
|
|
|
expect(devices.length).toBe(2);
|
|
|
|
|
expect(_.map(devices.models, 'attributes.id').sort().join()).toBe('123456789,444');
|
2018-05-20 13:41:16 +02:00
|
|
|
|
done();
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL))
|
2018-05-20 13:41:16 +02:00
|
|
|
|
}));
|
|
|
|
|
|
2018-08-27 14:25:34 +02:00
|
|
|
|
|
2018-05-20 15:10:37 +02:00
|
|
|
|
it("updates device bundles based on PEP messages",
|
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
|
|
|
|
test_utils.createContacts(_converse, 'current');
|
|
|
|
|
const contact_jid = mock.cur_names[3].replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
test_utils.waitUntil(() => deviceListFetched(_converse, _converse.bare_jid))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="dummy@localhost" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<items node="eu.siacs.conversations.axolotl.devicelist"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-05-20 15:10:37 +02:00
|
|
|
|
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-05-20 15:10:37 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-05-20 15:10:37 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
return test_utils.waitUntil(() => _converse.omemo_store);
|
2018-08-26 19:33:34 +02:00
|
|
|
|
}).then(() => {
|
2018-05-20 15:10:37 +02:00
|
|
|
|
expect(_converse.devicelists.length).toBe(1);
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const devicelist = _converse.devicelists.get(_converse.bare_jid);
|
2018-05-20 15:10:37 +02:00
|
|
|
|
expect(devicelist.devices.length).toBe(2);
|
|
|
|
|
expect(devicelist.devices.at(0).get('id')).toBe('555');
|
|
|
|
|
expect(devicelist.devices.at(1).get('id')).toBe('123456789');
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => ownDeviceHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-22 14:32:04 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => bundleHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-08-22 14:32:04 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return _converse.api.waitUntil('OMEMOInitialized');
|
|
|
|
|
}).then(() => {
|
2018-05-20 15:10:37 +02:00
|
|
|
|
let 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(test_utils.createRequest(stanza));
|
|
|
|
|
|
|
|
|
|
expect(_converse.devicelists.length).toBe(2);
|
2018-08-22 14:32:04 +02:00
|
|
|
|
let devicelist = _converse.devicelists.get(contact_jid);
|
2018-05-20 15:10:37 +02:00
|
|
|
|
expect(devicelist.devices.length).toBe(1);
|
|
|
|
|
let device = devicelist.devices.at(0);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
expect(device.get('bundle').identity_key).toBe('3333');
|
2018-05-20 15:10:37 +02:00
|
|
|
|
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(test_utils.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);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
expect(device.get('bundle').identity_key).toBe('7777');
|
2018-05-20 15:10:37 +02:00
|
|
|
|
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({
|
|
|
|
|
'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.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(test_utils.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);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
expect(device.get('bundle').identity_key).toBe('1111');
|
2018-05-20 15:10:37 +02:00
|
|
|
|
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();
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL))
|
2018-05-20 15:10:37 +02:00
|
|
|
|
}));
|
|
|
|
|
|
2018-07-21 21:51:50 +02:00
|
|
|
|
it("publishes a bundle with which an encrypted session can be created",
|
2018-08-04 08:39:14 +02:00
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
2018-07-21 21:51:50 +02:00
|
|
|
|
|
2018-07-22 10:33:57 +02:00
|
|
|
|
_converse.NUM_PREKEYS = 2; // Restrict to 2, otherwise the resulting stanza is too large to easily test
|
|
|
|
|
|
2018-07-21 21:51:50 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
2018-08-04 08:39:14 +02:00
|
|
|
|
_converse.emit('rosterContactsFetched');
|
2018-07-21 21:51:50 +02:00
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
test_utils.waitUntil(() => deviceListFetched(_converse, _converse.bare_jid))
|
|
|
|
|
.then(iq_stanza => {
|
2018-07-21 21:51:50 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-21 21:51:50 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-07-21 21:51:50 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
expect(_converse.devicelists.length).toBe(1);
|
2018-08-04 08:39:14 +02:00
|
|
|
|
return test_utils.openChatBoxFor(_converse, contact_jid);
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
|
|
|
|
}).then(() => ownDeviceHasBeenPublished(_converse))
|
|
|
|
|
.then(iq_stanza => {
|
2018-07-21 21:51:50 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-21 21:51:50 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => bundleHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" type="set" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<publish node="eu.siacs.conversations.axolotl.bundles:123456789">`+
|
2018-07-21 21:51:50 +02:00
|
|
|
|
`<item>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<bundle xmlns="eu.siacs.conversations.axolotl">`+
|
|
|
|
|
`<signedPreKeyPublic signedPreKeyId="0">${btoa("1234")}</signedPreKeyPublic>`+
|
|
|
|
|
`<signedPreKeySignature>${btoa("11112222333344445555")}</signedPreKeySignature>`+
|
|
|
|
|
`<identityKey>${btoa("1234")}</identityKey>`+
|
2018-07-21 21:51:50 +02:00
|
|
|
|
`<prekeys>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<preKeyPublic preKeyId="0">${btoa("1234")}</preKeyPublic>`+
|
|
|
|
|
`<preKeyPublic preKeyId="1">${btoa("1234")}</preKeyPublic>`+
|
2018-07-21 21:51:50 +02:00
|
|
|
|
`</prekeys>`+
|
|
|
|
|
`</bundle>`+
|
|
|
|
|
`</item>`+
|
|
|
|
|
`</publish>`+
|
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`)
|
2018-07-22 16:12:36 +02:00
|
|
|
|
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-22 16:12:36 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
return _converse.api.waitUntil('OMEMOInitialized');
|
|
|
|
|
}).then(done).catch(_.partial(console.error, _));
|
2018-07-21 21:51:50 +02:00
|
|
|
|
}));
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
2018-05-12 19:37:44 +02:00
|
|
|
|
it("adds a toolbar button for starting an encrypted chat session",
|
|
|
|
|
mock.initConverseWithPromises(
|
2018-08-04 08:39:14 +02:00
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
2018-05-12 19:37:44 +02:00
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
let modal;
|
2018-07-21 21:51:50 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
2018-08-04 08:39:14 +02:00
|
|
|
|
_converse.emit('rosterContactsFetched');
|
2018-07-21 21:51:50 +02:00
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-05-12 19:37:44 +02:00
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
test_utils.waitUntil(() => deviceListFetched(_converse, _converse.bare_jid))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="dummy@localhost" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<items node="eu.siacs.conversations.axolotl.devicelist"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-05-12 23:26:14 +02:00
|
|
|
|
|
2018-05-12 19:37:44 +02:00
|
|
|
|
const stanza = $iq({
|
2018-08-22 14:32:04 +02:00
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-05-12 19:37:44 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-05-12 19:37:44 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
return test_utils.waitUntil(() => _converse.omemo_store);
|
|
|
|
|
}).then(() => {
|
2018-05-12 19:37:44 +02:00
|
|
|
|
expect(_converse.devicelists.length).toBe(1);
|
|
|
|
|
const devicelist = _converse.devicelists.get(_converse.bare_jid);
|
2018-08-22 14:32:04 +02:00
|
|
|
|
expect(devicelist.devices.length).toBe(2);
|
2018-05-12 19:37:44 +02:00
|
|
|
|
expect(devicelist.devices.at(0).get('id')).toBe('482886413b977930064a5888b92134fe');
|
2018-08-22 14:32:04 +02:00
|
|
|
|
expect(devicelist.devices.at(1).get('id')).toBe('123456789');
|
|
|
|
|
// Check that own device was published
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => ownDeviceHasBeenPublished(_converse));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute(`id`)}" type="set" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<publish node="eu.siacs.conversations.axolotl.devicelist">`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`<item>`+
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<list xmlns="eu.siacs.conversations.axolotl">`+
|
|
|
|
|
`<device id="482886413b977930064a5888b92134fe"/>`+
|
|
|
|
|
`<device id="123456789"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</list>`+
|
|
|
|
|
`</item>`+
|
|
|
|
|
`</publish>`+
|
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-05-13 16:04:52 +02:00
|
|
|
|
|
2018-05-13 14:12:53 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-05-13 14:12:53 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-05-13 16:04:52 +02:00
|
|
|
|
|
2018-09-25 14:05:56 +02:00
|
|
|
|
return test_utils.waitUntil(() => _.get(bundleHasBeenPublished(_converse), 'nodeTree'));
|
|
|
|
|
}).then(iq_el => {
|
|
|
|
|
expect(iq_el.getAttributeNames().sort().join()).toBe(["from", "type", "xmlns", "id"].sort().join());
|
|
|
|
|
expect(iq_el.querySelector('prekeys').childNodes.length).toBe(100);
|
2018-05-13 16:04:52 +02:00
|
|
|
|
|
2018-09-25 14:05:56 +02:00
|
|
|
|
const signed_prekeys = iq_el.querySelectorAll('signedPreKeyPublic');
|
2018-05-13 16:04:52 +02:00
|
|
|
|
expect(signed_prekeys.length).toBe(1);
|
|
|
|
|
const signed_prekey = signed_prekeys[0];
|
2018-08-25 23:22:18 +02:00
|
|
|
|
expect(signed_prekey.getAttribute('signedPreKeyId')).toBe('0')
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_el.querySelectorAll('signedPreKeySignature').length).toBe(1);
|
|
|
|
|
expect(iq_el.querySelectorAll('identityKey').length).toBe(1);
|
2018-05-13 16:04:52 +02:00
|
|
|
|
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': _converse.bare_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_el.getAttribute('id'),
|
2018-05-13 16:04:52 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result'});
|
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
return _converse.api.waitUntil('OMEMOInitialized', 1000);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
return test_utils.openChatBoxFor(_converse, contact_jid);
|
|
|
|
|
}).then(() => {
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => deviceListFetched(_converse, contact_jid));
|
|
|
|
|
}).then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="${contact_jid}" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<items node="eu.siacs.conversations.axolotl.devicelist"/>`+
|
2018-09-25 14:05:56 +02:00
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
2018-08-18 18:26:41 +02:00
|
|
|
|
|
2018-05-12 19:37:44 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-05-12 19:37:44 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-05-12 19:37:44 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
2018-08-22 14:32:04 +02:00
|
|
|
|
const devicelist = _converse.devicelists.get(contact_jid);
|
|
|
|
|
return test_utils.waitUntil(() => devicelist.devices.length);
|
|
|
|
|
}).then(() => {
|
2018-05-12 19:37:44 +02:00
|
|
|
|
expect(_converse.devicelists.length).toBe(2);
|
|
|
|
|
const 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');
|
|
|
|
|
return test_utils.waitUntil(() => _converse.chatboxviews.get(contact_jid).el.querySelector('.chat-toolbar'));
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).then(() => {
|
2018-05-12 19:37:44 +02:00
|
|
|
|
const view = _converse.chatboxviews.get(contact_jid);
|
|
|
|
|
const toolbar = view.el.querySelector('.chat-toolbar');
|
2018-05-13 15:46:37 +02:00
|
|
|
|
expect(view.model.get('omemo_active')).toBe(undefined);
|
2018-05-15 16:37:25 +02:00
|
|
|
|
const toggle = toolbar.querySelector('.toggle-omemo');
|
|
|
|
|
expect(_.isNull(toggle)).toBe(false);
|
|
|
|
|
expect(u.hasClass('fa-unlock', toggle)).toBe(true);
|
|
|
|
|
expect(u.hasClass('fa-lock', toggle)).toBe(false);
|
|
|
|
|
|
2018-05-12 19:37:44 +02:00
|
|
|
|
spyOn(view, 'toggleOMEMO').and.callThrough();
|
|
|
|
|
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
|
|
|
toolbar.querySelector('.toggle-omemo').click();
|
|
|
|
|
expect(view.toggleOMEMO).toHaveBeenCalled();
|
2018-05-13 15:46:37 +02:00
|
|
|
|
expect(view.model.get('omemo_active')).toBe(true);
|
2018-05-15 16:37:25 +02:00
|
|
|
|
|
|
|
|
|
return test_utils.waitUntil(() => u.hasClass('fa-lock', toolbar.querySelector('.toggle-omemo')));
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).then(() => {
|
2018-05-15 16:37:25 +02:00
|
|
|
|
const view = _converse.chatboxviews.get(contact_jid);
|
|
|
|
|
const toolbar = view.el.querySelector('.chat-toolbar');
|
|
|
|
|
const toggle = toolbar.querySelector('.toggle-omemo');
|
|
|
|
|
expect(u.hasClass('fa-unlock', toggle)).toBe(false);
|
|
|
|
|
expect(u.hasClass('fa-lock', toggle)).toBe(true);
|
2018-05-15 17:27:07 +02:00
|
|
|
|
|
|
|
|
|
const textarea = view.el.querySelector('.chat-textarea');
|
|
|
|
|
textarea.value = 'This message will be sent encrypted';
|
|
|
|
|
view.keyPressed({
|
|
|
|
|
target: textarea,
|
|
|
|
|
preventDefault: _.noop,
|
|
|
|
|
keyCode: 13
|
|
|
|
|
});
|
2018-05-12 19:37:44 +02:00
|
|
|
|
done();
|
2018-05-12 23:26:14 +02:00
|
|
|
|
}).catch(_.partial(console.error, _));
|
2018-05-12 19:37:44 +02:00
|
|
|
|
}));
|
2018-07-22 16:12:36 +02:00
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
|
2018-07-22 16:12:36 +02:00
|
|
|
|
it("shows OMEMO device fingerprints in the user details modal",
|
|
|
|
|
mock.initConverseWithPromises(
|
2018-08-04 08:39:14 +02:00
|
|
|
|
null, ['rosterGroupsFetched', 'chatBoxesFetched'], {},
|
2018-07-22 16:12:36 +02:00
|
|
|
|
function (done, _converse) {
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
let modal;
|
2018-07-22 16:12:36 +02:00
|
|
|
|
test_utils.createContacts(_converse, 'current', 1);
|
2018-08-04 08:39:14 +02:00
|
|
|
|
_converse.emit('rosterContactsFetched');
|
2018-07-22 16:12:36 +02:00
|
|
|
|
const contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
2018-08-04 08:39:14 +02:00
|
|
|
|
test_utils.openChatBoxFor(_converse, contact_jid)
|
|
|
|
|
.then(() => {
|
|
|
|
|
// We simply emit, to avoid doing all the setup work
|
|
|
|
|
_converse.emit('OMEMOInitialized');
|
2018-07-22 16:12:36 +02:00
|
|
|
|
|
2018-08-04 08:39:14 +02:00
|
|
|
|
const view = _converse.chatboxviews.get(contact_jid);
|
|
|
|
|
const show_modal_button = view.el.querySelector('.show-user-details-modal');
|
|
|
|
|
show_modal_button.click();
|
|
|
|
|
modal = view.user_details_modal;
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => u.isVisible(modal.el), 1000);
|
|
|
|
|
}).then(() => test_utils.waitUntil(() => deviceListFetched(_converse, contact_jid)))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="max.frankfurter@localhost" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub"><items node="eu.siacs.conversations.axolotl.devicelist"/></pubsub>`+
|
2018-07-22 16:12:36 +02:00
|
|
|
|
`</iq>`);
|
2018-08-18 18:26:41 +02:00
|
|
|
|
|
2018-07-22 16:12:36 +02:00
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-22 16:12:36 +02:00
|
|
|
|
'to': _converse.bare_jid,
|
|
|
|
|
'type': 'result',
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).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'});
|
2018-07-22 16:12:36 +02:00
|
|
|
|
_converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
|
|
2018-08-26 19:33:34 +02:00
|
|
|
|
return test_utils.waitUntil(() => u.isVisible(modal.el), 1000);
|
|
|
|
|
}).then(() => test_utils.waitUntil(() => bundleFetched(_converse, contact_jid, '555')))
|
|
|
|
|
.then(iq_stanza => {
|
2018-09-25 14:05:56 +02:00
|
|
|
|
expect(iq_stanza.toLocaleString()).toBe(
|
2018-10-02 17:01:39 +02:00
|
|
|
|
`<iq from="dummy@localhost" id="${iq_stanza.nodeTree.getAttribute("id")}" to="max.frankfurter@localhost" type="get" xmlns="jabber:client">`+
|
|
|
|
|
`<pubsub xmlns="http://jabber.org/protocol/pubsub">`+
|
|
|
|
|
`<items node="eu.siacs.conversations.axolotl.bundles:555"/>`+
|
2018-07-22 16:12:36 +02:00
|
|
|
|
`</pubsub>`+
|
|
|
|
|
`</iq>`);
|
|
|
|
|
|
|
|
|
|
const stanza = $iq({
|
|
|
|
|
'from': contact_jid,
|
2018-09-25 14:05:56 +02:00
|
|
|
|
'id': iq_stanza.nodeTree.getAttribute('id'),
|
2018-07-22 16:12:36 +02:00
|
|
|
|
'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()
|
2018-08-27 21:00:00 +02:00
|
|
|
|
.c('identityKey').t('BQmHEOHjsYm3w5M8VqxAtqJmLCi7CaxxsdZz6G0YpuMI').up()
|
2018-07-22 16:12:36 +02:00
|
|
|
|
.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(test_utils.createRequest(stanza));
|
|
|
|
|
|
|
|
|
|
const view = _converse.chatboxviews.get(contact_jid);
|
|
|
|
|
const modal = view.user_details_modal;
|
|
|
|
|
return test_utils.waitUntil(() => modal.el.querySelectorAll('.fingerprints .fingerprint').length);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
const view = _converse.chatboxviews.get(contact_jid);
|
|
|
|
|
const modal = view.user_details_modal;
|
|
|
|
|
expect(modal.el.querySelectorAll('.fingerprints .fingerprint').length).toBe(1);
|
|
|
|
|
const el = modal.el.querySelector('.fingerprints .fingerprint');
|
2018-08-27 21:00:00 +02:00
|
|
|
|
expect(el.textContent.trim()).toBe(
|
|
|
|
|
u.formatFingerprint(u.arrayBufferToHex(u.base64ToArrayBuffer('BQmHEOHjsYm3w5M8VqxAtqJmLCi7CaxxsdZz6G0YpuMI')))
|
|
|
|
|
);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
|
|
|
|
|
expect(modal.el.querySelectorAll('input[type="radio"]').length).toBe(2);
|
|
|
|
|
|
2018-08-23 10:07:51 +02:00
|
|
|
|
const devicelist = _converse.devicelists.get(contact_jid);
|
|
|
|
|
expect(devicelist.devices.get('555').get('trusted')).toBe(0);
|
|
|
|
|
|
2018-07-22 16:12:36 +02:00
|
|
|
|
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);
|
2018-08-23 10:07:51 +02:00
|
|
|
|
expect(devicelist.devices.get('555').get('trusted')).toBe(-1);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
|
|
|
|
|
untrusted_radio = document.querySelector('input[type="radio"][name="555"][value="-1"]');
|
|
|
|
|
expect(untrusted_radio.hasAttribute('checked')).toBe(true);
|
2018-08-23 10:07:51 +02:00
|
|
|
|
|
|
|
|
|
trusted_radio.click();
|
|
|
|
|
expect(devicelist.devices.get('555').get('trusted')).toBe(1);
|
2018-07-22 16:12:36 +02:00
|
|
|
|
done();
|
2018-08-18 18:26:41 +02:00
|
|
|
|
}).catch(_.partial(_converse.log, _, Strophe.LogLevel.FATAL))
|
2018-07-22 16:12:36 +02:00
|
|
|
|
}));
|
2018-05-12 19:37:44 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("A chatbox with an active OMEMO session", function() {
|
|
|
|
|
|
|
|
|
|
it("will not show the spoiler toolbar button",
|
|
|
|
|
mock.initConverseWithPromises(
|
|
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
|
|
|
function (done, _converse) {
|
|
|
|
|
// TODO
|
|
|
|
|
done()
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
}));
|