signal-desktop/libtextsecure/test/message_receiver_test.js

145 lines
4.4 KiB
JavaScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2015-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-02-18 16:40:26 +00:00
/* global libsignal, textsecure */
2018-11-02 18:02:53 +00:00
2018-07-21 21:51:20 +00:00
describe('MessageReceiver', () => {
2018-11-02 18:02:53 +00:00
const { WebSocket } = window;
2018-07-21 21:51:20 +00:00
const number = '+19999999999';
const uuid = 'AAAAAAAA-BBBB-4CCC-9DDD-EEEEEEEEEEEE';
2018-07-21 21:51:20 +00:00
const deviceId = 1;
const signalingKey = libsignal.crypto.getRandomBytes(32 + 20);
2018-11-02 18:02:53 +00:00
2018-07-21 21:51:20 +00:00
before(() => {
2021-02-18 16:40:26 +00:00
localStorage.clear();
2018-05-02 16:51:22 +00:00
window.WebSocket = MockSocket;
textsecure.storage.user.setNumberAndDeviceId(number, deviceId, 'name');
textsecure.storage.user.setUuidAndDeviceId(uuid, deviceId);
2018-05-02 16:51:22 +00:00
textsecure.storage.put('password', 'password');
textsecure.storage.put('signaling_key', signalingKey);
});
2018-07-21 21:51:20 +00:00
after(() => {
2021-02-18 16:40:26 +00:00
localStorage.clear();
2018-05-02 16:51:22 +00:00
window.WebSocket = WebSocket;
});
2018-07-21 21:51:20 +00:00
describe('connecting', () => {
2021-02-18 16:40:26 +00:00
let attrs;
let websocketmessage;
before(() => {
attrs = {
type: textsecure.protobuf.Envelope.Type.CIPHERTEXT,
source: number,
sourceUuid: uuid,
sourceDevice: deviceId,
timestamp: Date.now(),
content: libsignal.crypto.getRandomBytes(200),
};
const body = new textsecure.protobuf.Envelope(attrs).toArrayBuffer();
2021-02-18 16:40:26 +00:00
websocketmessage = new textsecure.protobuf.WebSocketMessage({
type: textsecure.protobuf.WebSocketMessage.Type.REQUEST,
request: { verb: 'PUT', path: '/api/v1/message', body },
});
2018-05-02 16:51:22 +00:00
});
2021-02-18 16:40:26 +00:00
it('generates light-session-reset event when it cannot decrypt', done => {
const mockServer = new MockServer('ws://localhost:8081/');
2018-07-21 21:51:20 +00:00
mockServer.on('connection', server => {
2021-02-18 16:40:26 +00:00
setTimeout(() => {
server.send(new Blob([websocketmessage.toArrayBuffer()]));
}, 1);
2018-05-02 16:51:22 +00:00
});
2021-02-18 16:40:26 +00:00
const messageReceiver = new textsecure.MessageReceiver(
'oldUsername',
'username',
'password',
'signalingKey',
{
serverTrustRoot: 'AAAAAAAA',
2018-05-02 16:51:22 +00:00
}
2021-02-18 16:40:26 +00:00
);
2018-11-02 18:02:53 +00:00
2021-02-18 16:40:26 +00:00
messageReceiver.addEventListener('light-session-reset', done());
});
});
2018-11-02 18:02:53 +00:00
2021-02-18 16:40:26 +00:00
describe('methods', () => {
let messageReceiver;
let mockServer;
beforeEach(() => {
// Necessary to populate the server property inside of MockSocket. Without it, we
// crash when doing any number of things to a MockSocket instance.
mockServer = new MockServer('ws://localhost:8081');
messageReceiver = new textsecure.MessageReceiver(
'oldUsername',
'username',
'password',
2021-02-18 16:40:26 +00:00
'signalingKey',
{
serverTrustRoot: 'AAAAAAAA',
}
2018-05-02 16:51:22 +00:00
);
});
2021-02-18 16:40:26 +00:00
afterEach(() => {
mockServer.close();
});
describe('#isOverHourIntoPast', () => {
it('returns false for now', () => {
assert.isFalse(messageReceiver.isOverHourIntoPast(Date.now()));
});
it('returns false for 5 minutes ago', () => {
const fiveMinutesAgo = Date.now() - 5 * 60 * 1000;
assert.isFalse(messageReceiver.isOverHourIntoPast(fiveMinutesAgo));
});
it('returns true for 65 minutes ago', () => {
const sixtyFiveMinutesAgo = Date.now() - 65 * 60 * 1000;
assert.isTrue(messageReceiver.isOverHourIntoPast(sixtyFiveMinutesAgo));
});
});
describe('#cleanupSessionResets', () => {
it('leaves empty object alone', () => {
window.storage.put('sessionResets', {});
messageReceiver.cleanupSessionResets();
const actual = window.storage.get('sessionResets');
const expected = {};
assert.deepEqual(actual, expected);
});
it('filters out any timestamp older than one hour', () => {
const startValue = {
one: Date.now() - 1,
two: Date.now(),
three: Date.now() - 65 * 60 * 1000,
};
window.storage.put('sessionResets', startValue);
messageReceiver.cleanupSessionResets();
const actual = window.storage.get('sessionResets');
const expected = window._.pick(startValue, ['one', 'two']);
assert.deepEqual(actual, expected);
});
it('filters out falsey items', () => {
const startValue = {
one: 0,
two: false,
three: Date.now(),
};
window.storage.put('sessionResets', startValue);
messageReceiver.cleanupSessionResets();
const actual = window.storage.get('sessionResets');
const expected = window._.pick(startValue, ['three']);
assert.deepEqual(actual, expected);
});
});
2018-05-02 16:51:22 +00:00
});
});