add SessioNEstablishedMessage and tests

pull/1151/head
Audric Ackermann 5 years ago
parent 46a48406c7
commit 7191038f21
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -8,6 +8,10 @@ export class SessionEstablishedMessage extends ContentMessage {
}
protected contentProto(): SignalService.Content {
throw new Error('Not implemented');
const nullMessage = new SignalService.NullMessage({});
return new SignalService.Content({
nullMessage,
});
}
}

@ -0,0 +1,25 @@
import { expect } from 'chai';
import { beforeEach} from 'mocha';
import { SessionEstablishedMessage } from '../../../session/messages/outgoing';
import { SignalService } from '../../../protobuf';
describe('SessionEstablishedMessage', () => {
let message: SessionEstablishedMessage;
beforeEach(() => {
const timestamp = Date.now();
const identifier = '123456';
message = new SessionEstablishedMessage({timestamp, identifier});
});
it('has a nullMessage not null', () => {
const plainText = message.plainTextBuffer();
const decoded = SignalService.Content.toObject(SignalService.Content.decode(plainText));
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);
});
});
Loading…
Cancel
Save