Improve keychange notice reliability/perf
Bind a single listener to keychange events from the storage interface, which then looks up relevant conversations and adds notices to them, with tests. Previously we would need to instantiate a conversation model in order to start listening to its key change events. In practice this usually happens at startup but we shouldn't rely on it, and it incurs higher overhead since it creates a different listener for each conversation. // FREEBIEpull/749/head
parent
787c393e1b
commit
aed5735620
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* vim: ts=4:sw=4:expandtab
|
||||
*/
|
||||
|
||||
;(function () {
|
||||
'use strict';
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
Whisper.KeyChangeListener = {
|
||||
init: function(signalProtocolStore) {
|
||||
if (!(signalProtocolStore instanceof SignalProtocolStore)) {
|
||||
throw new Error('KeyChangeListener requires a SignalProtocolStore');
|
||||
}
|
||||
|
||||
signalProtocolStore.on('keychange', function(id) {
|
||||
var conversation = ConversationController.add({id: id});
|
||||
conversation.fetch().then(function() {
|
||||
conversation.addKeyChange(id);
|
||||
});
|
||||
var groups = new Whisper.GroupCollection();
|
||||
return groups.fetchGroups(id).then(function() {
|
||||
groups.each(function(conversation) {
|
||||
conversation = ConversationController.add(conversation);
|
||||
conversation.addKeyChange(id);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
}());
|
@ -0,0 +1,74 @@
|
||||
describe('KeyChangeListener', function() {
|
||||
var phone_number_with_keychange = '+13016886524'; // nsa
|
||||
var oldkey = libsignal.crypto.getRandomBytes(33);
|
||||
var newkey = libsignal.crypto.getRandomBytes(33);
|
||||
var store;
|
||||
|
||||
before(function() {
|
||||
storage.put('safety-numbers-approval', false);
|
||||
});
|
||||
|
||||
after(function() {
|
||||
storage.remove('safety-numbers-approval');
|
||||
});
|
||||
|
||||
beforeEach(function() {
|
||||
store = new SignalProtocolStore();
|
||||
Whisper.KeyChangeListener.init(store);
|
||||
return store.saveIdentity(phone_number_with_keychange, oldkey);
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
return store.removeIdentityKey(phone_number_with_keychange);
|
||||
});
|
||||
|
||||
describe('When we have a conversation with this contact', function() {
|
||||
var convo = new Whisper.Conversation({ id: phone_number_with_keychange, type: 'private'});
|
||||
before(function() {
|
||||
ConversationController.add(convo);
|
||||
return new Promise(function(resolve) { convo.save().then(resolve); });
|
||||
});
|
||||
|
||||
after(function() {
|
||||
convo.destroyMessages();
|
||||
return convo.destroy();
|
||||
});
|
||||
|
||||
it('generates a key change notice in the private conversation with this contact', function(done) {
|
||||
convo.on('newmessage', function() {
|
||||
return convo.fetchMessages().then(function() {
|
||||
var message = convo.messageCollection.at(0);
|
||||
assert.strictEqual(message.get('type'), 'keychange');
|
||||
done();
|
||||
});
|
||||
});
|
||||
return store.isTrustedIdentity(phone_number_with_keychange, newkey);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
describe('When we have a group with this contact', function() {
|
||||
var convo = new Whisper.Conversation({ id: 'groupId', type: 'group', members: [phone_number_with_keychange] });
|
||||
before(function() {
|
||||
ConversationController.add(convo);
|
||||
return convo.save();
|
||||
});
|
||||
after(function() {
|
||||
convo.destroyMessages();
|
||||
return convo.destroy();
|
||||
});
|
||||
|
||||
it('generates a key change notice in the group conversation with this contact', function(done) {
|
||||
convo.on('newmessage', function() {
|
||||
return convo.fetchMessages().then(function() {
|
||||
var message = convo.messageCollection.at(0);
|
||||
assert.strictEqual(message.get('type'), 'keychange');
|
||||
done();
|
||||
});
|
||||
});
|
||||
return store.isTrustedIdentity(phone_number_with_keychange, newkey);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
Loading…
Reference in New Issue