lint
parent
3840d061c3
commit
9fd929e812
@ -1,6 +1,3 @@
|
||||
import * as SyncMessage from './SyncMessage';
|
||||
|
||||
|
||||
export {
|
||||
SyncMessage,
|
||||
};
|
||||
export { SyncMessage };
|
||||
|
@ -1,50 +1,62 @@
|
||||
import { expect } from 'chai';
|
||||
|
||||
import { ChatMessage, ClosedGroupChatMessage } from '../../../session/messages/outgoing';
|
||||
import {
|
||||
ChatMessage,
|
||||
ClosedGroupChatMessage,
|
||||
} from '../../../session/messages/outgoing';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
import { TextEncoder } from 'util';
|
||||
|
||||
describe('ClosedGroupChatMessage', () => {
|
||||
it('can create empty message with timestamp, groupId and chatMessage', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
body: 'body',
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
expect(decoded.dataMessage).to.have.property('group').to.have.deep.property('id', new TextEncoder().encode('12'));
|
||||
expect(decoded.dataMessage).to.have.property('group').to.have.deep.property('type', SignalService.GroupContext.Type.DELIVER);
|
||||
it('can create empty message with timestamp, groupId and chatMessage', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
body: 'body',
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('group')
|
||||
.to.have.deep.property('id', new TextEncoder().encode('12'));
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('group')
|
||||
.to.have.deep.property('type', SignalService.GroupContext.Type.DELIVER);
|
||||
|
||||
expect(decoded.dataMessage).to.have.deep.property('body', 'body');
|
||||
expect(decoded.dataMessage).to.have.deep.property('body', 'body');
|
||||
|
||||
// we use the timestamp of the chatMessage as parent timestamp
|
||||
expect(message).to.have.property('timestamp').to.be.equal(chatMessage.timestamp);
|
||||
});
|
||||
// we use the timestamp of the chatMessage as parent timestamp
|
||||
expect(message)
|
||||
.to.have.property('timestamp')
|
||||
.to.be.equal(chatMessage.timestamp);
|
||||
});
|
||||
|
||||
it('ttl of 1 day', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
expect(message.ttl()).to.equal(24 * 60 * 60 * 1000);
|
||||
it('ttl of 1 day', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
expect(message.ttl()).to.equal(24 * 60 * 60 * 1000);
|
||||
});
|
||||
|
||||
it('has an identifier', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
it('has an identifier', () => {
|
||||
const chatMessage = new ChatMessage({
|
||||
timestamp: Date.now(),
|
||||
});
|
||||
const message = new ClosedGroupChatMessage({
|
||||
groupId: '12',
|
||||
chatMessage,
|
||||
});
|
||||
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(message.identifier).to.not.equal(
|
||||
undefined,
|
||||
'identifier cannot be undefined'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
@ -1,96 +1,133 @@
|
||||
import { expect } from 'chai';
|
||||
import { beforeEach} from 'mocha';
|
||||
import { beforeEach } from 'mocha';
|
||||
|
||||
import { DeviceLinkGrantMessage, DeviceLinkRequestMessage } from '../../../session/messages/outgoing';
|
||||
import {
|
||||
DeviceLinkGrantMessage,
|
||||
DeviceLinkRequestMessage,
|
||||
} from '../../../session/messages/outgoing';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
import { LokiProfile } from '../../../types/Message';
|
||||
|
||||
describe('DeviceLinkMessage', () => {
|
||||
let linkRequestMessage: DeviceLinkRequestMessage;
|
||||
let linkGrantMessage: DeviceLinkGrantMessage;
|
||||
let lokiProfile: LokiProfile;
|
||||
let linkRequestMessage: DeviceLinkRequestMessage;
|
||||
let linkGrantMessage: DeviceLinkGrantMessage;
|
||||
let lokiProfile: LokiProfile;
|
||||
|
||||
beforeEach(() => {
|
||||
linkRequestMessage = new DeviceLinkRequestMessage({
|
||||
timestamp: Date.now(),
|
||||
primaryDevicePubKey: '111111',
|
||||
secondaryDevicePubKey: '222222',
|
||||
requestSignature: new Uint8Array([1, 2, 3, 4, 5, 6]),
|
||||
});
|
||||
|
||||
lokiProfile = {
|
||||
displayName: 'displayName',
|
||||
avatarPointer: 'avatarPointer',
|
||||
profileKey: new Uint8Array([1, 2, 3, 4]),
|
||||
};
|
||||
|
||||
linkGrantMessage = new DeviceLinkGrantMessage({
|
||||
timestamp: Date.now(),
|
||||
primaryDevicePubKey: '111111',
|
||||
secondaryDevicePubKey: '222222',
|
||||
requestSignature: new Uint8Array([1, 2, 3, 4, 5, 6]),
|
||||
grantSignature: new Uint8Array([6, 5, 4, 3, 2, 1]),
|
||||
lokiProfile,
|
||||
});
|
||||
beforeEach(() => {
|
||||
linkRequestMessage = new DeviceLinkRequestMessage({
|
||||
timestamp: Date.now(),
|
||||
primaryDevicePubKey: '111111',
|
||||
secondaryDevicePubKey: '222222',
|
||||
requestSignature: new Uint8Array([1, 2, 3, 4, 5, 6]),
|
||||
});
|
||||
|
||||
describe('content of a linkRequestMessage ', () => {
|
||||
let decoded: any;
|
||||
before(() => {
|
||||
const plainText = linkRequestMessage.plainTextBuffer();
|
||||
decoded = SignalService.Content.decode(plainText);
|
||||
});
|
||||
lokiProfile = {
|
||||
displayName: 'displayName',
|
||||
avatarPointer: 'avatarPointer',
|
||||
profileKey: new Uint8Array([1, 2, 3, 4]),
|
||||
};
|
||||
|
||||
it('has a pairingAuthorisation.primaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('primaryDevicePubKey', '111111');
|
||||
});
|
||||
it('has a pairingAuthorisation.secondaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('secondaryDevicePubKey', '222222');
|
||||
});
|
||||
it('has a pairingAuthorisation.requestSignature', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('requestSignature').to.deep.equal(new Uint8Array([1, 2, 3, 4, 5, 6]));
|
||||
});
|
||||
it('has no pairingAuthorisation.grantSignature', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('grantSignature').to.have.lengthOf(0);
|
||||
});
|
||||
it('has no lokiProfile', () => {
|
||||
expect(decoded).to.not.have.property('lokiProfile');
|
||||
});
|
||||
linkGrantMessage = new DeviceLinkGrantMessage({
|
||||
timestamp: Date.now(),
|
||||
primaryDevicePubKey: '111111',
|
||||
secondaryDevicePubKey: '222222',
|
||||
requestSignature: new Uint8Array([1, 2, 3, 4, 5, 6]),
|
||||
grantSignature: new Uint8Array([6, 5, 4, 3, 2, 1]),
|
||||
lokiProfile,
|
||||
});
|
||||
});
|
||||
|
||||
describe('content of a linkGrantMessage ', () => {
|
||||
let decoded: any;
|
||||
before(() => {
|
||||
const plainText = linkGrantMessage.plainTextBuffer();
|
||||
decoded = SignalService.Content.decode(plainText);
|
||||
});
|
||||
describe('content of a linkRequestMessage ', () => {
|
||||
let decoded: any;
|
||||
before(() => {
|
||||
const plainText = linkRequestMessage.plainTextBuffer();
|
||||
decoded = SignalService.Content.decode(plainText);
|
||||
});
|
||||
|
||||
it('has a pairingAuthorisation.primaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('primaryDevicePubKey', '111111');
|
||||
});
|
||||
it('has a pairingAuthorisation.secondaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('secondaryDevicePubKey', '222222');
|
||||
});
|
||||
it('has a pairingAuthorisation.requestSignature', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('requestSignature').to.deep.equal(new Uint8Array([1, 2, 3, 4, 5, 6]));
|
||||
});
|
||||
it('has a pairingAuthorisation.grantSignature', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property('grantSignature').to.deep.equal(new Uint8Array([6, 5, 4, 3, 2, 1]));
|
||||
});
|
||||
it('has a lokiProfile', () => {
|
||||
expect(decoded.dataMessage).to.have.property('profileKey').to.be.deep.equal(lokiProfile.profileKey);
|
||||
expect(decoded.dataMessage).to.have.property('profile').to.have.property('displayName').to.be.deep.equal('displayName');
|
||||
expect(decoded.dataMessage).to.have.property('profile').to.have.property('avatar').to.be.deep.equal('avatarPointer');
|
||||
});
|
||||
it('has a pairingAuthorisation.primaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property(
|
||||
'primaryDevicePubKey',
|
||||
'111111'
|
||||
);
|
||||
});
|
||||
it('has a pairingAuthorisation.secondaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property(
|
||||
'secondaryDevicePubKey',
|
||||
'222222'
|
||||
);
|
||||
});
|
||||
it('has a pairingAuthorisation.requestSignature', () => {
|
||||
expect(decoded.pairingAuthorisation)
|
||||
.to.have.property('requestSignature')
|
||||
.to.deep.equal(new Uint8Array([1, 2, 3, 4, 5, 6]));
|
||||
});
|
||||
it('has no pairingAuthorisation.grantSignature', () => {
|
||||
expect(decoded.pairingAuthorisation)
|
||||
.to.have.property('grantSignature')
|
||||
.to.have.lengthOf(0);
|
||||
});
|
||||
it('has no lokiProfile', () => {
|
||||
expect(decoded).to.not.have.property('lokiProfile');
|
||||
});
|
||||
});
|
||||
|
||||
it('ttl of 2 minutes', () => {
|
||||
expect(linkRequestMessage.ttl()).to.equal(2 * 60 * 1000);
|
||||
expect(linkGrantMessage.ttl()).to.equal(2 * 60 * 1000);
|
||||
describe('content of a linkGrantMessage ', () => {
|
||||
let decoded: any;
|
||||
before(() => {
|
||||
const plainText = linkGrantMessage.plainTextBuffer();
|
||||
decoded = SignalService.Content.decode(plainText);
|
||||
});
|
||||
|
||||
it('has an identifier', () => {
|
||||
expect(linkRequestMessage.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(linkRequestMessage.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
it('has a pairingAuthorisation.primaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property(
|
||||
'primaryDevicePubKey',
|
||||
'111111'
|
||||
);
|
||||
});
|
||||
it('has a pairingAuthorisation.secondaryDevicePubKey', () => {
|
||||
expect(decoded.pairingAuthorisation).to.have.property(
|
||||
'secondaryDevicePubKey',
|
||||
'222222'
|
||||
);
|
||||
});
|
||||
it('has a pairingAuthorisation.requestSignature', () => {
|
||||
expect(decoded.pairingAuthorisation)
|
||||
.to.have.property('requestSignature')
|
||||
.to.deep.equal(new Uint8Array([1, 2, 3, 4, 5, 6]));
|
||||
});
|
||||
it('has a pairingAuthorisation.grantSignature', () => {
|
||||
expect(decoded.pairingAuthorisation)
|
||||
.to.have.property('grantSignature')
|
||||
.to.deep.equal(new Uint8Array([6, 5, 4, 3, 2, 1]));
|
||||
});
|
||||
it('has a lokiProfile', () => {
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('profileKey')
|
||||
.to.be.deep.equal(lokiProfile.profileKey);
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('profile')
|
||||
.to.have.property('displayName')
|
||||
.to.be.deep.equal('displayName');
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('profile')
|
||||
.to.have.property('avatar')
|
||||
.to.be.deep.equal('avatarPointer');
|
||||
});
|
||||
});
|
||||
|
||||
it('ttl of 2 minutes', () => {
|
||||
expect(linkRequestMessage.ttl()).to.equal(2 * 60 * 1000);
|
||||
expect(linkGrantMessage.ttl()).to.equal(2 * 60 * 1000);
|
||||
});
|
||||
|
||||
it('has an identifier', () => {
|
||||
expect(linkRequestMessage.identifier).to.not.equal(
|
||||
null,
|
||||
'identifier cannot be null'
|
||||
);
|
||||
expect(linkRequestMessage.identifier).to.not.equal(
|
||||
undefined,
|
||||
'identifier cannot be undefined'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
@ -1,29 +1,35 @@
|
||||
import { expect } from 'chai';
|
||||
import { beforeEach} from 'mocha';
|
||||
import { beforeEach } from 'mocha';
|
||||
|
||||
import { DeviceUnlinkMessage } from '../../../session/messages/outgoing';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
|
||||
describe('DeviceUnlinkMessage', () => {
|
||||
let message: DeviceUnlinkMessage;
|
||||
beforeEach(() => {
|
||||
const timestamp = Date.now();
|
||||
message = new DeviceUnlinkMessage({timestamp});
|
||||
});
|
||||
let message: DeviceUnlinkMessage;
|
||||
beforeEach(() => {
|
||||
const timestamp = Date.now();
|
||||
message = new DeviceUnlinkMessage({ timestamp });
|
||||
});
|
||||
|
||||
it('content of just the UNPAIRING_REQUEST flag set', () => {
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
it('content of just the UNPAIRING_REQUEST flag set', () => {
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
|
||||
expect(decoded.dataMessage).to.have.property('flags', SignalService.DataMessage.Flags.UNPAIRING_REQUEST);
|
||||
});
|
||||
expect(decoded.dataMessage).to.have.property(
|
||||
'flags',
|
||||
SignalService.DataMessage.Flags.UNPAIRING_REQUEST
|
||||
);
|
||||
});
|
||||
|
||||
it('ttl of 4 days', () => {
|
||||
expect(message.ttl()).to.equal(4 * 24 * 60 * 60 * 1000);
|
||||
});
|
||||
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');
|
||||
});
|
||||
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'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
@ -1,54 +1,78 @@
|
||||
import { expect } from 'chai';
|
||||
import { beforeEach} from 'mocha';
|
||||
import { beforeEach } from 'mocha';
|
||||
|
||||
import { EndSessionMessage } from '../../../session/messages/outgoing';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
import { TextEncoder } from 'util';
|
||||
|
||||
describe('EndSessionMessage', () => {
|
||||
let message: EndSessionMessage;
|
||||
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 EndSessionMessage({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);
|
||||
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property('signature', preKeyBundle.signature);
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property('signedKey', preKeyBundle.signedKey);
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property('identityKey', preKeyBundle.identityKey);
|
||||
});
|
||||
|
||||
it('has a dataMessage with `END_SESSION` flag and `TERMINATE` as body', () => {
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
|
||||
expect(decoded.dataMessage).to.have.property('flags', SignalService.DataMessage.Flags.END_SESSION);
|
||||
expect(decoded.dataMessage).to.have.deep.property('body', 'TERMINATE');
|
||||
});
|
||||
|
||||
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');
|
||||
});
|
||||
let message: EndSessionMessage;
|
||||
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 EndSessionMessage({ 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
|
||||
);
|
||||
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property(
|
||||
'signature',
|
||||
preKeyBundle.signature
|
||||
);
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property(
|
||||
'signedKey',
|
||||
preKeyBundle.signedKey
|
||||
);
|
||||
expect(decoded.preKeyBundleMessage).to.have.deep.property(
|
||||
'identityKey',
|
||||
preKeyBundle.identityKey
|
||||
);
|
||||
});
|
||||
|
||||
it('has a dataMessage with `END_SESSION` flag and `TERMINATE` as body', () => {
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
|
||||
expect(decoded.dataMessage).to.have.property(
|
||||
'flags',
|
||||
SignalService.DataMessage.Flags.END_SESSION
|
||||
);
|
||||
expect(decoded.dataMessage).to.have.deep.property('body', 'TERMINATE');
|
||||
});
|
||||
|
||||
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'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
@ -1,29 +1,35 @@
|
||||
import { expect } from 'chai';
|
||||
import { beforeEach} from 'mocha';
|
||||
import { beforeEach } from 'mocha';
|
||||
|
||||
import { SessionEstablishedMessage } from '../../../session/messages/outgoing';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
|
||||
describe('SessionEstablishedMessage', () => {
|
||||
let message: SessionEstablishedMessage;
|
||||
beforeEach(() => {
|
||||
const timestamp = Date.now();
|
||||
message = new SessionEstablishedMessage({timestamp});
|
||||
});
|
||||
let message: SessionEstablishedMessage;
|
||||
beforeEach(() => {
|
||||
const timestamp = Date.now();
|
||||
message = new SessionEstablishedMessage({ timestamp });
|
||||
});
|
||||
|
||||
it('has a nullMessage not null', () => {
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
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');
|
||||
});
|
||||
expect(decoded.nullMessage).to.be.not.equal(
|
||||
null,
|
||||
'decoded.dataMessage.nullMessage should not be null'
|
||||
);
|
||||
});
|
||||
|
||||
it('ttl of 5 minutes', () => {
|
||||
expect(message.ttl()).to.equal(5 * 60 * 1000);
|
||||
});
|
||||
it('ttl of 5 minutes', () => {
|
||||
expect(message.ttl()).to.equal(5 * 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');
|
||||
});
|
||||
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'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue