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.
session-desktop/ts/test/session/messages/SessionResetMessage_test.ts

79 lines
2.3 KiB
TypeScript

import { expect } from 'chai';
import { beforeEach } from 'mocha';
import { SessionResetMessage } from '../../../session/messages/outgoing';
import { SignalService } from '../../../protobuf';
import { TextDecoder, TextEncoder } from 'util';
describe('SessionResetMessage', () => {
let message: SessionResetMessage;
const preKeyBundle = {
deviceId: 123456,
preKeyId: 654321,
signedKeyId: 111111,
preKey: new TextEncoder().encode('preKey'),
signature: new TextEncoder().encode('signature'),
signedKey: new TextEncoder().encode('signedKey'),
identityKey: new TextEncoder().encode('identityKey'),
};
beforeEach(() => {
const timestamp = Date.now();
message = new SessionResetMessage({ timestamp, preKeyBundle });
});
it('has a preKeyBundle', () => {
const plainText = message.plainTextBuffer();
const decoded = SignalService.Content.decode(plainText);
expect(decoded.preKeyBundleMessage).to.have.property(
'deviceId',
preKeyBundle.deviceId
);
expect(decoded.preKeyBundleMessage).to.have.property(
'preKeyId',
preKeyBundle.preKeyId
);
expect(decoded.preKeyBundleMessage).to.have.property(
'signedKeyId',
preKeyBundle.signedKeyId
);
const signature = new TextDecoder().decode(
decoded.preKeyBundleMessage?.signature
);
const signedKey = new TextDecoder().decode(
decoded.preKeyBundleMessage?.signedKey
);
const identityKey = new TextDecoder().decode(
decoded.preKeyBundleMessage?.identityKey
);
expect(signature).to.be.deep.equal('signature');
expect(signedKey).to.be.deep.equal('signedKey');
expect(identityKey).to.be.deep.equal('identityKey');
});
it('has a nullMessage not null', () => {
const plainText = message.plainTextBuffer();
const decoded = SignalService.Content.decode(plainText);
expect(decoded.nullMessage).to.be.not.equal(
null,
'decoded.dataMessage.nullMessage should not be null'
);
});
it('ttl of 4 days', () => {
expect(message.ttl()).to.equal(4 * 24 * 60 * 60 * 1000);
});
it('has an identifier', () => {
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
expect(message.identifier).to.not.equal(
undefined,
'identifier cannot be undefined'
);
});
});