remove completely SignalProtocolStore
parent
4d6fcda668
commit
4f7cb04552
@ -1,33 +0,0 @@
|
|||||||
/*
|
|
||||||
global
|
|
||||||
Backbone,
|
|
||||||
_,
|
|
||||||
BlockedNumberController
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* eslint-disable no-proto */
|
|
||||||
|
|
||||||
// eslint-disable-next-line func-names
|
|
||||||
(function() {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
function SignalProtocolStore() {}
|
|
||||||
|
|
||||||
SignalProtocolStore.prototype = {
|
|
||||||
constructor: SignalProtocolStore,
|
|
||||||
async removeAllData() {
|
|
||||||
await window.Signal.Data.removeAll();
|
|
||||||
|
|
||||||
window.storage.reset();
|
|
||||||
await window.storage.fetch();
|
|
||||||
|
|
||||||
window.getConversationController().reset();
|
|
||||||
BlockedNumberController.reset();
|
|
||||||
await window.getConversationController().load();
|
|
||||||
await BlockedNumberController.load();
|
|
||||||
},
|
|
||||||
};
|
|
||||||
_.extend(SignalProtocolStore.prototype, Backbone.Events);
|
|
||||||
|
|
||||||
window.SignalProtocolStore = SignalProtocolStore;
|
|
||||||
})();
|
|
@ -1,8 +0,0 @@
|
|||||||
/* global window, textsecure, SignalProtocolStore */
|
|
||||||
|
|
||||||
// eslint-disable-next-line func-names
|
|
||||||
(function() {
|
|
||||||
window.textsecure = window.textsecure || {};
|
|
||||||
window.textsecure.storage = window.textsecure.storage || {};
|
|
||||||
textsecure.storage.protocol = new SignalProtocolStore();
|
|
||||||
})();
|
|
@ -1,37 +0,0 @@
|
|||||||
/* global textsecure */
|
|
||||||
|
|
||||||
describe('Protocol', () => {
|
|
||||||
describe('Unencrypted PushMessageProto "decrypt"', () => {
|
|
||||||
// exclusive
|
|
||||||
it('works', done => {
|
|
||||||
localStorage.clear();
|
|
||||||
|
|
||||||
const textMessage = new textsecure.protobuf.DataMessage();
|
|
||||||
textMessage.body = 'Hi Mom';
|
|
||||||
const serverMessage = {
|
|
||||||
type: 4, // unencrypted
|
|
||||||
source: '+19999999999',
|
|
||||||
timestamp: 42,
|
|
||||||
message: textMessage.encode(),
|
|
||||||
};
|
|
||||||
|
|
||||||
return textsecure.protocol_wrapper
|
|
||||||
.handleEncryptedMessage(
|
|
||||||
serverMessage.source,
|
|
||||||
serverMessage.source_device,
|
|
||||||
serverMessage.type,
|
|
||||||
serverMessage.message
|
|
||||||
)
|
|
||||||
.then(message => {
|
|
||||||
assert.equal(message.body, textMessage.body);
|
|
||||||
assert.equal(
|
|
||||||
message.attachments.length,
|
|
||||||
textMessage.attachments.length
|
|
||||||
);
|
|
||||||
assert.equal(textMessage.attachments.length, 0);
|
|
||||||
})
|
|
||||||
.then(done)
|
|
||||||
.catch(done);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
Loading…
Reference in New Issue