You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
243 lines
9.5 KiB
TypeScript
243 lines
9.5 KiB
TypeScript
import { expect } from 'chai';
|
|
import * as crypto from 'crypto';
|
|
import * as sinon from 'sinon';
|
|
import { MessageSender } from '../../../../session/sending';
|
|
import { TestUtils } from '../../../test-utils';
|
|
import { MessageEncrypter } from '../../../../session/crypto';
|
|
import { SignalService } from '../../../../protobuf';
|
|
import { EncryptionType } from '../../../../session/types/EncryptionType';
|
|
import { PubKey, RawMessage } from '../../../../session/types';
|
|
import { MessageUtils, UserUtils } from '../../../../session/utils';
|
|
import { ApiV2 } from '../../../../session/apis/open_group_api/opengroupV2';
|
|
import * as Data from '../../../../../ts/data/data';
|
|
import { SNodeAPI } from '../../../../session/apis/snode_api';
|
|
import _ from 'lodash';
|
|
|
|
describe('MessageSender', () => {
|
|
const sandbox = sinon.createSandbox();
|
|
|
|
afterEach(() => {
|
|
sandbox.restore();
|
|
TestUtils.restoreStubs();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
TestUtils.stubWindowLog();
|
|
});
|
|
|
|
// tslint:disable-next-line: max-func-body-length
|
|
describe('send', () => {
|
|
const ourNumber = '0123456789abcdef';
|
|
let sessionMessageAPISendStub: sinon.SinonStub<any>;
|
|
let encryptStub: sinon.SinonStub<[PubKey, Uint8Array, EncryptionType]>;
|
|
|
|
beforeEach(() => {
|
|
sessionMessageAPISendStub = sandbox.stub(MessageSender, 'TEST_sendMessageToSnode').resolves();
|
|
|
|
sandbox.stub(Data, 'getMessageById').resolves();
|
|
|
|
encryptStub = sandbox.stub(MessageEncrypter, 'encrypt').resolves({
|
|
envelopeType: SignalService.Envelope.Type.SESSION_MESSAGE,
|
|
cipherText: crypto.randomBytes(10),
|
|
});
|
|
|
|
sandbox.stub(UserUtils, 'getOurPubKeyStrFromCache').returns(ourNumber);
|
|
});
|
|
|
|
describe('retry', () => {
|
|
let rawMessage: RawMessage;
|
|
|
|
beforeEach(async () => {
|
|
rawMessage = await MessageUtils.toRawMessage(
|
|
TestUtils.generateFakePubKey(),
|
|
TestUtils.generateVisibleMessage()
|
|
);
|
|
});
|
|
|
|
it('should not retry if an error occurred during encryption', async () => {
|
|
encryptStub.throws(new Error('Failed to encrypt.'));
|
|
const promise = MessageSender.send(rawMessage, 3, 10);
|
|
await expect(promise).is.rejectedWith('Failed to encrypt.');
|
|
expect(sessionMessageAPISendStub.callCount).to.equal(0);
|
|
});
|
|
|
|
it('should only call lokiMessageAPI once if no errors occured', async () => {
|
|
await MessageSender.send(rawMessage, 3, 10);
|
|
expect(sessionMessageAPISendStub.callCount).to.equal(1);
|
|
});
|
|
|
|
it('should only retry the specified amount of times before throwing', async () => {
|
|
// const clock = sinon.useFakeTimers();
|
|
|
|
sessionMessageAPISendStub.throws(new Error('API error'));
|
|
const attempts = 2;
|
|
const promise = MessageSender.send(rawMessage, attempts, 10);
|
|
await expect(promise).is.rejectedWith('API error');
|
|
// clock.restore();
|
|
expect(sessionMessageAPISendStub.callCount).to.equal(attempts);
|
|
});
|
|
|
|
it('should not throw error if successful send occurs within the retry limit', async () => {
|
|
sessionMessageAPISendStub.onFirstCall().throws(new Error('API error'));
|
|
await MessageSender.send(rawMessage, 3, 10);
|
|
expect(sessionMessageAPISendStub.callCount).to.equal(2);
|
|
});
|
|
});
|
|
|
|
describe('logic', () => {
|
|
let messageEncyrptReturnEnvelopeType = SignalService.Envelope.Type.SESSION_MESSAGE;
|
|
|
|
beforeEach(() => {
|
|
encryptStub.callsFake(async (_device, plainTextBuffer, _type) => ({
|
|
envelopeType: messageEncyrptReturnEnvelopeType,
|
|
cipherText: plainTextBuffer,
|
|
}));
|
|
});
|
|
|
|
it('should pass the correct values to lokiMessageAPI', async () => {
|
|
const device = TestUtils.generateFakePubKey();
|
|
const visibleMessage = TestUtils.generateVisibleMessage();
|
|
|
|
const rawMessage = await MessageUtils.toRawMessage(device, visibleMessage);
|
|
|
|
await MessageSender.send(rawMessage, 3, 10);
|
|
|
|
const args = sessionMessageAPISendStub.getCall(0).args;
|
|
expect(args[0]).to.equal(device.key);
|
|
// expect(args[3]).to.equal(visibleMessage.timestamp); the timestamp is overwritten on sending by the network clock offset
|
|
expect(args[2]).to.equal(visibleMessage.ttl());
|
|
});
|
|
|
|
it('should correctly build the envelope and override the timestamp', async () => {
|
|
messageEncyrptReturnEnvelopeType = SignalService.Envelope.Type.SESSION_MESSAGE;
|
|
|
|
// This test assumes the encryption stub returns the plainText passed into it.
|
|
const device = TestUtils.generateFakePubKey();
|
|
|
|
const visibleMessage = TestUtils.generateVisibleMessage();
|
|
const rawMessage = await MessageUtils.toRawMessage(device, visibleMessage);
|
|
const offset = 200000;
|
|
sandbox.stub(SNodeAPI, 'getLatestTimestampOffset').returns(offset);
|
|
await MessageSender.send(rawMessage, 3, 10);
|
|
|
|
const data = sessionMessageAPISendStub.getCall(0).args[1];
|
|
const webSocketMessage = SignalService.WebSocketMessage.decode(data);
|
|
expect(webSocketMessage.request?.body).to.not.equal(
|
|
undefined,
|
|
'Request body should not be undefined'
|
|
);
|
|
expect(webSocketMessage.request?.body).to.not.equal(
|
|
null,
|
|
'Request body should not be null'
|
|
);
|
|
|
|
const envelope = SignalService.Envelope.decode(
|
|
webSocketMessage.request?.body as Uint8Array
|
|
);
|
|
expect(envelope.type).to.equal(SignalService.Envelope.Type.SESSION_MESSAGE);
|
|
expect(envelope.source).to.equal('');
|
|
|
|
// the timestamp is overridden on sending with the network offset
|
|
const expectedTimestamp = Date.now() - offset;
|
|
const decodedTimestampFromSending = _.toNumber(envelope.timestamp);
|
|
expect(decodedTimestampFromSending).to.be.above(expectedTimestamp - 10);
|
|
expect(decodedTimestampFromSending).to.be.below(expectedTimestamp + 10);
|
|
|
|
// then make sure the plaintextBuffer was overriden too
|
|
const visibleMessageExpected = TestUtils.generateVisibleMessage({
|
|
timestamp: decodedTimestampFromSending,
|
|
});
|
|
const rawMessageExpected = await MessageUtils.toRawMessage(device, visibleMessageExpected);
|
|
|
|
expect(envelope.content).to.deep.equal(rawMessageExpected.plainTextBuffer);
|
|
});
|
|
|
|
describe('SESSION_MESSAGE', () => {
|
|
it('should set the envelope source to be empty', async () => {
|
|
messageEncyrptReturnEnvelopeType = SignalService.Envelope.Type.SESSION_MESSAGE;
|
|
|
|
// This test assumes the encryption stub returns the plainText passed into it.
|
|
const device = TestUtils.generateFakePubKey();
|
|
|
|
const visibleMessage = TestUtils.generateVisibleMessage();
|
|
const rawMessage = await MessageUtils.toRawMessage(device, visibleMessage);
|
|
await MessageSender.send(rawMessage, 3, 10);
|
|
|
|
const data = sessionMessageAPISendStub.getCall(0).args[1];
|
|
const webSocketMessage = SignalService.WebSocketMessage.decode(data);
|
|
expect(webSocketMessage.request?.body).to.not.equal(
|
|
undefined,
|
|
'Request body should not be undefined'
|
|
);
|
|
expect(webSocketMessage.request?.body).to.not.equal(
|
|
null,
|
|
'Request body should not be null'
|
|
);
|
|
|
|
const envelope = SignalService.Envelope.decode(
|
|
webSocketMessage.request?.body as Uint8Array
|
|
);
|
|
expect(envelope.type).to.equal(SignalService.Envelope.Type.SESSION_MESSAGE);
|
|
expect(envelope.source).to.equal(
|
|
'',
|
|
'envelope source should be empty in SESSION_MESSAGE'
|
|
);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('sendToOpenGroupV2', () => {
|
|
const sandbox2 = sinon.createSandbox();
|
|
let postMessageRetryableStub: sinon.SinonStub;
|
|
beforeEach(() => {
|
|
sandbox
|
|
.stub(UserUtils, 'getOurPubKeyStrFromCache')
|
|
.resolves(TestUtils.generateFakePubKey().key);
|
|
|
|
postMessageRetryableStub = sandbox
|
|
.stub(ApiV2, 'postMessageRetryable')
|
|
.resolves(TestUtils.generateOpenGroupMessageV2());
|
|
});
|
|
|
|
afterEach(() => {
|
|
sandbox2.restore();
|
|
});
|
|
|
|
it('should call postMessageRetryableStub', async () => {
|
|
const message = TestUtils.generateOpenGroupVisibleMessage();
|
|
const roomInfos = TestUtils.generateOpenGroupV2RoomInfos();
|
|
|
|
await MessageSender.sendToOpenGroupV2(message, roomInfos);
|
|
expect(postMessageRetryableStub.callCount).to.eq(1);
|
|
});
|
|
|
|
it('should retry postMessageRetryableStub ', async () => {
|
|
const message = TestUtils.generateOpenGroupVisibleMessage();
|
|
const roomInfos = TestUtils.generateOpenGroupV2RoomInfos();
|
|
|
|
postMessageRetryableStub.throws('whate');
|
|
sandbox2.stub(ApiV2, 'getMinTimeout').returns(2);
|
|
|
|
postMessageRetryableStub.onThirdCall().resolves();
|
|
await MessageSender.sendToOpenGroupV2(message, roomInfos);
|
|
expect(postMessageRetryableStub.callCount).to.eq(3);
|
|
});
|
|
|
|
it('should not retry more than 3 postMessageRetryableStub ', async () => {
|
|
const message = TestUtils.generateOpenGroupVisibleMessage();
|
|
const roomInfos = TestUtils.generateOpenGroupV2RoomInfos();
|
|
sandbox2.stub(ApiV2, 'getMinTimeout').returns(2);
|
|
postMessageRetryableStub.throws('fake error');
|
|
postMessageRetryableStub.onCall(4).resolves();
|
|
try {
|
|
await MessageSender.sendToOpenGroupV2(message, roomInfos);
|
|
throw new Error('Error expected');
|
|
} catch (e) {
|
|
expect(e.name).to.eq('fake error');
|
|
}
|
|
expect(postMessageRetryableStub.calledThrice);
|
|
});
|
|
});
|
|
});
|