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.
96 lines
3.4 KiB
TypeScript
96 lines
3.4 KiB
TypeScript
import { SignalService } from '../../../../protobuf';
|
|
import { handleConfigurationMessage } from '../../../../receiver/contentMessage';
|
|
import chai from 'chai';
|
|
|
|
import { ConfigurationMessage } from '../../../../session/messages/outgoing/content/ConfigurationMessage';
|
|
import { UserUtils } from '../../../../session/utils';
|
|
import { TestUtils } from '../../../test-utils';
|
|
|
|
import Sinon, * as sinon from 'sinon';
|
|
import * as cache from '../../../../receiver/cache';
|
|
import * as data from '../../../../../js/modules/data';
|
|
import { EnvelopePlus } from '../../../../receiver/types';
|
|
|
|
// tslint:disable-next-line: no-require-imports no-var-requires
|
|
const chaiAsPromised = require('chai-as-promised');
|
|
chai.use(chaiAsPromised);
|
|
chai.should();
|
|
|
|
const { expect } = chai;
|
|
|
|
describe('ConfigurationMessage_receiving', () => {
|
|
const sandbox = sinon.createSandbox();
|
|
let createOrUpdateStub: Sinon.SinonStub<any>;
|
|
let getItemByIdStub: Sinon.SinonStub<any>;
|
|
let sender: string;
|
|
|
|
let envelope: EnvelopePlus;
|
|
let config: ConfigurationMessage;
|
|
|
|
beforeEach(() => {
|
|
sandbox.stub(cache, 'removeFromCache').resolves();
|
|
sender = TestUtils.generateFakePubKey().key;
|
|
config = new ConfigurationMessage({
|
|
activeOpenGroups: [],
|
|
activeClosedGroups: [],
|
|
timestamp: Date.now(),
|
|
identifier: 'identifier',
|
|
displayName: 'displayName',
|
|
contacts: [],
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
TestUtils.restoreStubs();
|
|
sandbox.restore();
|
|
});
|
|
|
|
it('should not be processed if we do not have a pubkey', async () => {
|
|
sandbox.stub(UserUtils, 'getCurrentDevicePubKey').resolves(undefined);
|
|
envelope = TestUtils.generateEnvelopePlus(sender);
|
|
|
|
const proto = config.contentProto();
|
|
createOrUpdateStub = sandbox.stub(data, 'createOrUpdateItem').resolves();
|
|
getItemByIdStub = sandbox.stub(data, 'getItemById').resolves();
|
|
await handleConfigurationMessage(
|
|
envelope,
|
|
proto.configurationMessage as SignalService.ConfigurationMessage
|
|
);
|
|
expect(createOrUpdateStub.callCount).to.equal(0);
|
|
expect(getItemByIdStub.callCount).to.equal(0);
|
|
});
|
|
|
|
describe('with ourNumber set', () => {
|
|
const ourNumber = TestUtils.generateFakePubKey().key;
|
|
|
|
beforeEach(() => {
|
|
sandbox.stub(UserUtils, 'getCurrentDevicePubKey').resolves(ourNumber);
|
|
});
|
|
|
|
it('should not be processed if the message is not coming from our number', async () => {
|
|
const proto = config.contentProto();
|
|
// sender !== ourNumber
|
|
envelope = TestUtils.generateEnvelopePlus(sender);
|
|
|
|
createOrUpdateStub = sandbox.stub(data, 'createOrUpdateItem').resolves();
|
|
getItemByIdStub = sandbox.stub(data, 'getItemById').resolves();
|
|
await handleConfigurationMessage(
|
|
envelope,
|
|
proto.configurationMessage as SignalService.ConfigurationMessage
|
|
);
|
|
expect(createOrUpdateStub.callCount).to.equal(0);
|
|
expect(getItemByIdStub.callCount).to.equal(0);
|
|
});
|
|
|
|
// it('should be processed if the message is coming from our number', async () => {
|
|
// const proto = config.contentProto();
|
|
// envelope = TestUtils.generateEnvelopePlus(ourNumber);
|
|
|
|
// createOrUpdateStub = sandbox.stub(data, 'createOrUpdateItem').resolves();
|
|
// getItemByIdStub = sandbox.stub(data, 'getItemById').resolves();
|
|
// await handleConfigurationMessage(envelope, proto.configurationMessage as SignalService.ConfigurationMessage);
|
|
// expect(getItemByIdStub.callCount).to.equal(1);
|
|
// });
|
|
});
|
|
});
|